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

37803 lines
950 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "canine"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound", "demon"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf"]
  569. },
  570. "meerkat": {
  571. name: "Meerkat",
  572. parents: ["mammal"]
  573. },
  574. "human": {
  575. name: "Human",
  576. parents: ["mammal"]
  577. },
  578. "geth": {
  579. name: "Geth",
  580. parents: ["android"]
  581. },
  582. "husky": {
  583. name: "Husky",
  584. parents: ["dog"]
  585. },
  586. "long-eared-bat": {
  587. name: "Long Eared Bat",
  588. parents: ["bat"]
  589. },
  590. "lizard": {
  591. name: "Lizard",
  592. parents: ["reptile"]
  593. },
  594. "salamander": {
  595. name: "Salamander",
  596. parents: ["lizard"]
  597. },
  598. "chameleon": {
  599. name: "Chameleon",
  600. parents: ["lizard"]
  601. },
  602. "gecko": {
  603. name: "Gecko",
  604. parents: ["lizard"]
  605. },
  606. "kobold": {
  607. name: "Kobold",
  608. parents: ["reptile"]
  609. },
  610. "charizard": {
  611. name: "Charizard",
  612. parents: ["pokemon"]
  613. },
  614. "lugia": {
  615. name: "Lugia",
  616. parents: ["pokemon"]
  617. },
  618. "cerberus": {
  619. name: "Cerberus",
  620. parents: ["dog"]
  621. },
  622. "tyrantrum": {
  623. name: "Tyrantrum",
  624. parents: ["pokemon"]
  625. },
  626. "lemur": {
  627. name: "Lemur",
  628. parents: ["mammal"]
  629. },
  630. "kelpie": {
  631. name: "Kelpie",
  632. parents: ["horse", "monster"]
  633. },
  634. "labrador": {
  635. name: "Labrador",
  636. parents: ["dog"]
  637. },
  638. "sylveon": {
  639. name: "Sylveon",
  640. parents: ["eeveelution"]
  641. },
  642. "eeveelution": {
  643. name: "Eeveelution",
  644. parents: ["pokemon"]
  645. },
  646. "polar-bear": {
  647. name: "Polar Bear",
  648. parents: ["bear"]
  649. },
  650. "bear": {
  651. name: "Bear",
  652. parents: ["mammal"]
  653. },
  654. "absol": {
  655. name: "Absol",
  656. parents: ["pokemon"]
  657. },
  658. "wolver": {
  659. name: "Wolver",
  660. parents: ["mammal"]
  661. },
  662. "rottweiler": {
  663. name: "Rottweiler",
  664. parents: ["dog"]
  665. },
  666. "zebra": {
  667. name: "Zebra",
  668. parents: ["horse"]
  669. },
  670. "yoshi": {
  671. name: "Yoshi",
  672. parents: ["lizard"]
  673. },
  674. "lynx": {
  675. name: "Lynx",
  676. parents: ["cat"]
  677. },
  678. "unknown": {
  679. name: "Unknown",
  680. parents: []
  681. },
  682. "thylacine": {
  683. name: "Thylacine",
  684. parents: ["mammal"]
  685. },
  686. "gabumon": {
  687. name: "Gabumon",
  688. parents: ["digimon"]
  689. },
  690. "border-collie": {
  691. name: "Border Collie",
  692. parents: ["dog"]
  693. },
  694. "imp": {
  695. name: "Imp",
  696. parents: ["demon"]
  697. },
  698. "kangaroo": {
  699. name: "Kangaroo",
  700. parents: ["mammal"]
  701. },
  702. "renamon": {
  703. name: "Renamon",
  704. parents: ["digimon"]
  705. },
  706. "candy-orca-dragon": {
  707. name: "Candy Orca Dragon",
  708. parents: ["fish", "dragon", "candy"]
  709. },
  710. "sabertooth-tiger": {
  711. name: "Sabertooth Tiger",
  712. parents: ["cat"]
  713. },
  714. "espurr": {
  715. name: "Espurr",
  716. parents: ["pokemon"]
  717. },
  718. "otter": {
  719. name: "Otter",
  720. parents: ["mammal"]
  721. },
  722. "elemental": {
  723. name: "Elemental",
  724. parents: ["mammal"]
  725. },
  726. "mew": {
  727. name: "Mew",
  728. parents: ["pokemon"]
  729. },
  730. "goodra": {
  731. name: "Goodra",
  732. parents: ["pokemon"]
  733. },
  734. "fairy": {
  735. name: "Fairy",
  736. parents: ["magical"]
  737. },
  738. "typhlosion": {
  739. name: "Typhlosion",
  740. parents: ["pokemon"]
  741. },
  742. "magical": {
  743. name: "Magical",
  744. parents: []
  745. },
  746. "xenomorph": {
  747. name: "Xenomorph",
  748. parents: ["monster", "alien"]
  749. },
  750. "charr": {
  751. name: "Charr",
  752. parents: ["cat"]
  753. },
  754. "siberian-husky": {
  755. name: "Siberian Husky",
  756. parents: ["husky"]
  757. },
  758. "alligator": {
  759. name: "Alligator",
  760. parents: ["reptile"]
  761. },
  762. "bernese-mountain-dog": {
  763. name: "Bernese Mountain Dog",
  764. parents: ["dog"]
  765. },
  766. "reshiram": {
  767. name: "Reshiram",
  768. parents: ["pokemon"]
  769. },
  770. "grizzly-bear": {
  771. name: "Grizzly Bear",
  772. parents: ["bear"]
  773. },
  774. "water-monitor": {
  775. name: "Water Monitor",
  776. parents: ["lizard"]
  777. },
  778. "banchofossa": {
  779. name: "Banchofossa",
  780. parents: ["mammal"]
  781. },
  782. "kirin": {
  783. name: "Kirin",
  784. parents: ["monster"]
  785. },
  786. "quilava": {
  787. name: "Quilava",
  788. parents: ["pokemon"]
  789. },
  790. "seviper": {
  791. name: "Seviper",
  792. parents: ["pokemon"]
  793. },
  794. "flying-fox": {
  795. name: "Flying Fox",
  796. parents: ["bat"]
  797. },
  798. "keynain": {
  799. name: "Keynain",
  800. parents: ["avian"]
  801. },
  802. "lucario": {
  803. name: "Lucario",
  804. parents: ["pokemon"]
  805. },
  806. "siamese-cat": {
  807. name: "Siamese Cat",
  808. parents: ["cat"]
  809. },
  810. "spider": {
  811. name: "Spider",
  812. parents: ["insect"]
  813. },
  814. "samurott": {
  815. name: "Samurott",
  816. parents: ["pokemon"]
  817. },
  818. "megalodon": {
  819. name: "Megalodon",
  820. parents: ["shark"]
  821. },
  822. "unicorn": {
  823. name: "Unicorn",
  824. parents: ["horse"]
  825. },
  826. "greninja": {
  827. name: "Greninja",
  828. parents: ["pokemon"]
  829. },
  830. "water-dragon": {
  831. name: "Water Dragon",
  832. parents: ["dragon"]
  833. },
  834. "cross-fox": {
  835. name: "Cross Fox",
  836. parents: ["fox"]
  837. },
  838. "synth": {
  839. name: "Synth",
  840. parents: ["machine"]
  841. },
  842. "construct": {
  843. name: "Construct",
  844. parents: []
  845. },
  846. "mexican-wolf": {
  847. name: "Mexican Wolf",
  848. parents: ["wolf"]
  849. },
  850. "leopard": {
  851. name: "Leopard",
  852. parents: ["cat"]
  853. },
  854. "pig": {
  855. name: "Pig",
  856. parents: ["mammal"]
  857. },
  858. "ampharos": {
  859. name: "Ampharos",
  860. parents: ["pokemon"]
  861. },
  862. "orca": {
  863. name: "Orca",
  864. parents: ["fish"]
  865. },
  866. "lycanroc": {
  867. name: "Lycanroc",
  868. parents: ["pokemon"]
  869. },
  870. "surkanu": {
  871. name: "Surkanu",
  872. parents: ["monster"]
  873. },
  874. "seal": {
  875. name: "Seal",
  876. parents: ["mammal"]
  877. },
  878. "keldeo": {
  879. name: "Keldeo",
  880. parents: ["pokemon"]
  881. },
  882. "great-dane": {
  883. name: "Great Dane",
  884. parents: ["dog"]
  885. },
  886. "black-backed-jackal": {
  887. name: "Black Backed Jackal",
  888. parents: ["jackal"]
  889. },
  890. "sheep": {
  891. name: "Sheep",
  892. parents: ["mammal"]
  893. },
  894. "leopard-seal": {
  895. name: "Leopard Seal",
  896. parents: ["seal"]
  897. },
  898. "zoroark": {
  899. name: "Zoroark",
  900. parents: ["pokemon"]
  901. },
  902. "maned-wolf": {
  903. name: "Maned Wolf",
  904. parents: ["canine"]
  905. },
  906. "dracha": {
  907. name: "Dracha",
  908. parents: ["dragon"]
  909. },
  910. "wolxi": {
  911. name: "Wolxi",
  912. parents: ["mammal", "alien"]
  913. },
  914. "dratini": {
  915. name: "Dratini",
  916. parents: ["pokemon", "dragon"]
  917. },
  918. "skaven": {
  919. name: "Skaven",
  920. parents: ["rat"]
  921. },
  922. "mongoose": {
  923. name: "Mongoose",
  924. parents: ["mammal"]
  925. },
  926. "lopunny": {
  927. name: "Lopunny",
  928. parents: ["pokemon", "rabbit"]
  929. },
  930. "feraligatr": {
  931. name: "Feraligatr",
  932. parents: ["pokemon", "alligator"]
  933. },
  934. "houndoom": {
  935. name: "Houndoom",
  936. parents: ["pokemon", "dog"]
  937. },
  938. "protogen": {
  939. name: "Protogen",
  940. parents: ["machine"]
  941. },
  942. "saint-bernard": {
  943. name: "Saint Bernard",
  944. parents: ["dog"]
  945. },
  946. "crow": {
  947. name: "Crow",
  948. parents: ["corvid"]
  949. },
  950. "delphox": {
  951. name: "Delphox",
  952. parents: ["pokemon", "fox"]
  953. },
  954. "moose": {
  955. name: "Moose",
  956. parents: ["mammal"]
  957. },
  958. "joraxian": {
  959. name: "Joraxian",
  960. parents: ["monster", "canine", "demon"]
  961. },
  962. "nimbat": {
  963. name: "Nimbat",
  964. parents: ["mammal"]
  965. },
  966. "aardwolf": {
  967. name: "Aardwolf",
  968. parents: ["canine"]
  969. },
  970. "fluudrani": {
  971. name: "Fluudrani",
  972. parents: ["animal"]
  973. },
  974. "arcanine": {
  975. name: "Arcanine",
  976. parents: ["pokemon", "dog"]
  977. },
  978. "inteleon": {
  979. name: "Inteleon",
  980. parents: ["pokemon", "fish"]
  981. },
  982. "ninetales": {
  983. name: "Ninetales",
  984. parents: ["pokemon", "kitsune"]
  985. },
  986. "tigrex": {
  987. name: "Tigrex",
  988. parents: ["tiger"]
  989. },
  990. "zorua": {
  991. name: "Zorua",
  992. parents: ["pokemon", "fox"]
  993. },
  994. "vulpix": {
  995. name: "Vulpix",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "barghest": {
  999. name: "Barghest",
  1000. parents: ["monster"]
  1001. },
  1002. "gray-wolf": {
  1003. name: "Gray Wolf",
  1004. parents: ["wolf"]
  1005. },
  1006. "ruppells-fox": {
  1007. name: "Rüppell's Fox",
  1008. parents: ["fox"]
  1009. },
  1010. "bull-terrier": {
  1011. name: "Bull Terrier",
  1012. parents: ["dog"]
  1013. },
  1014. "european-honey-buzzard": {
  1015. name: "European Honey Buzzard",
  1016. parents: ["avian"]
  1017. },
  1018. "t-rex": {
  1019. name: "T Rex",
  1020. parents: ["dinosaur"]
  1021. },
  1022. "mactarian": {
  1023. name: "Mactarian",
  1024. parents: ["shark", "monster"]
  1025. },
  1026. "mewtwo-y": {
  1027. name: "Mewtwo Y",
  1028. parents: ["mewtwo"]
  1029. },
  1030. "mewtwo": {
  1031. name: "Mewtwo",
  1032. parents: ["pokemon"]
  1033. },
  1034. "mew": {
  1035. name: "Mew",
  1036. parents: ["pokemon"]
  1037. },
  1038. "eevee": {
  1039. name: "Eevee",
  1040. parents: ["eeveelution"]
  1041. },
  1042. "mienshao": {
  1043. name: "Mienshao",
  1044. parents: ["pokemon"]
  1045. },
  1046. "sugar-glider": {
  1047. name: "Sugar Glider",
  1048. parents: ["opossum"]
  1049. },
  1050. "spectral-bat": {
  1051. name: "Spectral Bat",
  1052. parents: ["bat"]
  1053. },
  1054. "scolipede": {
  1055. name: "Scolipede",
  1056. parents: ["pokemon", "insect"]
  1057. },
  1058. "jackalope": {
  1059. name: "Jackalope",
  1060. parents: ["rabbit", "antelope"]
  1061. },
  1062. "caracal": {
  1063. name: "Caracal",
  1064. parents: ["cat"]
  1065. },
  1066. "stoat": {
  1067. name: "Stoat",
  1068. parents: ["mammal"]
  1069. },
  1070. "african-golden-cat": {
  1071. name: "African Golden Cat",
  1072. parents: ["cat"]
  1073. },
  1074. "gigantosaurus": {
  1075. name: "Gigantosaurus",
  1076. parents: ["dinosaur"]
  1077. },
  1078. "zorgoia": {
  1079. name: "Zorgoia",
  1080. parents: ["mammal"]
  1081. },
  1082. "monitor-lizard": {
  1083. name: "Monitor Lizard",
  1084. parents: ["lizard"]
  1085. },
  1086. "ziralkia": {
  1087. name: "Ziralkia",
  1088. parents: ["mammal"]
  1089. },
  1090. "kiiasi": {
  1091. name: "Kiiasi",
  1092. parents: ["animal"]
  1093. },
  1094. "synx": {
  1095. name: "Synx",
  1096. parents: ["monster"]
  1097. },
  1098. "panther": {
  1099. name: "Panther",
  1100. parents: ["cat"]
  1101. },
  1102. "azumarill": {
  1103. name: "Azumarill",
  1104. parents: ["pokemon"]
  1105. },
  1106. "river-snaptail": {
  1107. name: "River Snaptail",
  1108. parents: ["otter", "crocodile"]
  1109. },
  1110. "great-blue-heron": {
  1111. name: "Great Blue Heron",
  1112. parents: ["avian"]
  1113. },
  1114. "smeargle": {
  1115. name: "Smeargle",
  1116. parents: ["pokemon"]
  1117. },
  1118. "vendeilen": {
  1119. name: "Vendeilen",
  1120. parents: ["monster"]
  1121. },
  1122. "ventura": {
  1123. name: "Ventura",
  1124. parents: ["canine"]
  1125. },
  1126. "clouded-leopard": {
  1127. name: "Clouded Leopard",
  1128. parents: ["leopard"]
  1129. },
  1130. "argonian": {
  1131. name: "Argonian",
  1132. parents: ["lizard"]
  1133. },
  1134. "salazzle": {
  1135. name: "Salazzle",
  1136. parents: ["pokemon", "lizard"]
  1137. },
  1138. "je-stoff-drachen": {
  1139. name: "Je-Stoff Drachen",
  1140. parents: ["dragon"]
  1141. },
  1142. "finnish-spitz-dog": {
  1143. name: "Finnish Spitz Dog",
  1144. parents: ["dog"]
  1145. },
  1146. "gray-fox": {
  1147. name: "Gray Fox",
  1148. parents: ["fox"]
  1149. },
  1150. "opossum": {
  1151. name: "opossum",
  1152. parents: ["mammal"]
  1153. },
  1154. "antelope": {
  1155. name: "Antelope",
  1156. parents: ["mammal"]
  1157. },
  1158. "weavile": {
  1159. name: "Weavile",
  1160. parents: ["pokemon"]
  1161. },
  1162. "pikachu": {
  1163. name: "Pikachu",
  1164. parents: ["pokemon", "mouse"]
  1165. },
  1166. "grovyle": {
  1167. name: "Grovyle",
  1168. parents: ["pokemon", "plant"]
  1169. },
  1170. "sthara": {
  1171. name: "Sthara",
  1172. parents: ["snow-leopard", "reptile"]
  1173. },
  1174. "star-warrior": {
  1175. name: "Star Warrior",
  1176. parents: ["magical"]
  1177. },
  1178. "dragonoid": {
  1179. name: "Dragonoid",
  1180. parents: ["dragon"]
  1181. },
  1182. "suicune": {
  1183. name: "Suicune",
  1184. parents: ["pokemon"]
  1185. },
  1186. "vole": {
  1187. name: "Vole",
  1188. parents: ["mammal"]
  1189. },
  1190. "blaziken": {
  1191. name: "Blaziken",
  1192. parents: ["pokemon", "avian"]
  1193. },
  1194. "buizel": {
  1195. name: "Buizel",
  1196. parents: ["pokemon", "fish"]
  1197. },
  1198. "floatzel": {
  1199. name: "Floatzel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "umok": {
  1203. name: "Umok",
  1204. parents: ["avian"]
  1205. },
  1206. "sea-monster": {
  1207. name: "Sea Monster",
  1208. parents: ["monster", "fish"]
  1209. },
  1210. "egyptian-vulture": {
  1211. name: "Egyptian Vulture",
  1212. parents: ["avian"]
  1213. },
  1214. "doberman": {
  1215. name: "Doberman",
  1216. parents: ["dog"]
  1217. },
  1218. "zangoose": {
  1219. name: "Zangoose",
  1220. parents: ["pokemon", "mongoose"]
  1221. },
  1222. "mongoose": {
  1223. name: "Mongoose",
  1224. parents: ["mammal"]
  1225. },
  1226. "wickerbeast": {
  1227. name: "Wickerbeast",
  1228. parents: ["monster"]
  1229. },
  1230. "zenari": {
  1231. name: "Zenari",
  1232. parents: ["lizard"]
  1233. },
  1234. "plant": {
  1235. name: "Plant",
  1236. parents: []
  1237. },
  1238. "raskatox": {
  1239. name: "Raskatox",
  1240. parents: ["raccoon", "skunk", "cat", "fox"]
  1241. },
  1242. "mikromare": {
  1243. name: "mikromare",
  1244. parents: ["alien"]
  1245. },
  1246. "alien": {
  1247. name: "Alien",
  1248. parents: ["animal"]
  1249. },
  1250. "deity": {
  1251. name: "Deity",
  1252. parents: []
  1253. },
  1254. "skarlan": {
  1255. name: "Skarlan",
  1256. parents: ["slug", "dragon"]
  1257. },
  1258. "slug": {
  1259. name: "Slug",
  1260. parents: ["mollusk"]
  1261. },
  1262. "mollusk": {
  1263. name: "Mollusk",
  1264. parents: ["animal"]
  1265. },
  1266. "chimera": {
  1267. name: "Chimera",
  1268. parents: ["monster"]
  1269. },
  1270. "gestalt": {
  1271. name: "Gestalt",
  1272. parents: ["construct"]
  1273. },
  1274. "mimic": {
  1275. name: "Mimic",
  1276. parents: ["monster"]
  1277. },
  1278. "calico-rat": {
  1279. name: "Calico Rat",
  1280. parents: ["rat"]
  1281. },
  1282. "panda": {
  1283. name: "Panda",
  1284. parents: ["mammal"]
  1285. },
  1286. "oni": {
  1287. name: "Oni",
  1288. parents: ["monster"]
  1289. },
  1290. "pegasus": {
  1291. name: "Pegasus",
  1292. parents: ["horse"]
  1293. },
  1294. "vulpera": {
  1295. name: "Vulpera",
  1296. parents: ["fennec-fox"]
  1297. },
  1298. "ceratosaurus": {
  1299. name: "Ceratosaurus",
  1300. parents: ["dinosaur"]
  1301. },
  1302. "nykur": {
  1303. name: "Nykur",
  1304. parents: ["horse", "monster"]
  1305. },
  1306. "giraffe": {
  1307. name: "Giraffe",
  1308. parents: ["mammal"]
  1309. },
  1310. "tauren": {
  1311. name: "Tauren",
  1312. parents: ["cow"]
  1313. },
  1314. "draconi": {
  1315. name: "Draconi",
  1316. parents: ["alien", "cat", "cyborg"]
  1317. },
  1318. "dire-wolf": {
  1319. name: "Dire Wolf",
  1320. parents: ["wolf"]
  1321. },
  1322. "ferromorph": {
  1323. name: "Ferromorph",
  1324. parents: ["construct"]
  1325. },
  1326. "meowth": {
  1327. name: "Meowth",
  1328. parents: ["cat", "pokemon"]
  1329. },
  1330. "pavodragon": {
  1331. name: "Pavodragon",
  1332. parents: ["dragon"]
  1333. },
  1334. "aaltranae": {
  1335. name: "Aaltranae",
  1336. parents: ["dragon"]
  1337. },
  1338. "cyborg": {
  1339. name: "Cyborg",
  1340. parents: ["machine"]
  1341. },
  1342. "draptor": {
  1343. name: "Draptor",
  1344. parents: ["dragon"]
  1345. },
  1346. "candy": {
  1347. name: "Candy",
  1348. parents: []
  1349. },
  1350. "drenath": {
  1351. name: "Drenath",
  1352. parents: ["dragon", "snake", "rabbit"]
  1353. },
  1354. "coyju": {
  1355. name: "Coyju",
  1356. parents: ["coyote", "kaiju"]
  1357. },
  1358. "kaiju": {
  1359. name: "Kaiju",
  1360. parents: ["monster"]
  1361. },
  1362. "nickit": {
  1363. name: "Nickit",
  1364. parents: ["pokemon", "cat"]
  1365. },
  1366. "lopunny": {
  1367. name: "Lopunny",
  1368. parents: ["pokemon", "rabbit"]
  1369. },
  1370. "korean-jindo-dog": {
  1371. name: "Korean Jindo Dog",
  1372. parents: ["dog"]
  1373. },
  1374. "naga": {
  1375. name: "Naga",
  1376. parents: ["snake", "monster"]
  1377. },
  1378. "undead": {
  1379. name: "Undead",
  1380. parents: ["monster"]
  1381. },
  1382. "whale": {
  1383. name: "Whale",
  1384. parents: ["fish"]
  1385. },
  1386. "gelato-bee": {
  1387. name: "Gelato Bee",
  1388. parents: ["bee"]
  1389. },
  1390. "bee": {
  1391. name: "Bee",
  1392. parents: ["insect"]
  1393. },
  1394. "gardevoir": {
  1395. name: "Gardevoir",
  1396. parents: ["pokemon"]
  1397. },
  1398. "ant": {
  1399. name: "Ant",
  1400. parents: ["insect"]
  1401. },
  1402. "frog": {
  1403. name: "Frog",
  1404. parents: ["amphibian"]
  1405. },
  1406. "amphibian": {
  1407. name: "Amphibian",
  1408. parents: ["animal"]
  1409. },
  1410. "pangolin": {
  1411. name: "Pangolin",
  1412. parents: ["mammal"]
  1413. },
  1414. "uragi'viidorn": {
  1415. name: "Uragi'viidorn",
  1416. parents: ["avian", "bear"]
  1417. },
  1418. "gryphdelphais": {
  1419. name: "Gryphdelphais",
  1420. parents: ["dolphin", "gryphon"]
  1421. },
  1422. "plush": {
  1423. name: "Plush",
  1424. parents: ["construct"]
  1425. },
  1426. "draiger": {
  1427. name: "Draiger",
  1428. parents: ["dragon","tiger"]
  1429. },
  1430. "foxsky": {
  1431. name: "Foxsky",
  1432. parents: ["fox", "husky"]
  1433. },
  1434. "umbreon": {
  1435. name: "Umbreon",
  1436. parents: ["eeveelution"]
  1437. },
  1438. "slime-dragon": {
  1439. name: "Slime Dragon",
  1440. parents: ["dragon"]
  1441. },
  1442. "enderman": {
  1443. name: "Enderman",
  1444. parents: ["monster"]
  1445. },
  1446. "gremlin": {
  1447. name: "Gremlin",
  1448. parents: ["monster"]
  1449. },
  1450. "dragonsune": {
  1451. name: "Dragonsune",
  1452. parents: ["dragon", "kitsune"]
  1453. },
  1454. "ghost": {
  1455. name: "Ghost",
  1456. parents: ["supernatural"]
  1457. },
  1458. "false-vampire-bat": {
  1459. name: "False Vampire Bat",
  1460. parents: ["bat"]
  1461. },
  1462. "succubus": {
  1463. name: "Succubus",
  1464. parents: ["demon"]
  1465. },
  1466. "mia": {
  1467. name: "Mia",
  1468. parents: ["canine"]
  1469. },
  1470. "rainbow": {
  1471. name: "Rainbow",
  1472. parents: ["monster"]
  1473. },
  1474. "solgaleo": {
  1475. name: "Solgaleo",
  1476. parents: ["pokemon"]
  1477. },
  1478. "lucent-nargacuga": {
  1479. name: "Lucent Nargacuga",
  1480. parents: ["monster-hunter"]
  1481. },
  1482. "monster-hunter": {
  1483. name: "Monster Hunter",
  1484. parents: ["monster"]
  1485. },
  1486. "leviathan": {
  1487. "name": "Leviathan",
  1488. "url": "sea-monster"
  1489. },
  1490. "bull": {
  1491. name: "Bull",
  1492. parents: ["mammal"]
  1493. },
  1494. "tanuki": {
  1495. name: "Tanuki",
  1496. parents: ["monster"]
  1497. },
  1498. "chakat": {
  1499. name: "Chakat",
  1500. parents: ["cat"]
  1501. },
  1502. "hydra": {
  1503. name: "Hydra",
  1504. parents: ["monster"]
  1505. },
  1506. "zigzagoon": {
  1507. name: "Zigzagoon",
  1508. parents: ["raccoon", "pokemon"]
  1509. },
  1510. "vulture": {
  1511. name: "Vulture",
  1512. parents: ["avian"]
  1513. },
  1514. "eastern-dragon": {
  1515. name: "Eastern Dragon",
  1516. parents: ["dragon"]
  1517. },
  1518. "gryffon": {
  1519. name: "Gryffon",
  1520. parents: ["phoenix", "red-panda"]
  1521. },
  1522. "amtsvane": {
  1523. name: "Amtsvane",
  1524. parents: ["reptile"]
  1525. },
  1526. "kigavi": {
  1527. name: "Kigavi",
  1528. parents: ["avian"]
  1529. },
  1530. "turian": {
  1531. name: "Turian",
  1532. parents: ["avian"]
  1533. },
  1534. "zeraora": {
  1535. name: "Zeraora",
  1536. parents: ["pokemon"]
  1537. },
  1538. "sandshrew": {
  1539. name: "Sandshrew",
  1540. parents: ["pokemon", "pangolin"]
  1541. },
  1542. "valais-blacknose-sheep": {
  1543. name: "Valais Blacknose Sheep",
  1544. parents: ["sheep"]
  1545. },
  1546. "novaleit": {
  1547. name: "Novaleit",
  1548. parents: ["mammal"]
  1549. },
  1550. "dunnoh": {
  1551. name: "Dunnoh",
  1552. parents: ["mammal"]
  1553. },
  1554. "lunaral-dragon": {
  1555. name: "Lunaral Dragon",
  1556. parents: ["dragon"]
  1557. },
  1558. "arctic-wolf": {
  1559. name: "Arctic Wolf",
  1560. parents: ["wolf"]
  1561. },
  1562. "donkey": {
  1563. name: "Donkey",
  1564. parents: ["horse"]
  1565. },
  1566. "chinchilla": {
  1567. name: "Chinchilla",
  1568. parents: ["rodent"]
  1569. },
  1570. "felkin": {
  1571. name: "Felkin",
  1572. parents: ["dragon"]
  1573. },
  1574. "tykeriel": {
  1575. name: "Tykeriel",
  1576. parents: ["avian"]
  1577. },
  1578. "folf": {
  1579. name: "Folf",
  1580. parents: ["fox", "wolf"]
  1581. },
  1582. "pooltoy": {
  1583. name: "Pooltoy",
  1584. parents: ["construct"]
  1585. },
  1586. "demi": {
  1587. name: "Demi",
  1588. parents: ["human"]
  1589. },
  1590. "stegosaurus": {
  1591. name: "Stegosaurus",
  1592. parents: ["dinosaur"]
  1593. },
  1594. "computer-virus": {
  1595. name: "Computer Virus",
  1596. parents: ["program"]
  1597. },
  1598. "program": {
  1599. name: "Program",
  1600. parents: ["construct"]
  1601. },
  1602. "space-springhare": {
  1603. name: "Space Springhare",
  1604. parents: ["rabbit"]
  1605. },
  1606. "river-drake": {
  1607. name: "River Drake",
  1608. parents: ["dragon"]
  1609. },
  1610. "djinn": {
  1611. "name": "Djinn",
  1612. "url": "supernatural"
  1613. },
  1614. "supernatural": {
  1615. name: "Supernatural",
  1616. parents: ["monster"]
  1617. },
  1618. }
  1619. //species
  1620. function getSpeciesInfo(speciesList) {
  1621. let result = new Set();
  1622. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1623. result.add(entry)
  1624. });
  1625. return Array.from(result);
  1626. };
  1627. function getSpeciesInfoHelper(species) {
  1628. if (!speciesData[species]) {
  1629. console.warn(species + " doesn't exist");
  1630. return [];
  1631. }
  1632. if (speciesData[species].parents) {
  1633. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1634. } else {
  1635. return [species];
  1636. }
  1637. }
  1638. characterMakers.push(() => makeCharacter(
  1639. {
  1640. name: "Fen",
  1641. species: ["crux"],
  1642. description: {
  1643. title: "Bio",
  1644. text: "Very furry. Sheds on everything."
  1645. },
  1646. tags: [
  1647. "anthro",
  1648. "goo"
  1649. ]
  1650. },
  1651. {
  1652. back: {
  1653. height: math.unit(2.2428, "meter"),
  1654. weight: math.unit(124.738, "kg"),
  1655. name: "Back",
  1656. image: {
  1657. source: "./media/characters/fen/back.svg",
  1658. extra: 2024 / 1867,
  1659. bottom: 13 / 2037
  1660. },
  1661. info: {
  1662. description: {
  1663. mode: "append",
  1664. text: "\n\nHe is not currently looking at you."
  1665. }
  1666. }
  1667. },
  1668. full: {
  1669. height: math.unit(1.34, "meter"),
  1670. weight: math.unit(225, "kg"),
  1671. name: "Full",
  1672. image: {
  1673. source: "./media/characters/fen/full.svg"
  1674. },
  1675. info: {
  1676. description: {
  1677. mode: "append",
  1678. text: "\n\nMunch."
  1679. }
  1680. }
  1681. },
  1682. kneeling: {
  1683. height: math.unit(5.4, "feet"),
  1684. weight: math.unit(124.738, "kg"),
  1685. name: "Kneeling",
  1686. image: {
  1687. source: "./media/characters/fen/kneeling.svg",
  1688. extra: 563 / 507
  1689. }
  1690. },
  1691. goo: {
  1692. height: math.unit(2.8, "feet"),
  1693. weight: math.unit(125, "kg"),
  1694. capacity: math.unit(1, "people"),
  1695. name: "Goo",
  1696. image: {
  1697. source: "./media/characters/fen/goo.svg",
  1698. bottom: 116 / 613
  1699. }
  1700. },
  1701. lounging: {
  1702. height: math.unit(6.5, "feet"),
  1703. weight: math.unit(125, "kg"),
  1704. name: "Lounging",
  1705. image: {
  1706. source: "./media/characters/fen/lounging.svg"
  1707. }
  1708. },
  1709. },
  1710. [
  1711. {
  1712. name: "Normal",
  1713. height: math.unit(2.2428, "meter")
  1714. },
  1715. {
  1716. name: "Big",
  1717. height: math.unit(12, "feet")
  1718. },
  1719. {
  1720. name: "Minimacro",
  1721. height: math.unit(40, "feet"),
  1722. default: true,
  1723. info: {
  1724. description: {
  1725. mode: "append",
  1726. text: "\n\nTOO DAMN BIG"
  1727. }
  1728. }
  1729. },
  1730. {
  1731. name: "Macro",
  1732. height: math.unit(100, "feet"),
  1733. info: {
  1734. description: {
  1735. mode: "append",
  1736. text: "\n\nTOO DAMN BIG"
  1737. }
  1738. }
  1739. },
  1740. {
  1741. name: "Macro+",
  1742. height: math.unit(300, "feet")
  1743. },
  1744. {
  1745. name: "Megamacro",
  1746. height: math.unit(2, "miles")
  1747. }
  1748. ]
  1749. ))
  1750. characterMakers.push(() => makeCharacter(
  1751. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1752. {
  1753. front: {
  1754. height: math.unit(183, "cm"),
  1755. weight: math.unit(80, "kg"),
  1756. name: "Front",
  1757. image: {
  1758. source: "./media/characters/sofia-fluttertail/front.svg",
  1759. bottom: 0.01,
  1760. extra: 2154 / 2081
  1761. }
  1762. },
  1763. frontAlt: {
  1764. height: math.unit(183, "cm"),
  1765. weight: math.unit(80, "kg"),
  1766. name: "Front (alt)",
  1767. image: {
  1768. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1769. }
  1770. },
  1771. back: {
  1772. height: math.unit(183, "cm"),
  1773. weight: math.unit(80, "kg"),
  1774. name: "Back",
  1775. image: {
  1776. source: "./media/characters/sofia-fluttertail/back.svg"
  1777. }
  1778. },
  1779. kneeling: {
  1780. height: math.unit(125, "cm"),
  1781. weight: math.unit(80, "kg"),
  1782. name: "Kneeling",
  1783. image: {
  1784. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1785. extra: 1033 / 977,
  1786. bottom: 23.7 / 1057
  1787. }
  1788. },
  1789. maw: {
  1790. height: math.unit(183 / 5, "cm"),
  1791. name: "Maw",
  1792. image: {
  1793. source: "./media/characters/sofia-fluttertail/maw.svg"
  1794. }
  1795. },
  1796. mawcloseup: {
  1797. height: math.unit(183 / 5 * 0.41, "cm"),
  1798. name: "Maw (Closeup)",
  1799. image: {
  1800. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1801. }
  1802. },
  1803. paws: {
  1804. height: math.unit(1.17, "feet"),
  1805. name: "Paws",
  1806. image: {
  1807. source: "./media/characters/sofia-fluttertail/paws.svg",
  1808. extra: 851 / 851,
  1809. bottom: 17 / 868
  1810. }
  1811. },
  1812. },
  1813. [
  1814. {
  1815. name: "Normal",
  1816. height: math.unit(1.83, "meter")
  1817. },
  1818. {
  1819. name: "Size Thief",
  1820. height: math.unit(18, "feet")
  1821. },
  1822. {
  1823. name: "50 Foot Collie",
  1824. height: math.unit(50, "feet")
  1825. },
  1826. {
  1827. name: "Macro",
  1828. height: math.unit(96, "feet"),
  1829. default: true
  1830. },
  1831. {
  1832. name: "Megamerger",
  1833. height: math.unit(650, "feet")
  1834. },
  1835. ]
  1836. ))
  1837. characterMakers.push(() => makeCharacter(
  1838. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1839. {
  1840. front: {
  1841. height: math.unit(7, "feet"),
  1842. weight: math.unit(100, "kg"),
  1843. name: "Front",
  1844. image: {
  1845. source: "./media/characters/march/front.svg",
  1846. extra: 1,
  1847. bottom: 0.015
  1848. }
  1849. },
  1850. foot: {
  1851. height: math.unit(0.9, "feet"),
  1852. name: "Foot",
  1853. image: {
  1854. source: "./media/characters/march/foot.svg"
  1855. }
  1856. },
  1857. },
  1858. [
  1859. {
  1860. name: "Normal",
  1861. height: math.unit(7.9, "feet")
  1862. },
  1863. {
  1864. name: "Macro",
  1865. height: math.unit(220, "meters")
  1866. },
  1867. {
  1868. name: "Megamacro",
  1869. height: math.unit(2.98, "km"),
  1870. default: true
  1871. },
  1872. {
  1873. name: "Gigamacro",
  1874. height: math.unit(15963, "km")
  1875. },
  1876. {
  1877. name: "Teramacro",
  1878. height: math.unit(2980000000, "km")
  1879. },
  1880. {
  1881. name: "Examacro",
  1882. height: math.unit(250, "parsecs")
  1883. },
  1884. ]
  1885. ))
  1886. characterMakers.push(() => makeCharacter(
  1887. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1888. {
  1889. front: {
  1890. height: math.unit(6, "feet"),
  1891. weight: math.unit(60, "kg"),
  1892. name: "Front",
  1893. image: {
  1894. source: "./media/characters/noir/front.svg",
  1895. extra: 1,
  1896. bottom: 0.032
  1897. }
  1898. },
  1899. },
  1900. [
  1901. {
  1902. name: "Normal",
  1903. height: math.unit(6.6, "feet")
  1904. },
  1905. {
  1906. name: "Macro",
  1907. height: math.unit(500, "feet")
  1908. },
  1909. {
  1910. name: "Megamacro",
  1911. height: math.unit(2.5, "km"),
  1912. default: true
  1913. },
  1914. {
  1915. name: "Gigamacro",
  1916. height: math.unit(22500, "km")
  1917. },
  1918. {
  1919. name: "Teramacro",
  1920. height: math.unit(2500000000, "km")
  1921. },
  1922. {
  1923. name: "Examacro",
  1924. height: math.unit(200, "parsecs")
  1925. },
  1926. ]
  1927. ))
  1928. characterMakers.push(() => makeCharacter(
  1929. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1930. {
  1931. front: {
  1932. height: math.unit(7, "feet"),
  1933. weight: math.unit(100, "kg"),
  1934. name: "Front",
  1935. image: {
  1936. source: "./media/characters/okuri/front.svg",
  1937. extra: 1,
  1938. bottom: 0.037
  1939. }
  1940. },
  1941. back: {
  1942. height: math.unit(7, "feet"),
  1943. weight: math.unit(100, "kg"),
  1944. name: "Back",
  1945. image: {
  1946. source: "./media/characters/okuri/back.svg",
  1947. extra: 1,
  1948. bottom: 0.007
  1949. }
  1950. },
  1951. },
  1952. [
  1953. {
  1954. name: "Megamacro",
  1955. height: math.unit(100, "miles"),
  1956. default: true
  1957. },
  1958. ]
  1959. ))
  1960. characterMakers.push(() => makeCharacter(
  1961. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1962. {
  1963. front: {
  1964. height: math.unit(7, "feet"),
  1965. weight: math.unit(100, "kg"),
  1966. name: "Front",
  1967. image: {
  1968. source: "./media/characters/manny/front.svg",
  1969. extra: 1,
  1970. bottom: 0.06
  1971. }
  1972. },
  1973. back: {
  1974. height: math.unit(7, "feet"),
  1975. weight: math.unit(100, "kg"),
  1976. name: "Back",
  1977. image: {
  1978. source: "./media/characters/manny/back.svg",
  1979. extra: 1,
  1980. bottom: 0.014
  1981. }
  1982. },
  1983. },
  1984. [
  1985. {
  1986. name: "Normal",
  1987. height: math.unit(7, "feet"),
  1988. },
  1989. {
  1990. name: "Macro",
  1991. height: math.unit(78, "feet"),
  1992. default: true
  1993. },
  1994. {
  1995. name: "Macro+",
  1996. height: math.unit(300, "meters")
  1997. },
  1998. {
  1999. name: "Macro++",
  2000. height: math.unit(2400, "meters")
  2001. },
  2002. {
  2003. name: "Megamacro",
  2004. height: math.unit(5167, "meters")
  2005. },
  2006. {
  2007. name: "Gigamacro",
  2008. height: math.unit(41769, "miles")
  2009. },
  2010. ]
  2011. ))
  2012. characterMakers.push(() => makeCharacter(
  2013. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2014. {
  2015. front: {
  2016. height: math.unit(7, "feet"),
  2017. weight: math.unit(100, "kg"),
  2018. name: "Front",
  2019. image: {
  2020. source: "./media/characters/adake/front-1.svg"
  2021. }
  2022. },
  2023. frontAlt: {
  2024. height: math.unit(7, "feet"),
  2025. weight: math.unit(100, "kg"),
  2026. name: "Front (Alt)",
  2027. image: {
  2028. source: "./media/characters/adake/front-2.svg",
  2029. extra: 1,
  2030. bottom: 0.01
  2031. }
  2032. },
  2033. back: {
  2034. height: math.unit(7, "feet"),
  2035. weight: math.unit(100, "kg"),
  2036. name: "Back",
  2037. image: {
  2038. source: "./media/characters/adake/back.svg",
  2039. }
  2040. },
  2041. kneel: {
  2042. height: math.unit(5.385, "feet"),
  2043. weight: math.unit(100, "kg"),
  2044. name: "Kneeling",
  2045. image: {
  2046. source: "./media/characters/adake/kneel.svg",
  2047. bottom: 0.052
  2048. }
  2049. },
  2050. },
  2051. [
  2052. {
  2053. name: "Normal",
  2054. height: math.unit(7, "feet"),
  2055. },
  2056. {
  2057. name: "Macro",
  2058. height: math.unit(78, "feet"),
  2059. default: true
  2060. },
  2061. {
  2062. name: "Macro+",
  2063. height: math.unit(300, "meters")
  2064. },
  2065. {
  2066. name: "Macro++",
  2067. height: math.unit(2400, "meters")
  2068. },
  2069. {
  2070. name: "Megamacro",
  2071. height: math.unit(5167, "meters")
  2072. },
  2073. {
  2074. name: "Gigamacro",
  2075. height: math.unit(41769, "miles")
  2076. },
  2077. ]
  2078. ))
  2079. characterMakers.push(() => makeCharacter(
  2080. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2081. {
  2082. front: {
  2083. height: math.unit(1.65, "meters"),
  2084. weight: math.unit(50, "kg"),
  2085. name: "Front",
  2086. image: {
  2087. source: "./media/characters/elijah/front.svg",
  2088. extra: 858 / 830,
  2089. bottom: 95.5 / 953.8559
  2090. }
  2091. },
  2092. back: {
  2093. height: math.unit(1.65, "meters"),
  2094. weight: math.unit(50, "kg"),
  2095. name: "Back",
  2096. image: {
  2097. source: "./media/characters/elijah/back.svg",
  2098. extra: 895 / 850,
  2099. bottom: 5.3 / 897.956
  2100. }
  2101. },
  2102. frontNsfw: {
  2103. height: math.unit(1.65, "meters"),
  2104. weight: math.unit(50, "kg"),
  2105. name: "Front (NSFW)",
  2106. image: {
  2107. source: "./media/characters/elijah/front-nsfw.svg",
  2108. extra: 858 / 830,
  2109. bottom: 95.5 / 953.8559
  2110. }
  2111. },
  2112. backNsfw: {
  2113. height: math.unit(1.65, "meters"),
  2114. weight: math.unit(50, "kg"),
  2115. name: "Back (NSFW)",
  2116. image: {
  2117. source: "./media/characters/elijah/back-nsfw.svg",
  2118. extra: 895 / 850,
  2119. bottom: 5.3 / 897.956
  2120. }
  2121. },
  2122. dick: {
  2123. height: math.unit(1, "feet"),
  2124. name: "Dick",
  2125. image: {
  2126. source: "./media/characters/elijah/dick.svg"
  2127. }
  2128. },
  2129. beakOpen: {
  2130. height: math.unit(1.25, "feet"),
  2131. name: "Beak (Open)",
  2132. image: {
  2133. source: "./media/characters/elijah/beak-open.svg"
  2134. }
  2135. },
  2136. beakShut: {
  2137. height: math.unit(1.25, "feet"),
  2138. name: "Beak (Shut)",
  2139. image: {
  2140. source: "./media/characters/elijah/beak-shut.svg"
  2141. }
  2142. },
  2143. footFlexing: {
  2144. height: math.unit(1.61, "feet"),
  2145. name: "Foot (Flexing)",
  2146. image: {
  2147. source: "./media/characters/elijah/foot-flexing.svg"
  2148. }
  2149. },
  2150. footStepping: {
  2151. height: math.unit(1.44, "feet"),
  2152. name: "Foot (Stepping)",
  2153. image: {
  2154. source: "./media/characters/elijah/foot-stepping.svg"
  2155. }
  2156. },
  2157. plantigradeLeg: {
  2158. height: math.unit(2.34, "feet"),
  2159. name: "Plantigrade Leg",
  2160. image: {
  2161. source: "./media/characters/elijah/plantigrade-leg.svg"
  2162. }
  2163. },
  2164. plantigradeFootLeft: {
  2165. height: math.unit(0.9, "feet"),
  2166. name: "Plantigrade Foot (Left)",
  2167. image: {
  2168. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2169. }
  2170. },
  2171. plantigradeFootRight: {
  2172. height: math.unit(0.9, "feet"),
  2173. name: "Plantigrade Foot (Right)",
  2174. image: {
  2175. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2176. }
  2177. },
  2178. },
  2179. [
  2180. {
  2181. name: "Normal",
  2182. height: math.unit(1.65, "meters")
  2183. },
  2184. {
  2185. name: "Macro",
  2186. height: math.unit(55, "meters"),
  2187. default: true
  2188. },
  2189. {
  2190. name: "Macro+",
  2191. height: math.unit(105, "meters")
  2192. },
  2193. ]
  2194. ))
  2195. characterMakers.push(() => makeCharacter(
  2196. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2197. {
  2198. front: {
  2199. height: math.unit(11, "feet"),
  2200. weight: math.unit(320, "kg"),
  2201. name: "Front",
  2202. image: {
  2203. source: "./media/characters/rai/front.svg",
  2204. extra: 1802/1696,
  2205. bottom: 68/1870
  2206. }
  2207. },
  2208. frontDressed: {
  2209. height: math.unit(11, "feet"),
  2210. weight: math.unit(320, "kg"),
  2211. name: "Front (Dressed)",
  2212. image: {
  2213. source: "./media/characters/rai/front-dressed.svg",
  2214. extra: 1802/1696,
  2215. bottom: 68/1870
  2216. }
  2217. },
  2218. side: {
  2219. height: math.unit(11, "feet"),
  2220. weight: math.unit(320, "kg"),
  2221. name: "Side",
  2222. image: {
  2223. source: "./media/characters/rai/side.svg",
  2224. extra: 1789/1710,
  2225. bottom: 115/1904
  2226. }
  2227. },
  2228. back: {
  2229. height: math.unit(11, "feet"),
  2230. weight: math.unit(320, "kg"),
  2231. name: "Back",
  2232. image: {
  2233. source: "./media/characters/rai/back.svg",
  2234. extra: 1770/1707,
  2235. bottom: 28/1798
  2236. }
  2237. },
  2238. feral: {
  2239. height: math.unit(11, "feet"),
  2240. weight: math.unit(640, "kg"),
  2241. name: "Feral",
  2242. image: {
  2243. source: "./media/characters/rai/feral.svg",
  2244. extra: 1035/642,
  2245. bottom: 86/1121
  2246. }
  2247. },
  2248. dragon: {
  2249. height: math.unit(23, "feet"),
  2250. weight: math.unit(50000, "lb"),
  2251. name: "Dragon",
  2252. image: {
  2253. source: "./media/characters/rai/dragon.svg",
  2254. extra: 2498 / 2030,
  2255. bottom: 85.2 / 2584
  2256. }
  2257. },
  2258. maw: {
  2259. height: math.unit(6 / 3.81416, "feet"),
  2260. name: "Maw",
  2261. image: {
  2262. source: "./media/characters/rai/maw.svg"
  2263. }
  2264. },
  2265. },
  2266. [
  2267. {
  2268. name: "Normal",
  2269. height: math.unit(11, "feet")
  2270. },
  2271. {
  2272. name: "Macro",
  2273. height: math.unit(302, "feet"),
  2274. default: true
  2275. },
  2276. ]
  2277. ))
  2278. characterMakers.push(() => makeCharacter(
  2279. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2280. {
  2281. frontDressed: {
  2282. height: math.unit(216, "feet"),
  2283. weight: math.unit(7000000, "lb"),
  2284. name: "Front (Dressed)",
  2285. image: {
  2286. source: "./media/characters/jazzy/front-dressed.svg",
  2287. extra: 2738 / 2651,
  2288. bottom: 41.8 / 2786
  2289. }
  2290. },
  2291. backDressed: {
  2292. height: math.unit(216, "feet"),
  2293. weight: math.unit(7000000, "lb"),
  2294. name: "Back (Dressed)",
  2295. image: {
  2296. source: "./media/characters/jazzy/back-dressed.svg",
  2297. extra: 2775 / 2673,
  2298. bottom: 36.8 / 2817
  2299. }
  2300. },
  2301. front: {
  2302. height: math.unit(216, "feet"),
  2303. weight: math.unit(7000000, "lb"),
  2304. name: "Front",
  2305. image: {
  2306. source: "./media/characters/jazzy/front.svg",
  2307. extra: 2738 / 2651,
  2308. bottom: 41.8 / 2786
  2309. }
  2310. },
  2311. back: {
  2312. height: math.unit(216, "feet"),
  2313. weight: math.unit(7000000, "lb"),
  2314. name: "Back",
  2315. image: {
  2316. source: "./media/characters/jazzy/back.svg",
  2317. extra: 2775 / 2673,
  2318. bottom: 36.8 / 2817
  2319. }
  2320. },
  2321. maw: {
  2322. height: math.unit(20, "feet"),
  2323. name: "Maw",
  2324. image: {
  2325. source: "./media/characters/jazzy/maw.svg"
  2326. }
  2327. },
  2328. paws: {
  2329. height: math.unit(27.5, "feet"),
  2330. name: "Paws",
  2331. image: {
  2332. source: "./media/characters/jazzy/paws.svg"
  2333. }
  2334. },
  2335. eye: {
  2336. height: math.unit(4.4, "feet"),
  2337. name: "Eye",
  2338. image: {
  2339. source: "./media/characters/jazzy/eye.svg"
  2340. }
  2341. },
  2342. droneOffense: {
  2343. height: math.unit(9.5, "inches"),
  2344. name: "Drone (Offense)",
  2345. image: {
  2346. source: "./media/characters/jazzy/drone-offense.svg"
  2347. }
  2348. },
  2349. droneRecon: {
  2350. height: math.unit(9.5, "inches"),
  2351. name: "Drone (Recon)",
  2352. image: {
  2353. source: "./media/characters/jazzy/drone-recon.svg"
  2354. }
  2355. },
  2356. droneDefense: {
  2357. height: math.unit(9.5, "inches"),
  2358. name: "Drone (Defense)",
  2359. image: {
  2360. source: "./media/characters/jazzy/drone-defense.svg"
  2361. }
  2362. },
  2363. },
  2364. [
  2365. {
  2366. name: "Macro",
  2367. height: math.unit(216, "feet"),
  2368. default: true
  2369. },
  2370. ]
  2371. ))
  2372. characterMakers.push(() => makeCharacter(
  2373. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2374. {
  2375. front: {
  2376. height: math.unit(9 + 6/12, "feet"),
  2377. weight: math.unit(700, "lb"),
  2378. name: "Front",
  2379. image: {
  2380. source: "./media/characters/flamm/front.svg",
  2381. extra: 1751/1632,
  2382. bottom: 46/1797
  2383. }
  2384. },
  2385. buff: {
  2386. height: math.unit(9 + 6/12, "feet"),
  2387. weight: math.unit(950, "lb"),
  2388. name: "Buff",
  2389. image: {
  2390. source: "./media/characters/flamm/buff.svg",
  2391. extra: 3018/2874,
  2392. bottom: 221/3239
  2393. }
  2394. },
  2395. },
  2396. [
  2397. {
  2398. name: "Normal",
  2399. height: math.unit(9.5, "feet")
  2400. },
  2401. {
  2402. name: "Macro",
  2403. height: math.unit(200, "feet"),
  2404. default: true
  2405. },
  2406. ]
  2407. ))
  2408. characterMakers.push(() => makeCharacter(
  2409. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2410. {
  2411. front: {
  2412. height: math.unit(5 + 3/12, "feet"),
  2413. weight: math.unit(60, "kg"),
  2414. name: "Front",
  2415. image: {
  2416. source: "./media/characters/zephiro/front.svg",
  2417. extra: 2309 / 2162,
  2418. bottom: 0.069
  2419. }
  2420. },
  2421. side: {
  2422. height: math.unit(5 + 3/12, "feet"),
  2423. weight: math.unit(60, "kg"),
  2424. name: "Side",
  2425. image: {
  2426. source: "./media/characters/zephiro/side.svg",
  2427. extra: 2403 / 2279,
  2428. bottom: 0.015
  2429. }
  2430. },
  2431. back: {
  2432. height: math.unit(5 + 3/12, "feet"),
  2433. weight: math.unit(60, "kg"),
  2434. name: "Back",
  2435. image: {
  2436. source: "./media/characters/zephiro/back.svg",
  2437. extra: 2373 / 2244,
  2438. bottom: 0.013
  2439. }
  2440. },
  2441. hand: {
  2442. height: math.unit(0.68, "feet"),
  2443. name: "Hand",
  2444. image: {
  2445. source: "./media/characters/zephiro/hand.svg"
  2446. }
  2447. },
  2448. paw: {
  2449. height: math.unit(1, "feet"),
  2450. name: "Paw",
  2451. image: {
  2452. source: "./media/characters/zephiro/paw.svg"
  2453. }
  2454. },
  2455. beans: {
  2456. height: math.unit(0.93, "feet"),
  2457. name: "Beans",
  2458. image: {
  2459. source: "./media/characters/zephiro/beans.svg"
  2460. }
  2461. },
  2462. },
  2463. [
  2464. {
  2465. name: "Micro",
  2466. height: math.unit(3, "inches")
  2467. },
  2468. {
  2469. name: "Normal",
  2470. height: math.unit(5 + 3 / 12, "feet"),
  2471. default: true
  2472. },
  2473. {
  2474. name: "Macro",
  2475. height: math.unit(118, "feet")
  2476. },
  2477. ]
  2478. ))
  2479. characterMakers.push(() => makeCharacter(
  2480. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2481. {
  2482. front: {
  2483. height: math.unit(5, "feet"),
  2484. weight: math.unit(90, "kg"),
  2485. name: "Front",
  2486. image: {
  2487. source: "./media/characters/fory/front.svg",
  2488. extra: 2862 / 2674,
  2489. bottom: 180 / 3043.8
  2490. }
  2491. },
  2492. back: {
  2493. height: math.unit(5, "feet"),
  2494. weight: math.unit(90, "kg"),
  2495. name: "Back",
  2496. image: {
  2497. source: "./media/characters/fory/back.svg",
  2498. extra: 2962 / 2791,
  2499. bottom: 106 / 3071.8
  2500. }
  2501. },
  2502. foot: {
  2503. height: math.unit(2.14, "feet"),
  2504. name: "Foot",
  2505. image: {
  2506. source: "./media/characters/fory/foot.svg"
  2507. }
  2508. },
  2509. },
  2510. [
  2511. {
  2512. name: "Normal",
  2513. height: math.unit(5, "feet")
  2514. },
  2515. {
  2516. name: "Macro",
  2517. height: math.unit(50, "feet"),
  2518. default: true
  2519. },
  2520. {
  2521. name: "Megamacro",
  2522. height: math.unit(10, "miles")
  2523. },
  2524. {
  2525. name: "Gigamacro",
  2526. height: math.unit(5, "earths")
  2527. },
  2528. ]
  2529. ))
  2530. characterMakers.push(() => makeCharacter(
  2531. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2532. {
  2533. front: {
  2534. height: math.unit(7, "feet"),
  2535. weight: math.unit(90, "kg"),
  2536. name: "Front",
  2537. image: {
  2538. source: "./media/characters/kurrikage/front.svg",
  2539. extra: 1,
  2540. bottom: 0.035
  2541. }
  2542. },
  2543. back: {
  2544. height: math.unit(7, "feet"),
  2545. weight: math.unit(90, "lb"),
  2546. name: "Back",
  2547. image: {
  2548. source: "./media/characters/kurrikage/back.svg"
  2549. }
  2550. },
  2551. paw: {
  2552. height: math.unit(1.5, "feet"),
  2553. name: "Paw",
  2554. image: {
  2555. source: "./media/characters/kurrikage/paw.svg"
  2556. }
  2557. },
  2558. staff: {
  2559. height: math.unit(6.7, "feet"),
  2560. name: "Staff",
  2561. image: {
  2562. source: "./media/characters/kurrikage/staff.svg"
  2563. }
  2564. },
  2565. peek: {
  2566. height: math.unit(1.05, "feet"),
  2567. name: "Peeking",
  2568. image: {
  2569. source: "./media/characters/kurrikage/peek.svg",
  2570. bottom: 0.08
  2571. }
  2572. },
  2573. },
  2574. [
  2575. {
  2576. name: "Normal",
  2577. height: math.unit(12, "feet"),
  2578. default: true
  2579. },
  2580. {
  2581. name: "Big",
  2582. height: math.unit(20, "feet")
  2583. },
  2584. {
  2585. name: "Macro",
  2586. height: math.unit(500, "feet")
  2587. },
  2588. {
  2589. name: "Megamacro",
  2590. height: math.unit(20, "miles")
  2591. },
  2592. ]
  2593. ))
  2594. characterMakers.push(() => makeCharacter(
  2595. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2596. {
  2597. front: {
  2598. height: math.unit(6, "feet"),
  2599. weight: math.unit(75, "kg"),
  2600. name: "Front",
  2601. image: {
  2602. source: "./media/characters/shingo/front.svg",
  2603. extra: 706/681,
  2604. bottom: 11/717
  2605. }
  2606. },
  2607. frontAlt: {
  2608. height: math.unit(6, "feet"),
  2609. weight: math.unit(75, "kg"),
  2610. name: "Front (Alt)",
  2611. image: {
  2612. source: "./media/characters/shingo/front-alt.svg",
  2613. extra: 3511 / 3338,
  2614. bottom: 0.005
  2615. }
  2616. },
  2617. paw: {
  2618. height: math.unit(1, "feet"),
  2619. name: "Paw",
  2620. image: {
  2621. source: "./media/characters/shingo/paw.svg"
  2622. }
  2623. },
  2624. },
  2625. [
  2626. {
  2627. name: "Micro",
  2628. height: math.unit(4, "inches")
  2629. },
  2630. {
  2631. name: "Normal",
  2632. height: math.unit(6, "feet"),
  2633. default: true
  2634. },
  2635. {
  2636. name: "Macro",
  2637. height: math.unit(108, "feet")
  2638. },
  2639. {
  2640. name: "Macro+",
  2641. height: math.unit(1500, "feet")
  2642. },
  2643. ]
  2644. ))
  2645. characterMakers.push(() => makeCharacter(
  2646. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2647. {
  2648. side: {
  2649. height: math.unit(6, "feet"),
  2650. weight: math.unit(75, "kg"),
  2651. name: "Side",
  2652. image: {
  2653. source: "./media/characters/aigey/side.svg"
  2654. }
  2655. },
  2656. },
  2657. [
  2658. {
  2659. name: "Macro",
  2660. height: math.unit(200, "feet"),
  2661. default: true
  2662. },
  2663. {
  2664. name: "Megamacro",
  2665. height: math.unit(100, "miles")
  2666. },
  2667. ]
  2668. )
  2669. )
  2670. characterMakers.push(() => makeCharacter(
  2671. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2672. {
  2673. front: {
  2674. height: math.unit(5 + 5 / 12, "feet"),
  2675. weight: math.unit(75, "kg"),
  2676. name: "Front",
  2677. image: {
  2678. source: "./media/characters/natasha/front.svg",
  2679. extra: 859 / 824,
  2680. bottom: 23 / 879.6
  2681. }
  2682. },
  2683. frontNsfw: {
  2684. height: math.unit(5 + 5 / 12, "feet"),
  2685. weight: math.unit(75, "kg"),
  2686. name: "Front (NSFW)",
  2687. image: {
  2688. source: "./media/characters/natasha/front-nsfw.svg",
  2689. extra: 859 / 824,
  2690. bottom: 23 / 879.6
  2691. }
  2692. },
  2693. frontErect: {
  2694. height: math.unit(5 + 5 / 12, "feet"),
  2695. weight: math.unit(75, "kg"),
  2696. name: "Front (Erect)",
  2697. image: {
  2698. source: "./media/characters/natasha/front-erect.svg",
  2699. extra: 859 / 824,
  2700. bottom: 23 / 879.6
  2701. }
  2702. },
  2703. back: {
  2704. height: math.unit(5 + 5 / 12, "feet"),
  2705. weight: math.unit(75, "kg"),
  2706. name: "Back",
  2707. image: {
  2708. source: "./media/characters/natasha/back.svg",
  2709. extra: 887.9 / 852.6,
  2710. bottom: 9.7 / 896.4
  2711. }
  2712. },
  2713. backAlt: {
  2714. height: math.unit(5 + 5 / 12, "feet"),
  2715. weight: math.unit(75, "kg"),
  2716. name: "Back (Alt)",
  2717. image: {
  2718. source: "./media/characters/natasha/back-alt.svg",
  2719. extra: 1236.7 / 1192,
  2720. bottom: 22.3 / 1258.2
  2721. }
  2722. },
  2723. dick: {
  2724. height: math.unit(1.772, "feet"),
  2725. name: "Dick",
  2726. image: {
  2727. source: "./media/characters/natasha/dick.svg"
  2728. }
  2729. },
  2730. paw: {
  2731. height: math.unit(0.250, "meters"),
  2732. name: "Paw",
  2733. image: {
  2734. source: "./media/characters/natasha/paw.svg"
  2735. }
  2736. },
  2737. },
  2738. [
  2739. {
  2740. name: "Normal",
  2741. height: math.unit(5 + 5 / 12, "feet")
  2742. },
  2743. {
  2744. name: "Large",
  2745. height: math.unit(12, "feet")
  2746. },
  2747. {
  2748. name: "Macro",
  2749. height: math.unit(100, "feet"),
  2750. default: true
  2751. },
  2752. {
  2753. name: "Macro+",
  2754. height: math.unit(260, "feet")
  2755. },
  2756. {
  2757. name: "Macro++",
  2758. height: math.unit(1, "mile")
  2759. },
  2760. ]
  2761. ))
  2762. characterMakers.push(() => makeCharacter(
  2763. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2764. {
  2765. front: {
  2766. height: math.unit(6, "feet"),
  2767. weight: math.unit(75, "kg"),
  2768. name: "Front",
  2769. image: {
  2770. source: "./media/characters/malik/front.svg"
  2771. }
  2772. },
  2773. side: {
  2774. height: math.unit(6, "feet"),
  2775. weight: math.unit(75, "kg"),
  2776. name: "Side",
  2777. image: {
  2778. source: "./media/characters/malik/side.svg",
  2779. extra: 1.1539
  2780. }
  2781. },
  2782. back: {
  2783. height: math.unit(6, "feet"),
  2784. weight: math.unit(75, "kg"),
  2785. name: "Back",
  2786. image: {
  2787. source: "./media/characters/malik/back.svg"
  2788. }
  2789. },
  2790. },
  2791. [
  2792. {
  2793. name: "Macro",
  2794. height: math.unit(156, "feet"),
  2795. default: true
  2796. },
  2797. {
  2798. name: "Macro+",
  2799. height: math.unit(1188, "feet")
  2800. },
  2801. ]
  2802. ))
  2803. characterMakers.push(() => makeCharacter(
  2804. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2805. {
  2806. front: {
  2807. height: math.unit(6, "feet"),
  2808. weight: math.unit(75, "kg"),
  2809. name: "Front",
  2810. image: {
  2811. source: "./media/characters/sefer/front.svg",
  2812. extra: 848 / 659,
  2813. bottom: 28.3 / 876.442
  2814. }
  2815. },
  2816. back: {
  2817. height: math.unit(6, "feet"),
  2818. weight: math.unit(75, "kg"),
  2819. name: "Back",
  2820. image: {
  2821. source: "./media/characters/sefer/back.svg",
  2822. extra: 864 / 695,
  2823. bottom: 10 / 871
  2824. }
  2825. },
  2826. frontDressed: {
  2827. height: math.unit(6, "feet"),
  2828. weight: math.unit(75, "kg"),
  2829. name: "Front (Dressed)",
  2830. image: {
  2831. source: "./media/characters/sefer/front-dressed.svg",
  2832. extra: 839 / 653,
  2833. bottom: 37.6 / 878
  2834. }
  2835. },
  2836. },
  2837. [
  2838. {
  2839. name: "Normal",
  2840. height: math.unit(6, "feet"),
  2841. default: true
  2842. },
  2843. ]
  2844. ))
  2845. characterMakers.push(() => makeCharacter(
  2846. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2847. {
  2848. body: {
  2849. height: math.unit(2.2428, "meter"),
  2850. weight: math.unit(124.738, "kg"),
  2851. name: "Body",
  2852. image: {
  2853. extra: 1225 / 1050,
  2854. source: "./media/characters/north/front.svg"
  2855. }
  2856. }
  2857. },
  2858. [
  2859. {
  2860. name: "Micro",
  2861. height: math.unit(4, "inches")
  2862. },
  2863. {
  2864. name: "Macro",
  2865. height: math.unit(63, "meters")
  2866. },
  2867. {
  2868. name: "Megamacro",
  2869. height: math.unit(101, "miles"),
  2870. default: true
  2871. }
  2872. ]
  2873. ))
  2874. characterMakers.push(() => makeCharacter(
  2875. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2876. {
  2877. angled: {
  2878. height: math.unit(4, "meter"),
  2879. weight: math.unit(150, "kg"),
  2880. name: "Angled",
  2881. image: {
  2882. source: "./media/characters/talan/angled-sfw.svg",
  2883. bottom: 29 / 3734
  2884. }
  2885. },
  2886. angledNsfw: {
  2887. height: math.unit(4, "meter"),
  2888. weight: math.unit(150, "kg"),
  2889. name: "Angled (NSFW)",
  2890. image: {
  2891. source: "./media/characters/talan/angled-nsfw.svg",
  2892. bottom: 29 / 3734
  2893. }
  2894. },
  2895. frontNsfw: {
  2896. height: math.unit(4, "meter"),
  2897. weight: math.unit(150, "kg"),
  2898. name: "Front (NSFW)",
  2899. image: {
  2900. source: "./media/characters/talan/front-nsfw.svg",
  2901. bottom: 29 / 3734
  2902. }
  2903. },
  2904. sideNsfw: {
  2905. height: math.unit(4, "meter"),
  2906. weight: math.unit(150, "kg"),
  2907. name: "Side (NSFW)",
  2908. image: {
  2909. source: "./media/characters/talan/side-nsfw.svg",
  2910. bottom: 29 / 3734
  2911. }
  2912. },
  2913. back: {
  2914. height: math.unit(4, "meter"),
  2915. weight: math.unit(150, "kg"),
  2916. name: "Back",
  2917. image: {
  2918. source: "./media/characters/talan/back.svg"
  2919. }
  2920. },
  2921. dickBottom: {
  2922. height: math.unit(0.621, "meter"),
  2923. name: "Dick (Bottom)",
  2924. image: {
  2925. source: "./media/characters/talan/dick-bottom.svg"
  2926. }
  2927. },
  2928. dickTop: {
  2929. height: math.unit(0.621, "meter"),
  2930. name: "Dick (Top)",
  2931. image: {
  2932. source: "./media/characters/talan/dick-top.svg"
  2933. }
  2934. },
  2935. dickSide: {
  2936. height: math.unit(0.305, "meter"),
  2937. name: "Dick (Side)",
  2938. image: {
  2939. source: "./media/characters/talan/dick-side.svg"
  2940. }
  2941. },
  2942. dickFront: {
  2943. height: math.unit(0.305, "meter"),
  2944. name: "Dick (Front)",
  2945. image: {
  2946. source: "./media/characters/talan/dick-front.svg"
  2947. }
  2948. },
  2949. },
  2950. [
  2951. {
  2952. name: "Normal",
  2953. height: math.unit(4, "meters")
  2954. },
  2955. {
  2956. name: "Macro",
  2957. height: math.unit(100, "meters")
  2958. },
  2959. {
  2960. name: "Megamacro",
  2961. height: math.unit(2, "miles"),
  2962. default: true
  2963. },
  2964. {
  2965. name: "Gigamacro",
  2966. height: math.unit(5000, "miles")
  2967. },
  2968. {
  2969. name: "Teramacro",
  2970. height: math.unit(100, "parsecs")
  2971. }
  2972. ]
  2973. ))
  2974. characterMakers.push(() => makeCharacter(
  2975. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2976. {
  2977. front: {
  2978. height: math.unit(2, "meter"),
  2979. weight: math.unit(90, "kg"),
  2980. name: "Front",
  2981. image: {
  2982. source: "./media/characters/gael'rathus/front.svg"
  2983. }
  2984. },
  2985. frontAlt: {
  2986. height: math.unit(2, "meter"),
  2987. weight: math.unit(90, "kg"),
  2988. name: "Front (alt)",
  2989. image: {
  2990. source: "./media/characters/gael'rathus/front-alt.svg"
  2991. }
  2992. },
  2993. frontAlt2: {
  2994. height: math.unit(2, "meter"),
  2995. weight: math.unit(90, "kg"),
  2996. name: "Front (alt 2)",
  2997. image: {
  2998. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2999. }
  3000. }
  3001. },
  3002. [
  3003. {
  3004. name: "Normal",
  3005. height: math.unit(9, "feet"),
  3006. default: true
  3007. },
  3008. {
  3009. name: "Large",
  3010. height: math.unit(25, "feet")
  3011. },
  3012. {
  3013. name: "Macro",
  3014. height: math.unit(0.25, "miles")
  3015. },
  3016. {
  3017. name: "Megamacro",
  3018. height: math.unit(10, "miles")
  3019. }
  3020. ]
  3021. ))
  3022. characterMakers.push(() => makeCharacter(
  3023. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3024. {
  3025. side: {
  3026. height: math.unit(2, "meter"),
  3027. weight: math.unit(140, "kg"),
  3028. name: "Side",
  3029. image: {
  3030. source: "./media/characters/sosha/side.svg",
  3031. bottom: 0.042
  3032. }
  3033. },
  3034. },
  3035. [
  3036. {
  3037. name: "Normal",
  3038. height: math.unit(12, "feet"),
  3039. default: true
  3040. }
  3041. ]
  3042. ))
  3043. characterMakers.push(() => makeCharacter(
  3044. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3045. {
  3046. side: {
  3047. height: math.unit(5 + 5 / 12, "feet"),
  3048. weight: math.unit(170, "kg"),
  3049. name: "Side",
  3050. image: {
  3051. source: "./media/characters/runnola/side.svg",
  3052. extra: 741 / 448,
  3053. bottom: 0.05
  3054. }
  3055. },
  3056. },
  3057. [
  3058. {
  3059. name: "Small",
  3060. height: math.unit(3, "feet")
  3061. },
  3062. {
  3063. name: "Normal",
  3064. height: math.unit(5 + 5 / 12, "feet"),
  3065. default: true
  3066. },
  3067. {
  3068. name: "Big",
  3069. height: math.unit(10, "feet")
  3070. },
  3071. ]
  3072. ))
  3073. characterMakers.push(() => makeCharacter(
  3074. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3075. {
  3076. front: {
  3077. height: math.unit(2, "meter"),
  3078. weight: math.unit(50, "kg"),
  3079. name: "Front",
  3080. image: {
  3081. source: "./media/characters/kurribird/front.svg",
  3082. bottom: 0.015
  3083. }
  3084. },
  3085. frontAlt: {
  3086. height: math.unit(1.5, "meter"),
  3087. weight: math.unit(50, "kg"),
  3088. name: "Front (Alt)",
  3089. image: {
  3090. source: "./media/characters/kurribird/front-alt.svg",
  3091. extra: 1.45
  3092. }
  3093. },
  3094. },
  3095. [
  3096. {
  3097. name: "Normal",
  3098. height: math.unit(7, "feet")
  3099. },
  3100. {
  3101. name: "Big",
  3102. height: math.unit(12, "feet"),
  3103. default: true
  3104. },
  3105. {
  3106. name: "Macro",
  3107. height: math.unit(1500, "feet")
  3108. },
  3109. {
  3110. name: "Megamacro",
  3111. height: math.unit(2, "miles")
  3112. }
  3113. ]
  3114. ))
  3115. characterMakers.push(() => makeCharacter(
  3116. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3117. {
  3118. front: {
  3119. height: math.unit(2, "meter"),
  3120. weight: math.unit(80, "kg"),
  3121. name: "Front",
  3122. image: {
  3123. source: "./media/characters/elbial/front.svg",
  3124. extra: 1643 / 1556,
  3125. bottom: 60.2 / 1696
  3126. }
  3127. },
  3128. side: {
  3129. height: math.unit(2, "meter"),
  3130. weight: math.unit(80, "kg"),
  3131. name: "Side",
  3132. image: {
  3133. source: "./media/characters/elbial/side.svg",
  3134. extra: 1630 / 1565,
  3135. bottom: 71.5 / 1697
  3136. }
  3137. },
  3138. back: {
  3139. height: math.unit(2, "meter"),
  3140. weight: math.unit(80, "kg"),
  3141. name: "Back",
  3142. image: {
  3143. source: "./media/characters/elbial/back.svg",
  3144. extra: 1668 / 1595,
  3145. bottom: 5.6 / 1672
  3146. }
  3147. },
  3148. frontDressed: {
  3149. height: math.unit(2, "meter"),
  3150. weight: math.unit(80, "kg"),
  3151. name: "Front (Dressed)",
  3152. image: {
  3153. source: "./media/characters/elbial/front-dressed.svg",
  3154. extra: 1653 / 1584,
  3155. bottom: 57 / 1708
  3156. }
  3157. },
  3158. genitals: {
  3159. height: math.unit(2 / 3.367, "meter"),
  3160. name: "Genitals",
  3161. image: {
  3162. source: "./media/characters/elbial/genitals.svg"
  3163. }
  3164. },
  3165. },
  3166. [
  3167. {
  3168. name: "Large",
  3169. height: math.unit(100, "feet")
  3170. },
  3171. {
  3172. name: "Macro",
  3173. height: math.unit(500, "feet"),
  3174. default: true
  3175. },
  3176. {
  3177. name: "Megamacro",
  3178. height: math.unit(10, "miles")
  3179. },
  3180. {
  3181. name: "Gigamacro",
  3182. height: math.unit(25000, "miles")
  3183. },
  3184. {
  3185. name: "Full-Size",
  3186. height: math.unit(8000000, "gigaparsecs")
  3187. }
  3188. ]
  3189. ))
  3190. characterMakers.push(() => makeCharacter(
  3191. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3192. {
  3193. front: {
  3194. height: math.unit(2, "meter"),
  3195. weight: math.unit(60, "kg"),
  3196. name: "Front",
  3197. image: {
  3198. source: "./media/characters/noah/front.svg"
  3199. }
  3200. },
  3201. talons: {
  3202. height: math.unit(0.315, "meter"),
  3203. name: "Talons",
  3204. image: {
  3205. source: "./media/characters/noah/talons.svg"
  3206. }
  3207. }
  3208. },
  3209. [
  3210. {
  3211. name: "Large",
  3212. height: math.unit(50, "feet")
  3213. },
  3214. {
  3215. name: "Macro",
  3216. height: math.unit(750, "feet"),
  3217. default: true
  3218. },
  3219. {
  3220. name: "Megamacro",
  3221. height: math.unit(50, "miles")
  3222. },
  3223. {
  3224. name: "Gigamacro",
  3225. height: math.unit(100000, "miles")
  3226. },
  3227. {
  3228. name: "Full-Size",
  3229. height: math.unit(3000000000, "miles")
  3230. }
  3231. ]
  3232. ))
  3233. characterMakers.push(() => makeCharacter(
  3234. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3235. {
  3236. front: {
  3237. height: math.unit(2, "meter"),
  3238. weight: math.unit(80, "kg"),
  3239. name: "Front",
  3240. image: {
  3241. source: "./media/characters/natalya/front.svg"
  3242. }
  3243. },
  3244. back: {
  3245. height: math.unit(2, "meter"),
  3246. weight: math.unit(80, "kg"),
  3247. name: "Back",
  3248. image: {
  3249. source: "./media/characters/natalya/back.svg"
  3250. }
  3251. }
  3252. },
  3253. [
  3254. {
  3255. name: "Normal",
  3256. height: math.unit(150, "feet"),
  3257. default: true
  3258. },
  3259. {
  3260. name: "Megamacro",
  3261. height: math.unit(5, "miles")
  3262. },
  3263. {
  3264. name: "Full-Size",
  3265. height: math.unit(600, "kiloparsecs")
  3266. }
  3267. ]
  3268. ))
  3269. characterMakers.push(() => makeCharacter(
  3270. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3271. {
  3272. front: {
  3273. height: math.unit(2, "meter"),
  3274. weight: math.unit(50, "kg"),
  3275. name: "Front",
  3276. image: {
  3277. source: "./media/characters/erestrebah/front.svg",
  3278. extra: 208 / 193,
  3279. bottom: 0.055
  3280. }
  3281. },
  3282. back: {
  3283. height: math.unit(2, "meter"),
  3284. weight: math.unit(50, "kg"),
  3285. name: "Back",
  3286. image: {
  3287. source: "./media/characters/erestrebah/back.svg",
  3288. extra: 1.3
  3289. }
  3290. }
  3291. },
  3292. [
  3293. {
  3294. name: "Normal",
  3295. height: math.unit(10, "feet")
  3296. },
  3297. {
  3298. name: "Large",
  3299. height: math.unit(50, "feet"),
  3300. default: true
  3301. },
  3302. {
  3303. name: "Macro",
  3304. height: math.unit(300, "feet")
  3305. },
  3306. {
  3307. name: "Macro+",
  3308. height: math.unit(750, "feet")
  3309. },
  3310. {
  3311. name: "Megamacro",
  3312. height: math.unit(3, "miles")
  3313. }
  3314. ]
  3315. ))
  3316. characterMakers.push(() => makeCharacter(
  3317. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3318. {
  3319. front: {
  3320. height: math.unit(2, "meter"),
  3321. weight: math.unit(80, "kg"),
  3322. name: "Front",
  3323. image: {
  3324. source: "./media/characters/jennifer/front.svg",
  3325. bottom: 0.11,
  3326. extra: 1.16
  3327. }
  3328. },
  3329. frontAlt: {
  3330. height: math.unit(2, "meter"),
  3331. weight: math.unit(80, "kg"),
  3332. name: "Front (Alt)",
  3333. image: {
  3334. source: "./media/characters/jennifer/front-alt.svg"
  3335. }
  3336. }
  3337. },
  3338. [
  3339. {
  3340. name: "Canon Height",
  3341. height: math.unit(120, "feet"),
  3342. default: true
  3343. },
  3344. {
  3345. name: "Macro+",
  3346. height: math.unit(300, "feet")
  3347. },
  3348. {
  3349. name: "Megamacro",
  3350. height: math.unit(20000, "feet")
  3351. }
  3352. ]
  3353. ))
  3354. characterMakers.push(() => makeCharacter(
  3355. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3356. {
  3357. front: {
  3358. height: math.unit(2, "meter"),
  3359. weight: math.unit(50, "kg"),
  3360. name: "Front",
  3361. image: {
  3362. source: "./media/characters/kalista/front.svg",
  3363. extra: 1947 / 1700,
  3364. bottom: 76.6 / 1412.98
  3365. }
  3366. },
  3367. back: {
  3368. height: math.unit(2, "meter"),
  3369. weight: math.unit(50, "kg"),
  3370. name: "Back",
  3371. image: {
  3372. source: "./media/characters/kalista/back.svg",
  3373. extra: 1366 / 1156,
  3374. bottom: 33.9 / 1362.78
  3375. }
  3376. }
  3377. },
  3378. [
  3379. {
  3380. name: "Uncomfortably Small",
  3381. height: math.unit(10, "feet")
  3382. },
  3383. {
  3384. name: "Small",
  3385. height: math.unit(30, "feet")
  3386. },
  3387. {
  3388. name: "Macro",
  3389. height: math.unit(100, "feet"),
  3390. default: true
  3391. },
  3392. {
  3393. name: "Macro+",
  3394. height: math.unit(2000, "feet")
  3395. },
  3396. {
  3397. name: "True Form",
  3398. height: math.unit(8924, "miles")
  3399. }
  3400. ]
  3401. ))
  3402. characterMakers.push(() => makeCharacter(
  3403. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3404. {
  3405. front: {
  3406. height: math.unit(2, "meter"),
  3407. weight: math.unit(120, "kg"),
  3408. name: "Front",
  3409. image: {
  3410. source: "./media/characters/ggv/front.svg"
  3411. }
  3412. },
  3413. side: {
  3414. height: math.unit(2, "meter"),
  3415. weight: math.unit(120, "kg"),
  3416. name: "Side",
  3417. image: {
  3418. source: "./media/characters/ggv/side.svg"
  3419. }
  3420. }
  3421. },
  3422. [
  3423. {
  3424. name: "Extremely Puny",
  3425. height: math.unit(9 + 5 / 12, "feet")
  3426. },
  3427. {
  3428. name: "Horribly Small",
  3429. height: math.unit(47.7, "miles"),
  3430. default: true
  3431. },
  3432. {
  3433. name: "Reasonably Sized",
  3434. height: math.unit(25000, "parsecs")
  3435. },
  3436. {
  3437. name: "Slightly Uncompressed",
  3438. height: math.unit(7.77e31, "parsecs")
  3439. },
  3440. {
  3441. name: "Omniversal",
  3442. height: math.unit(1e300, "meters")
  3443. },
  3444. ]
  3445. ))
  3446. characterMakers.push(() => makeCharacter(
  3447. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3448. {
  3449. front: {
  3450. height: math.unit(2, "meter"),
  3451. weight: math.unit(75, "lb"),
  3452. name: "Front",
  3453. image: {
  3454. source: "./media/characters/napalm/front.svg"
  3455. }
  3456. },
  3457. back: {
  3458. height: math.unit(2, "meter"),
  3459. weight: math.unit(75, "lb"),
  3460. name: "Back",
  3461. image: {
  3462. source: "./media/characters/napalm/back.svg"
  3463. }
  3464. }
  3465. },
  3466. [
  3467. {
  3468. name: "Standard",
  3469. height: math.unit(55, "feet"),
  3470. default: true
  3471. }
  3472. ]
  3473. ))
  3474. characterMakers.push(() => makeCharacter(
  3475. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3476. {
  3477. front: {
  3478. height: math.unit(7 + 5 / 6, "feet"),
  3479. weight: math.unit(325, "lb"),
  3480. name: "Front",
  3481. image: {
  3482. source: "./media/characters/asana/front.svg",
  3483. extra: 1133 / 1060,
  3484. bottom: 15.2 / 1148.6
  3485. }
  3486. },
  3487. back: {
  3488. height: math.unit(7 + 5 / 6, "feet"),
  3489. weight: math.unit(325, "lb"),
  3490. name: "Back",
  3491. image: {
  3492. source: "./media/characters/asana/back.svg",
  3493. extra: 1114 / 1043,
  3494. bottom: 5 / 1120
  3495. }
  3496. },
  3497. dressedDark: {
  3498. height: math.unit(7 + 5 / 6, "feet"),
  3499. weight: math.unit(325, "lb"),
  3500. name: "Dressed (Dark)",
  3501. image: {
  3502. source: "./media/characters/asana/dressed-dark.svg",
  3503. extra: 1133 / 1060,
  3504. bottom: 15.2 / 1148.6
  3505. }
  3506. },
  3507. dressedLight: {
  3508. height: math.unit(7 + 5 / 6, "feet"),
  3509. weight: math.unit(325, "lb"),
  3510. name: "Dressed (Light)",
  3511. image: {
  3512. source: "./media/characters/asana/dressed-light.svg",
  3513. extra: 1133 / 1060,
  3514. bottom: 15.2 / 1148.6
  3515. }
  3516. },
  3517. },
  3518. [
  3519. {
  3520. name: "Standard",
  3521. height: math.unit(7 + 5 / 6, "feet"),
  3522. default: true
  3523. },
  3524. {
  3525. name: "Large",
  3526. height: math.unit(10, "meters")
  3527. },
  3528. {
  3529. name: "Macro",
  3530. height: math.unit(2500, "meters")
  3531. },
  3532. {
  3533. name: "Megamacro",
  3534. height: math.unit(5e6, "meters")
  3535. },
  3536. {
  3537. name: "Examacro",
  3538. height: math.unit(5e12, "lightyears")
  3539. },
  3540. {
  3541. name: "Max Size",
  3542. height: math.unit(1e31, "lightyears")
  3543. }
  3544. ]
  3545. ))
  3546. characterMakers.push(() => makeCharacter(
  3547. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3548. {
  3549. front: {
  3550. height: math.unit(2, "meter"),
  3551. weight: math.unit(60, "kg"),
  3552. name: "Front",
  3553. image: {
  3554. source: "./media/characters/ebony/front.svg",
  3555. bottom: 0.03,
  3556. extra: 1045 / 810 + 0.03
  3557. }
  3558. },
  3559. side: {
  3560. height: math.unit(2, "meter"),
  3561. weight: math.unit(60, "kg"),
  3562. name: "Side",
  3563. image: {
  3564. source: "./media/characters/ebony/side.svg",
  3565. bottom: 0.03,
  3566. extra: 1045 / 810 + 0.03
  3567. }
  3568. },
  3569. back: {
  3570. height: math.unit(2, "meter"),
  3571. weight: math.unit(60, "kg"),
  3572. name: "Back",
  3573. image: {
  3574. source: "./media/characters/ebony/back.svg",
  3575. bottom: 0.01,
  3576. extra: 1045 / 810 + 0.01
  3577. }
  3578. },
  3579. },
  3580. [
  3581. // TODO check why I did this lol
  3582. {
  3583. name: "Standard",
  3584. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3585. default: true
  3586. },
  3587. {
  3588. name: "Macro",
  3589. height: math.unit(200, "feet")
  3590. },
  3591. {
  3592. name: "Gigamacro",
  3593. height: math.unit(13000, "km")
  3594. }
  3595. ]
  3596. ))
  3597. characterMakers.push(() => makeCharacter(
  3598. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3599. {
  3600. front: {
  3601. height: math.unit(6, "feet"),
  3602. weight: math.unit(175, "lb"),
  3603. name: "Front",
  3604. image: {
  3605. source: "./media/characters/mountain/front.svg",
  3606. extra: 972 / 955,
  3607. bottom: 64 / 1036.6
  3608. }
  3609. },
  3610. back: {
  3611. height: math.unit(6, "feet"),
  3612. weight: math.unit(175, "lb"),
  3613. name: "Back",
  3614. image: {
  3615. source: "./media/characters/mountain/back.svg",
  3616. extra: 970 / 950,
  3617. bottom: 28.25 / 999
  3618. }
  3619. },
  3620. },
  3621. [
  3622. {
  3623. name: "Large",
  3624. height: math.unit(20, "meters")
  3625. },
  3626. {
  3627. name: "Macro",
  3628. height: math.unit(300, "meters")
  3629. },
  3630. {
  3631. name: "Gigamacro",
  3632. height: math.unit(10000, "km"),
  3633. default: true
  3634. },
  3635. {
  3636. name: "Examacro",
  3637. height: math.unit(10e9, "lightyears")
  3638. }
  3639. ]
  3640. ))
  3641. characterMakers.push(() => makeCharacter(
  3642. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3643. {
  3644. front: {
  3645. height: math.unit(8, "feet"),
  3646. weight: math.unit(500, "lb"),
  3647. name: "Front",
  3648. image: {
  3649. source: "./media/characters/rick/front.svg"
  3650. }
  3651. }
  3652. },
  3653. [
  3654. {
  3655. name: "Normal",
  3656. height: math.unit(8, "feet"),
  3657. default: true
  3658. },
  3659. {
  3660. name: "Macro",
  3661. height: math.unit(5, "km")
  3662. }
  3663. ]
  3664. ))
  3665. characterMakers.push(() => makeCharacter(
  3666. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3667. {
  3668. front: {
  3669. height: math.unit(8, "feet"),
  3670. weight: math.unit(120, "lb"),
  3671. name: "Front",
  3672. image: {
  3673. source: "./media/characters/ona/front.svg"
  3674. }
  3675. },
  3676. frontAlt: {
  3677. height: math.unit(8, "feet"),
  3678. weight: math.unit(120, "lb"),
  3679. name: "Front (Alt)",
  3680. image: {
  3681. source: "./media/characters/ona/front-alt.svg"
  3682. }
  3683. },
  3684. back: {
  3685. height: math.unit(8, "feet"),
  3686. weight: math.unit(120, "lb"),
  3687. name: "Back",
  3688. image: {
  3689. source: "./media/characters/ona/back.svg"
  3690. }
  3691. },
  3692. foot: {
  3693. height: math.unit(1.1, "feet"),
  3694. name: "Foot",
  3695. image: {
  3696. source: "./media/characters/ona/foot.svg"
  3697. }
  3698. }
  3699. },
  3700. [
  3701. {
  3702. name: "Megamacro",
  3703. height: math.unit(70, "km"),
  3704. default: true
  3705. },
  3706. {
  3707. name: "Gigamacro",
  3708. height: math.unit(681818, "miles")
  3709. },
  3710. {
  3711. name: "Examacro",
  3712. height: math.unit(3800000, "lightyears")
  3713. },
  3714. ]
  3715. ))
  3716. characterMakers.push(() => makeCharacter(
  3717. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3718. {
  3719. front: {
  3720. height: math.unit(12, "feet"),
  3721. weight: math.unit(3000, "lb"),
  3722. name: "Front",
  3723. image: {
  3724. source: "./media/characters/mech/front.svg",
  3725. extra: 2900 / 2770,
  3726. bottom: 110 / 3010
  3727. }
  3728. },
  3729. back: {
  3730. height: math.unit(12, "feet"),
  3731. weight: math.unit(3000, "lb"),
  3732. name: "Back",
  3733. image: {
  3734. source: "./media/characters/mech/back.svg",
  3735. extra: 3011 / 2890,
  3736. bottom: 94 / 3105
  3737. }
  3738. },
  3739. maw: {
  3740. height: math.unit(3.07, "feet"),
  3741. name: "Maw",
  3742. image: {
  3743. source: "./media/characters/mech/maw.svg"
  3744. }
  3745. },
  3746. head: {
  3747. height: math.unit(2.82, "feet"),
  3748. name: "Head",
  3749. image: {
  3750. source: "./media/characters/mech/head.svg"
  3751. }
  3752. },
  3753. dick: {
  3754. height: math.unit(1.43, "feet"),
  3755. name: "Dick",
  3756. image: {
  3757. source: "./media/characters/mech/dick.svg"
  3758. }
  3759. },
  3760. },
  3761. [
  3762. {
  3763. name: "Normal",
  3764. height: math.unit(12, "feet")
  3765. },
  3766. {
  3767. name: "Macro",
  3768. height: math.unit(300, "feet"),
  3769. default: true
  3770. },
  3771. {
  3772. name: "Macro+",
  3773. height: math.unit(1500, "feet")
  3774. },
  3775. ]
  3776. ))
  3777. characterMakers.push(() => makeCharacter(
  3778. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3779. {
  3780. front: {
  3781. height: math.unit(1.3, "meter"),
  3782. weight: math.unit(30, "kg"),
  3783. name: "Front",
  3784. image: {
  3785. source: "./media/characters/gregory/front.svg",
  3786. }
  3787. }
  3788. },
  3789. [
  3790. {
  3791. name: "Normal",
  3792. height: math.unit(1.3, "meter"),
  3793. default: true
  3794. },
  3795. {
  3796. name: "Macro",
  3797. height: math.unit(20, "meter")
  3798. }
  3799. ]
  3800. ))
  3801. characterMakers.push(() => makeCharacter(
  3802. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3803. {
  3804. front: {
  3805. height: math.unit(2.8, "meter"),
  3806. weight: math.unit(200, "kg"),
  3807. name: "Front",
  3808. image: {
  3809. source: "./media/characters/elory/front.svg",
  3810. }
  3811. }
  3812. },
  3813. [
  3814. {
  3815. name: "Normal",
  3816. height: math.unit(2.8, "meter"),
  3817. default: true
  3818. },
  3819. {
  3820. name: "Macro",
  3821. height: math.unit(38, "meter")
  3822. }
  3823. ]
  3824. ))
  3825. characterMakers.push(() => makeCharacter(
  3826. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3827. {
  3828. front: {
  3829. height: math.unit(470, "feet"),
  3830. weight: math.unit(924, "tons"),
  3831. name: "Front",
  3832. image: {
  3833. source: "./media/characters/angelpatamon/front.svg",
  3834. }
  3835. }
  3836. },
  3837. [
  3838. {
  3839. name: "Normal",
  3840. height: math.unit(470, "feet"),
  3841. default: true
  3842. },
  3843. {
  3844. name: "Deity Size I",
  3845. height: math.unit(28651.2, "km")
  3846. },
  3847. {
  3848. name: "Deity Size II",
  3849. height: math.unit(171907.2, "km")
  3850. }
  3851. ]
  3852. ))
  3853. characterMakers.push(() => makeCharacter(
  3854. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3855. {
  3856. side: {
  3857. height: math.unit(7.2, "meter"),
  3858. weight: math.unit(8.2, "tons"),
  3859. name: "Side",
  3860. image: {
  3861. source: "./media/characters/cryae/side.svg",
  3862. extra: 3500 / 1500
  3863. }
  3864. }
  3865. },
  3866. [
  3867. {
  3868. name: "Normal",
  3869. height: math.unit(7.2, "meter"),
  3870. default: true
  3871. }
  3872. ]
  3873. ))
  3874. characterMakers.push(() => makeCharacter(
  3875. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3876. {
  3877. front: {
  3878. height: math.unit(6, "feet"),
  3879. weight: math.unit(175, "lb"),
  3880. name: "Front",
  3881. image: {
  3882. source: "./media/characters/xera/front.svg",
  3883. extra: 2377 / 1972,
  3884. bottom: 75.5 / 2452
  3885. }
  3886. },
  3887. side: {
  3888. height: math.unit(6, "feet"),
  3889. weight: math.unit(175, "lb"),
  3890. name: "Side",
  3891. image: {
  3892. source: "./media/characters/xera/side.svg",
  3893. extra: 2345 / 2019,
  3894. bottom: 39.7 / 2384
  3895. }
  3896. },
  3897. back: {
  3898. height: math.unit(6, "feet"),
  3899. weight: math.unit(175, "lb"),
  3900. name: "Back",
  3901. image: {
  3902. source: "./media/characters/xera/back.svg",
  3903. extra: 2095 / 1984,
  3904. bottom: 67 / 2166
  3905. }
  3906. },
  3907. },
  3908. [
  3909. {
  3910. name: "Small",
  3911. height: math.unit(10, "feet")
  3912. },
  3913. {
  3914. name: "Macro",
  3915. height: math.unit(500, "meters"),
  3916. default: true
  3917. },
  3918. {
  3919. name: "Macro+",
  3920. height: math.unit(10, "km")
  3921. },
  3922. {
  3923. name: "Gigamacro",
  3924. height: math.unit(25000, "km")
  3925. },
  3926. {
  3927. name: "Teramacro",
  3928. height: math.unit(3e6, "km")
  3929. }
  3930. ]
  3931. ))
  3932. characterMakers.push(() => makeCharacter(
  3933. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3934. {
  3935. front: {
  3936. height: math.unit(6, "feet"),
  3937. weight: math.unit(175, "lb"),
  3938. name: "Front",
  3939. image: {
  3940. source: "./media/characters/nebula/front.svg",
  3941. extra: 2566 / 2362,
  3942. bottom: 81 / 2644
  3943. }
  3944. }
  3945. },
  3946. [
  3947. {
  3948. name: "Small",
  3949. height: math.unit(4.5, "meters")
  3950. },
  3951. {
  3952. name: "Macro",
  3953. height: math.unit(1500, "meters"),
  3954. default: true
  3955. },
  3956. {
  3957. name: "Megamacro",
  3958. height: math.unit(150, "km")
  3959. },
  3960. {
  3961. name: "Gigamacro",
  3962. height: math.unit(27000, "km")
  3963. }
  3964. ]
  3965. ))
  3966. characterMakers.push(() => makeCharacter(
  3967. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3968. {
  3969. front: {
  3970. height: math.unit(6, "feet"),
  3971. weight: math.unit(225, "lb"),
  3972. name: "Front",
  3973. image: {
  3974. source: "./media/characters/abysgar/front.svg"
  3975. }
  3976. }
  3977. },
  3978. [
  3979. {
  3980. name: "Small",
  3981. height: math.unit(4.5, "meters")
  3982. },
  3983. {
  3984. name: "Macro",
  3985. height: math.unit(1250, "meters"),
  3986. default: true
  3987. },
  3988. {
  3989. name: "Megamacro",
  3990. height: math.unit(125, "km")
  3991. },
  3992. {
  3993. name: "Gigamacro",
  3994. height: math.unit(26000, "km")
  3995. }
  3996. ]
  3997. ))
  3998. characterMakers.push(() => makeCharacter(
  3999. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4000. {
  4001. front: {
  4002. height: math.unit(6, "feet"),
  4003. weight: math.unit(180, "lb"),
  4004. name: "Front",
  4005. image: {
  4006. source: "./media/characters/yakuz/front.svg"
  4007. }
  4008. }
  4009. },
  4010. [
  4011. {
  4012. name: "Small",
  4013. height: math.unit(5, "meters")
  4014. },
  4015. {
  4016. name: "Macro",
  4017. height: math.unit(1500, "meters"),
  4018. default: true
  4019. },
  4020. {
  4021. name: "Megamacro",
  4022. height: math.unit(200, "km")
  4023. },
  4024. {
  4025. name: "Gigamacro",
  4026. height: math.unit(100000, "km")
  4027. }
  4028. ]
  4029. ))
  4030. characterMakers.push(() => makeCharacter(
  4031. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4032. {
  4033. front: {
  4034. height: math.unit(6, "feet"),
  4035. weight: math.unit(175, "lb"),
  4036. name: "Front",
  4037. image: {
  4038. source: "./media/characters/mirova/front.svg",
  4039. extra: 3334 / 3071,
  4040. bottom: 42 / 3375.6
  4041. }
  4042. }
  4043. },
  4044. [
  4045. {
  4046. name: "Small",
  4047. height: math.unit(5, "meters")
  4048. },
  4049. {
  4050. name: "Macro",
  4051. height: math.unit(900, "meters"),
  4052. default: true
  4053. },
  4054. {
  4055. name: "Megamacro",
  4056. height: math.unit(135, "km")
  4057. },
  4058. {
  4059. name: "Gigamacro",
  4060. height: math.unit(20000, "km")
  4061. }
  4062. ]
  4063. ))
  4064. characterMakers.push(() => makeCharacter(
  4065. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4066. {
  4067. side: {
  4068. height: math.unit(28.35, "feet"),
  4069. weight: math.unit(99.75, "tons"),
  4070. name: "Side",
  4071. image: {
  4072. source: "./media/characters/asana-mech/side.svg",
  4073. extra: 923 / 699,
  4074. bottom: 50 / 975
  4075. }
  4076. },
  4077. chaingun: {
  4078. height: math.unit(7, "feet"),
  4079. weight: math.unit(2400, "lb"),
  4080. name: "Chaingun",
  4081. image: {
  4082. source: "./media/characters/asana-mech/chaingun.svg"
  4083. }
  4084. },
  4085. laser: {
  4086. height: math.unit(7.12, "feet"),
  4087. weight: math.unit(2000, "lb"),
  4088. name: "Laser",
  4089. image: {
  4090. source: "./media/characters/asana-mech/laser.svg"
  4091. }
  4092. },
  4093. },
  4094. [
  4095. {
  4096. name: "Normal",
  4097. height: math.unit(28.35, "feet"),
  4098. default: true
  4099. },
  4100. {
  4101. name: "Macro",
  4102. height: math.unit(2500, "feet")
  4103. },
  4104. {
  4105. name: "Megamacro",
  4106. height: math.unit(25, "miles")
  4107. },
  4108. {
  4109. name: "Examacro",
  4110. height: math.unit(6e8, "lightyears")
  4111. },
  4112. ]
  4113. ))
  4114. characterMakers.push(() => makeCharacter(
  4115. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4116. {
  4117. front: {
  4118. height: math.unit(5, "meters"),
  4119. weight: math.unit(1000, "kg"),
  4120. name: "Front",
  4121. image: {
  4122. source: "./media/characters/asche/front.svg",
  4123. extra: 1258 / 1190,
  4124. bottom: 47 / 1305
  4125. }
  4126. },
  4127. frontUnderwear: {
  4128. height: math.unit(5, "meters"),
  4129. weight: math.unit(1000, "kg"),
  4130. name: "Front (Underwear)",
  4131. image: {
  4132. source: "./media/characters/asche/front-underwear.svg",
  4133. extra: 1258 / 1190,
  4134. bottom: 47 / 1305
  4135. }
  4136. },
  4137. frontDressed: {
  4138. height: math.unit(5, "meters"),
  4139. weight: math.unit(1000, "kg"),
  4140. name: "Front (Dressed)",
  4141. image: {
  4142. source: "./media/characters/asche/front-dressed.svg",
  4143. extra: 1258 / 1190,
  4144. bottom: 47 / 1305
  4145. }
  4146. },
  4147. frontArmor: {
  4148. height: math.unit(5, "meters"),
  4149. weight: math.unit(1000, "kg"),
  4150. name: "Front (Armored)",
  4151. image: {
  4152. source: "./media/characters/asche/front-armored.svg",
  4153. extra: 1374 / 1308,
  4154. bottom: 23 / 1397
  4155. }
  4156. },
  4157. mp724: {
  4158. height: math.unit(0.96, "meters"),
  4159. weight: math.unit(38, "kg"),
  4160. name: "H&K MP724",
  4161. image: {
  4162. source: "./media/characters/asche/h&k-mp724.svg"
  4163. }
  4164. },
  4165. side: {
  4166. height: math.unit(5, "meters"),
  4167. weight: math.unit(1000, "kg"),
  4168. name: "Side",
  4169. image: {
  4170. source: "./media/characters/asche/side.svg",
  4171. extra: 1717 / 1609,
  4172. bottom: 0.005
  4173. }
  4174. },
  4175. back: {
  4176. height: math.unit(5, "meters"),
  4177. weight: math.unit(1000, "kg"),
  4178. name: "Back",
  4179. image: {
  4180. source: "./media/characters/asche/back.svg",
  4181. extra: 1570 / 1501
  4182. }
  4183. },
  4184. },
  4185. [
  4186. {
  4187. name: "DEFCON 5",
  4188. height: math.unit(5, "meters")
  4189. },
  4190. {
  4191. name: "DEFCON 4",
  4192. height: math.unit(500, "meters"),
  4193. default: true
  4194. },
  4195. {
  4196. name: "DEFCON 3",
  4197. height: math.unit(5, "km")
  4198. },
  4199. {
  4200. name: "DEFCON 2",
  4201. height: math.unit(500, "km")
  4202. },
  4203. {
  4204. name: "DEFCON 1",
  4205. height: math.unit(500000, "km")
  4206. },
  4207. {
  4208. name: "DEFCON 0",
  4209. height: math.unit(3, "gigaparsecs")
  4210. },
  4211. ]
  4212. ))
  4213. characterMakers.push(() => makeCharacter(
  4214. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4215. {
  4216. front: {
  4217. height: math.unit(2, "meters"),
  4218. weight: math.unit(76, "kg"),
  4219. name: "Front",
  4220. image: {
  4221. source: "./media/characters/gale/front.svg"
  4222. }
  4223. },
  4224. frontAlt1: {
  4225. height: math.unit(2, "meters"),
  4226. weight: math.unit(76, "kg"),
  4227. name: "Front (Alt 1)",
  4228. image: {
  4229. source: "./media/characters/gale/front-alt-1.svg"
  4230. }
  4231. },
  4232. frontAlt2: {
  4233. height: math.unit(2, "meters"),
  4234. weight: math.unit(76, "kg"),
  4235. name: "Front (Alt 2)",
  4236. image: {
  4237. source: "./media/characters/gale/front-alt-2.svg"
  4238. }
  4239. },
  4240. },
  4241. [
  4242. {
  4243. name: "Normal",
  4244. height: math.unit(7, "feet")
  4245. },
  4246. {
  4247. name: "Macro",
  4248. height: math.unit(150, "feet"),
  4249. default: true
  4250. },
  4251. {
  4252. name: "Macro+",
  4253. height: math.unit(300, "feet")
  4254. },
  4255. ]
  4256. ))
  4257. characterMakers.push(() => makeCharacter(
  4258. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4259. {
  4260. front: {
  4261. height: math.unit(2, "meters"),
  4262. weight: math.unit(76, "kg"),
  4263. name: "Front",
  4264. image: {
  4265. source: "./media/characters/draylen/front.svg"
  4266. }
  4267. }
  4268. },
  4269. [
  4270. {
  4271. name: "Macro",
  4272. height: math.unit(150, "feet"),
  4273. default: true
  4274. }
  4275. ]
  4276. ))
  4277. characterMakers.push(() => makeCharacter(
  4278. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4279. {
  4280. front: {
  4281. height: math.unit(7 + 9 / 12, "feet"),
  4282. weight: math.unit(379, "lbs"),
  4283. name: "Front",
  4284. image: {
  4285. source: "./media/characters/chez/front.svg"
  4286. }
  4287. },
  4288. side: {
  4289. height: math.unit(7 + 9 / 12, "feet"),
  4290. weight: math.unit(379, "lbs"),
  4291. name: "Side",
  4292. image: {
  4293. source: "./media/characters/chez/side.svg"
  4294. }
  4295. }
  4296. },
  4297. [
  4298. {
  4299. name: "Normal",
  4300. height: math.unit(7 + 9 / 12, "feet"),
  4301. default: true
  4302. },
  4303. {
  4304. name: "God King",
  4305. height: math.unit(9750000, "meters")
  4306. }
  4307. ]
  4308. ))
  4309. characterMakers.push(() => makeCharacter(
  4310. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4311. {
  4312. front: {
  4313. height: math.unit(6, "feet"),
  4314. weight: math.unit(275, "lbs"),
  4315. name: "Front",
  4316. image: {
  4317. source: "./media/characters/kaylum/front.svg",
  4318. bottom: 0.01,
  4319. extra: 1166 / 1031
  4320. }
  4321. },
  4322. frontWingless: {
  4323. height: math.unit(6, "feet"),
  4324. weight: math.unit(275, "lbs"),
  4325. name: "Front (Wingless)",
  4326. image: {
  4327. source: "./media/characters/kaylum/front-wingless.svg",
  4328. bottom: 0.01,
  4329. extra: 1117 / 1031
  4330. }
  4331. }
  4332. },
  4333. [
  4334. {
  4335. name: "Normal",
  4336. height: math.unit(3.05, "meters")
  4337. },
  4338. {
  4339. name: "Master",
  4340. height: math.unit(5.5, "meters")
  4341. },
  4342. {
  4343. name: "Rampage",
  4344. height: math.unit(19, "meters")
  4345. },
  4346. {
  4347. name: "Macro Lite",
  4348. height: math.unit(37, "meters")
  4349. },
  4350. {
  4351. name: "Hyper Predator",
  4352. height: math.unit(61, "meters")
  4353. },
  4354. {
  4355. name: "Macro",
  4356. height: math.unit(138, "meters"),
  4357. default: true
  4358. }
  4359. ]
  4360. ))
  4361. characterMakers.push(() => makeCharacter(
  4362. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4363. {
  4364. front: {
  4365. height: math.unit(6, "feet"),
  4366. weight: math.unit(150, "lbs"),
  4367. name: "Front",
  4368. image: {
  4369. source: "./media/characters/geta/front.svg"
  4370. }
  4371. }
  4372. },
  4373. [
  4374. {
  4375. name: "Micro",
  4376. height: math.unit(3, "inches"),
  4377. default: true
  4378. },
  4379. {
  4380. name: "Normal",
  4381. height: math.unit(5 + 5 / 12, "feet")
  4382. }
  4383. ]
  4384. ))
  4385. characterMakers.push(() => makeCharacter(
  4386. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4387. {
  4388. front: {
  4389. height: math.unit(6, "feet"),
  4390. weight: math.unit(300, "lbs"),
  4391. name: "Front",
  4392. image: {
  4393. source: "./media/characters/tyrnn/front.svg"
  4394. }
  4395. }
  4396. },
  4397. [
  4398. {
  4399. name: "Main Height",
  4400. height: math.unit(355, "feet"),
  4401. default: true
  4402. },
  4403. {
  4404. name: "Fave. Height",
  4405. height: math.unit(2400, "feet")
  4406. }
  4407. ]
  4408. ))
  4409. characterMakers.push(() => makeCharacter(
  4410. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4411. {
  4412. front: {
  4413. height: math.unit(6, "feet"),
  4414. weight: math.unit(300, "lbs"),
  4415. name: "Front",
  4416. image: {
  4417. source: "./media/characters/appledectomy/front.svg"
  4418. }
  4419. }
  4420. },
  4421. [
  4422. {
  4423. name: "Macro",
  4424. height: math.unit(2500, "feet")
  4425. },
  4426. {
  4427. name: "Megamacro",
  4428. height: math.unit(50, "miles"),
  4429. default: true
  4430. },
  4431. {
  4432. name: "Gigamacro",
  4433. height: math.unit(5000, "miles")
  4434. },
  4435. {
  4436. name: "Teramacro",
  4437. height: math.unit(250000, "miles")
  4438. },
  4439. ]
  4440. ))
  4441. characterMakers.push(() => makeCharacter(
  4442. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4443. {
  4444. front: {
  4445. height: math.unit(6, "feet"),
  4446. weight: math.unit(200, "lbs"),
  4447. name: "Front",
  4448. image: {
  4449. source: "./media/characters/vulpes/front.svg",
  4450. extra: 573 / 543,
  4451. bottom: 0.033
  4452. }
  4453. },
  4454. side: {
  4455. height: math.unit(6, "feet"),
  4456. weight: math.unit(200, "lbs"),
  4457. name: "Side",
  4458. image: {
  4459. source: "./media/characters/vulpes/side.svg",
  4460. extra: 577 / 549,
  4461. bottom: 11 / 588
  4462. }
  4463. },
  4464. back: {
  4465. height: math.unit(6, "feet"),
  4466. weight: math.unit(200, "lbs"),
  4467. name: "Back",
  4468. image: {
  4469. source: "./media/characters/vulpes/back.svg",
  4470. extra: 573 / 549,
  4471. bottom: 20 / 593
  4472. }
  4473. },
  4474. feet: {
  4475. height: math.unit(1.276, "feet"),
  4476. name: "Feet",
  4477. image: {
  4478. source: "./media/characters/vulpes/feet.svg"
  4479. }
  4480. },
  4481. maw: {
  4482. height: math.unit(1.18, "feet"),
  4483. name: "Maw",
  4484. image: {
  4485. source: "./media/characters/vulpes/maw.svg"
  4486. }
  4487. },
  4488. },
  4489. [
  4490. {
  4491. name: "Micro",
  4492. height: math.unit(2, "inches")
  4493. },
  4494. {
  4495. name: "Normal",
  4496. height: math.unit(6.3, "feet")
  4497. },
  4498. {
  4499. name: "Macro",
  4500. height: math.unit(850, "feet")
  4501. },
  4502. {
  4503. name: "Megamacro",
  4504. height: math.unit(7500, "feet"),
  4505. default: true
  4506. },
  4507. {
  4508. name: "Gigamacro",
  4509. height: math.unit(570000, "miles")
  4510. }
  4511. ]
  4512. ))
  4513. characterMakers.push(() => makeCharacter(
  4514. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4515. {
  4516. front: {
  4517. height: math.unit(6, "feet"),
  4518. weight: math.unit(210, "lbs"),
  4519. name: "Front",
  4520. image: {
  4521. source: "./media/characters/rain-fallen/front.svg"
  4522. }
  4523. },
  4524. side: {
  4525. height: math.unit(6, "feet"),
  4526. weight: math.unit(210, "lbs"),
  4527. name: "Side",
  4528. image: {
  4529. source: "./media/characters/rain-fallen/side.svg"
  4530. }
  4531. },
  4532. back: {
  4533. height: math.unit(6, "feet"),
  4534. weight: math.unit(210, "lbs"),
  4535. name: "Back",
  4536. image: {
  4537. source: "./media/characters/rain-fallen/back.svg"
  4538. }
  4539. },
  4540. feral: {
  4541. height: math.unit(9, "feet"),
  4542. weight: math.unit(700, "lbs"),
  4543. name: "Feral",
  4544. image: {
  4545. source: "./media/characters/rain-fallen/feral.svg"
  4546. }
  4547. },
  4548. },
  4549. [
  4550. {
  4551. name: "Meddling with Mortals",
  4552. height: math.unit(8 + 8/12, "feet")
  4553. },
  4554. {
  4555. name: "Normal",
  4556. height: math.unit(5, "meter")
  4557. },
  4558. {
  4559. name: "Macro",
  4560. height: math.unit(150, "meter"),
  4561. default: true
  4562. },
  4563. {
  4564. name: "Megamacro",
  4565. height: math.unit(278e6, "meter")
  4566. },
  4567. {
  4568. name: "Gigamacro",
  4569. height: math.unit(2e9, "meter")
  4570. },
  4571. {
  4572. name: "Teramacro",
  4573. height: math.unit(8e12, "meter")
  4574. },
  4575. {
  4576. name: "Devourer",
  4577. height: math.unit(14, "zettameters")
  4578. },
  4579. {
  4580. name: "Scarlet King",
  4581. height: math.unit(18, "yottameters")
  4582. },
  4583. {
  4584. name: "Void",
  4585. height: math.unit(1e88, "yottameters")
  4586. }
  4587. ]
  4588. ))
  4589. characterMakers.push(() => makeCharacter(
  4590. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4591. {
  4592. standing: {
  4593. height: math.unit(6, "feet"),
  4594. weight: math.unit(180, "lbs"),
  4595. name: "Standing",
  4596. image: {
  4597. source: "./media/characters/zaakira/standing.svg",
  4598. extra: 1599/1504,
  4599. bottom: 39/1638
  4600. }
  4601. },
  4602. laying: {
  4603. height: math.unit(3, "feet"),
  4604. weight: math.unit(180, "lbs"),
  4605. name: "Laying",
  4606. image: {
  4607. source: "./media/characters/zaakira/laying.svg"
  4608. }
  4609. },
  4610. },
  4611. [
  4612. {
  4613. name: "Normal",
  4614. height: math.unit(12, "feet")
  4615. },
  4616. {
  4617. name: "Macro",
  4618. height: math.unit(279, "feet"),
  4619. default: true
  4620. }
  4621. ]
  4622. ))
  4623. characterMakers.push(() => makeCharacter(
  4624. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4625. {
  4626. femSfw: {
  4627. height: math.unit(8, "feet"),
  4628. weight: math.unit(350, "lb"),
  4629. name: "Fem",
  4630. image: {
  4631. source: "./media/characters/sigvald/fem-sfw.svg",
  4632. extra: 182 / 164,
  4633. bottom: 8.7 / 190.5
  4634. }
  4635. },
  4636. femNsfw: {
  4637. height: math.unit(8, "feet"),
  4638. weight: math.unit(350, "lb"),
  4639. name: "Fem (NSFW)",
  4640. image: {
  4641. source: "./media/characters/sigvald/fem-nsfw.svg",
  4642. extra: 182 / 164,
  4643. bottom: 8.7 / 190.5
  4644. }
  4645. },
  4646. maleNsfw: {
  4647. height: math.unit(8, "feet"),
  4648. weight: math.unit(350, "lb"),
  4649. name: "Male (NSFW)",
  4650. image: {
  4651. source: "./media/characters/sigvald/male-nsfw.svg",
  4652. extra: 182 / 164,
  4653. bottom: 8.7 / 190.5
  4654. }
  4655. },
  4656. hermNsfw: {
  4657. height: math.unit(8, "feet"),
  4658. weight: math.unit(350, "lb"),
  4659. name: "Herm (NSFW)",
  4660. image: {
  4661. source: "./media/characters/sigvald/herm-nsfw.svg",
  4662. extra: 182 / 164,
  4663. bottom: 8.7 / 190.5
  4664. }
  4665. },
  4666. dick: {
  4667. height: math.unit(2.36, "feet"),
  4668. name: "Dick",
  4669. image: {
  4670. source: "./media/characters/sigvald/dick.svg"
  4671. }
  4672. },
  4673. eye: {
  4674. height: math.unit(0.31, "feet"),
  4675. name: "Eye",
  4676. image: {
  4677. source: "./media/characters/sigvald/eye.svg"
  4678. }
  4679. },
  4680. mouth: {
  4681. height: math.unit(0.92, "feet"),
  4682. name: "Mouth",
  4683. image: {
  4684. source: "./media/characters/sigvald/mouth.svg"
  4685. }
  4686. },
  4687. paws: {
  4688. height: math.unit(2.2, "feet"),
  4689. name: "Paws",
  4690. image: {
  4691. source: "./media/characters/sigvald/paws.svg"
  4692. }
  4693. }
  4694. },
  4695. [
  4696. {
  4697. name: "Normal",
  4698. height: math.unit(8, "feet")
  4699. },
  4700. {
  4701. name: "Large",
  4702. height: math.unit(12, "feet")
  4703. },
  4704. {
  4705. name: "Larger",
  4706. height: math.unit(20, "feet")
  4707. },
  4708. {
  4709. name: "Macro",
  4710. height: math.unit(150, "feet")
  4711. },
  4712. {
  4713. name: "Macro+",
  4714. height: math.unit(200, "feet"),
  4715. default: true
  4716. },
  4717. ]
  4718. ))
  4719. characterMakers.push(() => makeCharacter(
  4720. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4721. {
  4722. side: {
  4723. height: math.unit(12, "feet"),
  4724. weight: math.unit(2000, "kg"),
  4725. name: "Side",
  4726. image: {
  4727. source: "./media/characters/scott/side.svg",
  4728. extra: 754 / 724,
  4729. bottom: 0.069
  4730. }
  4731. },
  4732. upright: {
  4733. height: math.unit(12, "feet"),
  4734. weight: math.unit(2000, "kg"),
  4735. name: "Upright",
  4736. image: {
  4737. source: "./media/characters/scott/upright.svg",
  4738. extra: 3881 / 3722,
  4739. bottom: 0.05
  4740. }
  4741. },
  4742. },
  4743. [
  4744. {
  4745. name: "Normal",
  4746. height: math.unit(12, "feet"),
  4747. default: true
  4748. },
  4749. ]
  4750. ))
  4751. characterMakers.push(() => makeCharacter(
  4752. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4753. {
  4754. side: {
  4755. height: math.unit(8, "meters"),
  4756. weight: math.unit(84755, "lbs"),
  4757. name: "Side",
  4758. image: {
  4759. source: "./media/characters/tobias/side.svg",
  4760. extra: 1474 / 1096,
  4761. bottom: 38.9 / 1513.1235
  4762. }
  4763. },
  4764. },
  4765. [
  4766. {
  4767. name: "Normal",
  4768. height: math.unit(8, "meters"),
  4769. default: true
  4770. },
  4771. ]
  4772. ))
  4773. characterMakers.push(() => makeCharacter(
  4774. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4775. {
  4776. front: {
  4777. height: math.unit(5.5, "feet"),
  4778. weight: math.unit(400, "lbs"),
  4779. name: "Front",
  4780. image: {
  4781. source: "./media/characters/kieran/front.svg",
  4782. extra: 2694 / 2364,
  4783. bottom: 217 / 2908
  4784. }
  4785. },
  4786. side: {
  4787. height: math.unit(5.5, "feet"),
  4788. weight: math.unit(400, "lbs"),
  4789. name: "Side",
  4790. image: {
  4791. source: "./media/characters/kieran/side.svg",
  4792. extra: 875 / 777,
  4793. bottom: 84.6 / 959
  4794. }
  4795. },
  4796. },
  4797. [
  4798. {
  4799. name: "Normal",
  4800. height: math.unit(5.5, "feet"),
  4801. default: true
  4802. },
  4803. ]
  4804. ))
  4805. characterMakers.push(() => makeCharacter(
  4806. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4807. {
  4808. side: {
  4809. height: math.unit(2, "meters"),
  4810. weight: math.unit(70, "kg"),
  4811. name: "Side",
  4812. image: {
  4813. source: "./media/characters/sanya/side.svg",
  4814. bottom: 0.02,
  4815. extra: 1.02
  4816. }
  4817. },
  4818. },
  4819. [
  4820. {
  4821. name: "Small",
  4822. height: math.unit(2, "meters")
  4823. },
  4824. {
  4825. name: "Normal",
  4826. height: math.unit(3, "meters")
  4827. },
  4828. {
  4829. name: "Macro",
  4830. height: math.unit(16, "meters"),
  4831. default: true
  4832. },
  4833. ]
  4834. ))
  4835. characterMakers.push(() => makeCharacter(
  4836. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4837. {
  4838. front: {
  4839. height: math.unit(2, "meters"),
  4840. weight: math.unit(120, "kg"),
  4841. name: "Front",
  4842. image: {
  4843. source: "./media/characters/miranda/front.svg",
  4844. extra: 195 / 185,
  4845. bottom: 10.9 / 206.5
  4846. }
  4847. },
  4848. back: {
  4849. height: math.unit(2, "meters"),
  4850. weight: math.unit(120, "kg"),
  4851. name: "Back",
  4852. image: {
  4853. source: "./media/characters/miranda/back.svg",
  4854. extra: 201 / 193,
  4855. bottom: 2.3 / 203.7
  4856. }
  4857. },
  4858. },
  4859. [
  4860. {
  4861. name: "Normal",
  4862. height: math.unit(10, "feet"),
  4863. default: true
  4864. }
  4865. ]
  4866. ))
  4867. characterMakers.push(() => makeCharacter(
  4868. { name: "James", species: ["deer"], tags: ["anthro"] },
  4869. {
  4870. side: {
  4871. height: math.unit(2, "meters"),
  4872. weight: math.unit(100, "kg"),
  4873. name: "Front",
  4874. image: {
  4875. source: "./media/characters/james/front.svg",
  4876. extra: 10 / 8.5
  4877. }
  4878. },
  4879. },
  4880. [
  4881. {
  4882. name: "Normal",
  4883. height: math.unit(8.5, "feet"),
  4884. default: true
  4885. }
  4886. ]
  4887. ))
  4888. characterMakers.push(() => makeCharacter(
  4889. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4890. {
  4891. side: {
  4892. height: math.unit(9.5, "feet"),
  4893. weight: math.unit(2500, "lbs"),
  4894. name: "Side",
  4895. image: {
  4896. source: "./media/characters/heather/side.svg"
  4897. }
  4898. },
  4899. },
  4900. [
  4901. {
  4902. name: "Normal",
  4903. height: math.unit(9.5, "feet"),
  4904. default: true
  4905. }
  4906. ]
  4907. ))
  4908. characterMakers.push(() => makeCharacter(
  4909. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4910. {
  4911. side: {
  4912. height: math.unit(6.5, "feet"),
  4913. weight: math.unit(400, "lbs"),
  4914. name: "Side",
  4915. image: {
  4916. source: "./media/characters/lukas/side.svg",
  4917. extra: 7.25 / 6.5
  4918. }
  4919. },
  4920. },
  4921. [
  4922. {
  4923. name: "Normal",
  4924. height: math.unit(6.5, "feet"),
  4925. default: true
  4926. }
  4927. ]
  4928. ))
  4929. characterMakers.push(() => makeCharacter(
  4930. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4931. {
  4932. side: {
  4933. height: math.unit(5, "feet"),
  4934. weight: math.unit(3000, "lbs"),
  4935. name: "Side",
  4936. image: {
  4937. source: "./media/characters/louise/side.svg"
  4938. }
  4939. },
  4940. },
  4941. [
  4942. {
  4943. name: "Normal",
  4944. height: math.unit(5, "feet"),
  4945. default: true
  4946. }
  4947. ]
  4948. ))
  4949. characterMakers.push(() => makeCharacter(
  4950. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4951. {
  4952. side: {
  4953. height: math.unit(6, "feet"),
  4954. weight: math.unit(150, "lbs"),
  4955. name: "Side",
  4956. image: {
  4957. source: "./media/characters/ramona/side.svg"
  4958. }
  4959. },
  4960. },
  4961. [
  4962. {
  4963. name: "Normal",
  4964. height: math.unit(5.3, "meters"),
  4965. default: true
  4966. },
  4967. {
  4968. name: "Macro",
  4969. height: math.unit(20, "stories")
  4970. },
  4971. {
  4972. name: "Macro+",
  4973. height: math.unit(50, "stories")
  4974. },
  4975. ]
  4976. ))
  4977. characterMakers.push(() => makeCharacter(
  4978. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4979. {
  4980. standing: {
  4981. height: math.unit(5.75, "feet"),
  4982. weight: math.unit(160, "lbs"),
  4983. name: "Standing",
  4984. image: {
  4985. source: "./media/characters/deerpuff/standing.svg",
  4986. extra: 682 / 624
  4987. }
  4988. },
  4989. sitting: {
  4990. height: math.unit(5.75 / 1.79, "feet"),
  4991. weight: math.unit(160, "lbs"),
  4992. name: "Sitting",
  4993. image: {
  4994. source: "./media/characters/deerpuff/sitting.svg",
  4995. bottom: 44 / 400,
  4996. extra: 1
  4997. }
  4998. },
  4999. taurLaying: {
  5000. height: math.unit(6, "feet"),
  5001. weight: math.unit(400, "lbs"),
  5002. name: "Taur (Laying)",
  5003. image: {
  5004. source: "./media/characters/deerpuff/taur-laying.svg"
  5005. }
  5006. },
  5007. },
  5008. [
  5009. {
  5010. name: "Puffball",
  5011. height: math.unit(6, "inches")
  5012. },
  5013. {
  5014. name: "Normalpuff",
  5015. height: math.unit(5.75, "feet")
  5016. },
  5017. {
  5018. name: "Macropuff",
  5019. height: math.unit(1500, "feet"),
  5020. default: true
  5021. },
  5022. {
  5023. name: "Megapuff",
  5024. height: math.unit(500, "miles")
  5025. },
  5026. {
  5027. name: "Gigapuff",
  5028. height: math.unit(250000, "miles")
  5029. },
  5030. {
  5031. name: "Omegapuff",
  5032. height: math.unit(1000, "lightyears")
  5033. },
  5034. ]
  5035. ))
  5036. characterMakers.push(() => makeCharacter(
  5037. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5038. {
  5039. stomping: {
  5040. height: math.unit(6, "feet"),
  5041. weight: math.unit(170, "lbs"),
  5042. name: "Stomping",
  5043. image: {
  5044. source: "./media/characters/vivian/stomping.svg"
  5045. }
  5046. },
  5047. sitting: {
  5048. height: math.unit(6 / 1.75, "feet"),
  5049. weight: math.unit(170, "lbs"),
  5050. name: "Sitting",
  5051. image: {
  5052. source: "./media/characters/vivian/sitting.svg",
  5053. bottom: 1 / 6.4,
  5054. extra: 1,
  5055. }
  5056. },
  5057. },
  5058. [
  5059. {
  5060. name: "Normal",
  5061. height: math.unit(7, "feet"),
  5062. default: true
  5063. },
  5064. {
  5065. name: "Macro",
  5066. height: math.unit(10, "stories")
  5067. },
  5068. {
  5069. name: "Macro+",
  5070. height: math.unit(30, "stories")
  5071. },
  5072. {
  5073. name: "Megamacro",
  5074. height: math.unit(10, "miles")
  5075. },
  5076. {
  5077. name: "Megamacro+",
  5078. height: math.unit(2750000, "meters")
  5079. },
  5080. ]
  5081. ))
  5082. characterMakers.push(() => makeCharacter(
  5083. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5084. {
  5085. front: {
  5086. height: math.unit(6, "feet"),
  5087. weight: math.unit(160, "lbs"),
  5088. name: "Front",
  5089. image: {
  5090. source: "./media/characters/prince/front.svg",
  5091. extra: 3400 / 3000
  5092. }
  5093. },
  5094. jumping: {
  5095. height: math.unit(6, "feet"),
  5096. weight: math.unit(160, "lbs"),
  5097. name: "Jumping",
  5098. image: {
  5099. source: "./media/characters/prince/jump.svg",
  5100. extra: 2555 / 2134
  5101. }
  5102. },
  5103. },
  5104. [
  5105. {
  5106. name: "Normal",
  5107. height: math.unit(7.75, "feet"),
  5108. default: true
  5109. },
  5110. {
  5111. name: "Not cute",
  5112. height: math.unit(17, "feet")
  5113. },
  5114. {
  5115. name: "I said NOT",
  5116. height: math.unit(91, "feet")
  5117. },
  5118. {
  5119. name: "Please stop",
  5120. height: math.unit(560, "feet")
  5121. },
  5122. {
  5123. name: "What have you done",
  5124. height: math.unit(2200, "feet")
  5125. },
  5126. {
  5127. name: "Deer God",
  5128. height: math.unit(3.6, "miles")
  5129. },
  5130. ]
  5131. ))
  5132. characterMakers.push(() => makeCharacter(
  5133. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5134. {
  5135. standing: {
  5136. height: math.unit(6, "feet"),
  5137. weight: math.unit(300, "lbs"),
  5138. name: "Standing",
  5139. image: {
  5140. source: "./media/characters/psymon/standing.svg",
  5141. extra: 1888 / 1810,
  5142. bottom: 0.05
  5143. }
  5144. },
  5145. slithering: {
  5146. height: math.unit(6, "feet"),
  5147. weight: math.unit(300, "lbs"),
  5148. name: "Slithering",
  5149. image: {
  5150. source: "./media/characters/psymon/slithering.svg",
  5151. extra: 1330 / 1224
  5152. }
  5153. },
  5154. slitheringAlt: {
  5155. height: math.unit(6, "feet"),
  5156. weight: math.unit(300, "lbs"),
  5157. name: "Slithering (Alt)",
  5158. image: {
  5159. source: "./media/characters/psymon/slithering-alt.svg",
  5160. extra: 1330 / 1224
  5161. }
  5162. },
  5163. },
  5164. [
  5165. {
  5166. name: "Normal",
  5167. height: math.unit(11.25, "feet"),
  5168. default: true
  5169. },
  5170. {
  5171. name: "Large",
  5172. height: math.unit(27, "feet")
  5173. },
  5174. {
  5175. name: "Giant",
  5176. height: math.unit(87, "feet")
  5177. },
  5178. {
  5179. name: "Macro",
  5180. height: math.unit(365, "feet")
  5181. },
  5182. {
  5183. name: "Megamacro",
  5184. height: math.unit(3, "miles")
  5185. },
  5186. {
  5187. name: "World Serpent",
  5188. height: math.unit(8000, "miles")
  5189. },
  5190. ]
  5191. ))
  5192. characterMakers.push(() => makeCharacter(
  5193. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5194. {
  5195. front: {
  5196. height: math.unit(6, "feet"),
  5197. weight: math.unit(180, "lbs"),
  5198. name: "Front",
  5199. image: {
  5200. source: "./media/characters/daimos/front.svg",
  5201. extra: 4160 / 3897,
  5202. bottom: 0.021
  5203. }
  5204. }
  5205. },
  5206. [
  5207. {
  5208. name: "Normal",
  5209. height: math.unit(8, "feet"),
  5210. default: true
  5211. },
  5212. {
  5213. name: "Big Dog",
  5214. height: math.unit(22, "feet")
  5215. },
  5216. {
  5217. name: "Macro",
  5218. height: math.unit(127, "feet")
  5219. },
  5220. {
  5221. name: "Megamacro",
  5222. height: math.unit(3600, "feet")
  5223. },
  5224. ]
  5225. ))
  5226. characterMakers.push(() => makeCharacter(
  5227. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5228. {
  5229. side: {
  5230. height: math.unit(6, "feet"),
  5231. weight: math.unit(180, "lbs"),
  5232. name: "Side",
  5233. image: {
  5234. source: "./media/characters/blake/side.svg",
  5235. extra: 1212 / 1120,
  5236. bottom: 0.05
  5237. }
  5238. },
  5239. crouched: {
  5240. height: math.unit(6 * 0.57, "feet"),
  5241. weight: math.unit(180, "lbs"),
  5242. name: "Crouched",
  5243. image: {
  5244. source: "./media/characters/blake/crouched.svg",
  5245. extra: 840 / 587,
  5246. bottom: 0.04
  5247. }
  5248. },
  5249. bent: {
  5250. height: math.unit(6 * 0.75, "feet"),
  5251. weight: math.unit(180, "lbs"),
  5252. name: "Bent",
  5253. image: {
  5254. source: "./media/characters/blake/bent.svg",
  5255. extra: 592 / 544,
  5256. bottom: 0.035
  5257. }
  5258. },
  5259. },
  5260. [
  5261. {
  5262. name: "Normal",
  5263. height: math.unit(8 + 1 / 6, "feet"),
  5264. default: true
  5265. },
  5266. {
  5267. name: "Big Backside",
  5268. height: math.unit(37, "feet")
  5269. },
  5270. {
  5271. name: "Subway Shredder",
  5272. height: math.unit(72, "feet")
  5273. },
  5274. {
  5275. name: "City Carver",
  5276. height: math.unit(1675, "feet")
  5277. },
  5278. {
  5279. name: "Tectonic Tweaker",
  5280. height: math.unit(2300, "miles")
  5281. },
  5282. ]
  5283. ))
  5284. characterMakers.push(() => makeCharacter(
  5285. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5286. {
  5287. front: {
  5288. height: math.unit(6, "feet"),
  5289. weight: math.unit(180, "lbs"),
  5290. name: "Front",
  5291. image: {
  5292. source: "./media/characters/guisetto/front.svg",
  5293. extra: 856 / 817,
  5294. bottom: 0.06
  5295. }
  5296. },
  5297. airborne: {
  5298. height: math.unit(6, "feet"),
  5299. weight: math.unit(180, "lbs"),
  5300. name: "Airborne",
  5301. image: {
  5302. source: "./media/characters/guisetto/airborne.svg",
  5303. extra: 584 / 525
  5304. }
  5305. },
  5306. },
  5307. [
  5308. {
  5309. name: "Normal",
  5310. height: math.unit(10 + 11 / 12, "feet"),
  5311. default: true
  5312. },
  5313. {
  5314. name: "Large",
  5315. height: math.unit(35, "feet")
  5316. },
  5317. {
  5318. name: "Macro",
  5319. height: math.unit(475, "feet")
  5320. },
  5321. ]
  5322. ))
  5323. characterMakers.push(() => makeCharacter(
  5324. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5325. {
  5326. front: {
  5327. height: math.unit(6, "feet"),
  5328. weight: math.unit(180, "lbs"),
  5329. name: "Front",
  5330. image: {
  5331. source: "./media/characters/luxor/front.svg",
  5332. extra: 2940 / 2152
  5333. }
  5334. },
  5335. back: {
  5336. height: math.unit(6, "feet"),
  5337. weight: math.unit(180, "lbs"),
  5338. name: "Back",
  5339. image: {
  5340. source: "./media/characters/luxor/back.svg",
  5341. extra: 1083 / 960
  5342. }
  5343. },
  5344. },
  5345. [
  5346. {
  5347. name: "Normal",
  5348. height: math.unit(5 + 5 / 6, "feet"),
  5349. default: true
  5350. },
  5351. {
  5352. name: "Lamp",
  5353. height: math.unit(50, "feet")
  5354. },
  5355. {
  5356. name: "Lämp",
  5357. height: math.unit(300, "feet")
  5358. },
  5359. {
  5360. name: "The sun is a lamp",
  5361. height: math.unit(250000, "miles")
  5362. },
  5363. ]
  5364. ))
  5365. characterMakers.push(() => makeCharacter(
  5366. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5367. {
  5368. front: {
  5369. height: math.unit(6, "feet"),
  5370. weight: math.unit(50, "lbs"),
  5371. name: "Front",
  5372. image: {
  5373. source: "./media/characters/huoyan/front.svg"
  5374. }
  5375. },
  5376. side: {
  5377. height: math.unit(6, "feet"),
  5378. weight: math.unit(180, "lbs"),
  5379. name: "Side",
  5380. image: {
  5381. source: "./media/characters/huoyan/side.svg"
  5382. }
  5383. },
  5384. },
  5385. [
  5386. {
  5387. name: "Chef",
  5388. height: math.unit(9, "feet")
  5389. },
  5390. {
  5391. name: "Normal",
  5392. height: math.unit(65, "feet"),
  5393. default: true
  5394. },
  5395. {
  5396. name: "Macro",
  5397. height: math.unit(780, "feet")
  5398. },
  5399. {
  5400. name: "Flaming Mountain",
  5401. height: math.unit(4.8, "miles")
  5402. },
  5403. {
  5404. name: "Celestial",
  5405. height: math.unit(765000, "miles")
  5406. },
  5407. ]
  5408. ))
  5409. characterMakers.push(() => makeCharacter(
  5410. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5411. {
  5412. front: {
  5413. height: math.unit(5 + 3 / 4, "feet"),
  5414. weight: math.unit(120, "lbs"),
  5415. name: "Front",
  5416. image: {
  5417. source: "./media/characters/tails/front.svg"
  5418. }
  5419. }
  5420. },
  5421. [
  5422. {
  5423. name: "Normal",
  5424. height: math.unit(5 + 3 / 4, "feet"),
  5425. default: true
  5426. }
  5427. ]
  5428. ))
  5429. characterMakers.push(() => makeCharacter(
  5430. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5431. {
  5432. front: {
  5433. height: math.unit(4, "feet"),
  5434. weight: math.unit(50, "lbs"),
  5435. name: "Front",
  5436. image: {
  5437. source: "./media/characters/rainy/front.svg"
  5438. }
  5439. }
  5440. },
  5441. [
  5442. {
  5443. name: "Macro",
  5444. height: math.unit(800, "feet"),
  5445. default: true
  5446. }
  5447. ]
  5448. ))
  5449. characterMakers.push(() => makeCharacter(
  5450. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5451. {
  5452. front: {
  5453. height: math.unit(6, "feet"),
  5454. weight: math.unit(150, "lbs"),
  5455. name: "Front",
  5456. image: {
  5457. source: "./media/characters/rainier/front.svg"
  5458. }
  5459. }
  5460. },
  5461. [
  5462. {
  5463. name: "Micro",
  5464. height: math.unit(2, "mm"),
  5465. default: true
  5466. }
  5467. ]
  5468. ))
  5469. characterMakers.push(() => makeCharacter(
  5470. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5471. {
  5472. front: {
  5473. height: math.unit(8 + 4/12, "feet"),
  5474. name: "Front",
  5475. image: {
  5476. source: "./media/characters/andy-renard/front.svg",
  5477. extra: 1839/1726,
  5478. bottom: 134/1973
  5479. }
  5480. },
  5481. back: {
  5482. height: math.unit(8 + 4/12, "feet"),
  5483. name: "Back",
  5484. image: {
  5485. source: "./media/characters/andy-renard/back.svg",
  5486. extra: 1838/1710,
  5487. bottom: 105/1943
  5488. }
  5489. },
  5490. },
  5491. [
  5492. {
  5493. name: "Tall",
  5494. height: math.unit(8 + 4/12, "feet")
  5495. },
  5496. {
  5497. name: "Mini Macro",
  5498. height: math.unit(15, "feet"),
  5499. default: true
  5500. },
  5501. {
  5502. name: "Macro",
  5503. height: math.unit(100, "feet")
  5504. },
  5505. {
  5506. name: "Mega Macro",
  5507. height: math.unit(1000, "feet")
  5508. },
  5509. {
  5510. name: "Giga Macro",
  5511. height: math.unit(10, "miles")
  5512. },
  5513. {
  5514. name: "God Macro",
  5515. height: math.unit(1, "multiverse")
  5516. },
  5517. ]
  5518. ))
  5519. characterMakers.push(() => makeCharacter(
  5520. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5521. {
  5522. front: {
  5523. height: math.unit(6, "feet"),
  5524. weight: math.unit(210, "lbs"),
  5525. name: "Front",
  5526. image: {
  5527. source: "./media/characters/cimmaron/front-sfw.svg",
  5528. extra: 701 / 676,
  5529. bottom: 0.046
  5530. }
  5531. },
  5532. back: {
  5533. height: math.unit(6, "feet"),
  5534. weight: math.unit(210, "lbs"),
  5535. name: "Back",
  5536. image: {
  5537. source: "./media/characters/cimmaron/back-sfw.svg",
  5538. extra: 701 / 676,
  5539. bottom: 0.046
  5540. }
  5541. },
  5542. frontNsfw: {
  5543. height: math.unit(6, "feet"),
  5544. weight: math.unit(210, "lbs"),
  5545. name: "Front (NSFW)",
  5546. image: {
  5547. source: "./media/characters/cimmaron/front-nsfw.svg",
  5548. extra: 701 / 676,
  5549. bottom: 0.046
  5550. }
  5551. },
  5552. backNsfw: {
  5553. height: math.unit(6, "feet"),
  5554. weight: math.unit(210, "lbs"),
  5555. name: "Back (NSFW)",
  5556. image: {
  5557. source: "./media/characters/cimmaron/back-nsfw.svg",
  5558. extra: 701 / 676,
  5559. bottom: 0.046
  5560. }
  5561. },
  5562. dick: {
  5563. height: math.unit(1.714, "feet"),
  5564. name: "Dick",
  5565. image: {
  5566. source: "./media/characters/cimmaron/dick.svg"
  5567. }
  5568. },
  5569. },
  5570. [
  5571. {
  5572. name: "Normal",
  5573. height: math.unit(6, "feet"),
  5574. default: true
  5575. },
  5576. {
  5577. name: "Macro Mayor",
  5578. height: math.unit(350, "meters")
  5579. },
  5580. ]
  5581. ))
  5582. characterMakers.push(() => makeCharacter(
  5583. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5584. {
  5585. front: {
  5586. height: math.unit(6, "feet"),
  5587. weight: math.unit(200, "lbs"),
  5588. name: "Front",
  5589. image: {
  5590. source: "./media/characters/akari/front.svg",
  5591. extra: 962 / 901,
  5592. bottom: 0.04
  5593. }
  5594. }
  5595. },
  5596. [
  5597. {
  5598. name: "Micro",
  5599. height: math.unit(5, "inches"),
  5600. default: true
  5601. },
  5602. {
  5603. name: "Normal",
  5604. height: math.unit(7, "feet")
  5605. },
  5606. ]
  5607. ))
  5608. characterMakers.push(() => makeCharacter(
  5609. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5610. {
  5611. front: {
  5612. height: math.unit(6, "feet"),
  5613. weight: math.unit(140, "lbs"),
  5614. name: "Front",
  5615. image: {
  5616. source: "./media/characters/cynosura/front.svg",
  5617. extra: 896 / 847
  5618. }
  5619. },
  5620. back: {
  5621. height: math.unit(6, "feet"),
  5622. weight: math.unit(140, "lbs"),
  5623. name: "Back",
  5624. image: {
  5625. source: "./media/characters/cynosura/back.svg",
  5626. extra: 1365 / 1250
  5627. }
  5628. },
  5629. },
  5630. [
  5631. {
  5632. name: "Micro",
  5633. height: math.unit(4, "inches")
  5634. },
  5635. {
  5636. name: "Normal",
  5637. height: math.unit(5.75, "feet"),
  5638. default: true
  5639. },
  5640. {
  5641. name: "Tall",
  5642. height: math.unit(10, "feet")
  5643. },
  5644. {
  5645. name: "Big",
  5646. height: math.unit(20, "feet")
  5647. },
  5648. {
  5649. name: "Macro",
  5650. height: math.unit(50, "feet")
  5651. },
  5652. ]
  5653. ))
  5654. characterMakers.push(() => makeCharacter(
  5655. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5656. {
  5657. front: {
  5658. height: math.unit(13 + 2/12, "feet"),
  5659. weight: math.unit(800, "kg"),
  5660. name: "Front",
  5661. image: {
  5662. source: "./media/characters/gin/front.svg",
  5663. extra: 1312/1191,
  5664. bottom: 45/1357
  5665. }
  5666. },
  5667. mouth: {
  5668. height: math.unit(2.39 * 1.8, "feet"),
  5669. name: "Mouth",
  5670. image: {
  5671. source: "./media/characters/gin/mouth.svg"
  5672. }
  5673. },
  5674. hand: {
  5675. height: math.unit(1.57 * 2.19, "feet"),
  5676. name: "Hand",
  5677. image: {
  5678. source: "./media/characters/gin/hand.svg"
  5679. }
  5680. },
  5681. foot: {
  5682. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5683. name: "Foot",
  5684. image: {
  5685. source: "./media/characters/gin/foot.svg"
  5686. }
  5687. },
  5688. sole: {
  5689. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5690. name: "Sole",
  5691. image: {
  5692. source: "./media/characters/gin/sole.svg"
  5693. }
  5694. },
  5695. },
  5696. [
  5697. {
  5698. name: "Very Small",
  5699. height: math.unit(13 + 2 / 12, "feet")
  5700. },
  5701. {
  5702. name: "Micro",
  5703. height: math.unit(600, "miles")
  5704. },
  5705. {
  5706. name: "Regular",
  5707. height: math.unit(20, "earths"),
  5708. default: true
  5709. },
  5710. {
  5711. name: "Macro",
  5712. height: math.unit(2.2, "solarradii")
  5713. },
  5714. {
  5715. name: "Teramacro",
  5716. height: math.unit(1.2, "galaxies")
  5717. },
  5718. {
  5719. name: "Omegamacro",
  5720. height: math.unit(200, "universes")
  5721. },
  5722. ]
  5723. ))
  5724. characterMakers.push(() => makeCharacter(
  5725. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5726. {
  5727. front: {
  5728. height: math.unit(6 + 1 / 6, "feet"),
  5729. weight: math.unit(178, "lbs"),
  5730. name: "Front",
  5731. image: {
  5732. source: "./media/characters/guy/front.svg"
  5733. }
  5734. }
  5735. },
  5736. [
  5737. {
  5738. name: "Normal",
  5739. height: math.unit(6 + 1 / 6, "feet"),
  5740. default: true
  5741. },
  5742. {
  5743. name: "Large",
  5744. height: math.unit(25 + 7 / 12, "feet")
  5745. },
  5746. {
  5747. name: "Macro",
  5748. height: math.unit(60 + 9 / 12, "feet")
  5749. },
  5750. {
  5751. name: "Macro+",
  5752. height: math.unit(246, "feet")
  5753. },
  5754. {
  5755. name: "Macro++",
  5756. height: math.unit(878, "feet")
  5757. }
  5758. ]
  5759. ))
  5760. characterMakers.push(() => makeCharacter(
  5761. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5762. {
  5763. front: {
  5764. height: math.unit(9, "feet"),
  5765. weight: math.unit(800, "lbs"),
  5766. name: "Front",
  5767. image: {
  5768. source: "./media/characters/tiberius/front.svg",
  5769. extra: 2295 / 2071
  5770. }
  5771. },
  5772. back: {
  5773. height: math.unit(9, "feet"),
  5774. weight: math.unit(800, "lbs"),
  5775. name: "Back",
  5776. image: {
  5777. source: "./media/characters/tiberius/back.svg",
  5778. extra: 2373 / 2160
  5779. }
  5780. },
  5781. },
  5782. [
  5783. {
  5784. name: "Normal",
  5785. height: math.unit(9, "feet"),
  5786. default: true
  5787. }
  5788. ]
  5789. ))
  5790. characterMakers.push(() => makeCharacter(
  5791. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5792. {
  5793. front: {
  5794. height: math.unit(6, "feet"),
  5795. weight: math.unit(600, "lbs"),
  5796. name: "Front",
  5797. image: {
  5798. source: "./media/characters/surgo/front.svg",
  5799. extra: 3591 / 2227
  5800. }
  5801. },
  5802. back: {
  5803. height: math.unit(6, "feet"),
  5804. weight: math.unit(600, "lbs"),
  5805. name: "Back",
  5806. image: {
  5807. source: "./media/characters/surgo/back.svg",
  5808. extra: 3557 / 2228
  5809. }
  5810. },
  5811. laying: {
  5812. height: math.unit(6 * 0.85, "feet"),
  5813. weight: math.unit(600, "lbs"),
  5814. name: "Laying",
  5815. image: {
  5816. source: "./media/characters/surgo/laying.svg"
  5817. }
  5818. },
  5819. },
  5820. [
  5821. {
  5822. name: "Normal",
  5823. height: math.unit(6, "feet"),
  5824. default: true
  5825. }
  5826. ]
  5827. ))
  5828. characterMakers.push(() => makeCharacter(
  5829. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5830. {
  5831. side: {
  5832. height: math.unit(6, "feet"),
  5833. weight: math.unit(150, "lbs"),
  5834. name: "Side",
  5835. image: {
  5836. source: "./media/characters/cibus/side.svg",
  5837. extra: 800 / 400
  5838. }
  5839. },
  5840. },
  5841. [
  5842. {
  5843. name: "Normal",
  5844. height: math.unit(6, "feet"),
  5845. default: true
  5846. }
  5847. ]
  5848. ))
  5849. characterMakers.push(() => makeCharacter(
  5850. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5851. {
  5852. front: {
  5853. height: math.unit(6, "feet"),
  5854. weight: math.unit(240, "lbs"),
  5855. name: "Front",
  5856. image: {
  5857. source: "./media/characters/nibbles/front.svg"
  5858. }
  5859. },
  5860. side: {
  5861. height: math.unit(6, "feet"),
  5862. weight: math.unit(240, "lbs"),
  5863. name: "Side",
  5864. image: {
  5865. source: "./media/characters/nibbles/side.svg"
  5866. }
  5867. },
  5868. },
  5869. [
  5870. {
  5871. name: "Normal",
  5872. height: math.unit(9, "feet"),
  5873. default: true
  5874. }
  5875. ]
  5876. ))
  5877. characterMakers.push(() => makeCharacter(
  5878. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5879. {
  5880. side: {
  5881. height: math.unit(5 + 1 / 6, "feet"),
  5882. weight: math.unit(130, "lbs"),
  5883. name: "Side",
  5884. image: {
  5885. source: "./media/characters/rikky/side.svg",
  5886. extra: 851 / 801
  5887. }
  5888. },
  5889. },
  5890. [
  5891. {
  5892. name: "Normal",
  5893. height: math.unit(5 + 1 / 6, "feet")
  5894. },
  5895. {
  5896. name: "Macro",
  5897. height: math.unit(152, "feet"),
  5898. default: true
  5899. },
  5900. {
  5901. name: "Megamacro",
  5902. height: math.unit(7, "miles")
  5903. }
  5904. ]
  5905. ))
  5906. characterMakers.push(() => makeCharacter(
  5907. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5908. {
  5909. side: {
  5910. height: math.unit(370, "cm"),
  5911. weight: math.unit(350, "lbs"),
  5912. name: "Side",
  5913. image: {
  5914. source: "./media/characters/malfressa/side.svg"
  5915. }
  5916. },
  5917. walking: {
  5918. height: math.unit(370, "cm"),
  5919. weight: math.unit(350, "lbs"),
  5920. name: "Walking",
  5921. image: {
  5922. source: "./media/characters/malfressa/walking.svg"
  5923. }
  5924. },
  5925. feral: {
  5926. height: math.unit(2500, "cm"),
  5927. weight: math.unit(100000, "lbs"),
  5928. name: "Feral",
  5929. image: {
  5930. source: "./media/characters/malfressa/feral.svg",
  5931. extra: 2108 / 837,
  5932. bottom: 0.02
  5933. }
  5934. },
  5935. },
  5936. [
  5937. {
  5938. name: "Normal",
  5939. height: math.unit(370, "cm")
  5940. },
  5941. {
  5942. name: "Macro",
  5943. height: math.unit(300, "meters"),
  5944. default: true
  5945. }
  5946. ]
  5947. ))
  5948. characterMakers.push(() => makeCharacter(
  5949. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5950. {
  5951. front: {
  5952. height: math.unit(6, "feet"),
  5953. weight: math.unit(60, "kg"),
  5954. name: "Front",
  5955. image: {
  5956. source: "./media/characters/jaro/front.svg"
  5957. }
  5958. },
  5959. back: {
  5960. height: math.unit(6, "feet"),
  5961. weight: math.unit(60, "kg"),
  5962. name: "Back",
  5963. image: {
  5964. source: "./media/characters/jaro/back.svg"
  5965. }
  5966. },
  5967. },
  5968. [
  5969. {
  5970. name: "Micro",
  5971. height: math.unit(7, "inches")
  5972. },
  5973. {
  5974. name: "Normal",
  5975. height: math.unit(5.5, "feet"),
  5976. default: true
  5977. },
  5978. {
  5979. name: "Minimacro",
  5980. height: math.unit(20, "feet")
  5981. },
  5982. {
  5983. name: "Macro",
  5984. height: math.unit(200, "meters")
  5985. }
  5986. ]
  5987. ))
  5988. characterMakers.push(() => makeCharacter(
  5989. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5990. {
  5991. front: {
  5992. height: math.unit(6, "feet"),
  5993. weight: math.unit(195, "lb"),
  5994. name: "Front",
  5995. image: {
  5996. source: "./media/characters/rogue/front.svg"
  5997. }
  5998. },
  5999. },
  6000. [
  6001. {
  6002. name: "Macro",
  6003. height: math.unit(90, "feet"),
  6004. default: true
  6005. },
  6006. ]
  6007. ))
  6008. characterMakers.push(() => makeCharacter(
  6009. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6010. {
  6011. front: {
  6012. height: math.unit(5 + 8 / 12, "feet"),
  6013. weight: math.unit(140, "lb"),
  6014. name: "Front",
  6015. image: {
  6016. source: "./media/characters/piper/front.svg",
  6017. extra: 3948/3655,
  6018. bottom: 0/3948
  6019. }
  6020. },
  6021. },
  6022. [
  6023. {
  6024. name: "Micro",
  6025. height: math.unit(2, "inches")
  6026. },
  6027. {
  6028. name: "Normal",
  6029. height: math.unit(5 + 8 / 12, "feet")
  6030. },
  6031. {
  6032. name: "Macro",
  6033. height: math.unit(250, "feet"),
  6034. default: true
  6035. },
  6036. {
  6037. name: "Megamacro",
  6038. height: math.unit(7, "miles")
  6039. },
  6040. ]
  6041. ))
  6042. characterMakers.push(() => makeCharacter(
  6043. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6044. {
  6045. front: {
  6046. height: math.unit(6, "feet"),
  6047. weight: math.unit(220, "lb"),
  6048. name: "Front",
  6049. image: {
  6050. source: "./media/characters/gemini/front.svg"
  6051. }
  6052. },
  6053. back: {
  6054. height: math.unit(6, "feet"),
  6055. weight: math.unit(220, "lb"),
  6056. name: "Back",
  6057. image: {
  6058. source: "./media/characters/gemini/back.svg"
  6059. }
  6060. },
  6061. kneeling: {
  6062. height: math.unit(6 / 1.5, "feet"),
  6063. weight: math.unit(220, "lb"),
  6064. name: "Kneeling",
  6065. image: {
  6066. source: "./media/characters/gemini/kneeling.svg",
  6067. bottom: 0.02
  6068. }
  6069. },
  6070. },
  6071. [
  6072. {
  6073. name: "Macro",
  6074. height: math.unit(300, "meters"),
  6075. default: true
  6076. },
  6077. {
  6078. name: "Megamacro",
  6079. height: math.unit(6900, "meters")
  6080. },
  6081. ]
  6082. ))
  6083. characterMakers.push(() => makeCharacter(
  6084. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6085. {
  6086. anthro: {
  6087. height: math.unit(2.35, "meters"),
  6088. weight: math.unit(73, "kg"),
  6089. name: "Anthro",
  6090. image: {
  6091. source: "./media/characters/alicia/anthro.svg",
  6092. extra: 2571 / 2385,
  6093. bottom: 75 / 2648
  6094. }
  6095. },
  6096. paw: {
  6097. height: math.unit(1.32, "feet"),
  6098. name: "Paw",
  6099. image: {
  6100. source: "./media/characters/alicia/paw.svg"
  6101. }
  6102. },
  6103. feral: {
  6104. height: math.unit(1.69, "meters"),
  6105. weight: math.unit(73, "kg"),
  6106. name: "Feral",
  6107. image: {
  6108. source: "./media/characters/alicia/feral.svg",
  6109. extra: 2123 / 1715,
  6110. bottom: 222 / 2349
  6111. }
  6112. },
  6113. },
  6114. [
  6115. {
  6116. name: "Normal",
  6117. height: math.unit(2.35, "meters")
  6118. },
  6119. {
  6120. name: "Macro",
  6121. height: math.unit(60, "meters"),
  6122. default: true
  6123. },
  6124. {
  6125. name: "Megamacro",
  6126. height: math.unit(10000, "kilometers")
  6127. },
  6128. ]
  6129. ))
  6130. characterMakers.push(() => makeCharacter(
  6131. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6132. {
  6133. front: {
  6134. height: math.unit(7, "feet"),
  6135. weight: math.unit(250, "lbs"),
  6136. name: "Front",
  6137. image: {
  6138. source: "./media/characters/archy/front.svg"
  6139. }
  6140. }
  6141. },
  6142. [
  6143. {
  6144. name: "Micro",
  6145. height: math.unit(1, "inch")
  6146. },
  6147. {
  6148. name: "Shorty",
  6149. height: math.unit(5, "feet")
  6150. },
  6151. {
  6152. name: "Normal",
  6153. height: math.unit(7, "feet")
  6154. },
  6155. {
  6156. name: "Macro",
  6157. height: math.unit(600, "meters"),
  6158. default: true
  6159. },
  6160. {
  6161. name: "Megamacro",
  6162. height: math.unit(1, "mile")
  6163. },
  6164. ]
  6165. ))
  6166. characterMakers.push(() => makeCharacter(
  6167. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6168. {
  6169. front: {
  6170. height: math.unit(1.65, "meters"),
  6171. weight: math.unit(74, "kg"),
  6172. name: "Front",
  6173. image: {
  6174. source: "./media/characters/berri/front.svg",
  6175. extra: 857 / 837,
  6176. bottom: 18 / 877
  6177. }
  6178. },
  6179. bum: {
  6180. height: math.unit(1.46, "feet"),
  6181. name: "Bum",
  6182. image: {
  6183. source: "./media/characters/berri/bum.svg"
  6184. }
  6185. },
  6186. mouth: {
  6187. height: math.unit(0.44, "feet"),
  6188. name: "Mouth",
  6189. image: {
  6190. source: "./media/characters/berri/mouth.svg"
  6191. }
  6192. },
  6193. paw: {
  6194. height: math.unit(0.826, "feet"),
  6195. name: "Paw",
  6196. image: {
  6197. source: "./media/characters/berri/paw.svg"
  6198. }
  6199. },
  6200. },
  6201. [
  6202. {
  6203. name: "Normal",
  6204. height: math.unit(1.65, "meters")
  6205. },
  6206. {
  6207. name: "Macro",
  6208. height: math.unit(60, "m"),
  6209. default: true
  6210. },
  6211. {
  6212. name: "Megamacro",
  6213. height: math.unit(9.213, "km")
  6214. },
  6215. {
  6216. name: "Planet Eater",
  6217. height: math.unit(489, "megameters")
  6218. },
  6219. {
  6220. name: "Teramacro",
  6221. height: math.unit(2471635000000, "meters")
  6222. },
  6223. {
  6224. name: "Examacro",
  6225. height: math.unit(8.0624e+26, "meters")
  6226. }
  6227. ]
  6228. ))
  6229. characterMakers.push(() => makeCharacter(
  6230. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6231. {
  6232. front: {
  6233. height: math.unit(1.72, "meters"),
  6234. weight: math.unit(68, "kg"),
  6235. name: "Front",
  6236. image: {
  6237. source: "./media/characters/lexi/front.svg"
  6238. }
  6239. }
  6240. },
  6241. [
  6242. {
  6243. name: "Very Smol",
  6244. height: math.unit(10, "mm")
  6245. },
  6246. {
  6247. name: "Micro",
  6248. height: math.unit(6.8, "cm"),
  6249. default: true
  6250. },
  6251. {
  6252. name: "Normal",
  6253. height: math.unit(1.72, "m")
  6254. }
  6255. ]
  6256. ))
  6257. characterMakers.push(() => makeCharacter(
  6258. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6259. {
  6260. front: {
  6261. height: math.unit(1.69, "meters"),
  6262. weight: math.unit(68, "kg"),
  6263. name: "Front",
  6264. image: {
  6265. source: "./media/characters/martin/front.svg",
  6266. extra: 596 / 581
  6267. }
  6268. }
  6269. },
  6270. [
  6271. {
  6272. name: "Micro",
  6273. height: math.unit(6.85, "cm"),
  6274. default: true
  6275. },
  6276. {
  6277. name: "Normal",
  6278. height: math.unit(1.69, "m")
  6279. }
  6280. ]
  6281. ))
  6282. characterMakers.push(() => makeCharacter(
  6283. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6284. {
  6285. front: {
  6286. height: math.unit(1.69, "meters"),
  6287. weight: math.unit(68, "kg"),
  6288. name: "Front",
  6289. image: {
  6290. source: "./media/characters/juno/front.svg"
  6291. }
  6292. }
  6293. },
  6294. [
  6295. {
  6296. name: "Micro",
  6297. height: math.unit(7, "cm")
  6298. },
  6299. {
  6300. name: "Normal",
  6301. height: math.unit(1.89, "m")
  6302. },
  6303. {
  6304. name: "Macro",
  6305. height: math.unit(353, "meters"),
  6306. default: true
  6307. }
  6308. ]
  6309. ))
  6310. characterMakers.push(() => makeCharacter(
  6311. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6312. {
  6313. front: {
  6314. height: math.unit(1.93, "meters"),
  6315. weight: math.unit(83, "kg"),
  6316. name: "Front",
  6317. image: {
  6318. source: "./media/characters/samantha/front.svg"
  6319. }
  6320. },
  6321. frontClothed: {
  6322. height: math.unit(1.93, "meters"),
  6323. weight: math.unit(83, "kg"),
  6324. name: "Front (Clothed)",
  6325. image: {
  6326. source: "./media/characters/samantha/front-clothed.svg"
  6327. }
  6328. },
  6329. back: {
  6330. height: math.unit(1.93, "meters"),
  6331. weight: math.unit(83, "kg"),
  6332. name: "Back",
  6333. image: {
  6334. source: "./media/characters/samantha/back.svg"
  6335. }
  6336. },
  6337. },
  6338. [
  6339. {
  6340. name: "Normal",
  6341. height: math.unit(1.93, "m")
  6342. },
  6343. {
  6344. name: "Macro",
  6345. height: math.unit(74, "meters"),
  6346. default: true
  6347. },
  6348. {
  6349. name: "Macro+",
  6350. height: math.unit(223, "meters"),
  6351. },
  6352. {
  6353. name: "Megamacro",
  6354. height: math.unit(8381, "meters"),
  6355. },
  6356. {
  6357. name: "Megamacro+",
  6358. height: math.unit(12000, "kilometers")
  6359. },
  6360. ]
  6361. ))
  6362. characterMakers.push(() => makeCharacter(
  6363. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6364. {
  6365. front: {
  6366. height: math.unit(1.92, "meters"),
  6367. weight: math.unit(80, "kg"),
  6368. name: "Front",
  6369. image: {
  6370. source: "./media/characters/dr-clay/front.svg"
  6371. }
  6372. },
  6373. frontClothed: {
  6374. height: math.unit(1.92, "meters"),
  6375. weight: math.unit(80, "kg"),
  6376. name: "Front (Clothed)",
  6377. image: {
  6378. source: "./media/characters/dr-clay/front-clothed.svg"
  6379. }
  6380. }
  6381. },
  6382. [
  6383. {
  6384. name: "Normal",
  6385. height: math.unit(1.92, "m")
  6386. },
  6387. {
  6388. name: "Macro",
  6389. height: math.unit(214, "meters"),
  6390. default: true
  6391. },
  6392. {
  6393. name: "Macro+",
  6394. height: math.unit(12.237, "meters"),
  6395. },
  6396. {
  6397. name: "Megamacro",
  6398. height: math.unit(557, "megameters"),
  6399. },
  6400. {
  6401. name: "Unimaginable",
  6402. height: math.unit(120e9, "lightyears")
  6403. },
  6404. ]
  6405. ))
  6406. characterMakers.push(() => makeCharacter(
  6407. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6408. {
  6409. front: {
  6410. height: math.unit(2, "meters"),
  6411. weight: math.unit(80, "kg"),
  6412. name: "Front",
  6413. image: {
  6414. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6415. }
  6416. }
  6417. },
  6418. [
  6419. {
  6420. name: "Teramacro",
  6421. height: math.unit(500000, "lightyears"),
  6422. default: true
  6423. },
  6424. ]
  6425. ))
  6426. characterMakers.push(() => makeCharacter(
  6427. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6428. {
  6429. front: {
  6430. height: math.unit(2, "meters"),
  6431. weight: math.unit(150, "kg"),
  6432. name: "Front",
  6433. image: {
  6434. source: "./media/characters/vemus/front.svg",
  6435. extra: 1074/936,
  6436. bottom: 23/1097
  6437. }
  6438. }
  6439. },
  6440. [
  6441. {
  6442. name: "Normal",
  6443. height: math.unit(3.75, "meters"),
  6444. default: true
  6445. },
  6446. {
  6447. name: "Big",
  6448. height: math.unit(8, "meters")
  6449. },
  6450. {
  6451. name: "Macro",
  6452. height: math.unit(100, "meters")
  6453. },
  6454. {
  6455. name: "Macro+",
  6456. height: math.unit(1500, "meters")
  6457. },
  6458. {
  6459. name: "Stellar",
  6460. height: math.unit(14e8, "meters")
  6461. },
  6462. ]
  6463. ))
  6464. characterMakers.push(() => makeCharacter(
  6465. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6466. {
  6467. front: {
  6468. height: math.unit(2, "meters"),
  6469. weight: math.unit(70, "kg"),
  6470. name: "Front",
  6471. image: {
  6472. source: "./media/characters/beherit/front.svg",
  6473. extra: 1408 / 1242
  6474. }
  6475. }
  6476. },
  6477. [
  6478. {
  6479. name: "Normal",
  6480. height: math.unit(6, "feet")
  6481. },
  6482. {
  6483. name: "Lorg",
  6484. height: math.unit(25, "feet"),
  6485. default: true
  6486. },
  6487. {
  6488. name: "Lorger",
  6489. height: math.unit(75, "feet")
  6490. },
  6491. {
  6492. name: "Macro",
  6493. height: math.unit(200, "meters")
  6494. },
  6495. ]
  6496. ))
  6497. characterMakers.push(() => makeCharacter(
  6498. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6499. {
  6500. front: {
  6501. height: math.unit(2, "meters"),
  6502. weight: math.unit(150, "kg"),
  6503. name: "Front",
  6504. image: {
  6505. source: "./media/characters/everett/front.svg",
  6506. extra: 2038 / 1737,
  6507. bottom: 0.03
  6508. }
  6509. },
  6510. paw: {
  6511. height: math.unit(2 / 3.6, "meters"),
  6512. name: "Paw",
  6513. image: {
  6514. source: "./media/characters/everett/paw.svg"
  6515. }
  6516. },
  6517. },
  6518. [
  6519. {
  6520. name: "Normal",
  6521. height: math.unit(15, "feet"),
  6522. default: true
  6523. },
  6524. {
  6525. name: "Lorg",
  6526. height: math.unit(70, "feet"),
  6527. default: true
  6528. },
  6529. {
  6530. name: "Lorger",
  6531. height: math.unit(250, "feet")
  6532. },
  6533. {
  6534. name: "Macro",
  6535. height: math.unit(500, "meters")
  6536. },
  6537. ]
  6538. ))
  6539. characterMakers.push(() => makeCharacter(
  6540. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6541. {
  6542. front: {
  6543. height: math.unit(2, "meters"),
  6544. weight: math.unit(86, "kg"),
  6545. name: "Front",
  6546. image: {
  6547. source: "./media/characters/rose/front.svg",
  6548. extra: 1785/1636,
  6549. bottom: 30/1815
  6550. }
  6551. },
  6552. frontSporty: {
  6553. height: math.unit(2, "meters"),
  6554. weight: math.unit(86, "kg"),
  6555. name: "Front (Sporty)",
  6556. image: {
  6557. source: "./media/characters/rose/front-sporty.svg",
  6558. extra: 350/335,
  6559. bottom: 10/360
  6560. }
  6561. },
  6562. frontAlt: {
  6563. height: math.unit(1.6, "meters"),
  6564. weight: math.unit(86, "kg"),
  6565. name: "Front (Alt)",
  6566. image: {
  6567. source: "./media/characters/rose/front-alt.svg",
  6568. extra: 299/283,
  6569. bottom: 3/302
  6570. }
  6571. },
  6572. plush: {
  6573. height: math.unit(2, "meters"),
  6574. weight: math.unit(86/3, "kg"),
  6575. name: "Plush",
  6576. image: {
  6577. source: "./media/characters/rose/plush.svg",
  6578. extra: 361/337,
  6579. bottom: 11/372
  6580. }
  6581. },
  6582. },
  6583. [
  6584. {
  6585. name: "True Micro",
  6586. height: math.unit(9, "cm")
  6587. },
  6588. {
  6589. name: "Micro",
  6590. height: math.unit(16, "cm")
  6591. },
  6592. {
  6593. name: "Normal",
  6594. height: math.unit(1.85, "meters"),
  6595. default: true
  6596. },
  6597. {
  6598. name: "Mini-Macro",
  6599. height: math.unit(5, "meters")
  6600. },
  6601. {
  6602. name: "Macro",
  6603. height: math.unit(15, "meters")
  6604. },
  6605. {
  6606. name: "True Macro",
  6607. height: math.unit(40, "meters")
  6608. },
  6609. {
  6610. name: "City Scale",
  6611. height: math.unit(1, "km")
  6612. },
  6613. ]
  6614. ))
  6615. characterMakers.push(() => makeCharacter(
  6616. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6617. {
  6618. front: {
  6619. height: math.unit(2, "meters"),
  6620. weight: math.unit(350, "lbs"),
  6621. name: "Front",
  6622. image: {
  6623. source: "./media/characters/regal/front.svg"
  6624. }
  6625. },
  6626. back: {
  6627. height: math.unit(2, "meters"),
  6628. weight: math.unit(350, "lbs"),
  6629. name: "Back",
  6630. image: {
  6631. source: "./media/characters/regal/back.svg"
  6632. }
  6633. },
  6634. },
  6635. [
  6636. {
  6637. name: "Macro",
  6638. height: math.unit(350, "feet"),
  6639. default: true
  6640. }
  6641. ]
  6642. ))
  6643. characterMakers.push(() => makeCharacter(
  6644. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6645. {
  6646. front: {
  6647. height: math.unit(4 + 11 / 12, "feet"),
  6648. weight: math.unit(100, "lbs"),
  6649. name: "Front",
  6650. image: {
  6651. source: "./media/characters/opal/front.svg"
  6652. }
  6653. },
  6654. frontAlt: {
  6655. height: math.unit(4 + 11 / 12, "feet"),
  6656. weight: math.unit(100, "lbs"),
  6657. name: "Front (Alt)",
  6658. image: {
  6659. source: "./media/characters/opal/front-alt.svg"
  6660. }
  6661. },
  6662. },
  6663. [
  6664. {
  6665. name: "Small",
  6666. height: math.unit(4 + 11 / 12, "feet")
  6667. },
  6668. {
  6669. name: "Normal",
  6670. height: math.unit(20, "feet"),
  6671. default: true
  6672. },
  6673. {
  6674. name: "Macro",
  6675. height: math.unit(120, "feet")
  6676. },
  6677. {
  6678. name: "Megamacro",
  6679. height: math.unit(80, "miles")
  6680. },
  6681. {
  6682. name: "True Size",
  6683. height: math.unit(100000, "lightyears")
  6684. },
  6685. ]
  6686. ))
  6687. characterMakers.push(() => makeCharacter(
  6688. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6689. {
  6690. front: {
  6691. height: math.unit(6, "feet"),
  6692. weight: math.unit(200, "lbs"),
  6693. name: "Front",
  6694. image: {
  6695. source: "./media/characters/vector-wuff/front.svg"
  6696. }
  6697. }
  6698. },
  6699. [
  6700. {
  6701. name: "Normal",
  6702. height: math.unit(2.8, "meters")
  6703. },
  6704. {
  6705. name: "Macro",
  6706. height: math.unit(450, "meters"),
  6707. default: true
  6708. },
  6709. {
  6710. name: "Megamacro",
  6711. height: math.unit(15, "kilometers")
  6712. }
  6713. ]
  6714. ))
  6715. characterMakers.push(() => makeCharacter(
  6716. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6717. {
  6718. front: {
  6719. height: math.unit(6, "feet"),
  6720. weight: math.unit(256, "lbs"),
  6721. name: "Front",
  6722. image: {
  6723. source: "./media/characters/dannik/front.svg"
  6724. }
  6725. }
  6726. },
  6727. [
  6728. {
  6729. name: "Macro",
  6730. height: math.unit(69.57, "meters"),
  6731. default: true
  6732. },
  6733. ]
  6734. ))
  6735. characterMakers.push(() => makeCharacter(
  6736. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6737. {
  6738. front: {
  6739. height: math.unit(6, "feet"),
  6740. weight: math.unit(120, "lbs"),
  6741. name: "Front",
  6742. image: {
  6743. source: "./media/characters/azura-saharah/front.svg"
  6744. }
  6745. },
  6746. back: {
  6747. height: math.unit(6, "feet"),
  6748. weight: math.unit(120, "lbs"),
  6749. name: "Back",
  6750. image: {
  6751. source: "./media/characters/azura-saharah/back.svg"
  6752. }
  6753. },
  6754. },
  6755. [
  6756. {
  6757. name: "Macro",
  6758. height: math.unit(100, "feet"),
  6759. default: true
  6760. },
  6761. ]
  6762. ))
  6763. characterMakers.push(() => makeCharacter(
  6764. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6765. {
  6766. side: {
  6767. height: math.unit(5 + 4 / 12, "feet"),
  6768. weight: math.unit(163, "lbs"),
  6769. name: "Side",
  6770. image: {
  6771. source: "./media/characters/kennedy/side.svg"
  6772. }
  6773. }
  6774. },
  6775. [
  6776. {
  6777. name: "Standard Doggo",
  6778. height: math.unit(5 + 4 / 12, "feet")
  6779. },
  6780. {
  6781. name: "Big Doggo",
  6782. height: math.unit(25 + 3 / 12, "feet"),
  6783. default: true
  6784. },
  6785. ]
  6786. ))
  6787. characterMakers.push(() => makeCharacter(
  6788. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6789. {
  6790. front: {
  6791. height: math.unit(6, "feet"),
  6792. weight: math.unit(90, "lbs"),
  6793. name: "Front",
  6794. image: {
  6795. source: "./media/characters/odi-lunar/front.svg"
  6796. }
  6797. }
  6798. },
  6799. [
  6800. {
  6801. name: "Micro",
  6802. height: math.unit(3, "inches"),
  6803. default: true
  6804. },
  6805. {
  6806. name: "Normal",
  6807. height: math.unit(5.5, "feet")
  6808. }
  6809. ]
  6810. ))
  6811. characterMakers.push(() => makeCharacter(
  6812. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6813. {
  6814. back: {
  6815. height: math.unit(6, "feet"),
  6816. weight: math.unit(220, "lbs"),
  6817. name: "Back",
  6818. image: {
  6819. source: "./media/characters/mandake/back.svg"
  6820. }
  6821. }
  6822. },
  6823. [
  6824. {
  6825. name: "Normal",
  6826. height: math.unit(7, "feet"),
  6827. default: true
  6828. },
  6829. {
  6830. name: "Macro",
  6831. height: math.unit(78, "feet")
  6832. },
  6833. {
  6834. name: "Macro+",
  6835. height: math.unit(300, "meters")
  6836. },
  6837. {
  6838. name: "Macro++",
  6839. height: math.unit(2400, "feet")
  6840. },
  6841. {
  6842. name: "Megamacro",
  6843. height: math.unit(5167, "meters")
  6844. },
  6845. {
  6846. name: "Gigamacro",
  6847. height: math.unit(41769, "miles")
  6848. },
  6849. ]
  6850. ))
  6851. characterMakers.push(() => makeCharacter(
  6852. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6853. {
  6854. front: {
  6855. height: math.unit(6, "feet"),
  6856. weight: math.unit(120, "lbs"),
  6857. name: "Front",
  6858. image: {
  6859. source: "./media/characters/yozey/front.svg"
  6860. }
  6861. },
  6862. frontAlt: {
  6863. height: math.unit(6, "feet"),
  6864. weight: math.unit(120, "lbs"),
  6865. name: "Front (Alt)",
  6866. image: {
  6867. source: "./media/characters/yozey/front-alt.svg"
  6868. }
  6869. },
  6870. side: {
  6871. height: math.unit(6, "feet"),
  6872. weight: math.unit(120, "lbs"),
  6873. name: "Side",
  6874. image: {
  6875. source: "./media/characters/yozey/side.svg"
  6876. }
  6877. },
  6878. },
  6879. [
  6880. {
  6881. name: "Micro",
  6882. height: math.unit(3, "inches"),
  6883. default: true
  6884. },
  6885. {
  6886. name: "Normal",
  6887. height: math.unit(6, "feet")
  6888. }
  6889. ]
  6890. ))
  6891. characterMakers.push(() => makeCharacter(
  6892. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6893. {
  6894. front: {
  6895. height: math.unit(6, "feet"),
  6896. weight: math.unit(103, "lbs"),
  6897. name: "Front",
  6898. image: {
  6899. source: "./media/characters/valeska-voss/front.svg"
  6900. }
  6901. }
  6902. },
  6903. [
  6904. {
  6905. name: "Mini-Sized Sub",
  6906. height: math.unit(3.1, "inches")
  6907. },
  6908. {
  6909. name: "Mid-Sized Sub",
  6910. height: math.unit(6.2, "inches")
  6911. },
  6912. {
  6913. name: "Full-Sized Sub",
  6914. height: math.unit(9.3, "inches")
  6915. },
  6916. {
  6917. name: "Normal",
  6918. height: math.unit(5 + 2 / 12, "foot"),
  6919. default: true
  6920. },
  6921. ]
  6922. ))
  6923. characterMakers.push(() => makeCharacter(
  6924. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6925. {
  6926. front: {
  6927. height: math.unit(6, "feet"),
  6928. weight: math.unit(160, "lbs"),
  6929. name: "Front",
  6930. image: {
  6931. source: "./media/characters/gene-zeta/front.svg",
  6932. extra: 3006 / 2826,
  6933. bottom: 182 / 3188
  6934. }
  6935. }
  6936. },
  6937. [
  6938. {
  6939. name: "Micro",
  6940. height: math.unit(6, "inches")
  6941. },
  6942. {
  6943. name: "Normal",
  6944. height: math.unit(5 + 11 / 12, "foot"),
  6945. default: true
  6946. },
  6947. {
  6948. name: "Macro",
  6949. height: math.unit(140, "feet")
  6950. },
  6951. {
  6952. name: "Supercharged",
  6953. height: math.unit(2500, "feet")
  6954. },
  6955. ]
  6956. ))
  6957. characterMakers.push(() => makeCharacter(
  6958. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6959. {
  6960. front: {
  6961. height: math.unit(6, "feet"),
  6962. weight: math.unit(350, "lbs"),
  6963. name: "Front",
  6964. image: {
  6965. source: "./media/characters/razinox/front.svg",
  6966. extra: 1686 / 1548,
  6967. bottom: 28.2 / 1868
  6968. }
  6969. },
  6970. back: {
  6971. height: math.unit(6, "feet"),
  6972. weight: math.unit(350, "lbs"),
  6973. name: "Back",
  6974. image: {
  6975. source: "./media/characters/razinox/back.svg",
  6976. extra: 1660 / 1590,
  6977. bottom: 15 / 1665
  6978. }
  6979. },
  6980. },
  6981. [
  6982. {
  6983. name: "Normal",
  6984. height: math.unit(10 + 8 / 12, "foot")
  6985. },
  6986. {
  6987. name: "Minimacro",
  6988. height: math.unit(15, "foot")
  6989. },
  6990. {
  6991. name: "Macro",
  6992. height: math.unit(60, "foot"),
  6993. default: true
  6994. },
  6995. {
  6996. name: "Megamacro",
  6997. height: math.unit(5, "miles")
  6998. },
  6999. {
  7000. name: "Gigamacro",
  7001. height: math.unit(6000, "miles")
  7002. },
  7003. ]
  7004. ))
  7005. characterMakers.push(() => makeCharacter(
  7006. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7007. {
  7008. front: {
  7009. height: math.unit(6, "feet"),
  7010. weight: math.unit(150, "lbs"),
  7011. name: "Front",
  7012. image: {
  7013. source: "./media/characters/cobalt/front.svg"
  7014. }
  7015. }
  7016. },
  7017. [
  7018. {
  7019. name: "Normal",
  7020. height: math.unit(8 + 1 / 12, "foot")
  7021. },
  7022. {
  7023. name: "Macro",
  7024. height: math.unit(111, "foot"),
  7025. default: true
  7026. },
  7027. {
  7028. name: "Supracosmic",
  7029. height: math.unit(1e42, "feet")
  7030. },
  7031. ]
  7032. ))
  7033. characterMakers.push(() => makeCharacter(
  7034. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7035. {
  7036. front: {
  7037. height: math.unit(6, "feet"),
  7038. weight: math.unit(140, "lbs"),
  7039. name: "Front",
  7040. image: {
  7041. source: "./media/characters/amanda/front.svg"
  7042. }
  7043. }
  7044. },
  7045. [
  7046. {
  7047. name: "Micro",
  7048. height: math.unit(5, "inches"),
  7049. default: true
  7050. },
  7051. ]
  7052. ))
  7053. characterMakers.push(() => makeCharacter(
  7054. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7055. {
  7056. front: {
  7057. height: math.unit(2.75, "meters"),
  7058. weight: math.unit(1200, "lb"),
  7059. name: "Front",
  7060. image: {
  7061. source: "./media/characters/teal/front.svg",
  7062. extra: 2463 / 2320,
  7063. bottom: 166 / 2629
  7064. }
  7065. },
  7066. back: {
  7067. height: math.unit(2.75, "meters"),
  7068. weight: math.unit(1200, "lb"),
  7069. name: "Back",
  7070. image: {
  7071. source: "./media/characters/teal/back.svg",
  7072. extra: 2580 / 2489,
  7073. bottom: 151 / 2731
  7074. }
  7075. },
  7076. sitting: {
  7077. height: math.unit(1.9, "meters"),
  7078. weight: math.unit(1200, "lb"),
  7079. name: "Sitting",
  7080. image: {
  7081. source: "./media/characters/teal/sitting.svg",
  7082. extra: 623 / 590,
  7083. bottom: 121 / 744
  7084. }
  7085. },
  7086. standing: {
  7087. height: math.unit(2.75, "meters"),
  7088. weight: math.unit(1200, "lb"),
  7089. name: "Standing",
  7090. image: {
  7091. source: "./media/characters/teal/standing.svg",
  7092. extra: 923 / 893,
  7093. bottom: 60 / 983
  7094. }
  7095. },
  7096. stretching: {
  7097. height: math.unit(3.65, "meters"),
  7098. weight: math.unit(1200, "lb"),
  7099. name: "Stretching",
  7100. image: {
  7101. source: "./media/characters/teal/stretching.svg",
  7102. extra: 1276 / 1244,
  7103. bottom: 0 / 1276
  7104. }
  7105. },
  7106. legged: {
  7107. height: math.unit(1.3, "meters"),
  7108. weight: math.unit(100, "lb"),
  7109. name: "Legged",
  7110. image: {
  7111. source: "./media/characters/teal/legged.svg",
  7112. extra: 462 / 437,
  7113. bottom: 24 / 486
  7114. }
  7115. },
  7116. naga: {
  7117. height: math.unit(5.4, "meters"),
  7118. weight: math.unit(4000, "lb"),
  7119. name: "Naga",
  7120. image: {
  7121. source: "./media/characters/teal/naga.svg",
  7122. extra: 1902 / 1858,
  7123. bottom: 0 / 1902
  7124. }
  7125. },
  7126. hand: {
  7127. height: math.unit(0.52, "meters"),
  7128. name: "Hand",
  7129. image: {
  7130. source: "./media/characters/teal/hand.svg"
  7131. }
  7132. },
  7133. maw: {
  7134. height: math.unit(0.43, "meters"),
  7135. name: "Maw",
  7136. image: {
  7137. source: "./media/characters/teal/maw.svg"
  7138. }
  7139. },
  7140. slit: {
  7141. height: math.unit(0.25, "meters"),
  7142. name: "Slit",
  7143. image: {
  7144. source: "./media/characters/teal/slit.svg"
  7145. }
  7146. },
  7147. },
  7148. [
  7149. {
  7150. name: "Normal",
  7151. height: math.unit(2.75, "meters"),
  7152. default: true
  7153. },
  7154. {
  7155. name: "Macro",
  7156. height: math.unit(300, "feet")
  7157. },
  7158. {
  7159. name: "Macro+",
  7160. height: math.unit(2000, "feet")
  7161. },
  7162. ]
  7163. ))
  7164. characterMakers.push(() => makeCharacter(
  7165. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7166. {
  7167. frontCat: {
  7168. height: math.unit(6, "feet"),
  7169. weight: math.unit(180, "lbs"),
  7170. name: "Front (Cat)",
  7171. image: {
  7172. source: "./media/characters/ravin-amulet/front-cat.svg"
  7173. }
  7174. },
  7175. frontCatAlt: {
  7176. height: math.unit(6, "feet"),
  7177. weight: math.unit(180, "lbs"),
  7178. name: "Front (Alt, Cat)",
  7179. image: {
  7180. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7181. }
  7182. },
  7183. frontWerewolf: {
  7184. height: math.unit(6 * 1.2, "feet"),
  7185. weight: math.unit(225, "lbs"),
  7186. name: "Front (Werewolf)",
  7187. image: {
  7188. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7189. }
  7190. },
  7191. backWerewolf: {
  7192. height: math.unit(6 * 1.2, "feet"),
  7193. weight: math.unit(225, "lbs"),
  7194. name: "Back (Werewolf)",
  7195. image: {
  7196. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7197. }
  7198. },
  7199. },
  7200. [
  7201. {
  7202. name: "Nano",
  7203. height: math.unit(1, "micrometer")
  7204. },
  7205. {
  7206. name: "Micro",
  7207. height: math.unit(1, "inch")
  7208. },
  7209. {
  7210. name: "Normal",
  7211. height: math.unit(6, "feet"),
  7212. default: true
  7213. },
  7214. {
  7215. name: "Macro",
  7216. height: math.unit(60, "feet")
  7217. }
  7218. ]
  7219. ))
  7220. characterMakers.push(() => makeCharacter(
  7221. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7222. {
  7223. front: {
  7224. height: math.unit(6, "feet"),
  7225. weight: math.unit(165, "lbs"),
  7226. name: "Front",
  7227. image: {
  7228. source: "./media/characters/fluoresce/front.svg"
  7229. }
  7230. }
  7231. },
  7232. [
  7233. {
  7234. name: "Micro",
  7235. height: math.unit(6, "cm")
  7236. },
  7237. {
  7238. name: "Normal",
  7239. height: math.unit(5 + 7 / 12, "feet"),
  7240. default: true
  7241. },
  7242. {
  7243. name: "Macro",
  7244. height: math.unit(56, "feet")
  7245. },
  7246. {
  7247. name: "Megamacro",
  7248. height: math.unit(1.9, "miles")
  7249. },
  7250. ]
  7251. ))
  7252. characterMakers.push(() => makeCharacter(
  7253. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7254. {
  7255. front: {
  7256. height: math.unit(9 + 6 / 12, "feet"),
  7257. weight: math.unit(523, "lbs"),
  7258. name: "Side",
  7259. image: {
  7260. source: "./media/characters/aurora/side.svg"
  7261. }
  7262. }
  7263. },
  7264. [
  7265. {
  7266. name: "Normal",
  7267. height: math.unit(9 + 6 / 12, "feet")
  7268. },
  7269. {
  7270. name: "Macro",
  7271. height: math.unit(96, "feet"),
  7272. default: true
  7273. },
  7274. {
  7275. name: "Macro+",
  7276. height: math.unit(243, "feet")
  7277. },
  7278. ]
  7279. ))
  7280. characterMakers.push(() => makeCharacter(
  7281. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7282. {
  7283. front: {
  7284. height: math.unit(194, "cm"),
  7285. weight: math.unit(90, "kg"),
  7286. name: "Front",
  7287. image: {
  7288. source: "./media/characters/ranek/front.svg"
  7289. }
  7290. },
  7291. side: {
  7292. height: math.unit(194, "cm"),
  7293. weight: math.unit(90, "kg"),
  7294. name: "Side",
  7295. image: {
  7296. source: "./media/characters/ranek/side.svg"
  7297. }
  7298. },
  7299. back: {
  7300. height: math.unit(194, "cm"),
  7301. weight: math.unit(90, "kg"),
  7302. name: "Back",
  7303. image: {
  7304. source: "./media/characters/ranek/back.svg"
  7305. }
  7306. },
  7307. feral: {
  7308. height: math.unit(30, "cm"),
  7309. weight: math.unit(1.6, "lbs"),
  7310. name: "Feral",
  7311. image: {
  7312. source: "./media/characters/ranek/feral.svg"
  7313. }
  7314. },
  7315. },
  7316. [
  7317. {
  7318. name: "Normal",
  7319. height: math.unit(194, "cm"),
  7320. default: true
  7321. },
  7322. {
  7323. name: "Macro",
  7324. height: math.unit(100, "meters")
  7325. },
  7326. ]
  7327. ))
  7328. characterMakers.push(() => makeCharacter(
  7329. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7330. {
  7331. front: {
  7332. height: math.unit(5 + 6 / 12, "feet"),
  7333. weight: math.unit(153, "lbs"),
  7334. name: "Front",
  7335. image: {
  7336. source: "./media/characters/andrew-cooper/front.svg"
  7337. }
  7338. },
  7339. },
  7340. [
  7341. {
  7342. name: "Nano",
  7343. height: math.unit(1, "mm")
  7344. },
  7345. {
  7346. name: "Micro",
  7347. height: math.unit(2, "inches")
  7348. },
  7349. {
  7350. name: "Normal",
  7351. height: math.unit(5 + 6 / 12, "feet"),
  7352. default: true
  7353. }
  7354. ]
  7355. ))
  7356. characterMakers.push(() => makeCharacter(
  7357. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7358. {
  7359. front: {
  7360. height: math.unit(6, "feet"),
  7361. weight: math.unit(180, "lbs"),
  7362. name: "Front",
  7363. image: {
  7364. source: "./media/characters/akane-sato/front.svg",
  7365. extra: 1219 / 1140
  7366. }
  7367. },
  7368. back: {
  7369. height: math.unit(6, "feet"),
  7370. weight: math.unit(180, "lbs"),
  7371. name: "Back",
  7372. image: {
  7373. source: "./media/characters/akane-sato/back.svg",
  7374. extra: 1219 / 1170
  7375. }
  7376. },
  7377. },
  7378. [
  7379. {
  7380. name: "Normal",
  7381. height: math.unit(2.5, "meters")
  7382. },
  7383. {
  7384. name: "Macro",
  7385. height: math.unit(250, "meters"),
  7386. default: true
  7387. },
  7388. {
  7389. name: "Megamacro",
  7390. height: math.unit(25, "km")
  7391. },
  7392. ]
  7393. ))
  7394. characterMakers.push(() => makeCharacter(
  7395. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7396. {
  7397. front: {
  7398. height: math.unit(6, "feet"),
  7399. weight: math.unit(65, "kg"),
  7400. name: "Front",
  7401. image: {
  7402. source: "./media/characters/rook/front.svg",
  7403. extra: 960 / 950
  7404. }
  7405. }
  7406. },
  7407. [
  7408. {
  7409. name: "Normal",
  7410. height: math.unit(8.8, "feet")
  7411. },
  7412. {
  7413. name: "Macro",
  7414. height: math.unit(88, "feet"),
  7415. default: true
  7416. },
  7417. {
  7418. name: "Megamacro",
  7419. height: math.unit(8, "miles")
  7420. },
  7421. ]
  7422. ))
  7423. characterMakers.push(() => makeCharacter(
  7424. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7425. {
  7426. front: {
  7427. height: math.unit(12 + 2 / 12, "feet"),
  7428. weight: math.unit(808, "lbs"),
  7429. name: "Front",
  7430. image: {
  7431. source: "./media/characters/prodigy/front.svg"
  7432. }
  7433. }
  7434. },
  7435. [
  7436. {
  7437. name: "Normal",
  7438. height: math.unit(12 + 2 / 12, "feet"),
  7439. default: true
  7440. },
  7441. {
  7442. name: "Macro",
  7443. height: math.unit(143, "feet")
  7444. },
  7445. {
  7446. name: "Macro+",
  7447. height: math.unit(400, "feet")
  7448. },
  7449. ]
  7450. ))
  7451. characterMakers.push(() => makeCharacter(
  7452. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7453. {
  7454. front: {
  7455. height: math.unit(6, "feet"),
  7456. weight: math.unit(225, "lbs"),
  7457. name: "Front",
  7458. image: {
  7459. source: "./media/characters/daniel/front.svg"
  7460. }
  7461. },
  7462. leaning: {
  7463. height: math.unit(6, "feet"),
  7464. weight: math.unit(225, "lbs"),
  7465. name: "Leaning",
  7466. image: {
  7467. source: "./media/characters/daniel/leaning.svg"
  7468. }
  7469. },
  7470. },
  7471. [
  7472. {
  7473. name: "Macro",
  7474. height: math.unit(1000, "feet"),
  7475. default: true
  7476. },
  7477. ]
  7478. ))
  7479. characterMakers.push(() => makeCharacter(
  7480. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7481. {
  7482. front: {
  7483. height: math.unit(6, "feet"),
  7484. weight: math.unit(88, "lbs"),
  7485. name: "Front",
  7486. image: {
  7487. source: "./media/characters/chiros/front.svg",
  7488. extra: 306 / 226
  7489. }
  7490. },
  7491. side: {
  7492. height: math.unit(6, "feet"),
  7493. weight: math.unit(88, "lbs"),
  7494. name: "Side",
  7495. image: {
  7496. source: "./media/characters/chiros/side.svg",
  7497. extra: 306 / 226
  7498. }
  7499. },
  7500. },
  7501. [
  7502. {
  7503. name: "Normal",
  7504. height: math.unit(6, "cm"),
  7505. default: true
  7506. },
  7507. ]
  7508. ))
  7509. characterMakers.push(() => makeCharacter(
  7510. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7511. {
  7512. front: {
  7513. height: math.unit(6, "feet"),
  7514. weight: math.unit(100, "lbs"),
  7515. name: "Front",
  7516. image: {
  7517. source: "./media/characters/selka/front.svg",
  7518. extra: 947 / 887
  7519. }
  7520. }
  7521. },
  7522. [
  7523. {
  7524. name: "Normal",
  7525. height: math.unit(5, "cm"),
  7526. default: true
  7527. },
  7528. ]
  7529. ))
  7530. characterMakers.push(() => makeCharacter(
  7531. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7532. {
  7533. front: {
  7534. height: math.unit(8 + 3 / 12, "feet"),
  7535. weight: math.unit(424, "lbs"),
  7536. name: "Front",
  7537. image: {
  7538. source: "./media/characters/verin/front.svg",
  7539. extra: 1845 / 1550
  7540. }
  7541. },
  7542. frontArmored: {
  7543. height: math.unit(8 + 3 / 12, "feet"),
  7544. weight: math.unit(424, "lbs"),
  7545. name: "Front (Armored)",
  7546. image: {
  7547. source: "./media/characters/verin/front-armor.svg",
  7548. extra: 1845 / 1550,
  7549. bottom: 0.01
  7550. }
  7551. },
  7552. back: {
  7553. height: math.unit(8 + 3 / 12, "feet"),
  7554. weight: math.unit(424, "lbs"),
  7555. name: "Back",
  7556. image: {
  7557. source: "./media/characters/verin/back.svg",
  7558. bottom: 0.1,
  7559. extra: 1
  7560. }
  7561. },
  7562. foot: {
  7563. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7564. name: "Foot",
  7565. image: {
  7566. source: "./media/characters/verin/foot.svg"
  7567. }
  7568. },
  7569. },
  7570. [
  7571. {
  7572. name: "Normal",
  7573. height: math.unit(8 + 3 / 12, "feet")
  7574. },
  7575. {
  7576. name: "Minimacro",
  7577. height: math.unit(21, "feet"),
  7578. default: true
  7579. },
  7580. {
  7581. name: "Macro",
  7582. height: math.unit(626, "feet")
  7583. },
  7584. ]
  7585. ))
  7586. characterMakers.push(() => makeCharacter(
  7587. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7588. {
  7589. front: {
  7590. height: math.unit(2.718, "meters"),
  7591. weight: math.unit(150, "lbs"),
  7592. name: "Front",
  7593. image: {
  7594. source: "./media/characters/sovrim-terraquian/front.svg"
  7595. }
  7596. },
  7597. back: {
  7598. height: math.unit(2.718, "meters"),
  7599. weight: math.unit(150, "lbs"),
  7600. name: "Back",
  7601. image: {
  7602. source: "./media/characters/sovrim-terraquian/back.svg"
  7603. }
  7604. }
  7605. },
  7606. [
  7607. {
  7608. name: "Micro",
  7609. height: math.unit(2, "inches")
  7610. },
  7611. {
  7612. name: "Small",
  7613. height: math.unit(1, "meter")
  7614. },
  7615. {
  7616. name: "Normal",
  7617. height: math.unit(Math.E, "meters"),
  7618. default: true
  7619. },
  7620. {
  7621. name: "Macro",
  7622. height: math.unit(20, "meters")
  7623. },
  7624. {
  7625. name: "Macro+",
  7626. height: math.unit(400, "meters")
  7627. },
  7628. ]
  7629. ))
  7630. characterMakers.push(() => makeCharacter(
  7631. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7632. {
  7633. front: {
  7634. height: math.unit(7, "feet"),
  7635. weight: math.unit(489, "lbs"),
  7636. name: "Front",
  7637. image: {
  7638. source: "./media/characters/reece-silvermane/front.svg",
  7639. bottom: 0.02,
  7640. extra: 1
  7641. }
  7642. },
  7643. },
  7644. [
  7645. {
  7646. name: "Macro",
  7647. height: math.unit(1.5, "miles"),
  7648. default: true
  7649. },
  7650. ]
  7651. ))
  7652. characterMakers.push(() => makeCharacter(
  7653. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7654. {
  7655. front: {
  7656. height: math.unit(6, "feet"),
  7657. weight: math.unit(78, "kg"),
  7658. name: "Front",
  7659. image: {
  7660. source: "./media/characters/kane/front.svg",
  7661. extra: 978 / 899
  7662. }
  7663. },
  7664. },
  7665. [
  7666. {
  7667. name: "Normal",
  7668. height: math.unit(2.1, "m"),
  7669. },
  7670. {
  7671. name: "Macro",
  7672. height: math.unit(1, "km"),
  7673. default: true
  7674. },
  7675. ]
  7676. ))
  7677. characterMakers.push(() => makeCharacter(
  7678. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7679. {
  7680. front: {
  7681. height: math.unit(6, "feet"),
  7682. weight: math.unit(200, "kg"),
  7683. name: "Front",
  7684. image: {
  7685. source: "./media/characters/tegon/front.svg",
  7686. bottom: 0.01,
  7687. extra: 1
  7688. }
  7689. },
  7690. },
  7691. [
  7692. {
  7693. name: "Micro",
  7694. height: math.unit(1, "inch")
  7695. },
  7696. {
  7697. name: "Normal",
  7698. height: math.unit(6 + 3 / 12, "feet"),
  7699. default: true
  7700. },
  7701. {
  7702. name: "Macro",
  7703. height: math.unit(300, "feet")
  7704. },
  7705. {
  7706. name: "Megamacro",
  7707. height: math.unit(69, "miles")
  7708. },
  7709. ]
  7710. ))
  7711. characterMakers.push(() => makeCharacter(
  7712. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7713. {
  7714. side: {
  7715. height: math.unit(6, "feet"),
  7716. weight: math.unit(2304, "lbs"),
  7717. name: "Side",
  7718. image: {
  7719. source: "./media/characters/arcturax/side.svg",
  7720. extra: 790 / 376,
  7721. bottom: 0.01
  7722. }
  7723. },
  7724. },
  7725. [
  7726. {
  7727. name: "Micro",
  7728. height: math.unit(2, "inch")
  7729. },
  7730. {
  7731. name: "Normal",
  7732. height: math.unit(6, "feet")
  7733. },
  7734. {
  7735. name: "Macro",
  7736. height: math.unit(39, "feet"),
  7737. default: true
  7738. },
  7739. {
  7740. name: "Megamacro",
  7741. height: math.unit(7, "miles")
  7742. },
  7743. ]
  7744. ))
  7745. characterMakers.push(() => makeCharacter(
  7746. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7747. {
  7748. front: {
  7749. height: math.unit(6, "feet"),
  7750. weight: math.unit(50, "lbs"),
  7751. name: "Front",
  7752. image: {
  7753. source: "./media/characters/sentri/front.svg",
  7754. extra: 1750 / 1570,
  7755. bottom: 0.025
  7756. }
  7757. },
  7758. frontAlt: {
  7759. height: math.unit(6, "feet"),
  7760. weight: math.unit(50, "lbs"),
  7761. name: "Front (Alt)",
  7762. image: {
  7763. source: "./media/characters/sentri/front-alt.svg",
  7764. extra: 1750 / 1570,
  7765. bottom: 0.025
  7766. }
  7767. },
  7768. },
  7769. [
  7770. {
  7771. name: "Normal",
  7772. height: math.unit(15, "feet"),
  7773. default: true
  7774. },
  7775. {
  7776. name: "Macro",
  7777. height: math.unit(2500, "feet")
  7778. }
  7779. ]
  7780. ))
  7781. characterMakers.push(() => makeCharacter(
  7782. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7783. {
  7784. front: {
  7785. height: math.unit(5 + 8 / 12, "feet"),
  7786. weight: math.unit(130, "lbs"),
  7787. name: "Front",
  7788. image: {
  7789. source: "./media/characters/corvin/front.svg",
  7790. extra: 1803 / 1629
  7791. }
  7792. },
  7793. frontShirt: {
  7794. height: math.unit(5 + 8 / 12, "feet"),
  7795. weight: math.unit(130, "lbs"),
  7796. name: "Front (Shirt)",
  7797. image: {
  7798. source: "./media/characters/corvin/front-shirt.svg",
  7799. extra: 1803 / 1629
  7800. }
  7801. },
  7802. frontPoncho: {
  7803. height: math.unit(5 + 8 / 12, "feet"),
  7804. weight: math.unit(130, "lbs"),
  7805. name: "Front (Poncho)",
  7806. image: {
  7807. source: "./media/characters/corvin/front-poncho.svg",
  7808. extra: 1803 / 1629
  7809. }
  7810. },
  7811. side: {
  7812. height: math.unit(5 + 8 / 12, "feet"),
  7813. weight: math.unit(130, "lbs"),
  7814. name: "Side",
  7815. image: {
  7816. source: "./media/characters/corvin/side.svg",
  7817. extra: 1012 / 945
  7818. }
  7819. },
  7820. back: {
  7821. height: math.unit(5 + 8 / 12, "feet"),
  7822. weight: math.unit(130, "lbs"),
  7823. name: "Back",
  7824. image: {
  7825. source: "./media/characters/corvin/back.svg",
  7826. extra: 1803 / 1629
  7827. }
  7828. },
  7829. },
  7830. [
  7831. {
  7832. name: "Micro",
  7833. height: math.unit(3, "inches")
  7834. },
  7835. {
  7836. name: "Normal",
  7837. height: math.unit(5 + 8 / 12, "feet")
  7838. },
  7839. {
  7840. name: "Macro",
  7841. height: math.unit(300, "feet"),
  7842. default: true
  7843. },
  7844. {
  7845. name: "Megamacro",
  7846. height: math.unit(500, "miles")
  7847. }
  7848. ]
  7849. ))
  7850. characterMakers.push(() => makeCharacter(
  7851. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7852. {
  7853. front: {
  7854. height: math.unit(6, "feet"),
  7855. weight: math.unit(135, "lbs"),
  7856. name: "Front",
  7857. image: {
  7858. source: "./media/characters/q/front.svg",
  7859. extra: 854 / 752,
  7860. bottom: 0.005
  7861. }
  7862. },
  7863. back: {
  7864. height: math.unit(6, "feet"),
  7865. weight: math.unit(130, "lbs"),
  7866. name: "Back",
  7867. image: {
  7868. source: "./media/characters/q/back.svg",
  7869. extra: 854 / 752
  7870. }
  7871. },
  7872. },
  7873. [
  7874. {
  7875. name: "Macro",
  7876. height: math.unit(90, "feet"),
  7877. default: true
  7878. },
  7879. {
  7880. name: "Extra Macro",
  7881. height: math.unit(300, "feet"),
  7882. },
  7883. {
  7884. name: "BIG WALF",
  7885. height: math.unit(750, "feet"),
  7886. },
  7887. ]
  7888. ))
  7889. characterMakers.push(() => makeCharacter(
  7890. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7891. {
  7892. front: {
  7893. height: math.unit(6, "feet"),
  7894. weight: math.unit(150, "lbs"),
  7895. name: "Front",
  7896. image: {
  7897. source: "./media/characters/carley/front.svg",
  7898. extra: 3927 / 3540,
  7899. bottom: 29.2 / 735
  7900. }
  7901. }
  7902. },
  7903. [
  7904. {
  7905. name: "Normal",
  7906. height: math.unit(6 + 3 / 12, "feet")
  7907. },
  7908. {
  7909. name: "Macro",
  7910. height: math.unit(185, "feet"),
  7911. default: true
  7912. },
  7913. {
  7914. name: "Megamacro",
  7915. height: math.unit(8, "miles"),
  7916. },
  7917. ]
  7918. ))
  7919. characterMakers.push(() => makeCharacter(
  7920. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7921. {
  7922. front: {
  7923. height: math.unit(3, "feet"),
  7924. weight: math.unit(28, "lbs"),
  7925. name: "Front",
  7926. image: {
  7927. source: "./media/characters/citrine/front.svg"
  7928. }
  7929. }
  7930. },
  7931. [
  7932. {
  7933. name: "Normal",
  7934. height: math.unit(3, "feet"),
  7935. default: true
  7936. }
  7937. ]
  7938. ))
  7939. characterMakers.push(() => makeCharacter(
  7940. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7941. {
  7942. front: {
  7943. height: math.unit(14, "feet"),
  7944. weight: math.unit(1450, "kg"),
  7945. capacity: math.unit(15, "people"),
  7946. name: "Front",
  7947. image: {
  7948. source: "./media/characters/aura-starwind/front.svg",
  7949. extra: 1455 / 1335
  7950. }
  7951. },
  7952. side: {
  7953. height: math.unit(14, "feet"),
  7954. weight: math.unit(1450, "kg"),
  7955. capacity: math.unit(15, "people"),
  7956. name: "Side",
  7957. image: {
  7958. source: "./media/characters/aura-starwind/side.svg",
  7959. extra: 1654 / 1497
  7960. }
  7961. },
  7962. taur: {
  7963. height: math.unit(18, "feet"),
  7964. weight: math.unit(5500, "kg"),
  7965. capacity: math.unit(50, "people"),
  7966. name: "Taur",
  7967. image: {
  7968. source: "./media/characters/aura-starwind/taur.svg",
  7969. extra: 1760 / 1650
  7970. }
  7971. },
  7972. feral: {
  7973. height: math.unit(46, "feet"),
  7974. weight: math.unit(25000, "kg"),
  7975. capacity: math.unit(120, "people"),
  7976. name: "Feral",
  7977. image: {
  7978. source: "./media/characters/aura-starwind/feral.svg"
  7979. }
  7980. },
  7981. },
  7982. [
  7983. {
  7984. name: "Normal",
  7985. height: math.unit(14, "feet"),
  7986. default: true
  7987. },
  7988. {
  7989. name: "Macro",
  7990. height: math.unit(50, "meters")
  7991. },
  7992. {
  7993. name: "Megamacro",
  7994. height: math.unit(5000, "meters")
  7995. },
  7996. {
  7997. name: "Gigamacro",
  7998. height: math.unit(100000, "kilometers")
  7999. },
  8000. ]
  8001. ))
  8002. characterMakers.push(() => makeCharacter(
  8003. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8004. {
  8005. front: {
  8006. height: math.unit(2 + 7 / 12, "feet"),
  8007. weight: math.unit(32, "lbs"),
  8008. name: "Front",
  8009. image: {
  8010. source: "./media/characters/rivet/front.svg",
  8011. extra: 1716 / 1658,
  8012. bottom: 0.03
  8013. }
  8014. },
  8015. foot: {
  8016. height: math.unit(0.551, "feet"),
  8017. name: "Rivet's Foot",
  8018. image: {
  8019. source: "./media/characters/rivet/foot.svg"
  8020. },
  8021. rename: true
  8022. }
  8023. },
  8024. [
  8025. {
  8026. name: "Micro",
  8027. height: math.unit(1.5, "inches"),
  8028. },
  8029. {
  8030. name: "Normal",
  8031. height: math.unit(2 + 7 / 12, "feet"),
  8032. default: true
  8033. },
  8034. {
  8035. name: "Macro",
  8036. height: math.unit(85, "feet")
  8037. },
  8038. {
  8039. name: "Megamacro",
  8040. height: math.unit(2.2, "km")
  8041. }
  8042. ]
  8043. ))
  8044. characterMakers.push(() => makeCharacter(
  8045. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8046. {
  8047. front: {
  8048. height: math.unit(5 + 9 / 12, "feet"),
  8049. weight: math.unit(150, "lbs"),
  8050. name: "Front",
  8051. image: {
  8052. source: "./media/characters/coffee/front.svg",
  8053. extra: 3666 / 3032,
  8054. bottom: 0.04
  8055. }
  8056. },
  8057. foot: {
  8058. height: math.unit(1.29, "feet"),
  8059. name: "Foot",
  8060. image: {
  8061. source: "./media/characters/coffee/foot.svg"
  8062. }
  8063. },
  8064. },
  8065. [
  8066. {
  8067. name: "Micro",
  8068. height: math.unit(2, "inches"),
  8069. },
  8070. {
  8071. name: "Normal",
  8072. height: math.unit(5 + 9 / 12, "feet"),
  8073. default: true
  8074. },
  8075. {
  8076. name: "Macro",
  8077. height: math.unit(800, "feet")
  8078. },
  8079. {
  8080. name: "Megamacro",
  8081. height: math.unit(25, "miles")
  8082. }
  8083. ]
  8084. ))
  8085. characterMakers.push(() => makeCharacter(
  8086. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8087. {
  8088. front: {
  8089. height: math.unit(6, "feet"),
  8090. weight: math.unit(200, "lbs"),
  8091. name: "Front",
  8092. image: {
  8093. source: "./media/characters/chari-gal/front.svg",
  8094. extra: 1568 / 1385,
  8095. bottom: 0.047
  8096. }
  8097. },
  8098. gigantamax: {
  8099. height: math.unit(6 * 16, "feet"),
  8100. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8101. name: "Gigantamax",
  8102. image: {
  8103. source: "./media/characters/chari-gal/gigantamax.svg",
  8104. extra: 1124 / 888,
  8105. bottom: 0.03
  8106. }
  8107. },
  8108. },
  8109. [
  8110. {
  8111. name: "Normal",
  8112. height: math.unit(5 + 7 / 12, "feet")
  8113. },
  8114. {
  8115. name: "Macro",
  8116. height: math.unit(200, "feet"),
  8117. default: true
  8118. }
  8119. ]
  8120. ))
  8121. characterMakers.push(() => makeCharacter(
  8122. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8123. {
  8124. front: {
  8125. height: math.unit(6, "feet"),
  8126. weight: math.unit(150, "lbs"),
  8127. name: "Front",
  8128. image: {
  8129. source: "./media/characters/nova/front.svg",
  8130. extra: 5000 / 4722,
  8131. bottom: 0.02
  8132. }
  8133. }
  8134. },
  8135. [
  8136. {
  8137. name: "Micro-",
  8138. height: math.unit(0.8, "inches")
  8139. },
  8140. {
  8141. name: "Micro",
  8142. height: math.unit(2, "inches"),
  8143. default: true
  8144. },
  8145. ]
  8146. ))
  8147. characterMakers.push(() => makeCharacter(
  8148. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8149. {
  8150. front: {
  8151. height: math.unit(3 + 1 / 12, "feet"),
  8152. weight: math.unit(21.7, "lbs"),
  8153. name: "Front",
  8154. image: {
  8155. source: "./media/characters/argent/front.svg",
  8156. extra: 1471 / 1331,
  8157. bottom: 100.8 / 1575.5
  8158. }
  8159. }
  8160. },
  8161. [
  8162. {
  8163. name: "Micro",
  8164. height: math.unit(2, "inches")
  8165. },
  8166. {
  8167. name: "Normal",
  8168. height: math.unit(3 + 1 / 12, "feet"),
  8169. default: true
  8170. },
  8171. {
  8172. name: "Macro",
  8173. height: math.unit(120, "feet")
  8174. },
  8175. ]
  8176. ))
  8177. characterMakers.push(() => makeCharacter(
  8178. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8179. {
  8180. lamp: {
  8181. height: math.unit(7 * 1559 / 989, "feet"),
  8182. name: "Magic Lamp",
  8183. image: {
  8184. source: "./media/characters/mira-al-cul/lamp.svg",
  8185. extra: 1617 / 1559
  8186. }
  8187. },
  8188. front: {
  8189. height: math.unit(7, "feet"),
  8190. name: "Front",
  8191. image: {
  8192. source: "./media/characters/mira-al-cul/front.svg",
  8193. extra: 1044 / 990
  8194. }
  8195. },
  8196. },
  8197. [
  8198. {
  8199. name: "Heavily Restricted",
  8200. height: math.unit(7 * 1559 / 989, "feet")
  8201. },
  8202. {
  8203. name: "Freshly Freed",
  8204. height: math.unit(50 * 1559 / 989, "feet")
  8205. },
  8206. {
  8207. name: "World Encompassing",
  8208. height: math.unit(10000 * 1559 / 989, "miles")
  8209. },
  8210. {
  8211. name: "Galactic",
  8212. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8213. },
  8214. {
  8215. name: "Palmed Universe",
  8216. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8217. default: true
  8218. },
  8219. {
  8220. name: "Multiversal Matriarch",
  8221. height: math.unit(8.87e10, "yottameters")
  8222. },
  8223. {
  8224. name: "Void Mother",
  8225. height: math.unit(3.14e110, "yottaparsecs")
  8226. },
  8227. {
  8228. name: "Toying with Transcendence",
  8229. height: math.unit(1e307, "meters")
  8230. },
  8231. ]
  8232. ))
  8233. characterMakers.push(() => makeCharacter(
  8234. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8235. {
  8236. front: {
  8237. height: math.unit(17 + 1 / 12, "feet"),
  8238. weight: math.unit(476.2 * 5, "lbs"),
  8239. name: "Front",
  8240. image: {
  8241. source: "./media/characters/kuro-shi-uchū/front.svg",
  8242. extra: 2329 / 1835,
  8243. bottom: 0.02
  8244. }
  8245. },
  8246. },
  8247. [
  8248. {
  8249. name: "Micro",
  8250. height: math.unit(2, "inches")
  8251. },
  8252. {
  8253. name: "Normal",
  8254. height: math.unit(12, "meters")
  8255. },
  8256. {
  8257. name: "Planetary",
  8258. height: math.unit(0.00929, "AU"),
  8259. default: true
  8260. },
  8261. {
  8262. name: "Universal",
  8263. height: math.unit(20, "gigaparsecs")
  8264. },
  8265. ]
  8266. ))
  8267. characterMakers.push(() => makeCharacter(
  8268. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8269. {
  8270. front: {
  8271. height: math.unit(5 + 2 / 12, "feet"),
  8272. weight: math.unit(120, "lbs"),
  8273. name: "Front",
  8274. image: {
  8275. source: "./media/characters/katherine/front.svg",
  8276. extra: 2075 / 1969
  8277. }
  8278. },
  8279. dress: {
  8280. height: math.unit(5 + 2 / 12, "feet"),
  8281. weight: math.unit(120, "lbs"),
  8282. name: "Dress",
  8283. image: {
  8284. source: "./media/characters/katherine/dress.svg",
  8285. extra: 2258 / 2064
  8286. }
  8287. },
  8288. },
  8289. [
  8290. {
  8291. name: "Micro",
  8292. height: math.unit(1, "inches"),
  8293. default: true
  8294. },
  8295. {
  8296. name: "Normal",
  8297. height: math.unit(5 + 2 / 12, "feet")
  8298. },
  8299. {
  8300. name: "Macro",
  8301. height: math.unit(100, "meters")
  8302. },
  8303. {
  8304. name: "Megamacro",
  8305. height: math.unit(80, "miles")
  8306. },
  8307. ]
  8308. ))
  8309. characterMakers.push(() => makeCharacter(
  8310. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8311. {
  8312. front: {
  8313. height: math.unit(7 + 8 / 12, "feet"),
  8314. weight: math.unit(250, "lbs"),
  8315. name: "Front",
  8316. image: {
  8317. source: "./media/characters/yevis/front.svg",
  8318. extra: 1938 / 1755
  8319. }
  8320. }
  8321. },
  8322. [
  8323. {
  8324. name: "Mortal",
  8325. height: math.unit(7 + 8 / 12, "feet")
  8326. },
  8327. {
  8328. name: "Battle",
  8329. height: math.unit(25 + 11 / 12, "feet")
  8330. },
  8331. {
  8332. name: "Wrath",
  8333. height: math.unit(1654 + 11 / 12, "feet")
  8334. },
  8335. {
  8336. name: "Planet Destroyer",
  8337. height: math.unit(12000, "miles")
  8338. },
  8339. {
  8340. name: "Galaxy Conqueror",
  8341. height: math.unit(1.45, "zettameters"),
  8342. default: true
  8343. },
  8344. {
  8345. name: "Universal War",
  8346. height: math.unit(184, "gigaparsecs")
  8347. },
  8348. {
  8349. name: "Eternity War",
  8350. height: math.unit(1.98e55, "yottaparsecs")
  8351. },
  8352. ]
  8353. ))
  8354. characterMakers.push(() => makeCharacter(
  8355. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8356. {
  8357. front: {
  8358. height: math.unit(5 + 8 / 12, "feet"),
  8359. weight: math.unit(63, "kg"),
  8360. name: "Front",
  8361. image: {
  8362. source: "./media/characters/xavier/front.svg",
  8363. extra: 944 / 883
  8364. }
  8365. },
  8366. frontStretch: {
  8367. height: math.unit(5 + 8 / 12, "feet"),
  8368. weight: math.unit(63, "kg"),
  8369. name: "Stretching",
  8370. image: {
  8371. source: "./media/characters/xavier/front-stretch.svg",
  8372. extra: 962 / 820
  8373. }
  8374. },
  8375. },
  8376. [
  8377. {
  8378. name: "Normal",
  8379. height: math.unit(5 + 8 / 12, "feet")
  8380. },
  8381. {
  8382. name: "Macro",
  8383. height: math.unit(100, "meters"),
  8384. default: true
  8385. },
  8386. {
  8387. name: "McLargeHuge",
  8388. height: math.unit(10, "miles")
  8389. },
  8390. ]
  8391. ))
  8392. characterMakers.push(() => makeCharacter(
  8393. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8394. {
  8395. front: {
  8396. height: math.unit(5 + 5 / 12, "feet"),
  8397. weight: math.unit(150, "lb"),
  8398. name: "Front",
  8399. image: {
  8400. source: "./media/characters/joshii/front.svg",
  8401. extra: 765 / 653,
  8402. bottom: 51 / 816
  8403. }
  8404. },
  8405. foot: {
  8406. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8407. name: "Foot",
  8408. image: {
  8409. source: "./media/characters/joshii/foot.svg"
  8410. }
  8411. },
  8412. },
  8413. [
  8414. {
  8415. name: "Micro",
  8416. height: math.unit(2, "inches"),
  8417. default: true
  8418. },
  8419. {
  8420. name: "Normal",
  8421. height: math.unit(5 + 5 / 12, "feet")
  8422. },
  8423. {
  8424. name: "Macro",
  8425. height: math.unit(785, "feet")
  8426. },
  8427. {
  8428. name: "Megamacro",
  8429. height: math.unit(24.5, "miles")
  8430. },
  8431. ]
  8432. ))
  8433. characterMakers.push(() => makeCharacter(
  8434. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8435. {
  8436. front: {
  8437. height: math.unit(6, "feet"),
  8438. weight: math.unit(150, "lb"),
  8439. name: "Front",
  8440. image: {
  8441. source: "./media/characters/goddess-elizabeth/front.svg",
  8442. extra: 1800 / 1525,
  8443. bottom: 0.005
  8444. }
  8445. },
  8446. foot: {
  8447. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8448. name: "Foot",
  8449. image: {
  8450. source: "./media/characters/goddess-elizabeth/foot.svg"
  8451. }
  8452. },
  8453. mouth: {
  8454. height: math.unit(6, "feet"),
  8455. name: "Mouth",
  8456. image: {
  8457. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8458. }
  8459. },
  8460. },
  8461. [
  8462. {
  8463. name: "Micro",
  8464. height: math.unit(12, "feet")
  8465. },
  8466. {
  8467. name: "Normal",
  8468. height: math.unit(80, "miles"),
  8469. default: true
  8470. },
  8471. {
  8472. name: "Macro",
  8473. height: math.unit(15000, "parsecs")
  8474. },
  8475. ]
  8476. ))
  8477. characterMakers.push(() => makeCharacter(
  8478. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8479. {
  8480. front: {
  8481. height: math.unit(5 + 9 / 12, "feet"),
  8482. weight: math.unit(144, "lb"),
  8483. name: "Front",
  8484. image: {
  8485. source: "./media/characters/kara/front.svg"
  8486. }
  8487. },
  8488. feet: {
  8489. height: math.unit(6 / 6.765, "feet"),
  8490. name: "Kara's Feet",
  8491. rename: true,
  8492. image: {
  8493. source: "./media/characters/kara/feet.svg"
  8494. }
  8495. },
  8496. },
  8497. [
  8498. {
  8499. name: "Normal",
  8500. height: math.unit(5 + 9 / 12, "feet")
  8501. },
  8502. {
  8503. name: "Macro",
  8504. height: math.unit(174, "feet"),
  8505. default: true
  8506. },
  8507. ]
  8508. ))
  8509. characterMakers.push(() => makeCharacter(
  8510. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8511. {
  8512. front: {
  8513. height: math.unit(18, "feet"),
  8514. weight: math.unit(4050, "lb"),
  8515. name: "Front",
  8516. image: {
  8517. source: "./media/characters/tyrone/front.svg",
  8518. extra: 2405 / 2270,
  8519. bottom: 182 / 2587
  8520. }
  8521. },
  8522. },
  8523. [
  8524. {
  8525. name: "Normal",
  8526. height: math.unit(18, "feet"),
  8527. default: true
  8528. },
  8529. {
  8530. name: "Macro",
  8531. height: math.unit(300, "feet")
  8532. },
  8533. {
  8534. name: "Megamacro",
  8535. height: math.unit(15, "km")
  8536. },
  8537. {
  8538. name: "Gigamacro",
  8539. height: math.unit(500, "km")
  8540. },
  8541. {
  8542. name: "Teramacro",
  8543. height: math.unit(0.5, "gigameters")
  8544. },
  8545. {
  8546. name: "Omnimacro",
  8547. height: math.unit(1e252, "yottauniverse")
  8548. },
  8549. ]
  8550. ))
  8551. characterMakers.push(() => makeCharacter(
  8552. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8553. {
  8554. front: {
  8555. height: math.unit(7 + 8 / 12, "feet"),
  8556. weight: math.unit(120, "lb"),
  8557. name: "Front",
  8558. image: {
  8559. source: "./media/characters/danny/front.svg",
  8560. extra: 1490 / 1350
  8561. }
  8562. },
  8563. back: {
  8564. height: math.unit(7 + 8 / 12, "feet"),
  8565. weight: math.unit(120, "lb"),
  8566. name: "Back",
  8567. image: {
  8568. source: "./media/characters/danny/back.svg",
  8569. extra: 1490 / 1350
  8570. }
  8571. },
  8572. },
  8573. [
  8574. {
  8575. name: "Normal",
  8576. height: math.unit(7 + 8 / 12, "feet"),
  8577. default: true
  8578. },
  8579. ]
  8580. ))
  8581. characterMakers.push(() => makeCharacter(
  8582. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8583. {
  8584. front: {
  8585. height: math.unit(3.5, "inches"),
  8586. weight: math.unit(19, "grams"),
  8587. name: "Front",
  8588. image: {
  8589. source: "./media/characters/mallow/front.svg",
  8590. extra: 471 / 431
  8591. }
  8592. },
  8593. back: {
  8594. height: math.unit(3.5, "inches"),
  8595. weight: math.unit(19, "grams"),
  8596. name: "Back",
  8597. image: {
  8598. source: "./media/characters/mallow/back.svg",
  8599. extra: 471 / 431
  8600. }
  8601. },
  8602. },
  8603. [
  8604. {
  8605. name: "Normal",
  8606. height: math.unit(3.5, "inches"),
  8607. default: true
  8608. },
  8609. ]
  8610. ))
  8611. characterMakers.push(() => makeCharacter(
  8612. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8613. {
  8614. front: {
  8615. height: math.unit(9, "feet"),
  8616. weight: math.unit(230, "kg"),
  8617. name: "Front",
  8618. image: {
  8619. source: "./media/characters/starry-aqua/front.svg"
  8620. }
  8621. },
  8622. back: {
  8623. height: math.unit(9, "feet"),
  8624. weight: math.unit(230, "kg"),
  8625. name: "Back",
  8626. image: {
  8627. source: "./media/characters/starry-aqua/back.svg"
  8628. }
  8629. },
  8630. hand: {
  8631. height: math.unit(9 * 0.1168, "feet"),
  8632. name: "Hand",
  8633. image: {
  8634. source: "./media/characters/starry-aqua/hand.svg"
  8635. }
  8636. },
  8637. foot: {
  8638. height: math.unit(9 * 0.18, "feet"),
  8639. name: "Foot",
  8640. image: {
  8641. source: "./media/characters/starry-aqua/foot.svg"
  8642. }
  8643. }
  8644. },
  8645. [
  8646. {
  8647. name: "Micro",
  8648. height: math.unit(3, "inches")
  8649. },
  8650. {
  8651. name: "Normal",
  8652. height: math.unit(9, "feet")
  8653. },
  8654. {
  8655. name: "Macro",
  8656. height: math.unit(300, "feet"),
  8657. default: true
  8658. },
  8659. {
  8660. name: "Megamacro",
  8661. height: math.unit(3200, "feet")
  8662. }
  8663. ]
  8664. ))
  8665. characterMakers.push(() => makeCharacter(
  8666. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8667. {
  8668. front: {
  8669. height: math.unit(6, "feet"),
  8670. weight: math.unit(230, "lb"),
  8671. name: "Front",
  8672. image: {
  8673. source: "./media/characters/luka/front.svg",
  8674. extra: 1,
  8675. bottom: 0.025
  8676. }
  8677. },
  8678. },
  8679. [
  8680. {
  8681. name: "Normal",
  8682. height: math.unit(12 + 8 / 12, "feet"),
  8683. default: true
  8684. },
  8685. {
  8686. name: "Minimacro",
  8687. height: math.unit(20, "feet")
  8688. },
  8689. {
  8690. name: "Macro",
  8691. height: math.unit(250, "feet")
  8692. },
  8693. {
  8694. name: "Megamacro",
  8695. height: math.unit(5, "miles")
  8696. },
  8697. {
  8698. name: "Gigamacro",
  8699. height: math.unit(8000, "miles")
  8700. },
  8701. ]
  8702. ))
  8703. characterMakers.push(() => makeCharacter(
  8704. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8705. {
  8706. front: {
  8707. height: math.unit(6, "feet"),
  8708. weight: math.unit(150, "lb"),
  8709. name: "Front",
  8710. image: {
  8711. source: "./media/characters/natalie-nightring/front.svg",
  8712. extra: 1,
  8713. bottom: 0.06
  8714. }
  8715. },
  8716. },
  8717. [
  8718. {
  8719. name: "Uh Oh",
  8720. height: math.unit(0.1, "mm")
  8721. },
  8722. {
  8723. name: "Small",
  8724. height: math.unit(3, "inches")
  8725. },
  8726. {
  8727. name: "Human Scale",
  8728. height: math.unit(6, "feet")
  8729. },
  8730. {
  8731. name: "Librarian",
  8732. height: math.unit(50, "feet"),
  8733. default: true
  8734. },
  8735. {
  8736. name: "Immense",
  8737. height: math.unit(200, "miles")
  8738. },
  8739. ]
  8740. ))
  8741. characterMakers.push(() => makeCharacter(
  8742. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8743. {
  8744. front: {
  8745. height: math.unit(6, "feet"),
  8746. weight: math.unit(180, "lbs"),
  8747. name: "Front",
  8748. image: {
  8749. source: "./media/characters/danni-rosie/front.svg",
  8750. extra: 1260 / 1128,
  8751. bottom: 0.022
  8752. }
  8753. },
  8754. },
  8755. [
  8756. {
  8757. name: "Micro",
  8758. height: math.unit(2, "inches"),
  8759. default: true
  8760. },
  8761. ]
  8762. ))
  8763. characterMakers.push(() => makeCharacter(
  8764. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8765. {
  8766. front: {
  8767. height: math.unit(5 + 9 / 12, "feet"),
  8768. weight: math.unit(220, "lb"),
  8769. name: "Front",
  8770. image: {
  8771. source: "./media/characters/samantha-kruse/front.svg",
  8772. extra: (985 / 935),
  8773. bottom: 0.03
  8774. }
  8775. },
  8776. frontUndressed: {
  8777. height: math.unit(5 + 9 / 12, "feet"),
  8778. weight: math.unit(220, "lb"),
  8779. name: "Front (Undressed)",
  8780. image: {
  8781. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8782. extra: (973 / 923),
  8783. bottom: 0.025
  8784. }
  8785. },
  8786. fat: {
  8787. height: math.unit(5 + 9 / 12, "feet"),
  8788. weight: math.unit(900, "lb"),
  8789. name: "Front (Fat)",
  8790. image: {
  8791. source: "./media/characters/samantha-kruse/fat.svg",
  8792. extra: 2688 / 2561
  8793. }
  8794. },
  8795. },
  8796. [
  8797. {
  8798. name: "Normal",
  8799. height: math.unit(5 + 9 / 12, "feet"),
  8800. default: true
  8801. }
  8802. ]
  8803. ))
  8804. characterMakers.push(() => makeCharacter(
  8805. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8806. {
  8807. back: {
  8808. height: math.unit(5 + 4 / 12, "feet"),
  8809. weight: math.unit(4963, "lb"),
  8810. name: "Back",
  8811. image: {
  8812. source: "./media/characters/amelia-rosie/back.svg",
  8813. extra: 1113 / 963,
  8814. bottom: 0.01
  8815. }
  8816. },
  8817. },
  8818. [
  8819. {
  8820. name: "Level 0",
  8821. height: math.unit(5 + 4 / 12, "feet")
  8822. },
  8823. {
  8824. name: "Level 1",
  8825. height: math.unit(164597, "feet"),
  8826. default: true
  8827. },
  8828. {
  8829. name: "Level 2",
  8830. height: math.unit(956243, "miles")
  8831. },
  8832. {
  8833. name: "Level 3",
  8834. height: math.unit(29421709423, "miles")
  8835. },
  8836. {
  8837. name: "Level 4",
  8838. height: math.unit(154, "lightyears")
  8839. },
  8840. {
  8841. name: "Level 5",
  8842. height: math.unit(4738272, "lightyears")
  8843. },
  8844. {
  8845. name: "Level 6",
  8846. height: math.unit(145787152896, "lightyears")
  8847. },
  8848. ]
  8849. ))
  8850. characterMakers.push(() => makeCharacter(
  8851. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8852. {
  8853. front: {
  8854. height: math.unit(5 + 11 / 12, "feet"),
  8855. weight: math.unit(65, "kg"),
  8856. name: "Front",
  8857. image: {
  8858. source: "./media/characters/rook-kitara/front.svg",
  8859. extra: 1347 / 1274,
  8860. bottom: 0.005
  8861. }
  8862. },
  8863. },
  8864. [
  8865. {
  8866. name: "Totally Unfair",
  8867. height: math.unit(1.8, "mm")
  8868. },
  8869. {
  8870. name: "Lap Rookie",
  8871. height: math.unit(1.4, "feet")
  8872. },
  8873. {
  8874. name: "Normal",
  8875. height: math.unit(5 + 11 / 12, "feet"),
  8876. default: true
  8877. },
  8878. {
  8879. name: "How Did This Happen",
  8880. height: math.unit(80, "miles")
  8881. }
  8882. ]
  8883. ))
  8884. characterMakers.push(() => makeCharacter(
  8885. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8886. {
  8887. front: {
  8888. height: math.unit(7, "feet"),
  8889. weight: math.unit(300, "lb"),
  8890. name: "Front",
  8891. image: {
  8892. source: "./media/characters/pisces/front.svg",
  8893. extra: 2255 / 2115,
  8894. bottom: 0.03
  8895. }
  8896. },
  8897. back: {
  8898. height: math.unit(7, "feet"),
  8899. weight: math.unit(300, "lb"),
  8900. name: "Back",
  8901. image: {
  8902. source: "./media/characters/pisces/back.svg",
  8903. extra: 2146 / 2055,
  8904. bottom: 0.04
  8905. }
  8906. },
  8907. },
  8908. [
  8909. {
  8910. name: "Normal",
  8911. height: math.unit(7, "feet"),
  8912. default: true
  8913. },
  8914. {
  8915. name: "Swimming Pool",
  8916. height: math.unit(12.2, "meters")
  8917. },
  8918. {
  8919. name: "Olympic Swimming Pool",
  8920. height: math.unit(56.3, "meters")
  8921. },
  8922. {
  8923. name: "Lake Superior",
  8924. height: math.unit(93900, "meters")
  8925. },
  8926. {
  8927. name: "Mediterranean Sea",
  8928. height: math.unit(644457, "meters")
  8929. },
  8930. {
  8931. name: "World's Oceans",
  8932. height: math.unit(4567491, "meters")
  8933. },
  8934. ]
  8935. ))
  8936. characterMakers.push(() => makeCharacter(
  8937. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8938. {
  8939. front: {
  8940. height: math.unit(2.3, "meters"),
  8941. weight: math.unit(120, "kg"),
  8942. name: "Front",
  8943. image: {
  8944. source: "./media/characters/zelas/front.svg"
  8945. }
  8946. },
  8947. side: {
  8948. height: math.unit(2.3, "meters"),
  8949. weight: math.unit(120, "kg"),
  8950. name: "Side",
  8951. image: {
  8952. source: "./media/characters/zelas/side.svg"
  8953. }
  8954. },
  8955. back: {
  8956. height: math.unit(2.3, "meters"),
  8957. weight: math.unit(120, "kg"),
  8958. name: "Back",
  8959. image: {
  8960. source: "./media/characters/zelas/back.svg"
  8961. }
  8962. },
  8963. foot: {
  8964. height: math.unit(1.116, "feet"),
  8965. name: "Foot",
  8966. image: {
  8967. source: "./media/characters/zelas/foot.svg"
  8968. }
  8969. },
  8970. },
  8971. [
  8972. {
  8973. name: "Normal",
  8974. height: math.unit(2.3, "meters")
  8975. },
  8976. {
  8977. name: "Macro",
  8978. height: math.unit(30, "meters"),
  8979. default: true
  8980. },
  8981. ]
  8982. ))
  8983. characterMakers.push(() => makeCharacter(
  8984. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8985. {
  8986. front: {
  8987. height: math.unit(1, "inch"),
  8988. weight: math.unit(0.21, "grams"),
  8989. name: "Front",
  8990. image: {
  8991. source: "./media/characters/talbot/front.svg",
  8992. extra: 594 / 544
  8993. }
  8994. },
  8995. },
  8996. [
  8997. {
  8998. name: "Micro",
  8999. height: math.unit(1, "inch"),
  9000. default: true
  9001. },
  9002. ]
  9003. ))
  9004. characterMakers.push(() => makeCharacter(
  9005. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9006. {
  9007. front: {
  9008. height: math.unit(3 + 3 / 12, "feet"),
  9009. weight: math.unit(51.8, "lb"),
  9010. name: "Front",
  9011. image: {
  9012. source: "./media/characters/fliss/front.svg",
  9013. extra: 840 / 640
  9014. }
  9015. },
  9016. },
  9017. [
  9018. {
  9019. name: "Teeny Tiny",
  9020. height: math.unit(1, "mm")
  9021. },
  9022. {
  9023. name: "Small",
  9024. height: math.unit(1, "inch"),
  9025. default: true
  9026. },
  9027. {
  9028. name: "Standard Sylveon",
  9029. height: math.unit(3 + 3 / 12, "feet")
  9030. },
  9031. {
  9032. name: "Large Nuisance",
  9033. height: math.unit(33, "feet")
  9034. },
  9035. {
  9036. name: "City Filler",
  9037. height: math.unit(3000, "feet")
  9038. },
  9039. {
  9040. name: "New Horizon",
  9041. height: math.unit(6000, "miles")
  9042. },
  9043. ]
  9044. ))
  9045. characterMakers.push(() => makeCharacter(
  9046. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9047. {
  9048. front: {
  9049. height: math.unit(5, "cm"),
  9050. weight: math.unit(1.94, "g"),
  9051. name: "Front",
  9052. image: {
  9053. source: "./media/characters/fleta/front.svg",
  9054. extra: 835 / 803
  9055. }
  9056. },
  9057. back: {
  9058. height: math.unit(5, "cm"),
  9059. weight: math.unit(1.94, "g"),
  9060. name: "Back",
  9061. image: {
  9062. source: "./media/characters/fleta/back.svg",
  9063. extra: 835 / 803
  9064. }
  9065. },
  9066. },
  9067. [
  9068. {
  9069. name: "Micro",
  9070. height: math.unit(5, "cm"),
  9071. default: true
  9072. },
  9073. ]
  9074. ))
  9075. characterMakers.push(() => makeCharacter(
  9076. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9077. {
  9078. front: {
  9079. height: math.unit(6, "feet"),
  9080. weight: math.unit(225, "lb"),
  9081. name: "Front",
  9082. image: {
  9083. source: "./media/characters/dominic/front.svg",
  9084. extra: 1770 / 1620,
  9085. bottom: 0.025
  9086. }
  9087. },
  9088. back: {
  9089. height: math.unit(6, "feet"),
  9090. weight: math.unit(225, "lb"),
  9091. name: "Back",
  9092. image: {
  9093. source: "./media/characters/dominic/back.svg",
  9094. extra: 1745 / 1620,
  9095. bottom: 0.065
  9096. }
  9097. },
  9098. },
  9099. [
  9100. {
  9101. name: "Nano",
  9102. height: math.unit(0.1, "mm")
  9103. },
  9104. {
  9105. name: "Micro-",
  9106. height: math.unit(1, "mm")
  9107. },
  9108. {
  9109. name: "Micro",
  9110. height: math.unit(4, "inches")
  9111. },
  9112. {
  9113. name: "Normal",
  9114. height: math.unit(6 + 4 / 12, "feet"),
  9115. default: true
  9116. },
  9117. {
  9118. name: "Macro",
  9119. height: math.unit(115, "feet")
  9120. },
  9121. {
  9122. name: "Macro+",
  9123. height: math.unit(955, "feet")
  9124. },
  9125. {
  9126. name: "Megamacro",
  9127. height: math.unit(8990, "feet")
  9128. },
  9129. {
  9130. name: "Gigmacro",
  9131. height: math.unit(9310, "miles")
  9132. },
  9133. {
  9134. name: "Teramacro",
  9135. height: math.unit(1567005010, "miles")
  9136. },
  9137. {
  9138. name: "Examacro",
  9139. height: math.unit(1425, "parsecs")
  9140. },
  9141. ]
  9142. ))
  9143. characterMakers.push(() => makeCharacter(
  9144. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9145. {
  9146. front: {
  9147. height: math.unit(400, "feet"),
  9148. weight: math.unit(44444444, "lb"),
  9149. name: "Front",
  9150. image: {
  9151. source: "./media/characters/major-colonel/front.svg"
  9152. }
  9153. },
  9154. back: {
  9155. height: math.unit(400, "feet"),
  9156. weight: math.unit(44444444, "lb"),
  9157. name: "Back",
  9158. image: {
  9159. source: "./media/characters/major-colonel/back.svg"
  9160. }
  9161. },
  9162. },
  9163. [
  9164. {
  9165. name: "Macro",
  9166. height: math.unit(400, "feet"),
  9167. default: true
  9168. },
  9169. ]
  9170. ))
  9171. characterMakers.push(() => makeCharacter(
  9172. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9173. {
  9174. catFront: {
  9175. height: math.unit(6, "feet"),
  9176. weight: math.unit(120, "lb"),
  9177. name: "Front (Cat Side)",
  9178. image: {
  9179. source: "./media/characters/axel-lycan/cat-front.svg",
  9180. extra: 430 / 402,
  9181. bottom: 43 / 472.35
  9182. }
  9183. },
  9184. catBack: {
  9185. height: math.unit(6, "feet"),
  9186. weight: math.unit(120, "lb"),
  9187. name: "Back (Cat Side)",
  9188. image: {
  9189. source: "./media/characters/axel-lycan/cat-back.svg",
  9190. extra: 447 / 419,
  9191. bottom: 23.3 / 469
  9192. }
  9193. },
  9194. wolfFront: {
  9195. height: math.unit(6, "feet"),
  9196. weight: math.unit(120, "lb"),
  9197. name: "Front (Wolf Side)",
  9198. image: {
  9199. source: "./media/characters/axel-lycan/wolf-front.svg",
  9200. extra: 485 / 456,
  9201. bottom: 19 / 504
  9202. }
  9203. },
  9204. wolfBack: {
  9205. height: math.unit(6, "feet"),
  9206. weight: math.unit(120, "lb"),
  9207. name: "Back (Wolf Side)",
  9208. image: {
  9209. source: "./media/characters/axel-lycan/wolf-back.svg",
  9210. extra: 475 / 438,
  9211. bottom: 39.2 / 514
  9212. }
  9213. },
  9214. },
  9215. [
  9216. {
  9217. name: "Macro",
  9218. height: math.unit(1, "km"),
  9219. default: true
  9220. },
  9221. ]
  9222. ))
  9223. characterMakers.push(() => makeCharacter(
  9224. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9225. {
  9226. front: {
  9227. height: math.unit(5 + 9 / 12, "feet"),
  9228. weight: math.unit(175, "lb"),
  9229. name: "Front",
  9230. image: {
  9231. source: "./media/characters/vanrel-hyena/front.svg",
  9232. extra: 1086 / 1010,
  9233. bottom: 0.04
  9234. }
  9235. },
  9236. },
  9237. [
  9238. {
  9239. name: "Normal",
  9240. height: math.unit(5 + 9 / 12, "feet"),
  9241. default: true
  9242. },
  9243. ]
  9244. ))
  9245. characterMakers.push(() => makeCharacter(
  9246. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9247. {
  9248. front: {
  9249. height: math.unit(6, "feet"),
  9250. weight: math.unit(103, "lb"),
  9251. name: "Front",
  9252. image: {
  9253. source: "./media/characters/abbott-absol/front.svg",
  9254. extra: 2010 / 1842
  9255. }
  9256. },
  9257. },
  9258. [
  9259. {
  9260. name: "Megamicro",
  9261. height: math.unit(0.1, "mm")
  9262. },
  9263. {
  9264. name: "Micro",
  9265. height: math.unit(1, "inch")
  9266. },
  9267. {
  9268. name: "Normal",
  9269. height: math.unit(6, "feet"),
  9270. default: true
  9271. },
  9272. ]
  9273. ))
  9274. characterMakers.push(() => makeCharacter(
  9275. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9276. {
  9277. front: {
  9278. height: math.unit(6, "feet"),
  9279. weight: math.unit(264, "lb"),
  9280. name: "Front",
  9281. image: {
  9282. source: "./media/characters/hector/front.svg",
  9283. extra: 2280 / 2130,
  9284. bottom: 0.07
  9285. }
  9286. },
  9287. },
  9288. [
  9289. {
  9290. name: "Normal",
  9291. height: math.unit(12.25, "foot"),
  9292. default: true
  9293. },
  9294. {
  9295. name: "Macro",
  9296. height: math.unit(160, "feet")
  9297. },
  9298. ]
  9299. ))
  9300. characterMakers.push(() => makeCharacter(
  9301. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9302. {
  9303. front: {
  9304. height: math.unit(6, "feet"),
  9305. weight: math.unit(150, "lb"),
  9306. name: "Front",
  9307. image: {
  9308. source: "./media/characters/sal/front.svg",
  9309. extra: 1846 / 1699,
  9310. bottom: 0.04
  9311. }
  9312. },
  9313. },
  9314. [
  9315. {
  9316. name: "Megamacro",
  9317. height: math.unit(10, "miles"),
  9318. default: true
  9319. },
  9320. ]
  9321. ))
  9322. characterMakers.push(() => makeCharacter(
  9323. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9324. {
  9325. front: {
  9326. height: math.unit(3, "meters"),
  9327. weight: math.unit(450, "kg"),
  9328. name: "front",
  9329. image: {
  9330. source: "./media/characters/ranger/front.svg",
  9331. extra: 2401 / 2243,
  9332. bottom: 0.05
  9333. }
  9334. },
  9335. },
  9336. [
  9337. {
  9338. name: "Normal",
  9339. height: math.unit(3, "meters"),
  9340. default: true
  9341. },
  9342. ]
  9343. ))
  9344. characterMakers.push(() => makeCharacter(
  9345. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9346. {
  9347. front: {
  9348. height: math.unit(14, "feet"),
  9349. weight: math.unit(800, "kg"),
  9350. name: "Front",
  9351. image: {
  9352. source: "./media/characters/theresa/front.svg",
  9353. extra: 3575 / 3346,
  9354. bottom: 0.03
  9355. }
  9356. },
  9357. },
  9358. [
  9359. {
  9360. name: "Normal",
  9361. height: math.unit(14, "feet"),
  9362. default: true
  9363. },
  9364. ]
  9365. ))
  9366. characterMakers.push(() => makeCharacter(
  9367. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9368. {
  9369. front: {
  9370. height: math.unit(6, "feet"),
  9371. weight: math.unit(3, "kg"),
  9372. name: "Front",
  9373. image: {
  9374. source: "./media/characters/ine/front.svg",
  9375. extra: 678 / 539,
  9376. bottom: 0.023
  9377. }
  9378. },
  9379. },
  9380. [
  9381. {
  9382. name: "Normal",
  9383. height: math.unit(2.265, "feet"),
  9384. default: true
  9385. },
  9386. ]
  9387. ))
  9388. characterMakers.push(() => makeCharacter(
  9389. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9390. {
  9391. front: {
  9392. height: math.unit(5, "feet"),
  9393. weight: math.unit(30, "kg"),
  9394. name: "Front",
  9395. image: {
  9396. source: "./media/characters/vial/front.svg",
  9397. extra: 1365 / 1277,
  9398. bottom: 0.04
  9399. }
  9400. },
  9401. },
  9402. [
  9403. {
  9404. name: "Normal",
  9405. height: math.unit(5, "feet"),
  9406. default: true
  9407. },
  9408. ]
  9409. ))
  9410. characterMakers.push(() => makeCharacter(
  9411. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9412. {
  9413. side: {
  9414. height: math.unit(3.4, "meters"),
  9415. weight: math.unit(1000, "lb"),
  9416. name: "Side",
  9417. image: {
  9418. source: "./media/characters/rovoska/side.svg",
  9419. extra: 4403 / 1515
  9420. }
  9421. },
  9422. },
  9423. [
  9424. {
  9425. name: "Normal",
  9426. height: math.unit(3.4, "meters"),
  9427. default: true
  9428. },
  9429. ]
  9430. ))
  9431. characterMakers.push(() => makeCharacter(
  9432. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9433. {
  9434. front: {
  9435. height: math.unit(8, "feet"),
  9436. weight: math.unit(315, "lb"),
  9437. name: "Front",
  9438. image: {
  9439. source: "./media/characters/gunner-rotthbauer/front.svg"
  9440. }
  9441. },
  9442. back: {
  9443. height: math.unit(8, "feet"),
  9444. weight: math.unit(315, "lb"),
  9445. name: "Back",
  9446. image: {
  9447. source: "./media/characters/gunner-rotthbauer/back.svg"
  9448. }
  9449. },
  9450. },
  9451. [
  9452. {
  9453. name: "Micro",
  9454. height: math.unit(3.5, "inches")
  9455. },
  9456. {
  9457. name: "Normal",
  9458. height: math.unit(8, "feet"),
  9459. default: true
  9460. },
  9461. {
  9462. name: "Macro",
  9463. height: math.unit(250, "feet")
  9464. },
  9465. {
  9466. name: "Megamacro",
  9467. height: math.unit(1, "AU")
  9468. },
  9469. ]
  9470. ))
  9471. characterMakers.push(() => makeCharacter(
  9472. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9473. {
  9474. front: {
  9475. height: math.unit(5 + 5 / 12, "feet"),
  9476. weight: math.unit(140, "lb"),
  9477. name: "Front",
  9478. image: {
  9479. source: "./media/characters/allatia/front.svg",
  9480. extra: 1227 / 1180,
  9481. bottom: 0.027
  9482. }
  9483. },
  9484. },
  9485. [
  9486. {
  9487. name: "Normal",
  9488. height: math.unit(5 + 5 / 12, "feet")
  9489. },
  9490. {
  9491. name: "Macro",
  9492. height: math.unit(250, "feet"),
  9493. default: true
  9494. },
  9495. {
  9496. name: "Megamacro",
  9497. height: math.unit(8, "miles")
  9498. }
  9499. ]
  9500. ))
  9501. characterMakers.push(() => makeCharacter(
  9502. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9503. {
  9504. front: {
  9505. height: math.unit(6, "feet"),
  9506. weight: math.unit(120, "lb"),
  9507. name: "Front",
  9508. image: {
  9509. source: "./media/characters/tene/front.svg",
  9510. extra: 1728 / 1578,
  9511. bottom: 0.022
  9512. }
  9513. },
  9514. stomping: {
  9515. height: math.unit(2.025, "meters"),
  9516. weight: math.unit(120, "lb"),
  9517. name: "Stomping",
  9518. image: {
  9519. source: "./media/characters/tene/stomping.svg",
  9520. extra: 938 / 873,
  9521. bottom: 0.01
  9522. }
  9523. },
  9524. sitting: {
  9525. height: math.unit(1, "meter"),
  9526. weight: math.unit(120, "lb"),
  9527. name: "Sitting",
  9528. image: {
  9529. source: "./media/characters/tene/sitting.svg",
  9530. extra: 437 / 415,
  9531. bottom: 0.1
  9532. }
  9533. },
  9534. feral: {
  9535. height: math.unit(3.9, "feet"),
  9536. weight: math.unit(250, "lb"),
  9537. name: "Feral",
  9538. image: {
  9539. source: "./media/characters/tene/feral.svg",
  9540. extra: 717 / 458,
  9541. bottom: 0.179
  9542. }
  9543. },
  9544. },
  9545. [
  9546. {
  9547. name: "Normal",
  9548. height: math.unit(6, "feet")
  9549. },
  9550. {
  9551. name: "Macro",
  9552. height: math.unit(300, "feet"),
  9553. default: true
  9554. },
  9555. {
  9556. name: "Megamacro",
  9557. height: math.unit(5, "miles")
  9558. },
  9559. ]
  9560. ))
  9561. characterMakers.push(() => makeCharacter(
  9562. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9563. {
  9564. side: {
  9565. height: math.unit(6, "feet"),
  9566. name: "Side",
  9567. image: {
  9568. source: "./media/characters/evander/side.svg",
  9569. extra: 877 / 477
  9570. }
  9571. },
  9572. },
  9573. [
  9574. {
  9575. name: "Normal",
  9576. height: math.unit(0.83, "meters"),
  9577. default: true
  9578. },
  9579. ]
  9580. ))
  9581. characterMakers.push(() => makeCharacter(
  9582. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9583. {
  9584. front: {
  9585. height: math.unit(12, "feet"),
  9586. weight: math.unit(1000, "lb"),
  9587. name: "Front",
  9588. image: {
  9589. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9590. extra: 1762 / 1611
  9591. }
  9592. },
  9593. back: {
  9594. height: math.unit(12, "feet"),
  9595. weight: math.unit(1000, "lb"),
  9596. name: "Back",
  9597. image: {
  9598. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9599. extra: 1762 / 1611
  9600. }
  9601. },
  9602. },
  9603. [
  9604. {
  9605. name: "Normal",
  9606. height: math.unit(12, "feet"),
  9607. default: true
  9608. },
  9609. {
  9610. name: "Kaiju",
  9611. height: math.unit(150, "feet")
  9612. },
  9613. ]
  9614. ))
  9615. characterMakers.push(() => makeCharacter(
  9616. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9617. {
  9618. front: {
  9619. height: math.unit(6, "feet"),
  9620. weight: math.unit(150, "lb"),
  9621. name: "Front",
  9622. image: {
  9623. source: "./media/characters/zero-alurus/front.svg"
  9624. }
  9625. },
  9626. back: {
  9627. height: math.unit(6, "feet"),
  9628. weight: math.unit(150, "lb"),
  9629. name: "Back",
  9630. image: {
  9631. source: "./media/characters/zero-alurus/back.svg"
  9632. }
  9633. },
  9634. },
  9635. [
  9636. {
  9637. name: "Normal",
  9638. height: math.unit(5 + 10 / 12, "feet")
  9639. },
  9640. {
  9641. name: "Macro",
  9642. height: math.unit(60, "feet"),
  9643. default: true
  9644. },
  9645. {
  9646. name: "Macro+",
  9647. height: math.unit(450, "feet")
  9648. },
  9649. ]
  9650. ))
  9651. characterMakers.push(() => makeCharacter(
  9652. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9653. {
  9654. front: {
  9655. height: math.unit(6, "feet"),
  9656. weight: math.unit(200, "lb"),
  9657. name: "Front",
  9658. image: {
  9659. source: "./media/characters/mega-shi/front.svg",
  9660. extra: 1279 / 1250,
  9661. bottom: 0.02
  9662. }
  9663. },
  9664. back: {
  9665. height: math.unit(6, "feet"),
  9666. weight: math.unit(200, "lb"),
  9667. name: "Back",
  9668. image: {
  9669. source: "./media/characters/mega-shi/back.svg",
  9670. extra: 1279 / 1250,
  9671. bottom: 0.02
  9672. }
  9673. },
  9674. },
  9675. [
  9676. {
  9677. name: "Micro",
  9678. height: math.unit(16 + 6 / 12, "feet")
  9679. },
  9680. {
  9681. name: "Third Dimension",
  9682. height: math.unit(40, "meters")
  9683. },
  9684. {
  9685. name: "Normal",
  9686. height: math.unit(660, "feet"),
  9687. default: true
  9688. },
  9689. {
  9690. name: "Megamacro",
  9691. height: math.unit(10, "miles")
  9692. },
  9693. {
  9694. name: "Planetary Launch",
  9695. height: math.unit(500, "miles")
  9696. },
  9697. {
  9698. name: "Interstellar",
  9699. height: math.unit(1e9, "miles")
  9700. },
  9701. {
  9702. name: "Leaving the Universe",
  9703. height: math.unit(1, "gigaparsec")
  9704. },
  9705. {
  9706. name: "Travelling Universes",
  9707. height: math.unit(30e15, "parsecs")
  9708. },
  9709. ]
  9710. ))
  9711. characterMakers.push(() => makeCharacter(
  9712. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9713. {
  9714. front: {
  9715. height: math.unit(6, "feet"),
  9716. weight: math.unit(150, "lb"),
  9717. name: "Front",
  9718. image: {
  9719. source: "./media/characters/odyssey/front.svg",
  9720. extra: 1782 / 1582,
  9721. bottom: 0.01
  9722. }
  9723. },
  9724. side: {
  9725. height: math.unit(5.7, "feet"),
  9726. weight: math.unit(140, "lb"),
  9727. name: "Side",
  9728. image: {
  9729. source: "./media/characters/odyssey/side.svg",
  9730. extra: 6462 / 5700
  9731. }
  9732. },
  9733. },
  9734. [
  9735. {
  9736. name: "Normal",
  9737. height: math.unit(5 + 4 / 12, "feet")
  9738. },
  9739. {
  9740. name: "Macro",
  9741. height: math.unit(1, "km")
  9742. },
  9743. {
  9744. name: "Megamacro",
  9745. height: math.unit(3000, "km")
  9746. },
  9747. {
  9748. name: "Gigamacro",
  9749. height: math.unit(1, "AU"),
  9750. default: true
  9751. },
  9752. {
  9753. name: "Omniversal",
  9754. height: math.unit(100e14, "lightyears")
  9755. },
  9756. ]
  9757. ))
  9758. characterMakers.push(() => makeCharacter(
  9759. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9760. {
  9761. front: {
  9762. height: math.unit(6, "feet"),
  9763. weight: math.unit(300, "lb"),
  9764. name: "Front",
  9765. image: {
  9766. source: "./media/characters/mekuto/front.svg",
  9767. extra: 921 / 832,
  9768. bottom: 0.03
  9769. }
  9770. },
  9771. hand: {
  9772. height: math.unit(6 / 10.24, "feet"),
  9773. name: "Hand",
  9774. image: {
  9775. source: "./media/characters/mekuto/hand.svg"
  9776. }
  9777. },
  9778. foot: {
  9779. height: math.unit(6 / 5.05, "feet"),
  9780. name: "Foot",
  9781. image: {
  9782. source: "./media/characters/mekuto/foot.svg"
  9783. }
  9784. },
  9785. },
  9786. [
  9787. {
  9788. name: "Minimicro",
  9789. height: math.unit(0.2, "inches")
  9790. },
  9791. {
  9792. name: "Micro",
  9793. height: math.unit(1.5, "inches")
  9794. },
  9795. {
  9796. name: "Normal",
  9797. height: math.unit(5 + 11 / 12, "feet"),
  9798. default: true
  9799. },
  9800. {
  9801. name: "Minimacro",
  9802. height: math.unit(17 + 9 / 12, "feet")
  9803. },
  9804. {
  9805. name: "Macro",
  9806. height: math.unit(177.5, "feet")
  9807. },
  9808. {
  9809. name: "Megamacro",
  9810. height: math.unit(152, "miles")
  9811. },
  9812. ]
  9813. ))
  9814. characterMakers.push(() => makeCharacter(
  9815. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9816. {
  9817. front: {
  9818. height: math.unit(6.5, "inches"),
  9819. weight: math.unit(13, "oz"),
  9820. name: "Front",
  9821. image: {
  9822. source: "./media/characters/dafydd-tomos/front.svg",
  9823. extra: 2990 / 2603,
  9824. bottom: 0.03
  9825. }
  9826. },
  9827. },
  9828. [
  9829. {
  9830. name: "Micro",
  9831. height: math.unit(6.5, "inches"),
  9832. default: true
  9833. },
  9834. ]
  9835. ))
  9836. characterMakers.push(() => makeCharacter(
  9837. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9838. {
  9839. front: {
  9840. height: math.unit(6, "feet"),
  9841. weight: math.unit(150, "lb"),
  9842. name: "Front",
  9843. image: {
  9844. source: "./media/characters/splinter/front.svg",
  9845. extra: 2990 / 2882,
  9846. bottom: 0.04
  9847. }
  9848. },
  9849. back: {
  9850. height: math.unit(6, "feet"),
  9851. weight: math.unit(150, "lb"),
  9852. name: "Back",
  9853. image: {
  9854. source: "./media/characters/splinter/back.svg",
  9855. extra: 2990 / 2882,
  9856. bottom: 0.04
  9857. }
  9858. },
  9859. },
  9860. [
  9861. {
  9862. name: "Normal",
  9863. height: math.unit(6, "feet")
  9864. },
  9865. {
  9866. name: "Macro",
  9867. height: math.unit(230, "meters"),
  9868. default: true
  9869. },
  9870. ]
  9871. ))
  9872. characterMakers.push(() => makeCharacter(
  9873. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9874. {
  9875. front: {
  9876. height: math.unit(4 + 10 / 12, "feet"),
  9877. weight: math.unit(480, "lb"),
  9878. name: "Front",
  9879. image: {
  9880. source: "./media/characters/snow-gabumon/front.svg",
  9881. extra: 1140 / 963,
  9882. bottom: 0.058
  9883. }
  9884. },
  9885. back: {
  9886. height: math.unit(4 + 10 / 12, "feet"),
  9887. weight: math.unit(480, "lb"),
  9888. name: "Back",
  9889. image: {
  9890. source: "./media/characters/snow-gabumon/back.svg",
  9891. extra: 1115 / 962,
  9892. bottom: 0.041
  9893. }
  9894. },
  9895. frontUndresed: {
  9896. height: math.unit(4 + 10 / 12, "feet"),
  9897. weight: math.unit(480, "lb"),
  9898. name: "Front (Undressed)",
  9899. image: {
  9900. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9901. extra: 1061 / 960,
  9902. bottom: 0.045
  9903. }
  9904. },
  9905. },
  9906. [
  9907. {
  9908. name: "Micro",
  9909. height: math.unit(1, "inch")
  9910. },
  9911. {
  9912. name: "Normal",
  9913. height: math.unit(4 + 10 / 12, "feet"),
  9914. default: true
  9915. },
  9916. {
  9917. name: "Macro",
  9918. height: math.unit(200, "feet")
  9919. },
  9920. {
  9921. name: "Megamacro",
  9922. height: math.unit(120, "miles")
  9923. },
  9924. {
  9925. name: "Gigamacro",
  9926. height: math.unit(9800, "miles")
  9927. },
  9928. ]
  9929. ))
  9930. characterMakers.push(() => makeCharacter(
  9931. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9932. {
  9933. front: {
  9934. height: math.unit(1.7, "meters"),
  9935. weight: math.unit(140, "lb"),
  9936. name: "Front",
  9937. image: {
  9938. source: "./media/characters/moody/front.svg",
  9939. extra: 3226 / 3007,
  9940. bottom: 0.087
  9941. }
  9942. },
  9943. },
  9944. [
  9945. {
  9946. name: "Micro",
  9947. height: math.unit(1, "mm")
  9948. },
  9949. {
  9950. name: "Normal",
  9951. height: math.unit(1.7, "meters"),
  9952. default: true
  9953. },
  9954. {
  9955. name: "Macro",
  9956. height: math.unit(80, "meters")
  9957. },
  9958. {
  9959. name: "Macro+",
  9960. height: math.unit(500, "meters")
  9961. },
  9962. ]
  9963. ))
  9964. characterMakers.push(() => makeCharacter(
  9965. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9966. {
  9967. front: {
  9968. height: math.unit(6, "feet"),
  9969. weight: math.unit(150, "lb"),
  9970. name: "Front",
  9971. image: {
  9972. source: "./media/characters/zyas/front.svg",
  9973. extra: 1180 / 1120,
  9974. bottom: 0.045
  9975. }
  9976. },
  9977. },
  9978. [
  9979. {
  9980. name: "Normal",
  9981. height: math.unit(10, "feet"),
  9982. default: true
  9983. },
  9984. {
  9985. name: "Macro",
  9986. height: math.unit(500, "feet")
  9987. },
  9988. {
  9989. name: "Megamacro",
  9990. height: math.unit(5, "miles")
  9991. },
  9992. {
  9993. name: "Teramacro",
  9994. height: math.unit(150000, "miles")
  9995. },
  9996. ]
  9997. ))
  9998. characterMakers.push(() => makeCharacter(
  9999. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10000. {
  10001. front: {
  10002. height: math.unit(6, "feet"),
  10003. weight: math.unit(150, "lb"),
  10004. name: "Front",
  10005. image: {
  10006. source: "./media/characters/cuon/front.svg",
  10007. extra: 1390 / 1320,
  10008. bottom: 0.008
  10009. }
  10010. },
  10011. },
  10012. [
  10013. {
  10014. name: "Micro",
  10015. height: math.unit(3, "inches")
  10016. },
  10017. {
  10018. name: "Normal",
  10019. height: math.unit(18 + 9 / 12, "feet"),
  10020. default: true
  10021. },
  10022. {
  10023. name: "Macro",
  10024. height: math.unit(360, "feet")
  10025. },
  10026. {
  10027. name: "Megamacro",
  10028. height: math.unit(360, "miles")
  10029. },
  10030. ]
  10031. ))
  10032. characterMakers.push(() => makeCharacter(
  10033. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10034. {
  10035. front: {
  10036. height: math.unit(2.4, "meters"),
  10037. weight: math.unit(70, "kg"),
  10038. name: "Front",
  10039. image: {
  10040. source: "./media/characters/nyanuxk/front.svg",
  10041. extra: 1172 / 1084,
  10042. bottom: 0.065
  10043. }
  10044. },
  10045. side: {
  10046. height: math.unit(2.4, "meters"),
  10047. weight: math.unit(70, "kg"),
  10048. name: "Side",
  10049. image: {
  10050. source: "./media/characters/nyanuxk/side.svg",
  10051. extra: 1190 / 1132,
  10052. bottom: 0.007
  10053. }
  10054. },
  10055. back: {
  10056. height: math.unit(2.4, "meters"),
  10057. weight: math.unit(70, "kg"),
  10058. name: "Back",
  10059. image: {
  10060. source: "./media/characters/nyanuxk/back.svg",
  10061. extra: 1200 / 1141,
  10062. bottom: 0.015
  10063. }
  10064. },
  10065. foot: {
  10066. height: math.unit(0.52, "meters"),
  10067. name: "Foot",
  10068. image: {
  10069. source: "./media/characters/nyanuxk/foot.svg"
  10070. }
  10071. },
  10072. },
  10073. [
  10074. {
  10075. name: "Micro",
  10076. height: math.unit(2, "cm")
  10077. },
  10078. {
  10079. name: "Normal",
  10080. height: math.unit(2.4, "meters"),
  10081. default: true
  10082. },
  10083. {
  10084. name: "Smaller Macro",
  10085. height: math.unit(120, "meters")
  10086. },
  10087. {
  10088. name: "Bigger Macro",
  10089. height: math.unit(1.2, "km")
  10090. },
  10091. {
  10092. name: "Megamacro",
  10093. height: math.unit(15, "kilometers")
  10094. },
  10095. {
  10096. name: "Gigamacro",
  10097. height: math.unit(2000, "km")
  10098. },
  10099. {
  10100. name: "Teramacro",
  10101. height: math.unit(500000, "km")
  10102. },
  10103. ]
  10104. ))
  10105. characterMakers.push(() => makeCharacter(
  10106. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10107. {
  10108. side: {
  10109. height: math.unit(6, "feet"),
  10110. name: "Side",
  10111. image: {
  10112. source: "./media/characters/ailbhe/side.svg",
  10113. extra: 757 / 464,
  10114. bottom: 0.041
  10115. }
  10116. },
  10117. },
  10118. [
  10119. {
  10120. name: "Normal",
  10121. height: math.unit(1.07, "meters"),
  10122. default: true
  10123. },
  10124. ]
  10125. ))
  10126. characterMakers.push(() => makeCharacter(
  10127. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10128. {
  10129. front: {
  10130. height: math.unit(6, "feet"),
  10131. weight: math.unit(120, "kg"),
  10132. name: "Front",
  10133. image: {
  10134. source: "./media/characters/zevulfius/front.svg",
  10135. extra: 965 / 903
  10136. }
  10137. },
  10138. side: {
  10139. height: math.unit(6, "feet"),
  10140. weight: math.unit(120, "kg"),
  10141. name: "Side",
  10142. image: {
  10143. source: "./media/characters/zevulfius/side.svg",
  10144. extra: 939 / 900
  10145. }
  10146. },
  10147. back: {
  10148. height: math.unit(6, "feet"),
  10149. weight: math.unit(120, "kg"),
  10150. name: "Back",
  10151. image: {
  10152. source: "./media/characters/zevulfius/back.svg",
  10153. extra: 918 / 854,
  10154. bottom: 0.005
  10155. }
  10156. },
  10157. foot: {
  10158. height: math.unit(6 / 3.72, "feet"),
  10159. name: "Foot",
  10160. image: {
  10161. source: "./media/characters/zevulfius/foot.svg"
  10162. }
  10163. },
  10164. },
  10165. [
  10166. {
  10167. name: "Macro",
  10168. height: math.unit(750, "meters")
  10169. },
  10170. {
  10171. name: "Megamacro",
  10172. height: math.unit(20, "km"),
  10173. default: true
  10174. },
  10175. {
  10176. name: "Gigamacro",
  10177. height: math.unit(2000, "km")
  10178. },
  10179. {
  10180. name: "Teramacro",
  10181. height: math.unit(250000, "km")
  10182. },
  10183. ]
  10184. ))
  10185. characterMakers.push(() => makeCharacter(
  10186. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10187. {
  10188. front: {
  10189. height: math.unit(100, "feet"),
  10190. weight: math.unit(350, "kg"),
  10191. name: "Front",
  10192. image: {
  10193. source: "./media/characters/rikes/front.svg",
  10194. extra: 1565 / 1483,
  10195. bottom: 0.017
  10196. }
  10197. },
  10198. },
  10199. [
  10200. {
  10201. name: "Macro",
  10202. height: math.unit(100, "feet"),
  10203. default: true
  10204. },
  10205. ]
  10206. ))
  10207. characterMakers.push(() => makeCharacter(
  10208. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10209. {
  10210. anthro: {
  10211. height: math.unit(8, "feet"),
  10212. weight: math.unit(120, "kg"),
  10213. name: "Anthro",
  10214. image: {
  10215. source: "./media/characters/adam-silver-mane/anthro.svg",
  10216. extra: 5743 / 5339,
  10217. bottom: 0.07
  10218. }
  10219. },
  10220. taur: {
  10221. height: math.unit(16, "feet"),
  10222. weight: math.unit(1500, "kg"),
  10223. name: "Taur",
  10224. image: {
  10225. source: "./media/characters/adam-silver-mane/taur.svg",
  10226. extra: 1713 / 1571,
  10227. bottom: 0.01
  10228. }
  10229. },
  10230. },
  10231. [
  10232. {
  10233. name: "Normal",
  10234. height: math.unit(8, "feet")
  10235. },
  10236. {
  10237. name: "Minimacro",
  10238. height: math.unit(80, "feet")
  10239. },
  10240. {
  10241. name: "Macro",
  10242. height: math.unit(800, "feet"),
  10243. default: true
  10244. },
  10245. {
  10246. name: "Megamacro",
  10247. height: math.unit(8000, "feet")
  10248. },
  10249. {
  10250. name: "Gigamacro",
  10251. height: math.unit(800, "miles")
  10252. },
  10253. {
  10254. name: "Teramacro",
  10255. height: math.unit(80000, "miles")
  10256. },
  10257. {
  10258. name: "Celestial",
  10259. height: math.unit(8e6, "miles")
  10260. },
  10261. {
  10262. name: "Star Dragon",
  10263. height: math.unit(800000, "parsecs")
  10264. },
  10265. {
  10266. name: "Godly",
  10267. height: math.unit(800, "teraparsecs")
  10268. },
  10269. ]
  10270. ))
  10271. characterMakers.push(() => makeCharacter(
  10272. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10273. {
  10274. front: {
  10275. height: math.unit(6, "feet"),
  10276. weight: math.unit(150, "lb"),
  10277. name: "Front",
  10278. image: {
  10279. source: "./media/characters/ky'owin/front.svg",
  10280. extra: 3888 / 3068,
  10281. bottom: 0.015
  10282. }
  10283. },
  10284. },
  10285. [
  10286. {
  10287. name: "Normal",
  10288. height: math.unit(6 + 8 / 12, "feet")
  10289. },
  10290. {
  10291. name: "Large",
  10292. height: math.unit(68, "feet")
  10293. },
  10294. {
  10295. name: "Macro",
  10296. height: math.unit(132, "feet")
  10297. },
  10298. {
  10299. name: "Macro+",
  10300. height: math.unit(340, "feet")
  10301. },
  10302. {
  10303. name: "Macro++",
  10304. height: math.unit(680, "feet"),
  10305. default: true
  10306. },
  10307. {
  10308. name: "Megamacro",
  10309. height: math.unit(1, "mile")
  10310. },
  10311. {
  10312. name: "Megamacro+",
  10313. height: math.unit(10, "miles")
  10314. },
  10315. ]
  10316. ))
  10317. characterMakers.push(() => makeCharacter(
  10318. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10319. {
  10320. front: {
  10321. height: math.unit(4, "feet"),
  10322. weight: math.unit(50, "lb"),
  10323. name: "Front",
  10324. image: {
  10325. source: "./media/characters/mal/front.svg",
  10326. extra: 785 / 724,
  10327. bottom: 0.07
  10328. }
  10329. },
  10330. },
  10331. [
  10332. {
  10333. name: "Micro",
  10334. height: math.unit(4, "inches")
  10335. },
  10336. {
  10337. name: "Normal",
  10338. height: math.unit(4, "feet"),
  10339. default: true
  10340. },
  10341. {
  10342. name: "Macro",
  10343. height: math.unit(200, "feet")
  10344. },
  10345. ]
  10346. ))
  10347. characterMakers.push(() => makeCharacter(
  10348. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10349. {
  10350. front: {
  10351. height: math.unit(6, "feet"),
  10352. weight: math.unit(150, "lb"),
  10353. name: "Front",
  10354. image: {
  10355. source: "./media/characters/jordan-deware/front.svg",
  10356. extra: 1191 / 1012
  10357. }
  10358. },
  10359. },
  10360. [
  10361. {
  10362. name: "Nano",
  10363. height: math.unit(0.01, "mm")
  10364. },
  10365. {
  10366. name: "Minimicro",
  10367. height: math.unit(1, "mm")
  10368. },
  10369. {
  10370. name: "Micro",
  10371. height: math.unit(0.5, "inches")
  10372. },
  10373. {
  10374. name: "Normal",
  10375. height: math.unit(4, "feet"),
  10376. default: true
  10377. },
  10378. {
  10379. name: "Minimacro",
  10380. height: math.unit(40, "meters")
  10381. },
  10382. {
  10383. name: "Small Macro",
  10384. height: math.unit(400, "meters")
  10385. },
  10386. {
  10387. name: "Macro",
  10388. height: math.unit(4, "miles")
  10389. },
  10390. {
  10391. name: "Megamacro",
  10392. height: math.unit(40, "miles")
  10393. },
  10394. {
  10395. name: "Megamacro+",
  10396. height: math.unit(400, "miles")
  10397. },
  10398. {
  10399. name: "Gigamacro",
  10400. height: math.unit(400000, "miles")
  10401. },
  10402. ]
  10403. ))
  10404. characterMakers.push(() => makeCharacter(
  10405. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10406. {
  10407. side: {
  10408. height: math.unit(6, "feet"),
  10409. weight: math.unit(150, "lb"),
  10410. name: "Side",
  10411. image: {
  10412. source: "./media/characters/kimiko/side.svg",
  10413. extra: 600 / 358
  10414. }
  10415. },
  10416. },
  10417. [
  10418. {
  10419. name: "Normal",
  10420. height: math.unit(15, "feet"),
  10421. default: true
  10422. },
  10423. {
  10424. name: "Macro",
  10425. height: math.unit(220, "feet")
  10426. },
  10427. {
  10428. name: "Macro+",
  10429. height: math.unit(1450, "feet")
  10430. },
  10431. {
  10432. name: "Megamacro",
  10433. height: math.unit(11500, "feet")
  10434. },
  10435. {
  10436. name: "Gigamacro",
  10437. height: math.unit(9500, "miles")
  10438. },
  10439. {
  10440. name: "Teramacro",
  10441. height: math.unit(2208005005, "miles")
  10442. },
  10443. {
  10444. name: "Examacro",
  10445. height: math.unit(2750, "parsecs")
  10446. },
  10447. {
  10448. name: "Zettamacro",
  10449. height: math.unit(101500, "parsecs")
  10450. },
  10451. ]
  10452. ))
  10453. characterMakers.push(() => makeCharacter(
  10454. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10455. {
  10456. front: {
  10457. height: math.unit(6, "feet"),
  10458. weight: math.unit(70, "kg"),
  10459. name: "Front",
  10460. image: {
  10461. source: "./media/characters/andrew-sleepy/front.svg"
  10462. }
  10463. },
  10464. side: {
  10465. height: math.unit(6, "feet"),
  10466. weight: math.unit(70, "kg"),
  10467. name: "Side",
  10468. image: {
  10469. source: "./media/characters/andrew-sleepy/side.svg"
  10470. }
  10471. },
  10472. },
  10473. [
  10474. {
  10475. name: "Micro",
  10476. height: math.unit(1, "mm"),
  10477. default: true
  10478. },
  10479. ]
  10480. ))
  10481. characterMakers.push(() => makeCharacter(
  10482. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10483. {
  10484. front: {
  10485. height: math.unit(6, "feet"),
  10486. weight: math.unit(150, "lb"),
  10487. name: "Front",
  10488. image: {
  10489. source: "./media/characters/judio/front.svg",
  10490. extra: 1258 / 1110
  10491. }
  10492. },
  10493. },
  10494. [
  10495. {
  10496. name: "Normal",
  10497. height: math.unit(5 + 6 / 12, "feet")
  10498. },
  10499. {
  10500. name: "Macro",
  10501. height: math.unit(1000, "feet"),
  10502. default: true
  10503. },
  10504. {
  10505. name: "Megamacro",
  10506. height: math.unit(10, "miles")
  10507. },
  10508. ]
  10509. ))
  10510. characterMakers.push(() => makeCharacter(
  10511. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10512. {
  10513. front: {
  10514. height: math.unit(6, "feet"),
  10515. weight: math.unit(68, "kg"),
  10516. name: "Front",
  10517. image: {
  10518. source: "./media/characters/nomaxice/front.svg",
  10519. extra: 1498 / 1073,
  10520. bottom: 0.075
  10521. }
  10522. },
  10523. foot: {
  10524. height: math.unit(1.1, "feet"),
  10525. name: "Foot",
  10526. image: {
  10527. source: "./media/characters/nomaxice/foot.svg"
  10528. }
  10529. },
  10530. },
  10531. [
  10532. {
  10533. name: "Micro",
  10534. height: math.unit(8, "cm")
  10535. },
  10536. {
  10537. name: "Norm",
  10538. height: math.unit(1.82, "m")
  10539. },
  10540. {
  10541. name: "Norm+",
  10542. height: math.unit(8.8, "feet")
  10543. },
  10544. {
  10545. name: "Big",
  10546. height: math.unit(8, "meters"),
  10547. default: true
  10548. },
  10549. {
  10550. name: "Macro",
  10551. height: math.unit(18, "meters")
  10552. },
  10553. {
  10554. name: "Macro+",
  10555. height: math.unit(88, "meters")
  10556. },
  10557. ]
  10558. ))
  10559. characterMakers.push(() => makeCharacter(
  10560. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10561. {
  10562. front: {
  10563. height: math.unit(12, "feet"),
  10564. weight: math.unit(1.5, "tons"),
  10565. name: "Front",
  10566. image: {
  10567. source: "./media/characters/dydros/front.svg",
  10568. extra: 863 / 800,
  10569. bottom: 0.015
  10570. }
  10571. },
  10572. back: {
  10573. height: math.unit(12, "feet"),
  10574. weight: math.unit(1.5, "tons"),
  10575. name: "Back",
  10576. image: {
  10577. source: "./media/characters/dydros/back.svg",
  10578. extra: 900 / 843,
  10579. bottom: 0.005
  10580. }
  10581. },
  10582. },
  10583. [
  10584. {
  10585. name: "Normal",
  10586. height: math.unit(12, "feet"),
  10587. default: true
  10588. },
  10589. ]
  10590. ))
  10591. characterMakers.push(() => makeCharacter(
  10592. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10593. {
  10594. front: {
  10595. height: math.unit(6, "feet"),
  10596. weight: math.unit(100, "kg"),
  10597. name: "Front",
  10598. image: {
  10599. source: "./media/characters/riggi/front.svg",
  10600. extra: 5787 / 5303
  10601. }
  10602. },
  10603. hyper: {
  10604. height: math.unit(6 * 5 / 3, "feet"),
  10605. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10606. name: "Hyper",
  10607. image: {
  10608. source: "./media/characters/riggi/hyper.svg",
  10609. extra: 3595 / 3485
  10610. }
  10611. },
  10612. },
  10613. [
  10614. {
  10615. name: "Small Macro",
  10616. height: math.unit(50, "feet")
  10617. },
  10618. {
  10619. name: "Default",
  10620. height: math.unit(200, "feet"),
  10621. default: true
  10622. },
  10623. {
  10624. name: "Loom",
  10625. height: math.unit(10000, "feet")
  10626. },
  10627. {
  10628. name: "Cruising Altitude",
  10629. height: math.unit(30000, "feet")
  10630. },
  10631. {
  10632. name: "Megamacro",
  10633. height: math.unit(100, "miles")
  10634. },
  10635. {
  10636. name: "Continent Sized",
  10637. height: math.unit(2800, "miles")
  10638. },
  10639. {
  10640. name: "Earth Sized",
  10641. height: math.unit(8000, "miles")
  10642. },
  10643. ]
  10644. ))
  10645. characterMakers.push(() => makeCharacter(
  10646. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10647. {
  10648. front: {
  10649. height: math.unit(6, "feet"),
  10650. weight: math.unit(250, "lb"),
  10651. name: "Front",
  10652. image: {
  10653. source: "./media/characters/alexi/front.svg",
  10654. extra: 3483 / 3291,
  10655. bottom: 0.04
  10656. }
  10657. },
  10658. back: {
  10659. height: math.unit(6, "feet"),
  10660. weight: math.unit(250, "lb"),
  10661. name: "Back",
  10662. image: {
  10663. source: "./media/characters/alexi/back.svg",
  10664. extra: 3533 / 3356,
  10665. bottom: 0.021
  10666. }
  10667. },
  10668. frontTransforming: {
  10669. height: math.unit(8.58, "feet"),
  10670. weight: math.unit(1300, "lb"),
  10671. name: "Transforming",
  10672. image: {
  10673. source: "./media/characters/alexi/front-transforming.svg",
  10674. extra: 437 / 409,
  10675. bottom: 19 / 458.66
  10676. }
  10677. },
  10678. frontTransformed: {
  10679. height: math.unit(12.5, "feet"),
  10680. weight: math.unit(4000, "lb"),
  10681. name: "Transformed",
  10682. image: {
  10683. source: "./media/characters/alexi/front-transformed.svg",
  10684. extra: 639 / 614,
  10685. bottom: 30.55 / 671
  10686. }
  10687. },
  10688. },
  10689. [
  10690. {
  10691. name: "Normal",
  10692. height: math.unit(14, "feet"),
  10693. default: true
  10694. },
  10695. {
  10696. name: "Minimacro",
  10697. height: math.unit(30, "meters")
  10698. },
  10699. {
  10700. name: "Macro",
  10701. height: math.unit(500, "meters")
  10702. },
  10703. {
  10704. name: "Megamacro",
  10705. height: math.unit(9000, "km")
  10706. },
  10707. {
  10708. name: "Teramacro",
  10709. height: math.unit(384000, "km")
  10710. },
  10711. ]
  10712. ))
  10713. characterMakers.push(() => makeCharacter(
  10714. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10715. {
  10716. front: {
  10717. height: math.unit(6, "feet"),
  10718. weight: math.unit(150, "lb"),
  10719. name: "Front",
  10720. image: {
  10721. source: "./media/characters/kayroo/front.svg",
  10722. extra: 1153 / 1038,
  10723. bottom: 0.06
  10724. }
  10725. },
  10726. foot: {
  10727. height: math.unit(6, "feet"),
  10728. weight: math.unit(150, "lb"),
  10729. name: "Foot",
  10730. image: {
  10731. source: "./media/characters/kayroo/foot.svg"
  10732. }
  10733. },
  10734. },
  10735. [
  10736. {
  10737. name: "Normal",
  10738. height: math.unit(8, "feet"),
  10739. default: true
  10740. },
  10741. {
  10742. name: "Minimacro",
  10743. height: math.unit(250, "feet")
  10744. },
  10745. {
  10746. name: "Macro",
  10747. height: math.unit(2800, "feet")
  10748. },
  10749. {
  10750. name: "Megamacro",
  10751. height: math.unit(5200, "feet")
  10752. },
  10753. {
  10754. name: "Gigamacro",
  10755. height: math.unit(27000, "feet")
  10756. },
  10757. {
  10758. name: "Omega",
  10759. height: math.unit(45000, "feet")
  10760. },
  10761. ]
  10762. ))
  10763. characterMakers.push(() => makeCharacter(
  10764. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10765. {
  10766. front: {
  10767. height: math.unit(18, "feet"),
  10768. weight: math.unit(5800, "lb"),
  10769. name: "Front",
  10770. image: {
  10771. source: "./media/characters/rhys/front.svg",
  10772. extra: 3386 / 3090,
  10773. bottom: 0.07
  10774. }
  10775. },
  10776. },
  10777. [
  10778. {
  10779. name: "Normal",
  10780. height: math.unit(18, "feet"),
  10781. default: true
  10782. },
  10783. {
  10784. name: "Working Size",
  10785. height: math.unit(200, "feet")
  10786. },
  10787. {
  10788. name: "Demolition Size",
  10789. height: math.unit(2000, "feet")
  10790. },
  10791. {
  10792. name: "Maximum Licensed Size",
  10793. height: math.unit(5, "miles")
  10794. },
  10795. {
  10796. name: "Maximum Observed Size",
  10797. height: math.unit(10, "yottameters")
  10798. },
  10799. ]
  10800. ))
  10801. characterMakers.push(() => makeCharacter(
  10802. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10803. {
  10804. front: {
  10805. height: math.unit(6, "feet"),
  10806. weight: math.unit(250, "lb"),
  10807. name: "Front",
  10808. image: {
  10809. source: "./media/characters/toto/front.svg",
  10810. extra: 527 / 479,
  10811. bottom: 0.05
  10812. }
  10813. },
  10814. },
  10815. [
  10816. {
  10817. name: "Micro",
  10818. height: math.unit(3, "feet")
  10819. },
  10820. {
  10821. name: "Normal",
  10822. height: math.unit(10, "feet")
  10823. },
  10824. {
  10825. name: "Macro",
  10826. height: math.unit(150, "feet"),
  10827. default: true
  10828. },
  10829. {
  10830. name: "Megamacro",
  10831. height: math.unit(1200, "feet")
  10832. },
  10833. ]
  10834. ))
  10835. characterMakers.push(() => makeCharacter(
  10836. { name: "King", species: ["lion"], tags: ["anthro"] },
  10837. {
  10838. back: {
  10839. height: math.unit(6, "feet"),
  10840. weight: math.unit(150, "lb"),
  10841. name: "Back",
  10842. image: {
  10843. source: "./media/characters/king/back.svg"
  10844. }
  10845. },
  10846. },
  10847. [
  10848. {
  10849. name: "Micro",
  10850. height: math.unit(2, "inches")
  10851. },
  10852. {
  10853. name: "Normal",
  10854. height: math.unit(8, "feet")
  10855. },
  10856. {
  10857. name: "Macro",
  10858. height: math.unit(200, "feet"),
  10859. default: true
  10860. },
  10861. {
  10862. name: "Megamacro",
  10863. height: math.unit(50, "miles")
  10864. },
  10865. ]
  10866. ))
  10867. characterMakers.push(() => makeCharacter(
  10868. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10869. {
  10870. anthro: {
  10871. height: math.unit(6 + 5 / 12, "feet"),
  10872. weight: math.unit(280, "lb"),
  10873. name: "Anthro",
  10874. image: {
  10875. source: "./media/characters/cordite/anthro.svg",
  10876. extra: 1986 / 1905,
  10877. bottom: 0.025
  10878. }
  10879. },
  10880. feral: {
  10881. height: math.unit(2, "feet"),
  10882. weight: math.unit(90, "lb"),
  10883. name: "Feral",
  10884. image: {
  10885. source: "./media/characters/cordite/feral.svg",
  10886. extra: 1260 / 755,
  10887. bottom: 0.05
  10888. }
  10889. },
  10890. },
  10891. [
  10892. {
  10893. name: "Normal",
  10894. height: math.unit(6 + 5 / 12, "feet"),
  10895. default: true
  10896. },
  10897. ]
  10898. ))
  10899. characterMakers.push(() => makeCharacter(
  10900. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10901. {
  10902. front: {
  10903. height: math.unit(6, "feet"),
  10904. weight: math.unit(150, "lb"),
  10905. name: "Front",
  10906. image: {
  10907. source: "./media/characters/pianostrong/front.svg",
  10908. extra: 6577 / 6254,
  10909. bottom: 0.02
  10910. }
  10911. },
  10912. side: {
  10913. height: math.unit(6, "feet"),
  10914. weight: math.unit(150, "lb"),
  10915. name: "Side",
  10916. image: {
  10917. source: "./media/characters/pianostrong/side.svg",
  10918. extra: 6106 / 5730
  10919. }
  10920. },
  10921. back: {
  10922. height: math.unit(6, "feet"),
  10923. weight: math.unit(150, "lb"),
  10924. name: "Back",
  10925. image: {
  10926. source: "./media/characters/pianostrong/back.svg",
  10927. extra: 6085 / 5733,
  10928. bottom: 0.01
  10929. }
  10930. },
  10931. },
  10932. [
  10933. {
  10934. name: "Macro",
  10935. height: math.unit(100, "feet")
  10936. },
  10937. {
  10938. name: "Macro+",
  10939. height: math.unit(300, "feet"),
  10940. default: true
  10941. },
  10942. {
  10943. name: "Macro++",
  10944. height: math.unit(1000, "feet")
  10945. },
  10946. ]
  10947. ))
  10948. characterMakers.push(() => makeCharacter(
  10949. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10950. {
  10951. front: {
  10952. height: math.unit(6, "feet"),
  10953. weight: math.unit(150, "lb"),
  10954. name: "Front",
  10955. image: {
  10956. source: "./media/characters/kona/front.svg",
  10957. extra: 2960 / 2629,
  10958. bottom: 0.005
  10959. }
  10960. },
  10961. },
  10962. [
  10963. {
  10964. name: "Normal",
  10965. height: math.unit(11 + 8 / 12, "feet")
  10966. },
  10967. {
  10968. name: "Macro",
  10969. height: math.unit(850, "feet"),
  10970. default: true
  10971. },
  10972. {
  10973. name: "Macro+",
  10974. height: math.unit(1.5, "km"),
  10975. default: true
  10976. },
  10977. {
  10978. name: "Megamacro",
  10979. height: math.unit(80, "miles")
  10980. },
  10981. {
  10982. name: "Gigamacro",
  10983. height: math.unit(3500, "miles")
  10984. },
  10985. ]
  10986. ))
  10987. characterMakers.push(() => makeCharacter(
  10988. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10989. {
  10990. side: {
  10991. height: math.unit(1.9, "meters"),
  10992. weight: math.unit(326, "kg"),
  10993. name: "Side",
  10994. image: {
  10995. source: "./media/characters/levi/side.svg",
  10996. extra: 1704 / 1334,
  10997. bottom: 0.02
  10998. }
  10999. },
  11000. },
  11001. [
  11002. {
  11003. name: "Normal",
  11004. height: math.unit(1.9, "meters"),
  11005. default: true
  11006. },
  11007. {
  11008. name: "Macro",
  11009. height: math.unit(20, "meters")
  11010. },
  11011. {
  11012. name: "Macro+",
  11013. height: math.unit(200, "meters")
  11014. },
  11015. {
  11016. name: "Megamacro",
  11017. height: math.unit(2, "km")
  11018. },
  11019. {
  11020. name: "Megamacro+",
  11021. height: math.unit(20, "km")
  11022. },
  11023. {
  11024. name: "Gigamacro",
  11025. height: math.unit(2500, "km")
  11026. },
  11027. {
  11028. name: "Gigamacro+",
  11029. height: math.unit(120000, "km")
  11030. },
  11031. {
  11032. name: "Teramacro",
  11033. height: math.unit(7.77e6, "km")
  11034. },
  11035. ]
  11036. ))
  11037. characterMakers.push(() => makeCharacter(
  11038. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11039. {
  11040. front: {
  11041. height: math.unit(6 + 4 / 12, "feet"),
  11042. weight: math.unit(188, "lb"),
  11043. name: "Front",
  11044. image: {
  11045. source: "./media/characters/bmc/front.svg",
  11046. extra: 1067 / 1022,
  11047. bottom: 0.047
  11048. }
  11049. },
  11050. },
  11051. [
  11052. {
  11053. name: "Human-sized",
  11054. height: math.unit(6 + 4 / 12, "feet")
  11055. },
  11056. {
  11057. name: "Small",
  11058. height: math.unit(250, "feet")
  11059. },
  11060. {
  11061. name: "Normal",
  11062. height: math.unit(1250, "feet"),
  11063. default: true
  11064. },
  11065. {
  11066. name: "Good Day",
  11067. height: math.unit(88, "miles")
  11068. },
  11069. {
  11070. name: "Largest Measured Size",
  11071. height: math.unit(11.2e6, "lightyears")
  11072. },
  11073. ]
  11074. ))
  11075. characterMakers.push(() => makeCharacter(
  11076. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11077. {
  11078. front: {
  11079. height: math.unit(20, "feet"),
  11080. weight: math.unit(2016, "kg"),
  11081. name: "Front",
  11082. image: {
  11083. source: "./media/characters/sven-the-kaiju/front.svg",
  11084. extra: 1479 / 1449,
  11085. bottom: 0.05
  11086. }
  11087. },
  11088. },
  11089. [
  11090. {
  11091. name: "Fairy",
  11092. height: math.unit(6, "inches")
  11093. },
  11094. {
  11095. name: "Normal",
  11096. height: math.unit(20, "feet"),
  11097. default: true
  11098. },
  11099. {
  11100. name: "Rampage",
  11101. height: math.unit(200, "feet")
  11102. },
  11103. {
  11104. name: "Archfey Forest Guardian",
  11105. height: math.unit(1, "mile")
  11106. },
  11107. ]
  11108. ))
  11109. characterMakers.push(() => makeCharacter(
  11110. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11111. {
  11112. front: {
  11113. height: math.unit(4, "meters"),
  11114. weight: math.unit(2, "tons"),
  11115. name: "Front",
  11116. image: {
  11117. source: "./media/characters/marik/front.svg",
  11118. extra: 1057 / 1003,
  11119. bottom: 0.08
  11120. }
  11121. },
  11122. },
  11123. [
  11124. {
  11125. name: "Normal",
  11126. height: math.unit(4, "meters"),
  11127. default: true
  11128. },
  11129. {
  11130. name: "Macro",
  11131. height: math.unit(20, "meters")
  11132. },
  11133. {
  11134. name: "Megamacro",
  11135. height: math.unit(50, "km")
  11136. },
  11137. {
  11138. name: "Gigamacro",
  11139. height: math.unit(100, "km")
  11140. },
  11141. {
  11142. name: "Alpha Macro",
  11143. height: math.unit(7.88e7, "yottameters")
  11144. },
  11145. ]
  11146. ))
  11147. characterMakers.push(() => makeCharacter(
  11148. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11149. {
  11150. front: {
  11151. height: math.unit(6, "feet"),
  11152. weight: math.unit(110, "lb"),
  11153. name: "Front",
  11154. image: {
  11155. source: "./media/characters/mel/front.svg",
  11156. extra: 736 / 617,
  11157. bottom: 0.017
  11158. }
  11159. },
  11160. },
  11161. [
  11162. {
  11163. name: "Pico",
  11164. height: math.unit(3, "pm")
  11165. },
  11166. {
  11167. name: "Nano",
  11168. height: math.unit(3, "nm")
  11169. },
  11170. {
  11171. name: "Micro",
  11172. height: math.unit(0.3, "mm"),
  11173. default: true
  11174. },
  11175. {
  11176. name: "Micro+",
  11177. height: math.unit(3, "mm")
  11178. },
  11179. {
  11180. name: "Normal",
  11181. height: math.unit(5 + 10.5 / 12, "feet")
  11182. },
  11183. ]
  11184. ))
  11185. characterMakers.push(() => makeCharacter(
  11186. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11187. {
  11188. kaiju: {
  11189. height: math.unit(1.75, "meters"),
  11190. weight: math.unit(55, "kg"),
  11191. name: "Kaiju",
  11192. image: {
  11193. source: "./media/characters/lykonous/kaiju.svg",
  11194. extra: 1055 / 946,
  11195. bottom: 0.135
  11196. }
  11197. },
  11198. },
  11199. [
  11200. {
  11201. name: "Normal",
  11202. height: math.unit(2.5, "meters"),
  11203. default: true
  11204. },
  11205. {
  11206. name: "Kaiju Dragon",
  11207. height: math.unit(60, "meters")
  11208. },
  11209. {
  11210. name: "Mega Kaiju",
  11211. height: math.unit(120, "km")
  11212. },
  11213. {
  11214. name: "Giga Kaiju",
  11215. height: math.unit(200, "megameters")
  11216. },
  11217. {
  11218. name: "Terra Kaiju",
  11219. height: math.unit(400, "gigameters")
  11220. },
  11221. {
  11222. name: "Kaiju Dragon God",
  11223. height: math.unit(13000, "exaparsecs")
  11224. },
  11225. ]
  11226. ))
  11227. characterMakers.push(() => makeCharacter(
  11228. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11229. {
  11230. front: {
  11231. height: math.unit(6, "feet"),
  11232. weight: math.unit(150, "lb"),
  11233. name: "Front",
  11234. image: {
  11235. source: "./media/characters/blü/front.svg",
  11236. extra: 1883 / 1564,
  11237. bottom: 0.031
  11238. }
  11239. },
  11240. },
  11241. [
  11242. {
  11243. name: "Normal",
  11244. height: math.unit(13, "feet"),
  11245. default: true
  11246. },
  11247. {
  11248. name: "Big Boi",
  11249. height: math.unit(150, "meters")
  11250. },
  11251. {
  11252. name: "Mini Stomper",
  11253. height: math.unit(300, "meters")
  11254. },
  11255. {
  11256. name: "Macro",
  11257. height: math.unit(1000, "meters")
  11258. },
  11259. {
  11260. name: "Megamacro",
  11261. height: math.unit(11000, "meters")
  11262. },
  11263. {
  11264. name: "Gigamacro",
  11265. height: math.unit(11000, "km")
  11266. },
  11267. {
  11268. name: "Teramacro",
  11269. height: math.unit(420000, "km")
  11270. },
  11271. {
  11272. name: "Examacro",
  11273. height: math.unit(120, "parsecs")
  11274. },
  11275. {
  11276. name: "God Tho",
  11277. height: math.unit(98000000000, "parsecs")
  11278. },
  11279. ]
  11280. ))
  11281. characterMakers.push(() => makeCharacter(
  11282. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11283. {
  11284. taurFront: {
  11285. height: math.unit(6, "feet"),
  11286. weight: math.unit(200, "lb"),
  11287. name: "Taur (Front)",
  11288. image: {
  11289. source: "./media/characters/scales/taur-front.svg",
  11290. extra: 1,
  11291. bottom: 0.05
  11292. }
  11293. },
  11294. taurBack: {
  11295. height: math.unit(6, "feet"),
  11296. weight: math.unit(200, "lb"),
  11297. name: "Taur (Back)",
  11298. image: {
  11299. source: "./media/characters/scales/taur-back.svg",
  11300. extra: 1,
  11301. bottom: 0.08
  11302. }
  11303. },
  11304. anthro: {
  11305. height: math.unit(6 * 7 / 12, "feet"),
  11306. weight: math.unit(100, "lb"),
  11307. name: "Anthro",
  11308. image: {
  11309. source: "./media/characters/scales/anthro.svg",
  11310. extra: 1,
  11311. bottom: 0.06
  11312. }
  11313. },
  11314. },
  11315. [
  11316. {
  11317. name: "Normal",
  11318. height: math.unit(12, "feet"),
  11319. default: true
  11320. },
  11321. ]
  11322. ))
  11323. characterMakers.push(() => makeCharacter(
  11324. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11325. {
  11326. front: {
  11327. height: math.unit(6, "feet"),
  11328. weight: math.unit(150, "lb"),
  11329. name: "Front",
  11330. image: {
  11331. source: "./media/characters/koragos/front.svg",
  11332. extra: 841 / 794,
  11333. bottom: 0.035
  11334. }
  11335. },
  11336. back: {
  11337. height: math.unit(6, "feet"),
  11338. weight: math.unit(150, "lb"),
  11339. name: "Back",
  11340. image: {
  11341. source: "./media/characters/koragos/back.svg",
  11342. extra: 841 / 810,
  11343. bottom: 0.022
  11344. }
  11345. },
  11346. },
  11347. [
  11348. {
  11349. name: "Normal",
  11350. height: math.unit(6 + 11 / 12, "feet"),
  11351. default: true
  11352. },
  11353. {
  11354. name: "Macro",
  11355. height: math.unit(490, "feet")
  11356. },
  11357. {
  11358. name: "Megamacro",
  11359. height: math.unit(10, "miles")
  11360. },
  11361. {
  11362. name: "Gigamacro",
  11363. height: math.unit(50, "miles")
  11364. },
  11365. ]
  11366. ))
  11367. characterMakers.push(() => makeCharacter(
  11368. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11369. {
  11370. front: {
  11371. height: math.unit(6, "feet"),
  11372. weight: math.unit(250, "lb"),
  11373. name: "Front",
  11374. image: {
  11375. source: "./media/characters/xylrem/front.svg",
  11376. extra: 3323 / 3050,
  11377. bottom: 0.065
  11378. }
  11379. },
  11380. },
  11381. [
  11382. {
  11383. name: "Micro",
  11384. height: math.unit(4, "feet")
  11385. },
  11386. {
  11387. name: "Normal",
  11388. height: math.unit(16, "feet"),
  11389. default: true
  11390. },
  11391. {
  11392. name: "Macro",
  11393. height: math.unit(2720, "feet")
  11394. },
  11395. {
  11396. name: "Megamacro",
  11397. height: math.unit(25000, "miles")
  11398. },
  11399. ]
  11400. ))
  11401. characterMakers.push(() => makeCharacter(
  11402. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11403. {
  11404. front: {
  11405. height: math.unit(8, "feet"),
  11406. weight: math.unit(250, "kg"),
  11407. name: "Front",
  11408. image: {
  11409. source: "./media/characters/ikideru/front.svg",
  11410. extra: 930 / 870,
  11411. bottom: 0.087
  11412. }
  11413. },
  11414. back: {
  11415. height: math.unit(8, "feet"),
  11416. weight: math.unit(250, "kg"),
  11417. name: "Back",
  11418. image: {
  11419. source: "./media/characters/ikideru/back.svg",
  11420. extra: 919 / 852,
  11421. bottom: 0.055
  11422. }
  11423. },
  11424. },
  11425. [
  11426. {
  11427. name: "Rare",
  11428. height: math.unit(8, "feet"),
  11429. default: true
  11430. },
  11431. {
  11432. name: "Playful Loom",
  11433. height: math.unit(80, "feet")
  11434. },
  11435. {
  11436. name: "City Leaner",
  11437. height: math.unit(230, "feet")
  11438. },
  11439. {
  11440. name: "Megamacro",
  11441. height: math.unit(2500, "feet")
  11442. },
  11443. {
  11444. name: "Gigamacro",
  11445. height: math.unit(26400, "feet")
  11446. },
  11447. {
  11448. name: "Tectonic Shifter",
  11449. height: math.unit(1.7, "megameters")
  11450. },
  11451. {
  11452. name: "Planet Carer",
  11453. height: math.unit(21, "megameters")
  11454. },
  11455. {
  11456. name: "God",
  11457. height: math.unit(11157.22, "parsecs")
  11458. },
  11459. ]
  11460. ))
  11461. characterMakers.push(() => makeCharacter(
  11462. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11463. {
  11464. front: {
  11465. height: math.unit(6, "feet"),
  11466. weight: math.unit(120, "lb"),
  11467. name: "Front",
  11468. image: {
  11469. source: "./media/characters/neo/front.svg"
  11470. }
  11471. },
  11472. },
  11473. [
  11474. {
  11475. name: "Micro",
  11476. height: math.unit(2, "inches"),
  11477. default: true
  11478. },
  11479. {
  11480. name: "Human Size",
  11481. height: math.unit(5 + 8 / 12, "feet")
  11482. },
  11483. ]
  11484. ))
  11485. characterMakers.push(() => makeCharacter(
  11486. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11487. {
  11488. front: {
  11489. height: math.unit(13 + 10 / 12, "feet"),
  11490. weight: math.unit(5320, "lb"),
  11491. name: "Front",
  11492. image: {
  11493. source: "./media/characters/chauncey-chantz/front.svg",
  11494. extra: 1587 / 1435,
  11495. bottom: 0.02
  11496. }
  11497. },
  11498. },
  11499. [
  11500. {
  11501. name: "Normal",
  11502. height: math.unit(13 + 10 / 12, "feet"),
  11503. default: true
  11504. },
  11505. {
  11506. name: "Macro",
  11507. height: math.unit(45, "feet")
  11508. },
  11509. {
  11510. name: "Megamacro",
  11511. height: math.unit(250, "miles")
  11512. },
  11513. {
  11514. name: "Planetary",
  11515. height: math.unit(10000, "miles")
  11516. },
  11517. {
  11518. name: "Galactic",
  11519. height: math.unit(40000, "parsecs")
  11520. },
  11521. {
  11522. name: "Universal",
  11523. height: math.unit(1, "yottameter")
  11524. },
  11525. ]
  11526. ))
  11527. characterMakers.push(() => makeCharacter(
  11528. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11529. {
  11530. front: {
  11531. height: math.unit(6, "feet"),
  11532. weight: math.unit(150, "lb"),
  11533. name: "Front",
  11534. image: {
  11535. source: "./media/characters/epifox/front.svg",
  11536. extra: 1,
  11537. bottom: 0.075
  11538. }
  11539. },
  11540. },
  11541. [
  11542. {
  11543. name: "Micro",
  11544. height: math.unit(6, "inches")
  11545. },
  11546. {
  11547. name: "Normal",
  11548. height: math.unit(12, "feet"),
  11549. default: true
  11550. },
  11551. {
  11552. name: "Macro",
  11553. height: math.unit(3810, "feet")
  11554. },
  11555. {
  11556. name: "Megamacro",
  11557. height: math.unit(500, "miles")
  11558. },
  11559. ]
  11560. ))
  11561. characterMakers.push(() => makeCharacter(
  11562. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11563. {
  11564. front: {
  11565. height: math.unit(1.8796, "m"),
  11566. weight: math.unit(230, "lb"),
  11567. name: "Front",
  11568. image: {
  11569. source: "./media/characters/colin-t/front.svg",
  11570. extra: 1272 / 1193,
  11571. bottom: 0.07
  11572. }
  11573. },
  11574. },
  11575. [
  11576. {
  11577. name: "Micro",
  11578. height: math.unit(0.571, "meters")
  11579. },
  11580. {
  11581. name: "Normal",
  11582. height: math.unit(1.8796, "meters"),
  11583. default: true
  11584. },
  11585. {
  11586. name: "Tall",
  11587. height: math.unit(4, "meters")
  11588. },
  11589. {
  11590. name: "Macro",
  11591. height: math.unit(67.241, "meters")
  11592. },
  11593. {
  11594. name: "Megamacro",
  11595. height: math.unit(371.856, "meters")
  11596. },
  11597. {
  11598. name: "Planetary",
  11599. height: math.unit(12631.5689, "km")
  11600. },
  11601. ]
  11602. ))
  11603. characterMakers.push(() => makeCharacter(
  11604. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11605. {
  11606. front: {
  11607. height: math.unit(1.85, "meters"),
  11608. weight: math.unit(80, "kg"),
  11609. name: "Front",
  11610. image: {
  11611. source: "./media/characters/matvei/front.svg",
  11612. extra: 614 / 594,
  11613. bottom: 0.01
  11614. }
  11615. },
  11616. },
  11617. [
  11618. {
  11619. name: "Normal",
  11620. height: math.unit(1.85, "meters"),
  11621. default: true
  11622. },
  11623. ]
  11624. ))
  11625. characterMakers.push(() => makeCharacter(
  11626. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11627. {
  11628. front: {
  11629. height: math.unit(5 + 9 / 12, "feet"),
  11630. weight: math.unit(70, "lb"),
  11631. name: "Front",
  11632. image: {
  11633. source: "./media/characters/quincy/front.svg",
  11634. extra: 3041 / 2751
  11635. }
  11636. },
  11637. back: {
  11638. height: math.unit(5 + 9 / 12, "feet"),
  11639. weight: math.unit(70, "lb"),
  11640. name: "Back",
  11641. image: {
  11642. source: "./media/characters/quincy/back.svg",
  11643. extra: 3041 / 2751
  11644. }
  11645. },
  11646. flying: {
  11647. height: math.unit(5 + 4 / 12, "feet"),
  11648. weight: math.unit(70, "lb"),
  11649. name: "Flying",
  11650. image: {
  11651. source: "./media/characters/quincy/flying.svg",
  11652. extra: 1044 / 930
  11653. }
  11654. },
  11655. },
  11656. [
  11657. {
  11658. name: "Micro",
  11659. height: math.unit(3, "cm")
  11660. },
  11661. {
  11662. name: "Normal",
  11663. height: math.unit(5 + 9 / 12, "feet")
  11664. },
  11665. {
  11666. name: "Macro",
  11667. height: math.unit(200, "meters"),
  11668. default: true
  11669. },
  11670. {
  11671. name: "Megamacro",
  11672. height: math.unit(1000, "meters")
  11673. },
  11674. ]
  11675. ))
  11676. characterMakers.push(() => makeCharacter(
  11677. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11678. {
  11679. front: {
  11680. height: math.unit(4 + 7 / 12, "feet"),
  11681. weight: math.unit(50, "lb"),
  11682. name: "Front",
  11683. image: {
  11684. source: "./media/characters/vanrel/front.svg",
  11685. extra: 1,
  11686. bottom: 0.02
  11687. }
  11688. },
  11689. frontAlt: {
  11690. height: math.unit(4 + 7 / 12, "feet"),
  11691. weight: math.unit(50, "lb"),
  11692. name: "Front-alt",
  11693. image: {
  11694. source: "./media/characters/vanrel/front-alt.svg",
  11695. extra: 1,
  11696. bottom: 15 / 1511
  11697. }
  11698. },
  11699. elemental: {
  11700. height: math.unit(3, "feet"),
  11701. weight: math.unit(50, "lb"),
  11702. name: "Elemental",
  11703. image: {
  11704. source: "./media/characters/vanrel/elemental.svg",
  11705. extra: 192.3 / 162.8,
  11706. bottom: 1.79 / 194.17
  11707. }
  11708. },
  11709. side: {
  11710. height: math.unit(4 + 7 / 12, "feet"),
  11711. weight: math.unit(50, "lb"),
  11712. name: "Side",
  11713. image: {
  11714. source: "./media/characters/vanrel/side.svg",
  11715. extra: 1,
  11716. bottom: 0.025
  11717. }
  11718. },
  11719. tome: {
  11720. height: math.unit(1.35, "feet"),
  11721. weight: math.unit(10, "lb"),
  11722. name: "Vanrel's Tome",
  11723. rename: true,
  11724. image: {
  11725. source: "./media/characters/vanrel/tome.svg"
  11726. }
  11727. },
  11728. beans: {
  11729. height: math.unit(0.89, "feet"),
  11730. name: "Beans",
  11731. image: {
  11732. source: "./media/characters/vanrel/beans.svg"
  11733. }
  11734. },
  11735. },
  11736. [
  11737. {
  11738. name: "Normal",
  11739. height: math.unit(4 + 7 / 12, "feet"),
  11740. default: true
  11741. },
  11742. ]
  11743. ))
  11744. characterMakers.push(() => makeCharacter(
  11745. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11746. {
  11747. front: {
  11748. height: math.unit(7 + 5 / 12, "feet"),
  11749. weight: math.unit(150, "lb"),
  11750. name: "Front",
  11751. image: {
  11752. source: "./media/characters/kuiper-vanrel/front.svg",
  11753. extra: 1118 / 1068,
  11754. bottom: 0.09
  11755. }
  11756. },
  11757. foot: {
  11758. height: math.unit(0.55, "meters"),
  11759. name: "Foot",
  11760. image: {
  11761. source: "./media/characters/kuiper-vanrel/foot.svg",
  11762. }
  11763. },
  11764. battle: {
  11765. height: math.unit(6.824, "feet"),
  11766. weight: math.unit(150, "lb"),
  11767. name: "Battle",
  11768. image: {
  11769. source: "./media/characters/kuiper-vanrel/battle.svg",
  11770. extra: 1466 / 1327,
  11771. bottom: 29 / 1492.5
  11772. }
  11773. },
  11774. battleAlt: {
  11775. height: math.unit(6.824, "feet"),
  11776. weight: math.unit(150, "lb"),
  11777. name: "Battle (Alt)",
  11778. image: {
  11779. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11780. extra: 2081 / 1965,
  11781. bottom: 40 / 2121
  11782. }
  11783. },
  11784. },
  11785. [
  11786. {
  11787. name: "Normal",
  11788. height: math.unit(7 + 5 / 12, "feet"),
  11789. default: true
  11790. },
  11791. ]
  11792. ))
  11793. characterMakers.push(() => makeCharacter(
  11794. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11795. {
  11796. front: {
  11797. height: math.unit(8 + 5 / 12, "feet"),
  11798. weight: math.unit(150, "lb"),
  11799. name: "Front",
  11800. image: {
  11801. source: "./media/characters/keset-vanrel/front.svg",
  11802. extra: 1150 / 1084,
  11803. bottom: 0.05
  11804. }
  11805. },
  11806. hand: {
  11807. height: math.unit(0.6, "meters"),
  11808. name: "Hand",
  11809. image: {
  11810. source: "./media/characters/keset-vanrel/hand.svg"
  11811. }
  11812. },
  11813. foot: {
  11814. height: math.unit(0.94978, "meters"),
  11815. name: "Foot",
  11816. image: {
  11817. source: "./media/characters/keset-vanrel/foot.svg"
  11818. }
  11819. },
  11820. battle: {
  11821. height: math.unit(7.408, "feet"),
  11822. weight: math.unit(150, "lb"),
  11823. name: "Battle",
  11824. image: {
  11825. source: "./media/characters/keset-vanrel/battle.svg",
  11826. extra: 1890 / 1386,
  11827. bottom: 73.28 / 1970
  11828. }
  11829. },
  11830. },
  11831. [
  11832. {
  11833. name: "Normal",
  11834. height: math.unit(8 + 5 / 12, "feet"),
  11835. default: true
  11836. },
  11837. ]
  11838. ))
  11839. characterMakers.push(() => makeCharacter(
  11840. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11841. {
  11842. front: {
  11843. height: math.unit(6, "feet"),
  11844. weight: math.unit(150, "lb"),
  11845. name: "Front",
  11846. image: {
  11847. source: "./media/characters/neos/front.svg",
  11848. extra: 1696 / 992,
  11849. bottom: 0.14
  11850. }
  11851. },
  11852. },
  11853. [
  11854. {
  11855. name: "Normal",
  11856. height: math.unit(54, "cm"),
  11857. default: true
  11858. },
  11859. {
  11860. name: "Macro",
  11861. height: math.unit(100, "m")
  11862. },
  11863. {
  11864. name: "Megamacro",
  11865. height: math.unit(10, "km")
  11866. },
  11867. {
  11868. name: "Megamacro+",
  11869. height: math.unit(100, "km")
  11870. },
  11871. {
  11872. name: "Gigamacro",
  11873. height: math.unit(100, "Mm")
  11874. },
  11875. {
  11876. name: "Teramacro",
  11877. height: math.unit(100, "Gm")
  11878. },
  11879. {
  11880. name: "Examacro",
  11881. height: math.unit(100, "Em")
  11882. },
  11883. {
  11884. name: "Godly",
  11885. height: math.unit(10000, "Ym")
  11886. },
  11887. {
  11888. name: "Beyond Godly",
  11889. height: math.unit(25, "multiverses")
  11890. },
  11891. ]
  11892. ))
  11893. characterMakers.push(() => makeCharacter(
  11894. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11895. {
  11896. feminine: {
  11897. height: math.unit(5, "feet"),
  11898. weight: math.unit(100, "lb"),
  11899. name: "Feminine",
  11900. image: {
  11901. source: "./media/characters/sammy-mouse/feminine.svg",
  11902. extra: 2526 / 2425,
  11903. bottom: 0.123
  11904. }
  11905. },
  11906. masculine: {
  11907. height: math.unit(5, "feet"),
  11908. weight: math.unit(100, "lb"),
  11909. name: "Masculine",
  11910. image: {
  11911. source: "./media/characters/sammy-mouse/masculine.svg",
  11912. extra: 2526 / 2425,
  11913. bottom: 0.123
  11914. }
  11915. },
  11916. },
  11917. [
  11918. {
  11919. name: "Micro",
  11920. height: math.unit(5, "inches")
  11921. },
  11922. {
  11923. name: "Normal",
  11924. height: math.unit(5, "feet"),
  11925. default: true
  11926. },
  11927. {
  11928. name: "Macro",
  11929. height: math.unit(60, "feet")
  11930. },
  11931. ]
  11932. ))
  11933. characterMakers.push(() => makeCharacter(
  11934. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11935. {
  11936. front: {
  11937. height: math.unit(4, "feet"),
  11938. weight: math.unit(50, "lb"),
  11939. name: "Front",
  11940. image: {
  11941. source: "./media/characters/kole/front.svg",
  11942. extra: 1423 / 1303,
  11943. bottom: 0.025
  11944. }
  11945. },
  11946. back: {
  11947. height: math.unit(4, "feet"),
  11948. weight: math.unit(50, "lb"),
  11949. name: "Back",
  11950. image: {
  11951. source: "./media/characters/kole/back.svg",
  11952. extra: 1426 / 1280,
  11953. bottom: 0.02
  11954. }
  11955. },
  11956. },
  11957. [
  11958. {
  11959. name: "Normal",
  11960. height: math.unit(4, "feet"),
  11961. default: true
  11962. },
  11963. ]
  11964. ))
  11965. characterMakers.push(() => makeCharacter(
  11966. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11967. {
  11968. front: {
  11969. height: math.unit(2 + 6 / 12, "feet"),
  11970. weight: math.unit(20, "lb"),
  11971. name: "Front",
  11972. image: {
  11973. source: "./media/characters/rufran/front.svg",
  11974. extra: 2041 / 1839,
  11975. bottom: 0.055
  11976. }
  11977. },
  11978. back: {
  11979. height: math.unit(2 + 6 / 12, "feet"),
  11980. weight: math.unit(20, "lb"),
  11981. name: "Back",
  11982. image: {
  11983. source: "./media/characters/rufran/back.svg",
  11984. extra: 2054 / 1839,
  11985. bottom: 0.01
  11986. }
  11987. },
  11988. hand: {
  11989. height: math.unit(0.2166, "meters"),
  11990. name: "Hand",
  11991. image: {
  11992. source: "./media/characters/rufran/hand.svg"
  11993. }
  11994. },
  11995. foot: {
  11996. height: math.unit(0.185, "meters"),
  11997. name: "Foot",
  11998. image: {
  11999. source: "./media/characters/rufran/foot.svg"
  12000. }
  12001. },
  12002. },
  12003. [
  12004. {
  12005. name: "Micro",
  12006. height: math.unit(1, "inch")
  12007. },
  12008. {
  12009. name: "Normal",
  12010. height: math.unit(2 + 6 / 12, "feet"),
  12011. default: true
  12012. },
  12013. {
  12014. name: "Big",
  12015. height: math.unit(60, "feet")
  12016. },
  12017. {
  12018. name: "Macro",
  12019. height: math.unit(325, "feet")
  12020. },
  12021. ]
  12022. ))
  12023. characterMakers.push(() => makeCharacter(
  12024. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12025. {
  12026. front: {
  12027. height: math.unit(0.3, "meters"),
  12028. weight: math.unit(3.5, "kg"),
  12029. name: "Front",
  12030. image: {
  12031. source: "./media/characters/chip/front.svg",
  12032. extra: 748 / 674
  12033. }
  12034. },
  12035. },
  12036. [
  12037. {
  12038. name: "Micro",
  12039. height: math.unit(1, "inch"),
  12040. default: true
  12041. },
  12042. ]
  12043. ))
  12044. characterMakers.push(() => makeCharacter(
  12045. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12046. {
  12047. side: {
  12048. height: math.unit(2.3, "meters"),
  12049. weight: math.unit(3500, "lb"),
  12050. name: "Side",
  12051. image: {
  12052. source: "./media/characters/torvid/side.svg",
  12053. extra: 1972 / 722,
  12054. bottom: 0.035
  12055. }
  12056. },
  12057. },
  12058. [
  12059. {
  12060. name: "Normal",
  12061. height: math.unit(2.3, "meters"),
  12062. default: true
  12063. },
  12064. ]
  12065. ))
  12066. characterMakers.push(() => makeCharacter(
  12067. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12068. {
  12069. front: {
  12070. height: math.unit(2, "meters"),
  12071. weight: math.unit(150.5, "kg"),
  12072. name: "Front",
  12073. image: {
  12074. source: "./media/characters/susan/front.svg",
  12075. extra: 693 / 635,
  12076. bottom: 0.05
  12077. }
  12078. },
  12079. },
  12080. [
  12081. {
  12082. name: "Megamacro",
  12083. height: math.unit(505, "miles"),
  12084. default: true
  12085. },
  12086. ]
  12087. ))
  12088. characterMakers.push(() => makeCharacter(
  12089. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12090. {
  12091. front: {
  12092. height: math.unit(6, "feet"),
  12093. weight: math.unit(150, "lb"),
  12094. name: "Front",
  12095. image: {
  12096. source: "./media/characters/raindrops/front.svg",
  12097. extra: 2655 / 2461,
  12098. bottom: 49 / 2705
  12099. }
  12100. },
  12101. back: {
  12102. height: math.unit(6, "feet"),
  12103. weight: math.unit(150, "lb"),
  12104. name: "Back",
  12105. image: {
  12106. source: "./media/characters/raindrops/back.svg",
  12107. extra: 2574 / 2400,
  12108. bottom: 65 / 2634
  12109. }
  12110. },
  12111. },
  12112. [
  12113. {
  12114. name: "Micro",
  12115. height: math.unit(6, "inches")
  12116. },
  12117. {
  12118. name: "Normal",
  12119. height: math.unit(6 + 2 / 12, "feet")
  12120. },
  12121. {
  12122. name: "Macro",
  12123. height: math.unit(131, "feet"),
  12124. default: true
  12125. },
  12126. {
  12127. name: "Megamacro",
  12128. height: math.unit(15, "miles")
  12129. },
  12130. {
  12131. name: "Gigamacro",
  12132. height: math.unit(4000, "miles")
  12133. },
  12134. {
  12135. name: "Teramacro",
  12136. height: math.unit(315000, "miles")
  12137. },
  12138. ]
  12139. ))
  12140. characterMakers.push(() => makeCharacter(
  12141. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12142. {
  12143. front: {
  12144. height: math.unit(2.794, "meters"),
  12145. weight: math.unit(325, "kg"),
  12146. name: "Front",
  12147. image: {
  12148. source: "./media/characters/tezwa/front.svg",
  12149. extra: 2083 / 1906,
  12150. bottom: 0.031
  12151. }
  12152. },
  12153. foot: {
  12154. height: math.unit(0.687, "meters"),
  12155. name: "Foot",
  12156. image: {
  12157. source: "./media/characters/tezwa/foot.svg"
  12158. }
  12159. },
  12160. },
  12161. [
  12162. {
  12163. name: "Normal",
  12164. height: math.unit(9 + 2 / 12, "feet"),
  12165. default: true
  12166. },
  12167. ]
  12168. ))
  12169. characterMakers.push(() => makeCharacter(
  12170. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12171. {
  12172. front: {
  12173. height: math.unit(58, "feet"),
  12174. weight: math.unit(89000, "lb"),
  12175. name: "Front",
  12176. image: {
  12177. source: "./media/characters/typhus/front.svg",
  12178. extra: 816 / 800,
  12179. bottom: 0.065
  12180. }
  12181. },
  12182. },
  12183. [
  12184. {
  12185. name: "Macro",
  12186. height: math.unit(58, "feet"),
  12187. default: true
  12188. },
  12189. ]
  12190. ))
  12191. characterMakers.push(() => makeCharacter(
  12192. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12193. {
  12194. front: {
  12195. height: math.unit(12, "feet"),
  12196. weight: math.unit(6, "tonnes"),
  12197. name: "Front",
  12198. image: {
  12199. source: "./media/characters/lyra-von-wulf/front.svg",
  12200. extra: 1,
  12201. bottom: 0.10
  12202. }
  12203. },
  12204. frontMecha: {
  12205. height: math.unit(12, "feet"),
  12206. weight: math.unit(12, "tonnes"),
  12207. name: "Front (Mecha)",
  12208. image: {
  12209. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12210. extra: 1,
  12211. bottom: 0.042
  12212. }
  12213. },
  12214. maw: {
  12215. height: math.unit(2.2, "feet"),
  12216. name: "Maw",
  12217. image: {
  12218. source: "./media/characters/lyra-von-wulf/maw.svg"
  12219. }
  12220. },
  12221. },
  12222. [
  12223. {
  12224. name: "Normal",
  12225. height: math.unit(12, "feet"),
  12226. default: true
  12227. },
  12228. {
  12229. name: "Classic",
  12230. height: math.unit(50, "feet")
  12231. },
  12232. {
  12233. name: "Macro",
  12234. height: math.unit(500, "feet")
  12235. },
  12236. {
  12237. name: "Megamacro",
  12238. height: math.unit(1, "mile")
  12239. },
  12240. {
  12241. name: "Gigamacro",
  12242. height: math.unit(400, "miles")
  12243. },
  12244. {
  12245. name: "Teramacro",
  12246. height: math.unit(22000, "miles")
  12247. },
  12248. {
  12249. name: "Solarmacro",
  12250. height: math.unit(8600000, "miles")
  12251. },
  12252. {
  12253. name: "Galactic",
  12254. height: math.unit(1057000, "lightyears")
  12255. },
  12256. ]
  12257. ))
  12258. characterMakers.push(() => makeCharacter(
  12259. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12260. {
  12261. front: {
  12262. height: math.unit(6 + 10 / 12, "feet"),
  12263. weight: math.unit(150, "lb"),
  12264. name: "Front",
  12265. image: {
  12266. source: "./media/characters/dixon/front.svg",
  12267. extra: 3361 / 3209,
  12268. bottom: 0.01
  12269. }
  12270. },
  12271. },
  12272. [
  12273. {
  12274. name: "Normal",
  12275. height: math.unit(6 + 10 / 12, "feet"),
  12276. default: true
  12277. },
  12278. {
  12279. name: "Big",
  12280. height: math.unit(12, "meters")
  12281. },
  12282. {
  12283. name: "Macro",
  12284. height: math.unit(500, "meters")
  12285. },
  12286. {
  12287. name: "Megamacro",
  12288. height: math.unit(2, "km")
  12289. },
  12290. ]
  12291. ))
  12292. characterMakers.push(() => makeCharacter(
  12293. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12294. {
  12295. front: {
  12296. height: math.unit(185, "cm"),
  12297. weight: math.unit(68, "kg"),
  12298. name: "Front",
  12299. image: {
  12300. source: "./media/characters/kauko/front.svg",
  12301. extra: 1455 / 1421,
  12302. bottom: 0.03
  12303. }
  12304. },
  12305. back: {
  12306. height: math.unit(185, "cm"),
  12307. weight: math.unit(68, "kg"),
  12308. name: "Back",
  12309. image: {
  12310. source: "./media/characters/kauko/back.svg",
  12311. extra: 1455 / 1421,
  12312. bottom: 0.004
  12313. }
  12314. },
  12315. },
  12316. [
  12317. {
  12318. name: "Normal",
  12319. height: math.unit(185, "cm"),
  12320. default: true
  12321. },
  12322. ]
  12323. ))
  12324. characterMakers.push(() => makeCharacter(
  12325. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12326. {
  12327. front: {
  12328. height: math.unit(6, "feet"),
  12329. weight: math.unit(150, "kg"),
  12330. name: "Front",
  12331. image: {
  12332. source: "./media/characters/varg/front.svg",
  12333. extra: 1108 / 1018,
  12334. bottom: 0.0375
  12335. }
  12336. },
  12337. },
  12338. [
  12339. {
  12340. name: "Normal",
  12341. height: math.unit(5, "meters")
  12342. },
  12343. {
  12344. name: "Macro",
  12345. height: math.unit(200, "meters")
  12346. },
  12347. {
  12348. name: "Megamacro",
  12349. height: math.unit(20, "kilometers")
  12350. },
  12351. {
  12352. name: "True Size",
  12353. height: math.unit(211, "km"),
  12354. default: true
  12355. },
  12356. {
  12357. name: "Gigamacro",
  12358. height: math.unit(1000, "km")
  12359. },
  12360. {
  12361. name: "Gigamacro+",
  12362. height: math.unit(8000, "km")
  12363. },
  12364. {
  12365. name: "Teramacro",
  12366. height: math.unit(1000000, "km")
  12367. },
  12368. ]
  12369. ))
  12370. characterMakers.push(() => makeCharacter(
  12371. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12372. {
  12373. front: {
  12374. height: math.unit(7 + 7 / 12, "feet"),
  12375. weight: math.unit(267, "lb"),
  12376. name: "Front",
  12377. image: {
  12378. source: "./media/characters/dayza/front.svg",
  12379. extra: 1262 / 1200,
  12380. bottom: 0.035
  12381. }
  12382. },
  12383. side: {
  12384. height: math.unit(7 + 7 / 12, "feet"),
  12385. weight: math.unit(267, "lb"),
  12386. name: "Side",
  12387. image: {
  12388. source: "./media/characters/dayza/side.svg",
  12389. extra: 1295 / 1245,
  12390. bottom: 0.05
  12391. }
  12392. },
  12393. back: {
  12394. height: math.unit(7 + 7 / 12, "feet"),
  12395. weight: math.unit(267, "lb"),
  12396. name: "Back",
  12397. image: {
  12398. source: "./media/characters/dayza/back.svg",
  12399. extra: 1241 / 1170
  12400. }
  12401. },
  12402. },
  12403. [
  12404. {
  12405. name: "Normal",
  12406. height: math.unit(7 + 7 / 12, "feet"),
  12407. default: true
  12408. },
  12409. {
  12410. name: "Macro",
  12411. height: math.unit(155, "feet")
  12412. },
  12413. ]
  12414. ))
  12415. characterMakers.push(() => makeCharacter(
  12416. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12417. {
  12418. front: {
  12419. height: math.unit(6 + 5 / 12, "feet"),
  12420. weight: math.unit(160, "lb"),
  12421. name: "Front",
  12422. image: {
  12423. source: "./media/characters/xanthos/front.svg",
  12424. extra: 1,
  12425. bottom: 0.04
  12426. }
  12427. },
  12428. back: {
  12429. height: math.unit(6 + 5 / 12, "feet"),
  12430. weight: math.unit(160, "lb"),
  12431. name: "Back",
  12432. image: {
  12433. source: "./media/characters/xanthos/back.svg",
  12434. extra: 1,
  12435. bottom: 0.03
  12436. }
  12437. },
  12438. hand: {
  12439. height: math.unit(0.928, "feet"),
  12440. name: "Hand",
  12441. image: {
  12442. source: "./media/characters/xanthos/hand.svg"
  12443. }
  12444. },
  12445. foot: {
  12446. height: math.unit(1.286, "feet"),
  12447. name: "Foot",
  12448. image: {
  12449. source: "./media/characters/xanthos/foot.svg"
  12450. }
  12451. },
  12452. },
  12453. [
  12454. {
  12455. name: "Normal",
  12456. height: math.unit(6 + 5 / 12, "feet"),
  12457. default: true
  12458. },
  12459. {
  12460. name: "Normal+",
  12461. height: math.unit(6, "meters")
  12462. },
  12463. {
  12464. name: "Macro",
  12465. height: math.unit(40, "feet")
  12466. },
  12467. {
  12468. name: "Macro+",
  12469. height: math.unit(200, "meters")
  12470. },
  12471. {
  12472. name: "Megamacro",
  12473. height: math.unit(20, "km")
  12474. },
  12475. {
  12476. name: "Megamacro+",
  12477. height: math.unit(100, "km")
  12478. },
  12479. ]
  12480. ))
  12481. characterMakers.push(() => makeCharacter(
  12482. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12483. {
  12484. front: {
  12485. height: math.unit(6 + 3 / 12, "feet"),
  12486. weight: math.unit(215, "lb"),
  12487. name: "Front",
  12488. image: {
  12489. source: "./media/characters/grynn/front.svg",
  12490. extra: 4627 / 4209,
  12491. bottom: 0.047
  12492. }
  12493. },
  12494. },
  12495. [
  12496. {
  12497. name: "Micro",
  12498. height: math.unit(6, "inches")
  12499. },
  12500. {
  12501. name: "Normal",
  12502. height: math.unit(6 + 3 / 12, "feet"),
  12503. default: true
  12504. },
  12505. {
  12506. name: "Big",
  12507. height: math.unit(104, "feet")
  12508. },
  12509. {
  12510. name: "Macro",
  12511. height: math.unit(944, "feet")
  12512. },
  12513. {
  12514. name: "Macro+",
  12515. height: math.unit(9480, "feet")
  12516. },
  12517. {
  12518. name: "Megamacro",
  12519. height: math.unit(78752, "feet")
  12520. },
  12521. {
  12522. name: "Megamacro+",
  12523. height: math.unit(630128, "feet")
  12524. },
  12525. {
  12526. name: "Megamacro++",
  12527. height: math.unit(3150695, "feet")
  12528. },
  12529. ]
  12530. ))
  12531. characterMakers.push(() => makeCharacter(
  12532. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12533. {
  12534. front: {
  12535. height: math.unit(7 + 5 / 12, "feet"),
  12536. weight: math.unit(450, "lb"),
  12537. name: "Front",
  12538. image: {
  12539. source: "./media/characters/mocha-aura/front.svg",
  12540. extra: 1907 / 1817,
  12541. bottom: 0.04
  12542. }
  12543. },
  12544. back: {
  12545. height: math.unit(7 + 5 / 12, "feet"),
  12546. weight: math.unit(450, "lb"),
  12547. name: "Back",
  12548. image: {
  12549. source: "./media/characters/mocha-aura/back.svg",
  12550. extra: 1900 / 1825,
  12551. bottom: 0.045
  12552. }
  12553. },
  12554. },
  12555. [
  12556. {
  12557. name: "Nano",
  12558. height: math.unit(1, "nm")
  12559. },
  12560. {
  12561. name: "Megamicro",
  12562. height: math.unit(1, "mm")
  12563. },
  12564. {
  12565. name: "Micro",
  12566. height: math.unit(3, "inches")
  12567. },
  12568. {
  12569. name: "Normal",
  12570. height: math.unit(7 + 5 / 12, "feet"),
  12571. default: true
  12572. },
  12573. {
  12574. name: "Macro",
  12575. height: math.unit(30, "feet")
  12576. },
  12577. {
  12578. name: "Megamacro",
  12579. height: math.unit(3500, "feet")
  12580. },
  12581. {
  12582. name: "Teramacro",
  12583. height: math.unit(500000, "miles")
  12584. },
  12585. {
  12586. name: "Petamacro",
  12587. height: math.unit(50000000000000000, "parsecs")
  12588. },
  12589. ]
  12590. ))
  12591. characterMakers.push(() => makeCharacter(
  12592. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12593. {
  12594. front: {
  12595. height: math.unit(6, "feet"),
  12596. weight: math.unit(150, "lb"),
  12597. name: "Front",
  12598. image: {
  12599. source: "./media/characters/ilisha-devya/front.svg",
  12600. extra: 1,
  12601. bottom: 0.175
  12602. }
  12603. },
  12604. back: {
  12605. height: math.unit(6, "feet"),
  12606. weight: math.unit(150, "lb"),
  12607. name: "Back",
  12608. image: {
  12609. source: "./media/characters/ilisha-devya/back.svg",
  12610. extra: 1,
  12611. bottom: 0.015
  12612. }
  12613. },
  12614. },
  12615. [
  12616. {
  12617. name: "Macro",
  12618. height: math.unit(500, "feet"),
  12619. default: true
  12620. },
  12621. {
  12622. name: "Megamacro",
  12623. height: math.unit(10, "miles")
  12624. },
  12625. {
  12626. name: "Gigamacro",
  12627. height: math.unit(100000, "miles")
  12628. },
  12629. {
  12630. name: "Examacro",
  12631. height: math.unit(1e9, "lightyears")
  12632. },
  12633. {
  12634. name: "Omniversal",
  12635. height: math.unit(1e33, "lightyears")
  12636. },
  12637. {
  12638. name: "Beyond Infinite",
  12639. height: math.unit(1e100, "lightyears")
  12640. },
  12641. ]
  12642. ))
  12643. characterMakers.push(() => makeCharacter(
  12644. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12645. {
  12646. Side: {
  12647. height: math.unit(6, "feet"),
  12648. weight: math.unit(150, "lb"),
  12649. name: "Side",
  12650. image: {
  12651. source: "./media/characters/mira/side.svg",
  12652. extra: 900 / 799,
  12653. bottom: 0.02
  12654. }
  12655. },
  12656. },
  12657. [
  12658. {
  12659. name: "Human Size",
  12660. height: math.unit(6, "feet")
  12661. },
  12662. {
  12663. name: "Macro",
  12664. height: math.unit(100, "feet"),
  12665. default: true
  12666. },
  12667. {
  12668. name: "Megamacro",
  12669. height: math.unit(10, "miles")
  12670. },
  12671. {
  12672. name: "Gigamacro",
  12673. height: math.unit(25000, "miles")
  12674. },
  12675. {
  12676. name: "Teramacro",
  12677. height: math.unit(300, "AU")
  12678. },
  12679. {
  12680. name: "Full Size",
  12681. height: math.unit(4.5e10, "lightyears")
  12682. },
  12683. ]
  12684. ))
  12685. characterMakers.push(() => makeCharacter(
  12686. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12687. {
  12688. front: {
  12689. height: math.unit(6, "feet"),
  12690. weight: math.unit(150, "lb"),
  12691. name: "Front",
  12692. image: {
  12693. source: "./media/characters/holly/front.svg",
  12694. extra: 639 / 606
  12695. }
  12696. },
  12697. back: {
  12698. height: math.unit(6, "feet"),
  12699. weight: math.unit(150, "lb"),
  12700. name: "Back",
  12701. image: {
  12702. source: "./media/characters/holly/back.svg",
  12703. extra: 623 / 598
  12704. }
  12705. },
  12706. frontWorking: {
  12707. height: math.unit(6, "feet"),
  12708. weight: math.unit(150, "lb"),
  12709. name: "Front (Working)",
  12710. image: {
  12711. source: "./media/characters/holly/front-working.svg",
  12712. extra: 607 / 577,
  12713. bottom: 0.048
  12714. }
  12715. },
  12716. },
  12717. [
  12718. {
  12719. name: "Normal",
  12720. height: math.unit(12 + 3 / 12, "feet"),
  12721. default: true
  12722. },
  12723. ]
  12724. ))
  12725. characterMakers.push(() => makeCharacter(
  12726. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12727. {
  12728. front: {
  12729. height: math.unit(6, "feet"),
  12730. weight: math.unit(150, "lb"),
  12731. name: "Front",
  12732. image: {
  12733. source: "./media/characters/porter/front.svg",
  12734. extra: 1,
  12735. bottom: 0.01
  12736. }
  12737. },
  12738. frontRobes: {
  12739. height: math.unit(6, "feet"),
  12740. weight: math.unit(150, "lb"),
  12741. name: "Front (Robes)",
  12742. image: {
  12743. source: "./media/characters/porter/front-robes.svg",
  12744. extra: 1.01,
  12745. bottom: 0.01
  12746. }
  12747. },
  12748. },
  12749. [
  12750. {
  12751. name: "Normal",
  12752. height: math.unit(11 + 9 / 12, "feet"),
  12753. default: true
  12754. },
  12755. ]
  12756. ))
  12757. characterMakers.push(() => makeCharacter(
  12758. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12759. {
  12760. legendary: {
  12761. height: math.unit(6, "feet"),
  12762. weight: math.unit(150, "lb"),
  12763. name: "Legendary",
  12764. image: {
  12765. source: "./media/characters/lucy/legendary.svg",
  12766. extra: 1355 / 1100,
  12767. bottom: 0.045
  12768. }
  12769. },
  12770. },
  12771. [
  12772. {
  12773. name: "Legendary",
  12774. height: math.unit(86882 * 2, "miles"),
  12775. default: true
  12776. },
  12777. ]
  12778. ))
  12779. characterMakers.push(() => makeCharacter(
  12780. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12781. {
  12782. front: {
  12783. height: math.unit(6, "feet"),
  12784. weight: math.unit(150, "lb"),
  12785. name: "Front",
  12786. image: {
  12787. source: "./media/characters/drusilla/front.svg",
  12788. extra: 678 / 635,
  12789. bottom: 0.03
  12790. }
  12791. },
  12792. back: {
  12793. height: math.unit(6, "feet"),
  12794. weight: math.unit(150, "lb"),
  12795. name: "Back",
  12796. image: {
  12797. source: "./media/characters/drusilla/back.svg",
  12798. extra: 678 / 635,
  12799. bottom: 0.005
  12800. }
  12801. },
  12802. },
  12803. [
  12804. {
  12805. name: "Macro",
  12806. height: math.unit(100, "feet")
  12807. },
  12808. {
  12809. name: "Canon Height",
  12810. height: math.unit(2000, "feet"),
  12811. default: true
  12812. },
  12813. ]
  12814. ))
  12815. characterMakers.push(() => makeCharacter(
  12816. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12817. {
  12818. front: {
  12819. height: math.unit(6, "feet"),
  12820. weight: math.unit(180, "lb"),
  12821. name: "Front",
  12822. image: {
  12823. source: "./media/characters/renard-thatch/front.svg",
  12824. extra: 2411 / 2275,
  12825. bottom: 0.01
  12826. }
  12827. },
  12828. frontPosing: {
  12829. height: math.unit(6, "feet"),
  12830. weight: math.unit(180, "lb"),
  12831. name: "Front (Posing)",
  12832. image: {
  12833. source: "./media/characters/renard-thatch/front-posing.svg",
  12834. extra: 2381 / 2261,
  12835. bottom: 0.01
  12836. }
  12837. },
  12838. back: {
  12839. height: math.unit(6, "feet"),
  12840. weight: math.unit(180, "lb"),
  12841. name: "Back",
  12842. image: {
  12843. source: "./media/characters/renard-thatch/back.svg",
  12844. extra: 2428 / 2288
  12845. }
  12846. },
  12847. },
  12848. [
  12849. {
  12850. name: "Micro",
  12851. height: math.unit(3, "inches")
  12852. },
  12853. {
  12854. name: "Default",
  12855. height: math.unit(6, "feet"),
  12856. default: true
  12857. },
  12858. {
  12859. name: "Macro",
  12860. height: math.unit(75, "feet")
  12861. },
  12862. ]
  12863. ))
  12864. characterMakers.push(() => makeCharacter(
  12865. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12866. {
  12867. front: {
  12868. height: math.unit(1450, "feet"),
  12869. weight: math.unit(1.21e6, "tons"),
  12870. name: "Front",
  12871. image: {
  12872. source: "./media/characters/sekvra/front.svg",
  12873. extra: 1,
  12874. bottom: 0.03
  12875. }
  12876. },
  12877. frontClothed: {
  12878. height: math.unit(1450, "feet"),
  12879. weight: math.unit(1.21e6, "tons"),
  12880. name: "Front (Clothed)",
  12881. image: {
  12882. source: "./media/characters/sekvra/front-clothed.svg",
  12883. extra: 1,
  12884. bottom: 0.03
  12885. }
  12886. },
  12887. side: {
  12888. height: math.unit(1450, "feet"),
  12889. weight: math.unit(1.21e6, "tons"),
  12890. name: "Side",
  12891. image: {
  12892. source: "./media/characters/sekvra/side.svg",
  12893. extra: 1,
  12894. bottom: 0.025
  12895. }
  12896. },
  12897. back: {
  12898. height: math.unit(1450, "feet"),
  12899. weight: math.unit(1.21e6, "tons"),
  12900. name: "Back",
  12901. image: {
  12902. source: "./media/characters/sekvra/back.svg",
  12903. extra: 1,
  12904. bottom: 0.005
  12905. }
  12906. },
  12907. },
  12908. [
  12909. {
  12910. name: "Macro",
  12911. height: math.unit(1450, "feet"),
  12912. default: true
  12913. },
  12914. {
  12915. name: "Megamacro",
  12916. height: math.unit(15000, "feet")
  12917. },
  12918. ]
  12919. ))
  12920. characterMakers.push(() => makeCharacter(
  12921. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12922. {
  12923. front: {
  12924. height: math.unit(6, "feet"),
  12925. weight: math.unit(150, "lb"),
  12926. name: "Front",
  12927. image: {
  12928. source: "./media/characters/carmine/front.svg",
  12929. extra: 1,
  12930. bottom: 0.035
  12931. }
  12932. },
  12933. frontArmor: {
  12934. height: math.unit(6, "feet"),
  12935. weight: math.unit(150, "lb"),
  12936. name: "Front (Armor)",
  12937. image: {
  12938. source: "./media/characters/carmine/front-armor.svg",
  12939. extra: 1,
  12940. bottom: 0.035
  12941. }
  12942. },
  12943. },
  12944. [
  12945. {
  12946. name: "Large",
  12947. height: math.unit(1, "mile")
  12948. },
  12949. {
  12950. name: "Huge",
  12951. height: math.unit(40, "miles"),
  12952. default: true
  12953. },
  12954. {
  12955. name: "Colossal",
  12956. height: math.unit(2500, "miles")
  12957. },
  12958. ]
  12959. ))
  12960. characterMakers.push(() => makeCharacter(
  12961. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12962. {
  12963. front: {
  12964. height: math.unit(6, "feet"),
  12965. weight: math.unit(150, "lb"),
  12966. name: "Front",
  12967. image: {
  12968. source: "./media/characters/elyssia/front.svg",
  12969. extra: 2201 / 2035,
  12970. bottom: 0.05
  12971. }
  12972. },
  12973. frontClothed: {
  12974. height: math.unit(6, "feet"),
  12975. weight: math.unit(150, "lb"),
  12976. name: "Front (Clothed)",
  12977. image: {
  12978. source: "./media/characters/elyssia/front-clothed.svg",
  12979. extra: 2201 / 2035,
  12980. bottom: 0.05
  12981. }
  12982. },
  12983. back: {
  12984. height: math.unit(6, "feet"),
  12985. weight: math.unit(150, "lb"),
  12986. name: "Back",
  12987. image: {
  12988. source: "./media/characters/elyssia/back.svg",
  12989. extra: 2201 / 2035,
  12990. bottom: 0.013
  12991. }
  12992. },
  12993. },
  12994. [
  12995. {
  12996. name: "Smaller",
  12997. height: math.unit(150, "feet")
  12998. },
  12999. {
  13000. name: "Standard",
  13001. height: math.unit(1400, "feet"),
  13002. default: true
  13003. },
  13004. {
  13005. name: "Distracted",
  13006. height: math.unit(15000, "feet")
  13007. },
  13008. ]
  13009. ))
  13010. characterMakers.push(() => makeCharacter(
  13011. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13012. {
  13013. front: {
  13014. height: math.unit(7 + 4 / 12, "feet"),
  13015. weight: math.unit(500, "lb"),
  13016. name: "Front",
  13017. image: {
  13018. source: "./media/characters/geno-maxwell/front.svg",
  13019. extra: 2207 / 2040,
  13020. bottom: 0.015
  13021. }
  13022. },
  13023. },
  13024. [
  13025. {
  13026. name: "Micro",
  13027. height: math.unit(3, "inches")
  13028. },
  13029. {
  13030. name: "Normal",
  13031. height: math.unit(7 + 4 / 12, "feet"),
  13032. default: true
  13033. },
  13034. {
  13035. name: "Macro",
  13036. height: math.unit(220, "feet")
  13037. },
  13038. {
  13039. name: "Megamacro",
  13040. height: math.unit(11, "miles")
  13041. },
  13042. ]
  13043. ))
  13044. characterMakers.push(() => makeCharacter(
  13045. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13046. {
  13047. front: {
  13048. height: math.unit(7 + 4 / 12, "feet"),
  13049. weight: math.unit(500, "lb"),
  13050. name: "Front",
  13051. image: {
  13052. source: "./media/characters/regena-maxwell/front.svg",
  13053. extra: 3115 / 2770,
  13054. bottom: 0.02
  13055. }
  13056. },
  13057. },
  13058. [
  13059. {
  13060. name: "Normal",
  13061. height: math.unit(7 + 4 / 12, "feet"),
  13062. default: true
  13063. },
  13064. {
  13065. name: "Macro",
  13066. height: math.unit(220, "feet")
  13067. },
  13068. {
  13069. name: "Megamacro",
  13070. height: math.unit(11, "miles")
  13071. },
  13072. ]
  13073. ))
  13074. characterMakers.push(() => makeCharacter(
  13075. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13076. {
  13077. front: {
  13078. height: math.unit(6, "feet"),
  13079. weight: math.unit(150, "lb"),
  13080. name: "Front",
  13081. image: {
  13082. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13083. extra: 860 / 690,
  13084. bottom: 0.03
  13085. }
  13086. },
  13087. },
  13088. [
  13089. {
  13090. name: "Normal",
  13091. height: math.unit(1.7, "meters"),
  13092. default: true
  13093. },
  13094. ]
  13095. ))
  13096. characterMakers.push(() => makeCharacter(
  13097. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13098. {
  13099. front: {
  13100. height: math.unit(6, "feet"),
  13101. weight: math.unit(150, "lb"),
  13102. name: "Front",
  13103. image: {
  13104. source: "./media/characters/quilly/front.svg",
  13105. extra: 890 / 776
  13106. }
  13107. },
  13108. },
  13109. [
  13110. {
  13111. name: "Gigamacro",
  13112. height: math.unit(404090, "miles"),
  13113. default: true
  13114. },
  13115. ]
  13116. ))
  13117. characterMakers.push(() => makeCharacter(
  13118. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13119. {
  13120. front: {
  13121. height: math.unit(7 + 8 / 12, "feet"),
  13122. weight: math.unit(350, "lb"),
  13123. name: "Front",
  13124. image: {
  13125. source: "./media/characters/tempest/front.svg",
  13126. extra: 1175 / 1086,
  13127. bottom: 0.02
  13128. }
  13129. },
  13130. },
  13131. [
  13132. {
  13133. name: "Normal",
  13134. height: math.unit(7 + 8 / 12, "feet"),
  13135. default: true
  13136. },
  13137. ]
  13138. ))
  13139. characterMakers.push(() => makeCharacter(
  13140. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13141. {
  13142. side: {
  13143. height: math.unit(4 + 5 / 12, "feet"),
  13144. weight: math.unit(80, "lb"),
  13145. name: "Side",
  13146. image: {
  13147. source: "./media/characters/rodger/side.svg",
  13148. extra: 1235 / 1118
  13149. }
  13150. },
  13151. },
  13152. [
  13153. {
  13154. name: "Micro",
  13155. height: math.unit(1, "inch")
  13156. },
  13157. {
  13158. name: "Normal",
  13159. height: math.unit(4 + 5 / 12, "feet"),
  13160. default: true
  13161. },
  13162. {
  13163. name: "Macro",
  13164. height: math.unit(120, "feet")
  13165. },
  13166. ]
  13167. ))
  13168. characterMakers.push(() => makeCharacter(
  13169. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13170. {
  13171. front: {
  13172. height: math.unit(6, "feet"),
  13173. weight: math.unit(150, "lb"),
  13174. name: "Front",
  13175. image: {
  13176. source: "./media/characters/danyel/front.svg",
  13177. extra: 1185 / 1123,
  13178. bottom: 0.05
  13179. }
  13180. },
  13181. },
  13182. [
  13183. {
  13184. name: "Shrunken",
  13185. height: math.unit(0.5, "mm")
  13186. },
  13187. {
  13188. name: "Micro",
  13189. height: math.unit(1, "mm"),
  13190. default: true
  13191. },
  13192. {
  13193. name: "Upsized",
  13194. height: math.unit(5 + 5 / 12, "feet")
  13195. },
  13196. ]
  13197. ))
  13198. characterMakers.push(() => makeCharacter(
  13199. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13200. {
  13201. front: {
  13202. height: math.unit(5 + 6 / 12, "feet"),
  13203. weight: math.unit(200, "lb"),
  13204. name: "Front",
  13205. image: {
  13206. source: "./media/characters/vivian-bijoux/front.svg",
  13207. extra: 1,
  13208. bottom: 0.072
  13209. }
  13210. },
  13211. },
  13212. [
  13213. {
  13214. name: "Normal",
  13215. height: math.unit(5 + 6 / 12, "feet"),
  13216. default: true
  13217. },
  13218. {
  13219. name: "Bad Dream",
  13220. height: math.unit(500, "feet")
  13221. },
  13222. {
  13223. name: "Nightmare",
  13224. height: math.unit(500, "miles")
  13225. },
  13226. ]
  13227. ))
  13228. characterMakers.push(() => makeCharacter(
  13229. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13230. {
  13231. front: {
  13232. height: math.unit(6 + 1 / 12, "feet"),
  13233. weight: math.unit(260, "lb"),
  13234. name: "Front",
  13235. image: {
  13236. source: "./media/characters/zeta/front.svg",
  13237. extra: 1968 / 1889,
  13238. bottom: 0.06
  13239. }
  13240. },
  13241. back: {
  13242. height: math.unit(6 + 1 / 12, "feet"),
  13243. weight: math.unit(260, "lb"),
  13244. name: "Back",
  13245. image: {
  13246. source: "./media/characters/zeta/back.svg",
  13247. extra: 1944 / 1858,
  13248. bottom: 0.03
  13249. }
  13250. },
  13251. hand: {
  13252. height: math.unit(1.112, "feet"),
  13253. name: "Hand",
  13254. image: {
  13255. source: "./media/characters/zeta/hand.svg"
  13256. }
  13257. },
  13258. foot: {
  13259. height: math.unit(1.48, "feet"),
  13260. name: "Foot",
  13261. image: {
  13262. source: "./media/characters/zeta/foot.svg"
  13263. }
  13264. },
  13265. },
  13266. [
  13267. {
  13268. name: "Micro",
  13269. height: math.unit(6, "inches")
  13270. },
  13271. {
  13272. name: "Normal",
  13273. height: math.unit(6 + 1 / 12, "feet"),
  13274. default: true
  13275. },
  13276. {
  13277. name: "Macro",
  13278. height: math.unit(20, "feet")
  13279. },
  13280. ]
  13281. ))
  13282. characterMakers.push(() => makeCharacter(
  13283. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13284. {
  13285. front: {
  13286. height: math.unit(6, "feet"),
  13287. weight: math.unit(150, "lb"),
  13288. name: "Front",
  13289. image: {
  13290. source: "./media/characters/jamie-larsen/front.svg",
  13291. extra: 962 / 933,
  13292. bottom: 0.02
  13293. }
  13294. },
  13295. back: {
  13296. height: math.unit(6, "feet"),
  13297. weight: math.unit(150, "lb"),
  13298. name: "Back",
  13299. image: {
  13300. source: "./media/characters/jamie-larsen/back.svg",
  13301. extra: 997 / 946
  13302. }
  13303. },
  13304. },
  13305. [
  13306. {
  13307. name: "Macro",
  13308. height: math.unit(28 + 7 / 12, "feet"),
  13309. default: true
  13310. },
  13311. {
  13312. name: "Macro+",
  13313. height: math.unit(180, "feet")
  13314. },
  13315. {
  13316. name: "Megamacro",
  13317. height: math.unit(10, "miles")
  13318. },
  13319. {
  13320. name: "Gigamacro",
  13321. height: math.unit(200000, "miles")
  13322. },
  13323. ]
  13324. ))
  13325. characterMakers.push(() => makeCharacter(
  13326. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13327. {
  13328. front: {
  13329. height: math.unit(6, "feet"),
  13330. weight: math.unit(120, "lb"),
  13331. name: "Front",
  13332. image: {
  13333. source: "./media/characters/vance/front.svg",
  13334. extra: 1980 / 1890,
  13335. bottom: 0.09
  13336. }
  13337. },
  13338. back: {
  13339. height: math.unit(6, "feet"),
  13340. weight: math.unit(120, "lb"),
  13341. name: "Back",
  13342. image: {
  13343. source: "./media/characters/vance/back.svg",
  13344. extra: 2081 / 1994,
  13345. bottom: 0.014
  13346. }
  13347. },
  13348. hand: {
  13349. height: math.unit(0.88, "feet"),
  13350. name: "Hand",
  13351. image: {
  13352. source: "./media/characters/vance/hand.svg"
  13353. }
  13354. },
  13355. foot: {
  13356. height: math.unit(0.64, "feet"),
  13357. name: "Foot",
  13358. image: {
  13359. source: "./media/characters/vance/foot.svg"
  13360. }
  13361. },
  13362. },
  13363. [
  13364. {
  13365. name: "Small",
  13366. height: math.unit(90, "feet"),
  13367. default: true
  13368. },
  13369. {
  13370. name: "Macro",
  13371. height: math.unit(100, "meters")
  13372. },
  13373. {
  13374. name: "Megamacro",
  13375. height: math.unit(15, "miles")
  13376. },
  13377. ]
  13378. ))
  13379. characterMakers.push(() => makeCharacter(
  13380. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13381. {
  13382. front: {
  13383. height: math.unit(6, "feet"),
  13384. weight: math.unit(180, "lb"),
  13385. name: "Front",
  13386. image: {
  13387. source: "./media/characters/xochitl/front.svg",
  13388. extra: 2297 / 2261,
  13389. bottom: 0.065
  13390. }
  13391. },
  13392. back: {
  13393. height: math.unit(6, "feet"),
  13394. weight: math.unit(180, "lb"),
  13395. name: "Back",
  13396. image: {
  13397. source: "./media/characters/xochitl/back.svg",
  13398. extra: 2386 / 2354,
  13399. bottom: 0.01
  13400. }
  13401. },
  13402. foot: {
  13403. height: math.unit(6 / 5 * 1.15, "feet"),
  13404. weight: math.unit(150, "lb"),
  13405. name: "Foot",
  13406. image: {
  13407. source: "./media/characters/xochitl/foot.svg"
  13408. }
  13409. },
  13410. },
  13411. [
  13412. {
  13413. name: "Macro",
  13414. height: math.unit(80, "feet")
  13415. },
  13416. {
  13417. name: "Macro+",
  13418. height: math.unit(400, "feet"),
  13419. default: true
  13420. },
  13421. {
  13422. name: "Gigamacro",
  13423. height: math.unit(80000, "miles")
  13424. },
  13425. {
  13426. name: "Gigamacro+",
  13427. height: math.unit(400000, "miles")
  13428. },
  13429. {
  13430. name: "Teramacro",
  13431. height: math.unit(300, "AU")
  13432. },
  13433. ]
  13434. ))
  13435. characterMakers.push(() => makeCharacter(
  13436. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13437. {
  13438. front: {
  13439. height: math.unit(6, "feet"),
  13440. weight: math.unit(150, "lb"),
  13441. name: "Front",
  13442. image: {
  13443. source: "./media/characters/vincent/front.svg",
  13444. extra: 1130 / 1080,
  13445. bottom: 0.055
  13446. }
  13447. },
  13448. beak: {
  13449. height: math.unit(6 * 0.1, "feet"),
  13450. name: "Beak",
  13451. image: {
  13452. source: "./media/characters/vincent/beak.svg"
  13453. }
  13454. },
  13455. hand: {
  13456. height: math.unit(6 * 0.85, "feet"),
  13457. weight: math.unit(150, "lb"),
  13458. name: "Hand",
  13459. image: {
  13460. source: "./media/characters/vincent/hand.svg"
  13461. }
  13462. },
  13463. foot: {
  13464. height: math.unit(6 * 0.19, "feet"),
  13465. weight: math.unit(150, "lb"),
  13466. name: "Foot",
  13467. image: {
  13468. source: "./media/characters/vincent/foot.svg"
  13469. }
  13470. },
  13471. },
  13472. [
  13473. {
  13474. name: "Base",
  13475. height: math.unit(6 + 5 / 12, "feet"),
  13476. default: true
  13477. },
  13478. {
  13479. name: "Macro",
  13480. height: math.unit(300, "feet")
  13481. },
  13482. {
  13483. name: "Megamacro",
  13484. height: math.unit(2, "miles")
  13485. },
  13486. {
  13487. name: "Gigamacro",
  13488. height: math.unit(1000, "miles")
  13489. },
  13490. ]
  13491. ))
  13492. characterMakers.push(() => makeCharacter(
  13493. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13494. {
  13495. front: {
  13496. height: math.unit(2, "meters"),
  13497. weight: math.unit(500, "kg"),
  13498. name: "Front",
  13499. image: {
  13500. source: "./media/characters/coatl/front.svg",
  13501. extra: 3948 / 3500,
  13502. bottom: 0.082
  13503. }
  13504. },
  13505. },
  13506. [
  13507. {
  13508. name: "Normal",
  13509. height: math.unit(4, "meters")
  13510. },
  13511. {
  13512. name: "Macro",
  13513. height: math.unit(100, "meters"),
  13514. default: true
  13515. },
  13516. {
  13517. name: "Macro+",
  13518. height: math.unit(300, "meters")
  13519. },
  13520. {
  13521. name: "Megamacro",
  13522. height: math.unit(3, "gigameters")
  13523. },
  13524. {
  13525. name: "Megamacro+",
  13526. height: math.unit(300, "terameters")
  13527. },
  13528. {
  13529. name: "Megamacro++",
  13530. height: math.unit(3, "lightyears")
  13531. },
  13532. ]
  13533. ))
  13534. characterMakers.push(() => makeCharacter(
  13535. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13536. {
  13537. front: {
  13538. height: math.unit(6, "feet"),
  13539. weight: math.unit(50, "kg"),
  13540. name: "front",
  13541. image: {
  13542. source: "./media/characters/shiroryu/front.svg",
  13543. extra: 1990 / 1935
  13544. }
  13545. },
  13546. },
  13547. [
  13548. {
  13549. name: "Mortal Mingling",
  13550. height: math.unit(3, "meters")
  13551. },
  13552. {
  13553. name: "Kaiju-ish",
  13554. height: math.unit(250, "meters")
  13555. },
  13556. {
  13557. name: "Somewhat Godly",
  13558. height: math.unit(400, "km"),
  13559. default: true
  13560. },
  13561. {
  13562. name: "Planetary",
  13563. height: math.unit(300, "megameters")
  13564. },
  13565. {
  13566. name: "Galaxy-dwarfing",
  13567. height: math.unit(450, "kiloparsecs")
  13568. },
  13569. {
  13570. name: "Universe Eater",
  13571. height: math.unit(150, "gigaparsecs")
  13572. },
  13573. {
  13574. name: "Almost Immeasurable",
  13575. height: math.unit(1.3e266, "yottaparsecs")
  13576. },
  13577. ]
  13578. ))
  13579. characterMakers.push(() => makeCharacter(
  13580. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13581. {
  13582. front: {
  13583. height: math.unit(6, "feet"),
  13584. weight: math.unit(150, "lb"),
  13585. name: "Front",
  13586. image: {
  13587. source: "./media/characters/umeko/front.svg",
  13588. extra: 1,
  13589. bottom: 0.019
  13590. }
  13591. },
  13592. frontArmored: {
  13593. height: math.unit(6, "feet"),
  13594. weight: math.unit(150, "lb"),
  13595. name: "Front (Armored)",
  13596. image: {
  13597. source: "./media/characters/umeko/front-armored.svg",
  13598. extra: 1,
  13599. bottom: 0.021
  13600. }
  13601. },
  13602. },
  13603. [
  13604. {
  13605. name: "Macro",
  13606. height: math.unit(220, "feet"),
  13607. default: true
  13608. },
  13609. {
  13610. name: "Guardian Dragon",
  13611. height: math.unit(50, "miles")
  13612. },
  13613. {
  13614. name: "Cosmic",
  13615. height: math.unit(800000, "miles")
  13616. },
  13617. ]
  13618. ))
  13619. characterMakers.push(() => makeCharacter(
  13620. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13621. {
  13622. front: {
  13623. height: math.unit(6, "feet"),
  13624. weight: math.unit(150, "lb"),
  13625. name: "Front",
  13626. image: {
  13627. source: "./media/characters/cassidy/front.svg",
  13628. extra: 1,
  13629. bottom: 0.043
  13630. }
  13631. },
  13632. },
  13633. [
  13634. {
  13635. name: "Canon Height",
  13636. height: math.unit(120, "feet"),
  13637. default: true
  13638. },
  13639. {
  13640. name: "Macro+",
  13641. height: math.unit(400, "feet")
  13642. },
  13643. {
  13644. name: "Macro++",
  13645. height: math.unit(4000, "feet")
  13646. },
  13647. {
  13648. name: "Megamacro",
  13649. height: math.unit(3, "miles")
  13650. },
  13651. ]
  13652. ))
  13653. characterMakers.push(() => makeCharacter(
  13654. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13655. {
  13656. front: {
  13657. height: math.unit(6, "feet"),
  13658. weight: math.unit(150, "lb"),
  13659. name: "Front",
  13660. image: {
  13661. source: "./media/characters/isaac/front.svg",
  13662. extra: 896 / 815,
  13663. bottom: 0.11
  13664. }
  13665. },
  13666. },
  13667. [
  13668. {
  13669. name: "Human Size",
  13670. height: math.unit(8, "feet"),
  13671. default: true
  13672. },
  13673. {
  13674. name: "Macro",
  13675. height: math.unit(400, "feet")
  13676. },
  13677. {
  13678. name: "Megamacro",
  13679. height: math.unit(50, "miles")
  13680. },
  13681. {
  13682. name: "Canon Height",
  13683. height: math.unit(200, "AU")
  13684. },
  13685. ]
  13686. ))
  13687. characterMakers.push(() => makeCharacter(
  13688. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13689. {
  13690. front: {
  13691. height: math.unit(6, "feet"),
  13692. weight: math.unit(72, "kg"),
  13693. name: "Front",
  13694. image: {
  13695. source: "./media/characters/sleekit/front.svg",
  13696. extra: 4693 / 4487,
  13697. bottom: 0.012
  13698. }
  13699. },
  13700. },
  13701. [
  13702. {
  13703. name: "Minimum Height",
  13704. height: math.unit(10, "meters")
  13705. },
  13706. {
  13707. name: "Smaller",
  13708. height: math.unit(25, "meters")
  13709. },
  13710. {
  13711. name: "Larger",
  13712. height: math.unit(38, "meters"),
  13713. default: true
  13714. },
  13715. {
  13716. name: "Maximum height",
  13717. height: math.unit(100, "meters")
  13718. },
  13719. ]
  13720. ))
  13721. characterMakers.push(() => makeCharacter(
  13722. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13723. {
  13724. front: {
  13725. height: math.unit(6, "feet"),
  13726. weight: math.unit(150, "lb"),
  13727. name: "Front",
  13728. image: {
  13729. source: "./media/characters/nillia/front.svg",
  13730. extra: 2195 / 2037,
  13731. bottom: 0.005
  13732. }
  13733. },
  13734. back: {
  13735. height: math.unit(6, "feet"),
  13736. weight: math.unit(150, "lb"),
  13737. name: "Back",
  13738. image: {
  13739. source: "./media/characters/nillia/back.svg",
  13740. extra: 2195 / 2037,
  13741. bottom: 0.005
  13742. }
  13743. },
  13744. },
  13745. [
  13746. {
  13747. name: "Canon Height",
  13748. height: math.unit(489, "feet"),
  13749. default: true
  13750. }
  13751. ]
  13752. ))
  13753. characterMakers.push(() => makeCharacter(
  13754. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13755. {
  13756. front: {
  13757. height: math.unit(6, "feet"),
  13758. weight: math.unit(150, "lb"),
  13759. name: "Front",
  13760. image: {
  13761. source: "./media/characters/mesmyriza/front.svg",
  13762. extra: 2067 / 1784,
  13763. bottom: 0.035
  13764. }
  13765. },
  13766. foot: {
  13767. height: math.unit(6 / (250 / 35), "feet"),
  13768. name: "Foot",
  13769. image: {
  13770. source: "./media/characters/mesmyriza/foot.svg"
  13771. }
  13772. },
  13773. },
  13774. [
  13775. {
  13776. name: "Macro",
  13777. height: math.unit(457, "meters"),
  13778. default: true
  13779. },
  13780. {
  13781. name: "Megamacro",
  13782. height: math.unit(8, "megameters")
  13783. },
  13784. ]
  13785. ))
  13786. characterMakers.push(() => makeCharacter(
  13787. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13788. {
  13789. front: {
  13790. height: math.unit(6, "feet"),
  13791. weight: math.unit(250, "lb"),
  13792. name: "Front",
  13793. image: {
  13794. source: "./media/characters/saudade/front.svg",
  13795. extra: 1172 / 1139,
  13796. bottom: 0.035
  13797. }
  13798. },
  13799. },
  13800. [
  13801. {
  13802. name: "Micro",
  13803. height: math.unit(3, "inches")
  13804. },
  13805. {
  13806. name: "Normal",
  13807. height: math.unit(6, "feet"),
  13808. default: true
  13809. },
  13810. {
  13811. name: "Macro",
  13812. height: math.unit(50, "feet")
  13813. },
  13814. {
  13815. name: "Megamacro",
  13816. height: math.unit(2800, "feet")
  13817. },
  13818. ]
  13819. ))
  13820. characterMakers.push(() => makeCharacter(
  13821. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13822. {
  13823. front: {
  13824. height: math.unit(5 + 4 / 12, "feet"),
  13825. weight: math.unit(100, "lb"),
  13826. name: "Front",
  13827. image: {
  13828. source: "./media/characters/keireer/front.svg",
  13829. extra: 716 / 666,
  13830. bottom: 0.05
  13831. }
  13832. },
  13833. },
  13834. [
  13835. {
  13836. name: "Normal",
  13837. height: math.unit(5 + 4 / 12, "feet"),
  13838. default: true
  13839. },
  13840. ]
  13841. ))
  13842. characterMakers.push(() => makeCharacter(
  13843. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13844. {
  13845. front: {
  13846. height: math.unit(6, "feet"),
  13847. weight: math.unit(90, "kg"),
  13848. name: "Front",
  13849. image: {
  13850. source: "./media/characters/mirja/front.svg",
  13851. extra: 1789 / 1683,
  13852. bottom: 0.05
  13853. }
  13854. },
  13855. frontDressed: {
  13856. height: math.unit(6, "feet"),
  13857. weight: math.unit(90, "lb"),
  13858. name: "Front (Dressed)",
  13859. image: {
  13860. source: "./media/characters/mirja/front-dressed.svg",
  13861. extra: 1789 / 1683,
  13862. bottom: 0.05
  13863. }
  13864. },
  13865. back: {
  13866. height: math.unit(6, "feet"),
  13867. weight: math.unit(90, "lb"),
  13868. name: "Back",
  13869. image: {
  13870. source: "./media/characters/mirja/back.svg",
  13871. extra: 953 / 917,
  13872. bottom: 0.017
  13873. }
  13874. },
  13875. },
  13876. [
  13877. {
  13878. name: "\"Incognito\"",
  13879. height: math.unit(3, "meters")
  13880. },
  13881. {
  13882. name: "Strolling Size",
  13883. height: math.unit(15, "km")
  13884. },
  13885. {
  13886. name: "Larger Strolling Size",
  13887. height: math.unit(400, "km")
  13888. },
  13889. {
  13890. name: "Preferred Size",
  13891. height: math.unit(5000, "km")
  13892. },
  13893. {
  13894. name: "True Size",
  13895. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13896. default: true
  13897. },
  13898. ]
  13899. ))
  13900. characterMakers.push(() => makeCharacter(
  13901. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13902. {
  13903. front: {
  13904. height: math.unit(15, "feet"),
  13905. weight: math.unit(880, "kg"),
  13906. name: "Front",
  13907. image: {
  13908. source: "./media/characters/nightraver/front.svg",
  13909. extra: 2444 / 2160,
  13910. bottom: 0.027
  13911. }
  13912. },
  13913. back: {
  13914. height: math.unit(15, "feet"),
  13915. weight: math.unit(880, "kg"),
  13916. name: "Back",
  13917. image: {
  13918. source: "./media/characters/nightraver/back.svg",
  13919. extra: 2309 / 2180,
  13920. bottom: 0.005
  13921. }
  13922. },
  13923. sole: {
  13924. height: math.unit(2.878, "feet"),
  13925. name: "Sole",
  13926. image: {
  13927. source: "./media/characters/nightraver/sole.svg"
  13928. }
  13929. },
  13930. foot: {
  13931. height: math.unit(2.285, "feet"),
  13932. name: "Foot",
  13933. image: {
  13934. source: "./media/characters/nightraver/foot.svg"
  13935. }
  13936. },
  13937. maw: {
  13938. height: math.unit(2.67, "feet"),
  13939. name: "Maw",
  13940. image: {
  13941. source: "./media/characters/nightraver/maw.svg"
  13942. }
  13943. },
  13944. },
  13945. [
  13946. {
  13947. name: "Micro",
  13948. height: math.unit(1, "cm")
  13949. },
  13950. {
  13951. name: "Normal",
  13952. height: math.unit(15, "feet"),
  13953. default: true
  13954. },
  13955. {
  13956. name: "Macro",
  13957. height: math.unit(300, "feet")
  13958. },
  13959. {
  13960. name: "Megamacro",
  13961. height: math.unit(300, "miles")
  13962. },
  13963. {
  13964. name: "Gigamacro",
  13965. height: math.unit(10000, "miles")
  13966. },
  13967. ]
  13968. ))
  13969. characterMakers.push(() => makeCharacter(
  13970. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13971. {
  13972. side: {
  13973. height: math.unit(2, "inches"),
  13974. weight: math.unit(5, "grams"),
  13975. name: "Side",
  13976. image: {
  13977. source: "./media/characters/arc/side.svg"
  13978. }
  13979. },
  13980. },
  13981. [
  13982. {
  13983. name: "Micro",
  13984. height: math.unit(2, "inches"),
  13985. default: true
  13986. },
  13987. ]
  13988. ))
  13989. characterMakers.push(() => makeCharacter(
  13990. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13991. {
  13992. front: {
  13993. height: math.unit(1.1938, "meters"),
  13994. weight: math.unit(54, "kg"),
  13995. name: "Front",
  13996. image: {
  13997. source: "./media/characters/nebula-shahar/front.svg",
  13998. extra: 1642 / 1436,
  13999. bottom: 0.06
  14000. }
  14001. },
  14002. },
  14003. [
  14004. {
  14005. name: "Megamicro",
  14006. height: math.unit(0.3, "mm")
  14007. },
  14008. {
  14009. name: "Micro",
  14010. height: math.unit(3, "cm")
  14011. },
  14012. {
  14013. name: "Normal",
  14014. height: math.unit(138, "cm"),
  14015. default: true
  14016. },
  14017. {
  14018. name: "Macro",
  14019. height: math.unit(30, "m")
  14020. },
  14021. ]
  14022. ))
  14023. characterMakers.push(() => makeCharacter(
  14024. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14025. {
  14026. front: {
  14027. height: math.unit(5.24, "feet"),
  14028. weight: math.unit(150, "lb"),
  14029. name: "Front",
  14030. image: {
  14031. source: "./media/characters/shayla/front.svg",
  14032. extra: 1512 / 1414,
  14033. bottom: 0.01
  14034. }
  14035. },
  14036. back: {
  14037. height: math.unit(5.24, "feet"),
  14038. weight: math.unit(150, "lb"),
  14039. name: "Back",
  14040. image: {
  14041. source: "./media/characters/shayla/back.svg",
  14042. extra: 1512 / 1414
  14043. }
  14044. },
  14045. hand: {
  14046. height: math.unit(0.7781496062992126, "feet"),
  14047. name: "Hand",
  14048. image: {
  14049. source: "./media/characters/shayla/hand.svg"
  14050. }
  14051. },
  14052. foot: {
  14053. height: math.unit(1.4206036745406823, "feet"),
  14054. name: "Foot",
  14055. image: {
  14056. source: "./media/characters/shayla/foot.svg"
  14057. }
  14058. },
  14059. },
  14060. [
  14061. {
  14062. name: "Micro",
  14063. height: math.unit(0.32, "feet")
  14064. },
  14065. {
  14066. name: "Normal",
  14067. height: math.unit(5.24, "feet"),
  14068. default: true
  14069. },
  14070. {
  14071. name: "Macro",
  14072. height: math.unit(492.12, "feet")
  14073. },
  14074. {
  14075. name: "Megamacro",
  14076. height: math.unit(186.41, "miles")
  14077. },
  14078. ]
  14079. ))
  14080. characterMakers.push(() => makeCharacter(
  14081. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14082. {
  14083. front: {
  14084. height: math.unit(2.2, "m"),
  14085. weight: math.unit(120, "kg"),
  14086. name: "Front",
  14087. image: {
  14088. source: "./media/characters/pia-jr/front.svg",
  14089. extra: 1000 / 970,
  14090. bottom: 0.035
  14091. }
  14092. },
  14093. hand: {
  14094. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14095. name: "Hand",
  14096. image: {
  14097. source: "./media/characters/pia-jr/hand.svg"
  14098. }
  14099. },
  14100. paw: {
  14101. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14102. name: "Paw",
  14103. image: {
  14104. source: "./media/characters/pia-jr/paw.svg"
  14105. }
  14106. },
  14107. },
  14108. [
  14109. {
  14110. name: "Micro",
  14111. height: math.unit(1.2, "cm")
  14112. },
  14113. {
  14114. name: "Normal",
  14115. height: math.unit(2.2, "m"),
  14116. default: true
  14117. },
  14118. {
  14119. name: "Macro",
  14120. height: math.unit(180, "m")
  14121. },
  14122. {
  14123. name: "Megamacro",
  14124. height: math.unit(420, "km")
  14125. },
  14126. ]
  14127. ))
  14128. characterMakers.push(() => makeCharacter(
  14129. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14130. {
  14131. front: {
  14132. height: math.unit(2, "m"),
  14133. weight: math.unit(115, "kg"),
  14134. name: "Front",
  14135. image: {
  14136. source: "./media/characters/pia-sr/front.svg",
  14137. extra: 760 / 730,
  14138. bottom: 0.015
  14139. }
  14140. },
  14141. back: {
  14142. height: math.unit(2, "m"),
  14143. weight: math.unit(115, "kg"),
  14144. name: "Back",
  14145. image: {
  14146. source: "./media/characters/pia-sr/back.svg",
  14147. extra: 760 / 730,
  14148. bottom: 0.01
  14149. }
  14150. },
  14151. hand: {
  14152. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14153. name: "Hand",
  14154. image: {
  14155. source: "./media/characters/pia-sr/hand.svg"
  14156. }
  14157. },
  14158. foot: {
  14159. height: math.unit(1.83, "feet"),
  14160. name: "Foot",
  14161. image: {
  14162. source: "./media/characters/pia-sr/foot.svg"
  14163. }
  14164. },
  14165. },
  14166. [
  14167. {
  14168. name: "Micro",
  14169. height: math.unit(88, "mm")
  14170. },
  14171. {
  14172. name: "Normal",
  14173. height: math.unit(2, "m"),
  14174. default: true
  14175. },
  14176. {
  14177. name: "Macro",
  14178. height: math.unit(200, "m")
  14179. },
  14180. {
  14181. name: "Megamacro",
  14182. height: math.unit(420, "km")
  14183. },
  14184. ]
  14185. ))
  14186. characterMakers.push(() => makeCharacter(
  14187. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14188. {
  14189. front: {
  14190. height: math.unit(8 + 2 / 12, "feet"),
  14191. weight: math.unit(300, "lb"),
  14192. name: "Front",
  14193. image: {
  14194. source: "./media/characters/kibibyte/front.svg",
  14195. extra: 2221 / 2098,
  14196. bottom: 0.04
  14197. }
  14198. },
  14199. },
  14200. [
  14201. {
  14202. name: "Normal",
  14203. height: math.unit(8 + 2 / 12, "feet"),
  14204. default: true
  14205. },
  14206. {
  14207. name: "Socialable Macro",
  14208. height: math.unit(50, "feet")
  14209. },
  14210. {
  14211. name: "Macro",
  14212. height: math.unit(300, "feet")
  14213. },
  14214. {
  14215. name: "Megamacro",
  14216. height: math.unit(500, "miles")
  14217. },
  14218. ]
  14219. ))
  14220. characterMakers.push(() => makeCharacter(
  14221. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14222. {
  14223. front: {
  14224. height: math.unit(6, "feet"),
  14225. weight: math.unit(150, "lb"),
  14226. name: "Front",
  14227. image: {
  14228. source: "./media/characters/felix/front.svg",
  14229. extra: 762 / 722,
  14230. bottom: 0.02
  14231. }
  14232. },
  14233. frontClothed: {
  14234. height: math.unit(6, "feet"),
  14235. weight: math.unit(150, "lb"),
  14236. name: "Front (Clothed)",
  14237. image: {
  14238. source: "./media/characters/felix/front-clothed.svg",
  14239. extra: 762 / 722,
  14240. bottom: 0.02
  14241. }
  14242. },
  14243. },
  14244. [
  14245. {
  14246. name: "Normal",
  14247. height: math.unit(6 + 8 / 12, "feet"),
  14248. default: true
  14249. },
  14250. {
  14251. name: "Macro",
  14252. height: math.unit(2600, "feet")
  14253. },
  14254. {
  14255. name: "Megamacro",
  14256. height: math.unit(450, "miles")
  14257. },
  14258. ]
  14259. ))
  14260. characterMakers.push(() => makeCharacter(
  14261. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14262. {
  14263. front: {
  14264. height: math.unit(6 + 1 / 12, "feet"),
  14265. weight: math.unit(250, "lb"),
  14266. name: "Front",
  14267. image: {
  14268. source: "./media/characters/tobo/front.svg",
  14269. extra: 608 / 586,
  14270. bottom: 0.023
  14271. }
  14272. },
  14273. back: {
  14274. height: math.unit(6 + 1 / 12, "feet"),
  14275. weight: math.unit(250, "lb"),
  14276. name: "Back",
  14277. image: {
  14278. source: "./media/characters/tobo/back.svg",
  14279. extra: 608 / 586
  14280. }
  14281. },
  14282. },
  14283. [
  14284. {
  14285. name: "Nano",
  14286. height: math.unit(2, "nm")
  14287. },
  14288. {
  14289. name: "Megamicro",
  14290. height: math.unit(0.1, "mm")
  14291. },
  14292. {
  14293. name: "Micro",
  14294. height: math.unit(1, "inch"),
  14295. default: true
  14296. },
  14297. {
  14298. name: "Human-sized",
  14299. height: math.unit(6 + 1 / 12, "feet")
  14300. },
  14301. {
  14302. name: "Macro",
  14303. height: math.unit(250, "feet")
  14304. },
  14305. {
  14306. name: "Megamacro",
  14307. height: math.unit(75, "miles")
  14308. },
  14309. {
  14310. name: "Texas-sized",
  14311. height: math.unit(750, "miles")
  14312. },
  14313. {
  14314. name: "Teramacro",
  14315. height: math.unit(50000, "miles")
  14316. },
  14317. ]
  14318. ))
  14319. characterMakers.push(() => makeCharacter(
  14320. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14321. {
  14322. front: {
  14323. height: math.unit(6, "feet"),
  14324. weight: math.unit(269, "lb"),
  14325. name: "Front",
  14326. image: {
  14327. source: "./media/characters/danny-kapowsky/front.svg",
  14328. extra: 766 / 736,
  14329. bottom: 0.044
  14330. }
  14331. },
  14332. back: {
  14333. height: math.unit(6, "feet"),
  14334. weight: math.unit(269, "lb"),
  14335. name: "Back",
  14336. image: {
  14337. source: "./media/characters/danny-kapowsky/back.svg",
  14338. extra: 797 / 760,
  14339. bottom: 0.025
  14340. }
  14341. },
  14342. },
  14343. [
  14344. {
  14345. name: "Macro",
  14346. height: math.unit(150, "feet"),
  14347. default: true
  14348. },
  14349. {
  14350. name: "Macro+",
  14351. height: math.unit(200, "feet")
  14352. },
  14353. {
  14354. name: "Macro++",
  14355. height: math.unit(300, "feet")
  14356. },
  14357. {
  14358. name: "Macro+++",
  14359. height: math.unit(400, "feet")
  14360. },
  14361. ]
  14362. ))
  14363. characterMakers.push(() => makeCharacter(
  14364. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14365. {
  14366. side: {
  14367. height: math.unit(6, "feet"),
  14368. weight: math.unit(170, "lb"),
  14369. name: "Side",
  14370. image: {
  14371. source: "./media/characters/finn/side.svg",
  14372. extra: 1953 / 1807,
  14373. bottom: 0.057
  14374. }
  14375. },
  14376. },
  14377. [
  14378. {
  14379. name: "Megamacro",
  14380. height: math.unit(14445, "feet"),
  14381. default: true
  14382. },
  14383. ]
  14384. ))
  14385. characterMakers.push(() => makeCharacter(
  14386. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14387. {
  14388. front: {
  14389. height: math.unit(5 + 6 / 12, "feet"),
  14390. weight: math.unit(125, "lb"),
  14391. name: "Front",
  14392. image: {
  14393. source: "./media/characters/roy/front.svg",
  14394. extra: 1,
  14395. bottom: 0.11
  14396. }
  14397. },
  14398. },
  14399. [
  14400. {
  14401. name: "Micro",
  14402. height: math.unit(3, "inches"),
  14403. default: true
  14404. },
  14405. {
  14406. name: "Normal",
  14407. height: math.unit(5 + 6 / 12, "feet")
  14408. },
  14409. {
  14410. name: "Lesser Macro",
  14411. height: math.unit(60, "feet")
  14412. },
  14413. {
  14414. name: "Greater Macro",
  14415. height: math.unit(120, "feet")
  14416. },
  14417. ]
  14418. ))
  14419. characterMakers.push(() => makeCharacter(
  14420. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14421. {
  14422. front: {
  14423. height: math.unit(6, "feet"),
  14424. weight: math.unit(100, "lb"),
  14425. name: "Front",
  14426. image: {
  14427. source: "./media/characters/aevsivs/front.svg",
  14428. extra: 1,
  14429. bottom: 0.03
  14430. }
  14431. },
  14432. back: {
  14433. height: math.unit(6, "feet"),
  14434. weight: math.unit(100, "lb"),
  14435. name: "Back",
  14436. image: {
  14437. source: "./media/characters/aevsivs/back.svg"
  14438. }
  14439. },
  14440. },
  14441. [
  14442. {
  14443. name: "Micro",
  14444. height: math.unit(2, "inches"),
  14445. default: true
  14446. },
  14447. {
  14448. name: "Normal",
  14449. height: math.unit(5, "feet")
  14450. },
  14451. ]
  14452. ))
  14453. characterMakers.push(() => makeCharacter(
  14454. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14455. {
  14456. front: {
  14457. height: math.unit(5 + 7 / 12, "feet"),
  14458. weight: math.unit(159, "lb"),
  14459. name: "Front",
  14460. image: {
  14461. source: "./media/characters/hildegard/front.svg",
  14462. extra: 289 / 269,
  14463. bottom: 7.63 / 297.8
  14464. }
  14465. },
  14466. back: {
  14467. height: math.unit(5 + 7 / 12, "feet"),
  14468. weight: math.unit(159, "lb"),
  14469. name: "Back",
  14470. image: {
  14471. source: "./media/characters/hildegard/back.svg",
  14472. extra: 280 / 260,
  14473. bottom: 2.3 / 282
  14474. }
  14475. },
  14476. },
  14477. [
  14478. {
  14479. name: "Normal",
  14480. height: math.unit(5 + 7 / 12, "feet"),
  14481. default: true
  14482. },
  14483. ]
  14484. ))
  14485. characterMakers.push(() => makeCharacter(
  14486. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14487. {
  14488. bernard: {
  14489. height: math.unit(2 + 7 / 12, "feet"),
  14490. weight: math.unit(66, "lb"),
  14491. name: "Bernard",
  14492. rename: true,
  14493. image: {
  14494. source: "./media/characters/bernard-wilder/bernard.svg",
  14495. extra: 192 / 128,
  14496. bottom: 0.05
  14497. }
  14498. },
  14499. wilder: {
  14500. height: math.unit(5 + 8 / 12, "feet"),
  14501. weight: math.unit(143, "lb"),
  14502. name: "Wilder",
  14503. rename: true,
  14504. image: {
  14505. source: "./media/characters/bernard-wilder/wilder.svg",
  14506. extra: 361 / 312,
  14507. bottom: 0.02
  14508. }
  14509. },
  14510. },
  14511. [
  14512. {
  14513. name: "Normal",
  14514. height: math.unit(2 + 7 / 12, "feet"),
  14515. default: true
  14516. },
  14517. ]
  14518. ))
  14519. characterMakers.push(() => makeCharacter(
  14520. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14521. {
  14522. anthro: {
  14523. height: math.unit(6 + 1 / 12, "feet"),
  14524. weight: math.unit(155, "lb"),
  14525. name: "Anthro",
  14526. image: {
  14527. source: "./media/characters/hearth/anthro.svg",
  14528. extra: 260 / 250,
  14529. bottom: 0.02
  14530. }
  14531. },
  14532. feral: {
  14533. height: math.unit(3.78, "feet"),
  14534. weight: math.unit(35, "kg"),
  14535. name: "Feral",
  14536. image: {
  14537. source: "./media/characters/hearth/feral.svg",
  14538. extra: 153 / 135,
  14539. bottom: 0.03
  14540. }
  14541. },
  14542. },
  14543. [
  14544. {
  14545. name: "Normal",
  14546. height: math.unit(6 + 1 / 12, "feet"),
  14547. default: true
  14548. },
  14549. ]
  14550. ))
  14551. characterMakers.push(() => makeCharacter(
  14552. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14553. {
  14554. front: {
  14555. height: math.unit(6, "feet"),
  14556. weight: math.unit(182, "lb"),
  14557. name: "Front",
  14558. image: {
  14559. source: "./media/characters/ingrid/front.svg",
  14560. extra: 294 / 268,
  14561. bottom: 0.027
  14562. }
  14563. },
  14564. },
  14565. [
  14566. {
  14567. name: "Normal",
  14568. height: math.unit(6, "feet"),
  14569. default: true
  14570. },
  14571. ]
  14572. ))
  14573. characterMakers.push(() => makeCharacter(
  14574. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14575. {
  14576. eevee: {
  14577. height: math.unit(2 + 10 / 12, "feet"),
  14578. weight: math.unit(86, "lb"),
  14579. name: "Malgam",
  14580. image: {
  14581. source: "./media/characters/malgam/eevee.svg",
  14582. extra: 218 / 180,
  14583. bottom: 0.2
  14584. }
  14585. },
  14586. sylveon: {
  14587. height: math.unit(4, "feet"),
  14588. weight: math.unit(101, "lb"),
  14589. name: "Future Malgam",
  14590. rename: true,
  14591. image: {
  14592. source: "./media/characters/malgam/sylveon.svg",
  14593. extra: 371 / 325,
  14594. bottom: 0.015
  14595. }
  14596. },
  14597. gigantamax: {
  14598. height: math.unit(50, "feet"),
  14599. name: "Gigantamax Malgam",
  14600. rename: true,
  14601. image: {
  14602. source: "./media/characters/malgam/gigantamax.svg"
  14603. }
  14604. },
  14605. },
  14606. [
  14607. {
  14608. name: "Normal",
  14609. height: math.unit(2 + 10 / 12, "feet"),
  14610. default: true
  14611. },
  14612. ]
  14613. ))
  14614. characterMakers.push(() => makeCharacter(
  14615. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14616. {
  14617. front: {
  14618. height: math.unit(5 + 11 / 12, "feet"),
  14619. weight: math.unit(188, "lb"),
  14620. name: "Front",
  14621. image: {
  14622. source: "./media/characters/fleur/front.svg",
  14623. extra: 309 / 283,
  14624. bottom: 0.007
  14625. }
  14626. },
  14627. },
  14628. [
  14629. {
  14630. name: "Normal",
  14631. height: math.unit(5 + 11 / 12, "feet"),
  14632. default: true
  14633. },
  14634. ]
  14635. ))
  14636. characterMakers.push(() => makeCharacter(
  14637. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14638. {
  14639. front: {
  14640. height: math.unit(5 + 4 / 12, "feet"),
  14641. weight: math.unit(122, "lb"),
  14642. name: "Front",
  14643. image: {
  14644. source: "./media/characters/jude/front.svg",
  14645. extra: 288 / 273,
  14646. bottom: 0.03
  14647. }
  14648. },
  14649. },
  14650. [
  14651. {
  14652. name: "Normal",
  14653. height: math.unit(5 + 4 / 12, "feet"),
  14654. default: true
  14655. },
  14656. ]
  14657. ))
  14658. characterMakers.push(() => makeCharacter(
  14659. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14660. {
  14661. front: {
  14662. height: math.unit(5 + 11 / 12, "feet"),
  14663. weight: math.unit(190, "lb"),
  14664. name: "Front",
  14665. image: {
  14666. source: "./media/characters/seara/front.svg",
  14667. extra: 1,
  14668. bottom: 0.05
  14669. }
  14670. },
  14671. },
  14672. [
  14673. {
  14674. name: "Normal",
  14675. height: math.unit(5 + 11 / 12, "feet"),
  14676. default: true
  14677. },
  14678. ]
  14679. ))
  14680. characterMakers.push(() => makeCharacter(
  14681. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14682. {
  14683. front: {
  14684. height: math.unit(16 + 5 / 12, "feet"),
  14685. weight: math.unit(524, "lb"),
  14686. name: "Front",
  14687. image: {
  14688. source: "./media/characters/caspian/front.svg",
  14689. extra: 1,
  14690. bottom: 0.04
  14691. }
  14692. },
  14693. },
  14694. [
  14695. {
  14696. name: "Normal",
  14697. height: math.unit(16 + 5 / 12, "feet"),
  14698. default: true
  14699. },
  14700. ]
  14701. ))
  14702. characterMakers.push(() => makeCharacter(
  14703. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14704. {
  14705. front: {
  14706. height: math.unit(5 + 7 / 12, "feet"),
  14707. weight: math.unit(170, "lb"),
  14708. name: "Front",
  14709. image: {
  14710. source: "./media/characters/mika/front.svg",
  14711. extra: 1,
  14712. bottom: 0.016
  14713. }
  14714. },
  14715. },
  14716. [
  14717. {
  14718. name: "Normal",
  14719. height: math.unit(5 + 7 / 12, "feet"),
  14720. default: true
  14721. },
  14722. ]
  14723. ))
  14724. characterMakers.push(() => makeCharacter(
  14725. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14726. {
  14727. front: {
  14728. height: math.unit(6 + 2 / 12, "feet"),
  14729. weight: math.unit(268, "lb"),
  14730. name: "Front",
  14731. image: {
  14732. source: "./media/characters/sol/front.svg",
  14733. extra: 247 / 231,
  14734. bottom: 0.05
  14735. }
  14736. },
  14737. },
  14738. [
  14739. {
  14740. name: "Normal",
  14741. height: math.unit(6 + 2 / 12, "feet"),
  14742. default: true
  14743. },
  14744. ]
  14745. ))
  14746. characterMakers.push(() => makeCharacter(
  14747. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14748. {
  14749. buizel: {
  14750. height: math.unit(2 + 5 / 12, "feet"),
  14751. weight: math.unit(87, "lb"),
  14752. name: "Buizel",
  14753. image: {
  14754. source: "./media/characters/umiko/buizel.svg",
  14755. extra: 172 / 157,
  14756. bottom: 0.01
  14757. }
  14758. },
  14759. floatzel: {
  14760. height: math.unit(5 + 9 / 12, "feet"),
  14761. weight: math.unit(250, "lb"),
  14762. name: "Floatzel",
  14763. image: {
  14764. source: "./media/characters/umiko/floatzel.svg",
  14765. extra: 262 / 248
  14766. }
  14767. },
  14768. },
  14769. [
  14770. {
  14771. name: "Normal",
  14772. height: math.unit(2 + 5 / 12, "feet"),
  14773. default: true
  14774. },
  14775. ]
  14776. ))
  14777. characterMakers.push(() => makeCharacter(
  14778. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14779. {
  14780. front: {
  14781. height: math.unit(6 + 2 / 12, "feet"),
  14782. weight: math.unit(146, "lb"),
  14783. name: "Front",
  14784. image: {
  14785. source: "./media/characters/iliac/front.svg",
  14786. extra: 389 / 365,
  14787. bottom: 0.035
  14788. }
  14789. },
  14790. },
  14791. [
  14792. {
  14793. name: "Normal",
  14794. height: math.unit(6 + 2 / 12, "feet"),
  14795. default: true
  14796. },
  14797. ]
  14798. ))
  14799. characterMakers.push(() => makeCharacter(
  14800. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14801. {
  14802. front: {
  14803. height: math.unit(6, "feet"),
  14804. weight: math.unit(170, "lb"),
  14805. name: "Front",
  14806. image: {
  14807. source: "./media/characters/topaz/front.svg",
  14808. extra: 317 / 303,
  14809. bottom: 0.055
  14810. }
  14811. },
  14812. },
  14813. [
  14814. {
  14815. name: "Normal",
  14816. height: math.unit(6, "feet"),
  14817. default: true
  14818. },
  14819. ]
  14820. ))
  14821. characterMakers.push(() => makeCharacter(
  14822. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14823. {
  14824. front: {
  14825. height: math.unit(5 + 11 / 12, "feet"),
  14826. weight: math.unit(144, "lb"),
  14827. name: "Front",
  14828. image: {
  14829. source: "./media/characters/gabriel/front.svg",
  14830. extra: 285 / 262,
  14831. bottom: 0.004
  14832. }
  14833. },
  14834. },
  14835. [
  14836. {
  14837. name: "Normal",
  14838. height: math.unit(5 + 11 / 12, "feet"),
  14839. default: true
  14840. },
  14841. ]
  14842. ))
  14843. characterMakers.push(() => makeCharacter(
  14844. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14845. {
  14846. side: {
  14847. height: math.unit(6 + 5 / 12, "feet"),
  14848. weight: math.unit(300, "lb"),
  14849. name: "Side",
  14850. image: {
  14851. source: "./media/characters/tempest-suicune/side.svg",
  14852. extra: 195 / 154,
  14853. bottom: 0.04
  14854. }
  14855. },
  14856. },
  14857. [
  14858. {
  14859. name: "Normal",
  14860. height: math.unit(6 + 5 / 12, "feet"),
  14861. default: true
  14862. },
  14863. ]
  14864. ))
  14865. characterMakers.push(() => makeCharacter(
  14866. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14867. {
  14868. front: {
  14869. height: math.unit(7 + 2 / 12, "feet"),
  14870. weight: math.unit(322, "lb"),
  14871. name: "Front",
  14872. image: {
  14873. source: "./media/characters/vulcan/front.svg",
  14874. extra: 154 / 147,
  14875. bottom: 0.04
  14876. }
  14877. },
  14878. },
  14879. [
  14880. {
  14881. name: "Normal",
  14882. height: math.unit(7 + 2 / 12, "feet"),
  14883. default: true
  14884. },
  14885. ]
  14886. ))
  14887. characterMakers.push(() => makeCharacter(
  14888. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14889. {
  14890. front: {
  14891. height: math.unit(5 + 10 / 12, "feet"),
  14892. weight: math.unit(264, "lb"),
  14893. name: "Front",
  14894. image: {
  14895. source: "./media/characters/gault/front.svg",
  14896. extra: 161 / 140,
  14897. bottom: 0.028
  14898. }
  14899. },
  14900. },
  14901. [
  14902. {
  14903. name: "Normal",
  14904. height: math.unit(5 + 10 / 12, "feet"),
  14905. default: true
  14906. },
  14907. ]
  14908. ))
  14909. characterMakers.push(() => makeCharacter(
  14910. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14911. {
  14912. front: {
  14913. height: math.unit(6, "feet"),
  14914. weight: math.unit(150, "lb"),
  14915. name: "Front",
  14916. image: {
  14917. source: "./media/characters/shard/front.svg",
  14918. extra: 273 / 238,
  14919. bottom: 0.02
  14920. }
  14921. },
  14922. },
  14923. [
  14924. {
  14925. name: "Normal",
  14926. height: math.unit(3 + 6 / 12, "feet"),
  14927. default: true
  14928. },
  14929. ]
  14930. ))
  14931. characterMakers.push(() => makeCharacter(
  14932. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14933. {
  14934. front: {
  14935. height: math.unit(5 + 11 / 12, "feet"),
  14936. weight: math.unit(146, "lb"),
  14937. name: "Front",
  14938. image: {
  14939. source: "./media/characters/ashe/front.svg",
  14940. extra: 400 / 373,
  14941. bottom: 0.01
  14942. }
  14943. },
  14944. },
  14945. [
  14946. {
  14947. name: "Normal",
  14948. height: math.unit(5 + 11 / 12, "feet"),
  14949. default: true
  14950. },
  14951. ]
  14952. ))
  14953. characterMakers.push(() => makeCharacter(
  14954. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14955. {
  14956. front: {
  14957. height: math.unit(5 + 5 / 12, "feet"),
  14958. weight: math.unit(135, "lb"),
  14959. name: "Front",
  14960. image: {
  14961. source: "./media/characters/beatrix/front.svg",
  14962. extra: 392 / 379,
  14963. bottom: 0.01
  14964. }
  14965. },
  14966. },
  14967. [
  14968. {
  14969. name: "Normal",
  14970. height: math.unit(6, "feet"),
  14971. default: true
  14972. },
  14973. ]
  14974. ))
  14975. characterMakers.push(() => makeCharacter(
  14976. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14977. {
  14978. front: {
  14979. height: math.unit(6, "feet"),
  14980. weight: math.unit(150, "lb"),
  14981. name: "Front",
  14982. image: {
  14983. source: "./media/characters/ignatius/front.svg",
  14984. extra: 245 / 222,
  14985. bottom: 0.01
  14986. }
  14987. },
  14988. },
  14989. [
  14990. {
  14991. name: "Normal",
  14992. height: math.unit(5 + 5 / 12, "feet"),
  14993. default: true
  14994. },
  14995. ]
  14996. ))
  14997. characterMakers.push(() => makeCharacter(
  14998. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14999. {
  15000. front: {
  15001. height: math.unit(6 + 2 / 12, "feet"),
  15002. weight: math.unit(138, "lb"),
  15003. name: "Front",
  15004. image: {
  15005. source: "./media/characters/mei-li/front.svg",
  15006. extra: 237 / 229,
  15007. bottom: 0.03
  15008. }
  15009. },
  15010. },
  15011. [
  15012. {
  15013. name: "Normal",
  15014. height: math.unit(6 + 2 / 12, "feet"),
  15015. default: true
  15016. },
  15017. ]
  15018. ))
  15019. characterMakers.push(() => makeCharacter(
  15020. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15021. {
  15022. front: {
  15023. height: math.unit(2 + 4 / 12, "feet"),
  15024. weight: math.unit(62, "lb"),
  15025. name: "Front",
  15026. image: {
  15027. source: "./media/characters/puru/front.svg",
  15028. extra: 206 / 149,
  15029. bottom: 0.06
  15030. }
  15031. },
  15032. },
  15033. [
  15034. {
  15035. name: "Normal",
  15036. height: math.unit(2 + 4 / 12, "feet"),
  15037. default: true
  15038. },
  15039. ]
  15040. ))
  15041. characterMakers.push(() => makeCharacter(
  15042. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15043. {
  15044. anthro: {
  15045. height: math.unit(5 + 8/12, "feet"),
  15046. weight: math.unit(200, "lb"),
  15047. energyNeed: math.unit(2000, "kcal"),
  15048. name: "Anthro",
  15049. image: {
  15050. source: "./media/characters/kee/anthro.svg",
  15051. extra: 3251/3184,
  15052. bottom: 250/3501
  15053. }
  15054. },
  15055. taur: {
  15056. height: math.unit(11, "feet"),
  15057. weight: math.unit(500, "lb"),
  15058. energyNeed: math.unit(5000, "kcal"),
  15059. name: "Taur",
  15060. image: {
  15061. source: "./media/characters/kee/taur.svg",
  15062. extra: 1362/1320,
  15063. bottom: 83/1445
  15064. }
  15065. },
  15066. },
  15067. [
  15068. {
  15069. name: "Normal",
  15070. height: math.unit(5 + 8/12, "feet"),
  15071. default: true
  15072. },
  15073. {
  15074. name: "Macro",
  15075. height: math.unit(35, "feet")
  15076. },
  15077. ]
  15078. ))
  15079. characterMakers.push(() => makeCharacter(
  15080. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15081. {
  15082. anthro: {
  15083. height: math.unit(7, "feet"),
  15084. weight: math.unit(190, "lb"),
  15085. name: "Anthro",
  15086. image: {
  15087. source: "./media/characters/cobalt-dracha/anthro.svg",
  15088. extra: 231 / 225,
  15089. bottom: 0.04
  15090. }
  15091. },
  15092. feral: {
  15093. height: math.unit(9 + 7 / 12, "feet"),
  15094. weight: math.unit(294, "lb"),
  15095. name: "Feral",
  15096. image: {
  15097. source: "./media/characters/cobalt-dracha/feral.svg",
  15098. extra: 692 / 633,
  15099. bottom: 0.05
  15100. }
  15101. },
  15102. },
  15103. [
  15104. {
  15105. name: "Normal",
  15106. height: math.unit(7, "feet"),
  15107. default: true
  15108. },
  15109. ]
  15110. ))
  15111. characterMakers.push(() => makeCharacter(
  15112. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15113. {
  15114. fallen: {
  15115. height: math.unit(11 + 8 / 12, "feet"),
  15116. weight: math.unit(485, "lb"),
  15117. name: "Java (Fallen)",
  15118. rename: true,
  15119. image: {
  15120. source: "./media/characters/java/fallen.svg",
  15121. extra: 226 / 208,
  15122. bottom: 0.005
  15123. }
  15124. },
  15125. godkin: {
  15126. height: math.unit(10 + 6 / 12, "feet"),
  15127. weight: math.unit(328, "lb"),
  15128. name: "Java (Godkin)",
  15129. rename: true,
  15130. image: {
  15131. source: "./media/characters/java/godkin.svg",
  15132. extra: 270 / 262,
  15133. bottom: 0.02
  15134. }
  15135. },
  15136. },
  15137. [
  15138. {
  15139. name: "Normal",
  15140. height: math.unit(11 + 8 / 12, "feet"),
  15141. default: true
  15142. },
  15143. ]
  15144. ))
  15145. characterMakers.push(() => makeCharacter(
  15146. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15147. {
  15148. front: {
  15149. height: math.unit(7 + 8 / 12, "feet"),
  15150. weight: math.unit(320, "lb"),
  15151. name: "Front",
  15152. image: {
  15153. source: "./media/characters/skoll/front.svg",
  15154. extra: 232 / 220,
  15155. bottom: 0.02
  15156. }
  15157. },
  15158. },
  15159. [
  15160. {
  15161. name: "Normal",
  15162. height: math.unit(7 + 8 / 12, "feet"),
  15163. default: true
  15164. },
  15165. ]
  15166. ))
  15167. characterMakers.push(() => makeCharacter(
  15168. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15169. {
  15170. front: {
  15171. height: math.unit(5 + 9 / 12, "feet"),
  15172. weight: math.unit(170, "lb"),
  15173. name: "Front",
  15174. image: {
  15175. source: "./media/characters/purna/front.svg",
  15176. extra: 239 / 229,
  15177. bottom: 0.01
  15178. }
  15179. },
  15180. },
  15181. [
  15182. {
  15183. name: "Normal",
  15184. height: math.unit(5 + 9 / 12, "feet"),
  15185. default: true
  15186. },
  15187. ]
  15188. ))
  15189. characterMakers.push(() => makeCharacter(
  15190. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15191. {
  15192. front: {
  15193. height: math.unit(5 + 9 / 12, "feet"),
  15194. weight: math.unit(142, "lb"),
  15195. name: "Front",
  15196. image: {
  15197. source: "./media/characters/kuva/front.svg",
  15198. extra: 281 / 271,
  15199. bottom: 0.006
  15200. }
  15201. },
  15202. },
  15203. [
  15204. {
  15205. name: "Normal",
  15206. height: math.unit(5 + 9 / 12, "feet"),
  15207. default: true
  15208. },
  15209. ]
  15210. ))
  15211. characterMakers.push(() => makeCharacter(
  15212. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15213. {
  15214. anthro: {
  15215. height: math.unit(9 + 2 / 12, "feet"),
  15216. weight: math.unit(270, "lb"),
  15217. name: "Anthro",
  15218. image: {
  15219. source: "./media/characters/embra/anthro.svg",
  15220. extra: 200 / 187,
  15221. bottom: 0.02
  15222. }
  15223. },
  15224. feral: {
  15225. height: math.unit(18 + 8 / 12, "feet"),
  15226. weight: math.unit(576, "lb"),
  15227. name: "Feral",
  15228. image: {
  15229. source: "./media/characters/embra/feral.svg",
  15230. extra: 152 / 137,
  15231. bottom: 0.037
  15232. }
  15233. },
  15234. },
  15235. [
  15236. {
  15237. name: "Normal",
  15238. height: math.unit(9 + 2 / 12, "feet"),
  15239. default: true
  15240. },
  15241. ]
  15242. ))
  15243. characterMakers.push(() => makeCharacter(
  15244. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15245. {
  15246. anthro: {
  15247. height: math.unit(10 + 9 / 12, "feet"),
  15248. weight: math.unit(224, "lb"),
  15249. name: "Anthro",
  15250. image: {
  15251. source: "./media/characters/grottos/anthro.svg",
  15252. extra: 350 / 332,
  15253. bottom: 0.045
  15254. }
  15255. },
  15256. feral: {
  15257. height: math.unit(20 + 7 / 12, "feet"),
  15258. weight: math.unit(629, "lb"),
  15259. name: "Feral",
  15260. image: {
  15261. source: "./media/characters/grottos/feral.svg",
  15262. extra: 207 / 190,
  15263. bottom: 0.05
  15264. }
  15265. },
  15266. },
  15267. [
  15268. {
  15269. name: "Normal",
  15270. height: math.unit(10 + 9 / 12, "feet"),
  15271. default: true
  15272. },
  15273. ]
  15274. ))
  15275. characterMakers.push(() => makeCharacter(
  15276. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15277. {
  15278. anthro: {
  15279. height: math.unit(9 + 6 / 12, "feet"),
  15280. weight: math.unit(298, "lb"),
  15281. name: "Anthro",
  15282. image: {
  15283. source: "./media/characters/frifna/anthro.svg",
  15284. extra: 282 / 269,
  15285. bottom: 0.015
  15286. }
  15287. },
  15288. feral: {
  15289. height: math.unit(16 + 2 / 12, "feet"),
  15290. weight: math.unit(624, "lb"),
  15291. name: "Feral",
  15292. image: {
  15293. source: "./media/characters/frifna/feral.svg"
  15294. }
  15295. },
  15296. },
  15297. [
  15298. {
  15299. name: "Normal",
  15300. height: math.unit(9 + 6 / 12, "feet"),
  15301. default: true
  15302. },
  15303. ]
  15304. ))
  15305. characterMakers.push(() => makeCharacter(
  15306. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15307. {
  15308. front: {
  15309. height: math.unit(6 + 2 / 12, "feet"),
  15310. weight: math.unit(168, "lb"),
  15311. name: "Front",
  15312. image: {
  15313. source: "./media/characters/elise/front.svg",
  15314. extra: 276 / 271
  15315. }
  15316. },
  15317. },
  15318. [
  15319. {
  15320. name: "Normal",
  15321. height: math.unit(6 + 2 / 12, "feet"),
  15322. default: true
  15323. },
  15324. ]
  15325. ))
  15326. characterMakers.push(() => makeCharacter(
  15327. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15328. {
  15329. front: {
  15330. height: math.unit(5 + 10 / 12, "feet"),
  15331. weight: math.unit(210, "lb"),
  15332. name: "Front",
  15333. image: {
  15334. source: "./media/characters/glade/front.svg",
  15335. extra: 258 / 247,
  15336. bottom: 0.008
  15337. }
  15338. },
  15339. },
  15340. [
  15341. {
  15342. name: "Normal",
  15343. height: math.unit(5 + 10 / 12, "feet"),
  15344. default: true
  15345. },
  15346. ]
  15347. ))
  15348. characterMakers.push(() => makeCharacter(
  15349. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15350. {
  15351. front: {
  15352. height: math.unit(5 + 10 / 12, "feet"),
  15353. weight: math.unit(129, "lb"),
  15354. name: "Front",
  15355. image: {
  15356. source: "./media/characters/rina/front.svg",
  15357. extra: 266 / 255,
  15358. bottom: 0.005
  15359. }
  15360. },
  15361. },
  15362. [
  15363. {
  15364. name: "Normal",
  15365. height: math.unit(5 + 10 / 12, "feet"),
  15366. default: true
  15367. },
  15368. ]
  15369. ))
  15370. characterMakers.push(() => makeCharacter(
  15371. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15372. {
  15373. front: {
  15374. height: math.unit(6 + 1 / 12, "feet"),
  15375. weight: math.unit(192, "lb"),
  15376. name: "Front",
  15377. image: {
  15378. source: "./media/characters/veronica/front.svg",
  15379. extra: 319 / 309,
  15380. bottom: 0.005
  15381. }
  15382. },
  15383. },
  15384. [
  15385. {
  15386. name: "Normal",
  15387. height: math.unit(6 + 1 / 12, "feet"),
  15388. default: true
  15389. },
  15390. ]
  15391. ))
  15392. characterMakers.push(() => makeCharacter(
  15393. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15394. {
  15395. front: {
  15396. height: math.unit(9 + 3 / 12, "feet"),
  15397. weight: math.unit(1100, "lb"),
  15398. name: "Front",
  15399. image: {
  15400. source: "./media/characters/braxton/front.svg",
  15401. extra: 1057 / 984,
  15402. bottom: 0.05
  15403. }
  15404. },
  15405. },
  15406. [
  15407. {
  15408. name: "Normal",
  15409. height: math.unit(9 + 3 / 12, "feet")
  15410. },
  15411. {
  15412. name: "Giant",
  15413. height: math.unit(300, "feet"),
  15414. default: true
  15415. },
  15416. {
  15417. name: "Macro",
  15418. height: math.unit(700, "feet")
  15419. },
  15420. {
  15421. name: "Megamacro",
  15422. height: math.unit(6000, "feet")
  15423. },
  15424. ]
  15425. ))
  15426. characterMakers.push(() => makeCharacter(
  15427. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15428. {
  15429. front: {
  15430. height: math.unit(6 + 7 / 12, "feet"),
  15431. weight: math.unit(150, "lb"),
  15432. name: "Front",
  15433. image: {
  15434. source: "./media/characters/blue-feyonics/front.svg",
  15435. extra: 1403 / 1306,
  15436. bottom: 0.047
  15437. }
  15438. },
  15439. },
  15440. [
  15441. {
  15442. name: "Normal",
  15443. height: math.unit(6 + 7 / 12, "feet"),
  15444. default: true
  15445. },
  15446. ]
  15447. ))
  15448. characterMakers.push(() => makeCharacter(
  15449. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15450. {
  15451. front: {
  15452. height: math.unit(1.8, "meters"),
  15453. weight: math.unit(60, "kg"),
  15454. name: "Front",
  15455. image: {
  15456. source: "./media/characters/maxwell/front.svg",
  15457. extra: 2060 / 1873
  15458. }
  15459. },
  15460. },
  15461. [
  15462. {
  15463. name: "Micro",
  15464. height: math.unit(1, "mm")
  15465. },
  15466. {
  15467. name: "Normal",
  15468. height: math.unit(1.8, "meter"),
  15469. default: true
  15470. },
  15471. {
  15472. name: "Macro",
  15473. height: math.unit(30, "meters")
  15474. },
  15475. {
  15476. name: "Megamacro",
  15477. height: math.unit(10, "km")
  15478. },
  15479. ]
  15480. ))
  15481. characterMakers.push(() => makeCharacter(
  15482. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15483. {
  15484. front: {
  15485. height: math.unit(6, "feet"),
  15486. weight: math.unit(150, "lb"),
  15487. name: "Front",
  15488. image: {
  15489. source: "./media/characters/jack/front.svg",
  15490. extra: 1754 / 1640,
  15491. bottom: 0.01
  15492. }
  15493. },
  15494. },
  15495. [
  15496. {
  15497. name: "Normal",
  15498. height: math.unit(80000, "feet"),
  15499. default: true
  15500. },
  15501. {
  15502. name: "Max size",
  15503. height: math.unit(10, "lightyears")
  15504. },
  15505. ]
  15506. ))
  15507. characterMakers.push(() => makeCharacter(
  15508. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15509. {
  15510. upright: {
  15511. height: math.unit(7, "feet"),
  15512. weight: math.unit(170, "lb"),
  15513. name: "Upright",
  15514. image: {
  15515. source: "./media/characters/cafat/upright.svg",
  15516. bottom: 0.01
  15517. }
  15518. },
  15519. uprightFull: {
  15520. height: math.unit(7, "feet"),
  15521. weight: math.unit(170, "lb"),
  15522. name: "Upright (Full)",
  15523. image: {
  15524. source: "./media/characters/cafat/upright-full.svg",
  15525. bottom: 0.01
  15526. }
  15527. },
  15528. side: {
  15529. height: math.unit(5, "feet"),
  15530. weight: math.unit(150, "lb"),
  15531. name: "Side",
  15532. image: {
  15533. source: "./media/characters/cafat/side.svg"
  15534. }
  15535. },
  15536. },
  15537. [
  15538. {
  15539. name: "Small",
  15540. height: math.unit(7, "feet"),
  15541. default: true
  15542. },
  15543. {
  15544. name: "Large",
  15545. height: math.unit(15.5, "feet")
  15546. },
  15547. ]
  15548. ))
  15549. characterMakers.push(() => makeCharacter(
  15550. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15551. {
  15552. front: {
  15553. height: math.unit(6, "feet"),
  15554. weight: math.unit(150, "lb"),
  15555. name: "Front",
  15556. image: {
  15557. source: "./media/characters/verin-raharra/front.svg",
  15558. extra: 5019 / 4835,
  15559. bottom: 0.023
  15560. }
  15561. },
  15562. },
  15563. [
  15564. {
  15565. name: "Normal",
  15566. height: math.unit(7 + 5 / 12, "feet"),
  15567. default: true
  15568. },
  15569. {
  15570. name: "Upsized",
  15571. height: math.unit(20, "feet")
  15572. },
  15573. ]
  15574. ))
  15575. characterMakers.push(() => makeCharacter(
  15576. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15577. {
  15578. front: {
  15579. height: math.unit(7, "feet"),
  15580. weight: math.unit(230, "lb"),
  15581. name: "Front",
  15582. image: {
  15583. source: "./media/characters/nakata/front.svg",
  15584. extra: 1.005,
  15585. bottom: 0.01
  15586. }
  15587. },
  15588. },
  15589. [
  15590. {
  15591. name: "Normal",
  15592. height: math.unit(7, "feet"),
  15593. default: true
  15594. },
  15595. {
  15596. name: "Big",
  15597. height: math.unit(14, "feet")
  15598. },
  15599. {
  15600. name: "Macro",
  15601. height: math.unit(400, "feet")
  15602. },
  15603. ]
  15604. ))
  15605. characterMakers.push(() => makeCharacter(
  15606. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15607. {
  15608. front: {
  15609. height: math.unit(4.91, "feet"),
  15610. weight: math.unit(100, "lb"),
  15611. name: "Front",
  15612. image: {
  15613. source: "./media/characters/lily/front.svg",
  15614. extra: 1585 / 1415,
  15615. bottom: 0.02
  15616. }
  15617. },
  15618. },
  15619. [
  15620. {
  15621. name: "Normal",
  15622. height: math.unit(4.91, "feet"),
  15623. default: true
  15624. },
  15625. ]
  15626. ))
  15627. characterMakers.push(() => makeCharacter(
  15628. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15629. {
  15630. laying: {
  15631. height: math.unit(4 + 4 / 12, "feet"),
  15632. weight: math.unit(600, "lb"),
  15633. name: "Laying",
  15634. image: {
  15635. source: "./media/characters/sheila/laying.svg",
  15636. extra: 1333 / 1265,
  15637. bottom: 0.16
  15638. }
  15639. },
  15640. },
  15641. [
  15642. {
  15643. name: "Normal",
  15644. height: math.unit(4 + 4 / 12, "feet"),
  15645. default: true
  15646. },
  15647. ]
  15648. ))
  15649. characterMakers.push(() => makeCharacter(
  15650. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15651. {
  15652. front: {
  15653. height: math.unit(6, "feet"),
  15654. weight: math.unit(190, "lb"),
  15655. name: "Front",
  15656. image: {
  15657. source: "./media/characters/sax/front.svg",
  15658. extra: 1187 / 973,
  15659. bottom: 0.042
  15660. }
  15661. },
  15662. },
  15663. [
  15664. {
  15665. name: "Micro",
  15666. height: math.unit(4, "inches"),
  15667. default: true
  15668. },
  15669. ]
  15670. ))
  15671. characterMakers.push(() => makeCharacter(
  15672. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15673. {
  15674. front: {
  15675. height: math.unit(6, "feet"),
  15676. weight: math.unit(150, "lb"),
  15677. name: "Front",
  15678. image: {
  15679. source: "./media/characters/pandora/front.svg",
  15680. extra: 2720 / 2556,
  15681. bottom: 0.015
  15682. }
  15683. },
  15684. back: {
  15685. height: math.unit(6, "feet"),
  15686. weight: math.unit(150, "lb"),
  15687. name: "Back",
  15688. image: {
  15689. source: "./media/characters/pandora/back.svg",
  15690. extra: 2720 / 2556,
  15691. bottom: 0.01
  15692. }
  15693. },
  15694. beans: {
  15695. height: math.unit(6 / 8, "feet"),
  15696. name: "Beans",
  15697. image: {
  15698. source: "./media/characters/pandora/beans.svg"
  15699. }
  15700. },
  15701. skirt: {
  15702. height: math.unit(6, "feet"),
  15703. weight: math.unit(150, "lb"),
  15704. name: "Skirt",
  15705. image: {
  15706. source: "./media/characters/pandora/skirt.svg",
  15707. extra: 1622 / 1525,
  15708. bottom: 0.015
  15709. }
  15710. },
  15711. hoodie: {
  15712. height: math.unit(6, "feet"),
  15713. weight: math.unit(150, "lb"),
  15714. name: "Hoodie",
  15715. image: {
  15716. source: "./media/characters/pandora/hoodie.svg",
  15717. extra: 1622 / 1525,
  15718. bottom: 0.015
  15719. }
  15720. },
  15721. casual: {
  15722. height: math.unit(6, "feet"),
  15723. weight: math.unit(150, "lb"),
  15724. name: "Casual",
  15725. image: {
  15726. source: "./media/characters/pandora/casual.svg",
  15727. extra: 1622 / 1525,
  15728. bottom: 0.015
  15729. }
  15730. },
  15731. },
  15732. [
  15733. {
  15734. name: "Normal",
  15735. height: math.unit(6, "feet")
  15736. },
  15737. {
  15738. name: "Big Steppy",
  15739. height: math.unit(1, "km"),
  15740. default: true
  15741. },
  15742. ]
  15743. ))
  15744. characterMakers.push(() => makeCharacter(
  15745. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15746. {
  15747. side: {
  15748. height: math.unit(10, "feet"),
  15749. weight: math.unit(800, "kg"),
  15750. name: "Side",
  15751. image: {
  15752. source: "./media/characters/venio-darcony/side.svg",
  15753. extra: 1373 / 1003,
  15754. bottom: 0.037
  15755. }
  15756. },
  15757. front: {
  15758. height: math.unit(19, "feet"),
  15759. weight: math.unit(800, "kg"),
  15760. name: "Front",
  15761. image: {
  15762. source: "./media/characters/venio-darcony/front.svg"
  15763. }
  15764. },
  15765. back: {
  15766. height: math.unit(19, "feet"),
  15767. weight: math.unit(800, "kg"),
  15768. name: "Back",
  15769. image: {
  15770. source: "./media/characters/venio-darcony/back.svg"
  15771. }
  15772. },
  15773. sideNsfw: {
  15774. height: math.unit(10, "feet"),
  15775. weight: math.unit(800, "kg"),
  15776. name: "Side (NSFW)",
  15777. image: {
  15778. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15779. extra: 1373 / 1003,
  15780. bottom: 0.037
  15781. }
  15782. },
  15783. frontNsfw: {
  15784. height: math.unit(19, "feet"),
  15785. weight: math.unit(800, "kg"),
  15786. name: "Front (NSFW)",
  15787. image: {
  15788. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15789. }
  15790. },
  15791. backNsfw: {
  15792. height: math.unit(19, "feet"),
  15793. weight: math.unit(800, "kg"),
  15794. name: "Back (NSFW)",
  15795. image: {
  15796. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15797. }
  15798. },
  15799. sideArmored: {
  15800. height: math.unit(10, "feet"),
  15801. weight: math.unit(800, "kg"),
  15802. name: "Side (Armored)",
  15803. image: {
  15804. source: "./media/characters/venio-darcony/side-armored.svg",
  15805. extra: 1373 / 1003,
  15806. bottom: 0.037
  15807. }
  15808. },
  15809. frontArmored: {
  15810. height: math.unit(19, "feet"),
  15811. weight: math.unit(900, "kg"),
  15812. name: "Front (Armored)",
  15813. image: {
  15814. source: "./media/characters/venio-darcony/front-armored.svg"
  15815. }
  15816. },
  15817. backArmored: {
  15818. height: math.unit(19, "feet"),
  15819. weight: math.unit(900, "kg"),
  15820. name: "Back (Armored)",
  15821. image: {
  15822. source: "./media/characters/venio-darcony/back-armored.svg"
  15823. }
  15824. },
  15825. sword: {
  15826. height: math.unit(10, "feet"),
  15827. weight: math.unit(50, "lb"),
  15828. name: "Sword",
  15829. image: {
  15830. source: "./media/characters/venio-darcony/sword.svg"
  15831. }
  15832. },
  15833. },
  15834. [
  15835. {
  15836. name: "Normal",
  15837. height: math.unit(10, "feet")
  15838. },
  15839. {
  15840. name: "Macro",
  15841. height: math.unit(130, "feet"),
  15842. default: true
  15843. },
  15844. {
  15845. name: "Macro+",
  15846. height: math.unit(240, "feet")
  15847. },
  15848. ]
  15849. ))
  15850. characterMakers.push(() => makeCharacter(
  15851. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15852. {
  15853. front: {
  15854. height: math.unit(6, "feet"),
  15855. weight: math.unit(150, "lb"),
  15856. name: "Front",
  15857. image: {
  15858. source: "./media/characters/veski/front.svg",
  15859. extra: 1299 / 1225,
  15860. bottom: 0.04
  15861. }
  15862. },
  15863. back: {
  15864. height: math.unit(6, "feet"),
  15865. weight: math.unit(150, "lb"),
  15866. name: "Back",
  15867. image: {
  15868. source: "./media/characters/veski/back.svg",
  15869. extra: 1299 / 1225,
  15870. bottom: 0.008
  15871. }
  15872. },
  15873. maw: {
  15874. height: math.unit(1.5 * 1.21, "feet"),
  15875. name: "Maw",
  15876. image: {
  15877. source: "./media/characters/veski/maw.svg"
  15878. }
  15879. },
  15880. },
  15881. [
  15882. {
  15883. name: "Macro",
  15884. height: math.unit(2, "km"),
  15885. default: true
  15886. },
  15887. ]
  15888. ))
  15889. characterMakers.push(() => makeCharacter(
  15890. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15891. {
  15892. front: {
  15893. height: math.unit(5 + 7 / 12, "feet"),
  15894. name: "Front",
  15895. image: {
  15896. source: "./media/characters/isabelle/front.svg",
  15897. extra: 2130 / 1976,
  15898. bottom: 0.05
  15899. }
  15900. },
  15901. },
  15902. [
  15903. {
  15904. name: "Supermicro",
  15905. height: math.unit(10, "micrometers")
  15906. },
  15907. {
  15908. name: "Micro",
  15909. height: math.unit(1, "inch")
  15910. },
  15911. {
  15912. name: "Tiny",
  15913. height: math.unit(5, "inches")
  15914. },
  15915. {
  15916. name: "Standard",
  15917. height: math.unit(5 + 7 / 12, "inches")
  15918. },
  15919. {
  15920. name: "Macro",
  15921. height: math.unit(80, "meters"),
  15922. default: true
  15923. },
  15924. {
  15925. name: "Megamacro",
  15926. height: math.unit(250, "meters")
  15927. },
  15928. {
  15929. name: "Gigamacro",
  15930. height: math.unit(5, "km")
  15931. },
  15932. {
  15933. name: "Cosmic",
  15934. height: math.unit(2.5e6, "miles")
  15935. },
  15936. ]
  15937. ))
  15938. characterMakers.push(() => makeCharacter(
  15939. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15940. {
  15941. front: {
  15942. height: math.unit(6, "feet"),
  15943. weight: math.unit(150, "lb"),
  15944. name: "Front",
  15945. image: {
  15946. source: "./media/characters/hanzo/front.svg",
  15947. extra: 374 / 344,
  15948. bottom: 0.02
  15949. }
  15950. },
  15951. },
  15952. [
  15953. {
  15954. name: "Normal",
  15955. height: math.unit(8, "feet"),
  15956. default: true
  15957. },
  15958. ]
  15959. ))
  15960. characterMakers.push(() => makeCharacter(
  15961. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15962. {
  15963. front: {
  15964. height: math.unit(7, "feet"),
  15965. weight: math.unit(130, "lb"),
  15966. name: "Front",
  15967. image: {
  15968. source: "./media/characters/anna/front.svg",
  15969. extra: 169 / 145,
  15970. bottom: 0.06
  15971. }
  15972. },
  15973. full: {
  15974. height: math.unit(4.96, "feet"),
  15975. weight: math.unit(220, "lb"),
  15976. name: "Full",
  15977. image: {
  15978. source: "./media/characters/anna/full.svg",
  15979. extra: 138 / 114,
  15980. bottom: 0.15
  15981. }
  15982. },
  15983. tongue: {
  15984. height: math.unit(2.53, "feet"),
  15985. name: "Tongue",
  15986. image: {
  15987. source: "./media/characters/anna/tongue.svg"
  15988. }
  15989. },
  15990. },
  15991. [
  15992. {
  15993. name: "Normal",
  15994. height: math.unit(7, "feet"),
  15995. default: true
  15996. },
  15997. ]
  15998. ))
  15999. characterMakers.push(() => makeCharacter(
  16000. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16001. {
  16002. front: {
  16003. height: math.unit(7, "feet"),
  16004. weight: math.unit(150, "lb"),
  16005. name: "Front",
  16006. image: {
  16007. source: "./media/characters/ian-corvid/front.svg",
  16008. extra: 150 / 142,
  16009. bottom: 0.02
  16010. }
  16011. },
  16012. back: {
  16013. height: math.unit(7, "feet"),
  16014. weight: math.unit(150, "lb"),
  16015. name: "Back",
  16016. image: {
  16017. source: "./media/characters/ian-corvid/back.svg",
  16018. extra: 150 / 143,
  16019. bottom: 0.01
  16020. }
  16021. },
  16022. stomping: {
  16023. height: math.unit(7, "feet"),
  16024. weight: math.unit(150, "lb"),
  16025. name: "Stomping",
  16026. image: {
  16027. source: "./media/characters/ian-corvid/stomping.svg",
  16028. extra: 76 / 72
  16029. }
  16030. },
  16031. sitting: {
  16032. height: math.unit(7 / 1.8, "feet"),
  16033. weight: math.unit(150, "lb"),
  16034. name: "Sitting",
  16035. image: {
  16036. source: "./media/characters/ian-corvid/sitting.svg",
  16037. extra: 1400 / 1269,
  16038. bottom: 0.15
  16039. }
  16040. },
  16041. },
  16042. [
  16043. {
  16044. name: "Tiny Microw",
  16045. height: math.unit(1, "inch")
  16046. },
  16047. {
  16048. name: "Microw",
  16049. height: math.unit(6, "inches")
  16050. },
  16051. {
  16052. name: "Crow",
  16053. height: math.unit(7 + 1 / 12, "feet"),
  16054. default: true
  16055. },
  16056. {
  16057. name: "Macrow",
  16058. height: math.unit(176, "feet")
  16059. },
  16060. ]
  16061. ))
  16062. characterMakers.push(() => makeCharacter(
  16063. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16064. {
  16065. front: {
  16066. height: math.unit(5 + 7 / 12, "feet"),
  16067. weight: math.unit(147, "lb"),
  16068. name: "Front",
  16069. image: {
  16070. source: "./media/characters/natalie-kellon/front.svg",
  16071. extra: 1214 / 1141,
  16072. bottom: 0.02
  16073. }
  16074. },
  16075. },
  16076. [
  16077. {
  16078. name: "Micro",
  16079. height: math.unit(1 / 16, "inch")
  16080. },
  16081. {
  16082. name: "Tiny",
  16083. height: math.unit(4, "inches")
  16084. },
  16085. {
  16086. name: "Normal",
  16087. height: math.unit(5 + 7 / 12, "feet"),
  16088. default: true
  16089. },
  16090. {
  16091. name: "Amazon",
  16092. height: math.unit(12, "feet")
  16093. },
  16094. {
  16095. name: "Giantess",
  16096. height: math.unit(160, "meters")
  16097. },
  16098. {
  16099. name: "Titaness",
  16100. height: math.unit(800, "meters")
  16101. },
  16102. ]
  16103. ))
  16104. characterMakers.push(() => makeCharacter(
  16105. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16106. {
  16107. front: {
  16108. height: math.unit(6, "feet"),
  16109. weight: math.unit(150, "lb"),
  16110. name: "Front",
  16111. image: {
  16112. source: "./media/characters/alluria/front.svg",
  16113. extra: 806 / 738,
  16114. bottom: 0.01
  16115. }
  16116. },
  16117. side: {
  16118. height: math.unit(6, "feet"),
  16119. weight: math.unit(150, "lb"),
  16120. name: "Side",
  16121. image: {
  16122. source: "./media/characters/alluria/side.svg",
  16123. extra: 800 / 750,
  16124. }
  16125. },
  16126. back: {
  16127. height: math.unit(6, "feet"),
  16128. weight: math.unit(150, "lb"),
  16129. name: "Back",
  16130. image: {
  16131. source: "./media/characters/alluria/back.svg",
  16132. extra: 806 / 738,
  16133. }
  16134. },
  16135. frontMaid: {
  16136. height: math.unit(6, "feet"),
  16137. weight: math.unit(150, "lb"),
  16138. name: "Front (Maid)",
  16139. image: {
  16140. source: "./media/characters/alluria/front-maid.svg",
  16141. extra: 806 / 738,
  16142. bottom: 0.01
  16143. }
  16144. },
  16145. sideMaid: {
  16146. height: math.unit(6, "feet"),
  16147. weight: math.unit(150, "lb"),
  16148. name: "Side (Maid)",
  16149. image: {
  16150. source: "./media/characters/alluria/side-maid.svg",
  16151. extra: 800 / 750,
  16152. bottom: 0.005
  16153. }
  16154. },
  16155. backMaid: {
  16156. height: math.unit(6, "feet"),
  16157. weight: math.unit(150, "lb"),
  16158. name: "Back (Maid)",
  16159. image: {
  16160. source: "./media/characters/alluria/back-maid.svg",
  16161. extra: 806 / 738,
  16162. }
  16163. },
  16164. },
  16165. [
  16166. {
  16167. name: "Micro",
  16168. height: math.unit(6, "inches"),
  16169. default: true
  16170. },
  16171. ]
  16172. ))
  16173. characterMakers.push(() => makeCharacter(
  16174. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16175. {
  16176. front: {
  16177. height: math.unit(6, "feet"),
  16178. weight: math.unit(150, "lb"),
  16179. name: "Front",
  16180. image: {
  16181. source: "./media/characters/kyle/front.svg",
  16182. extra: 1069 / 962,
  16183. bottom: 77.228 / 1727.45
  16184. }
  16185. },
  16186. },
  16187. [
  16188. {
  16189. name: "Macro",
  16190. height: math.unit(150, "feet"),
  16191. default: true
  16192. },
  16193. ]
  16194. ))
  16195. characterMakers.push(() => makeCharacter(
  16196. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16197. {
  16198. front: {
  16199. height: math.unit(6, "feet"),
  16200. weight: math.unit(300, "lb"),
  16201. name: "Front",
  16202. image: {
  16203. source: "./media/characters/duncan/front.svg",
  16204. extra: 1650 / 1482,
  16205. bottom: 0.05
  16206. }
  16207. },
  16208. },
  16209. [
  16210. {
  16211. name: "Macro",
  16212. height: math.unit(100, "feet"),
  16213. default: true
  16214. },
  16215. ]
  16216. ))
  16217. characterMakers.push(() => makeCharacter(
  16218. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16219. {
  16220. front: {
  16221. height: math.unit(5 + 4 / 12, "feet"),
  16222. weight: math.unit(220, "lb"),
  16223. name: "Front",
  16224. image: {
  16225. source: "./media/characters/memory/front.svg",
  16226. extra: 3641 / 3545,
  16227. bottom: 0.03
  16228. }
  16229. },
  16230. back: {
  16231. height: math.unit(5 + 4 / 12, "feet"),
  16232. weight: math.unit(220, "lb"),
  16233. name: "Back",
  16234. image: {
  16235. source: "./media/characters/memory/back.svg",
  16236. extra: 3641 / 3545,
  16237. bottom: 0.025
  16238. }
  16239. },
  16240. frontSkirt: {
  16241. height: math.unit(5 + 4 / 12, "feet"),
  16242. weight: math.unit(220, "lb"),
  16243. name: "Front (Skirt)",
  16244. image: {
  16245. source: "./media/characters/memory/front-skirt.svg",
  16246. extra: 3641 / 3545,
  16247. bottom: 0.03
  16248. }
  16249. },
  16250. frontDress: {
  16251. height: math.unit(5 + 4 / 12, "feet"),
  16252. weight: math.unit(220, "lb"),
  16253. name: "Front (Dress)",
  16254. image: {
  16255. source: "./media/characters/memory/front-dress.svg",
  16256. extra: 3641 / 3545,
  16257. bottom: 0.03
  16258. }
  16259. },
  16260. },
  16261. [
  16262. {
  16263. name: "Micro",
  16264. height: math.unit(6, "inches"),
  16265. default: true
  16266. },
  16267. {
  16268. name: "Normal",
  16269. height: math.unit(5 + 4 / 12, "feet")
  16270. },
  16271. ]
  16272. ))
  16273. characterMakers.push(() => makeCharacter(
  16274. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16275. {
  16276. front: {
  16277. height: math.unit(4 + 11 / 12, "feet"),
  16278. weight: math.unit(100, "lb"),
  16279. name: "Front",
  16280. image: {
  16281. source: "./media/characters/luno/front.svg",
  16282. extra: 1535 / 1487,
  16283. bottom: 0.03
  16284. }
  16285. },
  16286. },
  16287. [
  16288. {
  16289. name: "Micro",
  16290. height: math.unit(3, "inches")
  16291. },
  16292. {
  16293. name: "Normal",
  16294. height: math.unit(4 + 11 / 12, "feet"),
  16295. default: true
  16296. },
  16297. {
  16298. name: "Macro",
  16299. height: math.unit(300, "feet")
  16300. },
  16301. {
  16302. name: "Megamacro",
  16303. height: math.unit(700, "miles")
  16304. },
  16305. ]
  16306. ))
  16307. characterMakers.push(() => makeCharacter(
  16308. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16309. {
  16310. front: {
  16311. height: math.unit(6 + 2 / 12, "feet"),
  16312. weight: math.unit(170, "lb"),
  16313. name: "Front",
  16314. image: {
  16315. source: "./media/characters/jamesy/front.svg",
  16316. extra: 440 / 382,
  16317. bottom: 0.005
  16318. }
  16319. },
  16320. },
  16321. [
  16322. {
  16323. name: "Micro",
  16324. height: math.unit(3, "inches")
  16325. },
  16326. {
  16327. name: "Normal",
  16328. height: math.unit(6 + 2 / 12, "feet"),
  16329. default: true
  16330. },
  16331. {
  16332. name: "Macro",
  16333. height: math.unit(300, "feet")
  16334. },
  16335. {
  16336. name: "Megamacro",
  16337. height: math.unit(700, "miles")
  16338. },
  16339. ]
  16340. ))
  16341. characterMakers.push(() => makeCharacter(
  16342. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16343. {
  16344. front: {
  16345. height: math.unit(6, "feet"),
  16346. weight: math.unit(160, "lb"),
  16347. name: "Front",
  16348. image: {
  16349. source: "./media/characters/mark/front.svg",
  16350. extra: 3300 / 3100,
  16351. bottom: 136.42 / 3440.47
  16352. }
  16353. },
  16354. },
  16355. [
  16356. {
  16357. name: "Macro",
  16358. height: math.unit(120, "meters")
  16359. },
  16360. {
  16361. name: "Bigger Macro",
  16362. height: math.unit(350, "meters")
  16363. },
  16364. {
  16365. name: "Megamacro",
  16366. height: math.unit(8, "km"),
  16367. default: true
  16368. },
  16369. {
  16370. name: "Continental",
  16371. height: math.unit(4550, "km")
  16372. },
  16373. {
  16374. name: "Planetary",
  16375. height: math.unit(65000, "km")
  16376. },
  16377. ]
  16378. ))
  16379. characterMakers.push(() => makeCharacter(
  16380. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16381. {
  16382. front: {
  16383. height: math.unit(6, "feet"),
  16384. weight: math.unit(400, "lb"),
  16385. name: "Front",
  16386. image: {
  16387. source: "./media/characters/mac/front.svg",
  16388. extra: 1048 / 987.7,
  16389. bottom: 60 / 1107.6,
  16390. }
  16391. },
  16392. },
  16393. [
  16394. {
  16395. name: "Macro",
  16396. height: math.unit(500, "feet"),
  16397. default: true
  16398. },
  16399. ]
  16400. ))
  16401. characterMakers.push(() => makeCharacter(
  16402. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16403. {
  16404. front: {
  16405. height: math.unit(5 + 2 / 12, "feet"),
  16406. weight: math.unit(190, "lb"),
  16407. name: "Front",
  16408. image: {
  16409. source: "./media/characters/bari/front.svg",
  16410. extra: 3156 / 2880,
  16411. bottom: 0.03
  16412. }
  16413. },
  16414. back: {
  16415. height: math.unit(5 + 2 / 12, "feet"),
  16416. weight: math.unit(190, "lb"),
  16417. name: "Back",
  16418. image: {
  16419. source: "./media/characters/bari/back.svg",
  16420. extra: 3260 / 2834,
  16421. bottom: 0.025
  16422. }
  16423. },
  16424. frontPlush: {
  16425. height: math.unit(5 + 2 / 12, "feet"),
  16426. weight: math.unit(190, "lb"),
  16427. name: "Front (Plush)",
  16428. image: {
  16429. source: "./media/characters/bari/front-plush.svg",
  16430. extra: 1112 / 1061,
  16431. bottom: 0.002
  16432. }
  16433. },
  16434. },
  16435. [
  16436. {
  16437. name: "Micro",
  16438. height: math.unit(3, "inches")
  16439. },
  16440. {
  16441. name: "Normal",
  16442. height: math.unit(5 + 2 / 12, "feet"),
  16443. default: true
  16444. },
  16445. {
  16446. name: "Macro",
  16447. height: math.unit(20, "feet")
  16448. },
  16449. ]
  16450. ))
  16451. characterMakers.push(() => makeCharacter(
  16452. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16453. {
  16454. front: {
  16455. height: math.unit(6 + 1 / 12, "feet"),
  16456. weight: math.unit(275, "lb"),
  16457. name: "Front",
  16458. image: {
  16459. source: "./media/characters/hunter-misha-raven/front.svg"
  16460. }
  16461. },
  16462. },
  16463. [
  16464. {
  16465. name: "Mortal",
  16466. height: math.unit(6 + 1 / 12, "feet")
  16467. },
  16468. {
  16469. name: "Divine",
  16470. height: math.unit(1.12134e34, "parsecs"),
  16471. default: true
  16472. },
  16473. ]
  16474. ))
  16475. characterMakers.push(() => makeCharacter(
  16476. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16477. {
  16478. front: {
  16479. height: math.unit(6 + 3 / 12, "feet"),
  16480. weight: math.unit(220, "lb"),
  16481. name: "Front",
  16482. image: {
  16483. source: "./media/characters/max-calore/front.svg",
  16484. extra: 1700 / 1648,
  16485. bottom: 0.01
  16486. }
  16487. },
  16488. back: {
  16489. height: math.unit(6 + 3 / 12, "feet"),
  16490. weight: math.unit(220, "lb"),
  16491. name: "Back",
  16492. image: {
  16493. source: "./media/characters/max-calore/back.svg",
  16494. extra: 1700 / 1648,
  16495. bottom: 0.01
  16496. }
  16497. },
  16498. },
  16499. [
  16500. {
  16501. name: "Normal",
  16502. height: math.unit(6 + 3 / 12, "feet"),
  16503. default: true
  16504. },
  16505. ]
  16506. ))
  16507. characterMakers.push(() => makeCharacter(
  16508. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16509. {
  16510. side: {
  16511. height: math.unit(2 + 8 / 12, "feet"),
  16512. weight: math.unit(99, "lb"),
  16513. name: "Side",
  16514. image: {
  16515. source: "./media/characters/aspen/side.svg",
  16516. extra: 152 / 138,
  16517. bottom: 0.032
  16518. }
  16519. },
  16520. },
  16521. [
  16522. {
  16523. name: "Normal",
  16524. height: math.unit(2 + 8 / 12, "feet"),
  16525. default: true
  16526. },
  16527. ]
  16528. ))
  16529. characterMakers.push(() => makeCharacter(
  16530. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16531. {
  16532. side: {
  16533. height: math.unit(3 + 2 / 12, "feet"),
  16534. weight: math.unit(224, "lb"),
  16535. name: "Side",
  16536. image: {
  16537. source: "./media/characters/sheila-feral-wolf/side.svg",
  16538. extra: 179 / 166,
  16539. bottom: 0.03
  16540. }
  16541. },
  16542. },
  16543. [
  16544. {
  16545. name: "Normal",
  16546. height: math.unit(3 + 2 / 12, "feet"),
  16547. default: true
  16548. },
  16549. ]
  16550. ))
  16551. characterMakers.push(() => makeCharacter(
  16552. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16553. {
  16554. side: {
  16555. height: math.unit(1 + 9 / 12, "feet"),
  16556. weight: math.unit(38, "lb"),
  16557. name: "Side",
  16558. image: {
  16559. source: "./media/characters/michelle/side.svg",
  16560. extra: 147 / 136.7,
  16561. bottom: 0.03
  16562. }
  16563. },
  16564. },
  16565. [
  16566. {
  16567. name: "Normal",
  16568. height: math.unit(1 + 9 / 12, "feet"),
  16569. default: true
  16570. },
  16571. ]
  16572. ))
  16573. characterMakers.push(() => makeCharacter(
  16574. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16575. {
  16576. front: {
  16577. height: math.unit(1 + 1 / 12, "feet"),
  16578. weight: math.unit(18, "lb"),
  16579. name: "Front",
  16580. image: {
  16581. source: "./media/characters/nino/front.svg"
  16582. }
  16583. },
  16584. },
  16585. [
  16586. {
  16587. name: "Normal",
  16588. height: math.unit(1 + 1 / 12, "feet"),
  16589. default: true
  16590. },
  16591. ]
  16592. ))
  16593. characterMakers.push(() => makeCharacter(
  16594. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16595. {
  16596. front: {
  16597. height: math.unit(1, "feet"),
  16598. weight: math.unit(16, "lb"),
  16599. name: "Front",
  16600. image: {
  16601. source: "./media/characters/viola/front.svg"
  16602. }
  16603. },
  16604. },
  16605. [
  16606. {
  16607. name: "Normal",
  16608. height: math.unit(1, "feet"),
  16609. default: true
  16610. },
  16611. ]
  16612. ))
  16613. characterMakers.push(() => makeCharacter(
  16614. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16615. {
  16616. front: {
  16617. height: math.unit(6 + 5 / 12, "feet"),
  16618. weight: math.unit(580, "lb"),
  16619. name: "Front",
  16620. image: {
  16621. source: "./media/characters/atlas/front.svg",
  16622. extra: 298.5 / 290,
  16623. bottom: 0.015
  16624. }
  16625. },
  16626. },
  16627. [
  16628. {
  16629. name: "Normal",
  16630. height: math.unit(6 + 5 / 12, "feet"),
  16631. default: true
  16632. },
  16633. ]
  16634. ))
  16635. characterMakers.push(() => makeCharacter(
  16636. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16637. {
  16638. side: {
  16639. height: math.unit(1 + 10 / 12, "feet"),
  16640. weight: math.unit(25, "lb"),
  16641. name: "Side",
  16642. image: {
  16643. source: "./media/characters/davy/side.svg",
  16644. extra: 200 / 170,
  16645. bottom: 0.01
  16646. }
  16647. },
  16648. },
  16649. [
  16650. {
  16651. name: "Normal",
  16652. height: math.unit(1 + 10 / 12, "feet"),
  16653. default: true
  16654. },
  16655. ]
  16656. ))
  16657. characterMakers.push(() => makeCharacter(
  16658. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16659. {
  16660. side: {
  16661. height: math.unit(4 + 8 / 12, "feet"),
  16662. weight: math.unit(166, "lb"),
  16663. name: "Side",
  16664. image: {
  16665. source: "./media/characters/fiona/side.svg",
  16666. extra: 232 / 220,
  16667. bottom: 0.03
  16668. }
  16669. },
  16670. },
  16671. [
  16672. {
  16673. name: "Normal",
  16674. height: math.unit(4 + 8 / 12, "feet"),
  16675. default: true
  16676. },
  16677. ]
  16678. ))
  16679. characterMakers.push(() => makeCharacter(
  16680. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16681. {
  16682. front: {
  16683. height: math.unit(2, "feet"),
  16684. weight: math.unit(62, "lb"),
  16685. name: "Front",
  16686. image: {
  16687. source: "./media/characters/lyla/front.svg",
  16688. bottom: 0.1
  16689. }
  16690. },
  16691. },
  16692. [
  16693. {
  16694. name: "Normal",
  16695. height: math.unit(2, "feet"),
  16696. default: true
  16697. },
  16698. ]
  16699. ))
  16700. characterMakers.push(() => makeCharacter(
  16701. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16702. {
  16703. side: {
  16704. height: math.unit(1.8, "feet"),
  16705. weight: math.unit(44, "lb"),
  16706. name: "Side",
  16707. image: {
  16708. source: "./media/characters/perseus/side.svg",
  16709. bottom: 0.21
  16710. }
  16711. },
  16712. },
  16713. [
  16714. {
  16715. name: "Normal",
  16716. height: math.unit(1.8, "feet"),
  16717. default: true
  16718. },
  16719. ]
  16720. ))
  16721. characterMakers.push(() => makeCharacter(
  16722. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16723. {
  16724. side: {
  16725. height: math.unit(4 + 2 / 12, "feet"),
  16726. weight: math.unit(20, "lb"),
  16727. name: "Side",
  16728. image: {
  16729. source: "./media/characters/remus/side.svg"
  16730. }
  16731. },
  16732. },
  16733. [
  16734. {
  16735. name: "Normal",
  16736. height: math.unit(4 + 2 / 12, "feet"),
  16737. default: true
  16738. },
  16739. ]
  16740. ))
  16741. characterMakers.push(() => makeCharacter(
  16742. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16743. {
  16744. front: {
  16745. height: math.unit(4 + 11 / 12, "feet"),
  16746. weight: math.unit(114, "lb"),
  16747. name: "Front",
  16748. image: {
  16749. source: "./media/characters/raf/front.svg",
  16750. bottom: 20.5 / 1863
  16751. }
  16752. },
  16753. side: {
  16754. height: math.unit(4 + 11 / 12, "feet"),
  16755. weight: math.unit(114, "lb"),
  16756. name: "Side",
  16757. image: {
  16758. source: "./media/characters/raf/side.svg",
  16759. bottom: 22 / 1822
  16760. }
  16761. },
  16762. },
  16763. [
  16764. {
  16765. name: "Micro",
  16766. height: math.unit(2, "inches")
  16767. },
  16768. {
  16769. name: "Normal",
  16770. height: math.unit(4 + 11 / 12, "feet"),
  16771. default: true
  16772. },
  16773. {
  16774. name: "Macro",
  16775. height: math.unit(70, "feet")
  16776. },
  16777. ]
  16778. ))
  16779. characterMakers.push(() => makeCharacter(
  16780. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16781. {
  16782. front: {
  16783. height: math.unit(1.5, "meters"),
  16784. weight: math.unit(68, "kg"),
  16785. name: "Front",
  16786. image: {
  16787. source: "./media/characters/liam-einarr/front.svg",
  16788. extra: 2822 / 2666
  16789. }
  16790. },
  16791. back: {
  16792. height: math.unit(1.5, "meters"),
  16793. weight: math.unit(68, "kg"),
  16794. name: "Back",
  16795. image: {
  16796. source: "./media/characters/liam-einarr/back.svg",
  16797. extra: 2822 / 2666,
  16798. bottom: 0.015
  16799. }
  16800. },
  16801. },
  16802. [
  16803. {
  16804. name: "Normal",
  16805. height: math.unit(1.5, "meters"),
  16806. default: true
  16807. },
  16808. {
  16809. name: "Macro",
  16810. height: math.unit(150, "meters")
  16811. },
  16812. {
  16813. name: "Megamacro",
  16814. height: math.unit(35, "km")
  16815. },
  16816. ]
  16817. ))
  16818. characterMakers.push(() => makeCharacter(
  16819. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16820. {
  16821. front: {
  16822. height: math.unit(6, "feet"),
  16823. weight: math.unit(75, "kg"),
  16824. name: "Front",
  16825. image: {
  16826. source: "./media/characters/linda/front.svg",
  16827. extra: 930 / 874,
  16828. bottom: 0.004
  16829. }
  16830. },
  16831. },
  16832. [
  16833. {
  16834. name: "Normal",
  16835. height: math.unit(6, "feet"),
  16836. default: true
  16837. },
  16838. ]
  16839. ))
  16840. characterMakers.push(() => makeCharacter(
  16841. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16842. {
  16843. front: {
  16844. height: math.unit(6 + 8 / 12, "feet"),
  16845. weight: math.unit(220, "lb"),
  16846. name: "Front",
  16847. image: {
  16848. source: "./media/characters/caylex/front.svg",
  16849. extra: 821 / 772,
  16850. bottom: 0.07
  16851. }
  16852. },
  16853. back: {
  16854. height: math.unit(6 + 8 / 12, "feet"),
  16855. weight: math.unit(220, "lb"),
  16856. name: "Back",
  16857. image: {
  16858. source: "./media/characters/caylex/back.svg",
  16859. extra: 821 / 772,
  16860. bottom: 0.022
  16861. }
  16862. },
  16863. hand: {
  16864. height: math.unit(1.25, "feet"),
  16865. name: "Hand",
  16866. image: {
  16867. source: "./media/characters/caylex/hand.svg"
  16868. }
  16869. },
  16870. foot: {
  16871. height: math.unit(1.6, "feet"),
  16872. name: "Foot",
  16873. image: {
  16874. source: "./media/characters/caylex/foot.svg"
  16875. }
  16876. },
  16877. armored: {
  16878. height: math.unit(6 + 8 / 12, "feet"),
  16879. weight: math.unit(250, "lb"),
  16880. name: "Armored",
  16881. image: {
  16882. source: "./media/characters/caylex/armored.svg",
  16883. extra: 1420 / 1310,
  16884. bottom: 0.045
  16885. }
  16886. },
  16887. },
  16888. [
  16889. {
  16890. name: "Normal",
  16891. height: math.unit(6 + 8 / 12, "feet"),
  16892. default: true
  16893. },
  16894. {
  16895. name: "Normal+",
  16896. height: math.unit(12, "feet")
  16897. },
  16898. ]
  16899. ))
  16900. characterMakers.push(() => makeCharacter(
  16901. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16902. {
  16903. front: {
  16904. height: math.unit(7 + 6 / 12, "feet"),
  16905. weight: math.unit(288, "lb"),
  16906. name: "Front",
  16907. image: {
  16908. source: "./media/characters/alana/front.svg",
  16909. extra: 679 / 653,
  16910. bottom: 22.5 / 701
  16911. }
  16912. },
  16913. },
  16914. [
  16915. {
  16916. name: "Normal",
  16917. height: math.unit(7 + 6 / 12, "feet")
  16918. },
  16919. {
  16920. name: "Large",
  16921. height: math.unit(50, "feet")
  16922. },
  16923. {
  16924. name: "Macro",
  16925. height: math.unit(100, "feet"),
  16926. default: true
  16927. },
  16928. {
  16929. name: "Macro+",
  16930. height: math.unit(200, "feet")
  16931. },
  16932. ]
  16933. ))
  16934. characterMakers.push(() => makeCharacter(
  16935. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16936. {
  16937. front: {
  16938. height: math.unit(6 + 1 / 12, "feet"),
  16939. weight: math.unit(210, "lb"),
  16940. name: "Front",
  16941. image: {
  16942. source: "./media/characters/hasani/front.svg",
  16943. extra: 244 / 232,
  16944. bottom: 0.01
  16945. }
  16946. },
  16947. back: {
  16948. height: math.unit(6 + 1 / 12, "feet"),
  16949. weight: math.unit(210, "lb"),
  16950. name: "Back",
  16951. image: {
  16952. source: "./media/characters/hasani/back.svg",
  16953. extra: 244 / 232,
  16954. bottom: 0.01
  16955. }
  16956. },
  16957. },
  16958. [
  16959. {
  16960. name: "Normal",
  16961. height: math.unit(6 + 1 / 12, "feet")
  16962. },
  16963. {
  16964. name: "Macro",
  16965. height: math.unit(175, "feet"),
  16966. default: true
  16967. },
  16968. ]
  16969. ))
  16970. characterMakers.push(() => makeCharacter(
  16971. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16972. {
  16973. front: {
  16974. height: math.unit(1.82, "meters"),
  16975. weight: math.unit(140, "lb"),
  16976. name: "Front",
  16977. image: {
  16978. source: "./media/characters/nita/front.svg",
  16979. extra: 2473 / 2363,
  16980. bottom: 0.01
  16981. }
  16982. },
  16983. },
  16984. [
  16985. {
  16986. name: "Normal",
  16987. height: math.unit(1.82, "m")
  16988. },
  16989. {
  16990. name: "Macro",
  16991. height: math.unit(300, "m")
  16992. },
  16993. {
  16994. name: "Mistake Canon",
  16995. height: math.unit(0.5, "miles"),
  16996. default: true
  16997. },
  16998. {
  16999. name: "Big Mistake",
  17000. height: math.unit(13, "miles")
  17001. },
  17002. {
  17003. name: "Playing God",
  17004. height: math.unit(2450, "miles")
  17005. },
  17006. ]
  17007. ))
  17008. characterMakers.push(() => makeCharacter(
  17009. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17010. {
  17011. front: {
  17012. height: math.unit(4, "feet"),
  17013. weight: math.unit(120, "lb"),
  17014. name: "Front",
  17015. image: {
  17016. source: "./media/characters/shiriko/front.svg",
  17017. extra: 195 / 188
  17018. }
  17019. },
  17020. },
  17021. [
  17022. {
  17023. name: "Normal",
  17024. height: math.unit(4, "feet"),
  17025. default: true
  17026. },
  17027. ]
  17028. ))
  17029. characterMakers.push(() => makeCharacter(
  17030. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17031. {
  17032. front: {
  17033. height: math.unit(6, "feet"),
  17034. name: "front",
  17035. image: {
  17036. source: "./media/characters/deja/front.svg",
  17037. extra: 926 / 840,
  17038. bottom: 0.07
  17039. }
  17040. },
  17041. },
  17042. [
  17043. {
  17044. name: "Planck Length",
  17045. height: math.unit(1.6e-35, "meters")
  17046. },
  17047. {
  17048. name: "Normal",
  17049. height: math.unit(30.48, "meters"),
  17050. default: true
  17051. },
  17052. {
  17053. name: "Universal",
  17054. height: math.unit(8.8e26, "meters")
  17055. },
  17056. ]
  17057. ))
  17058. characterMakers.push(() => makeCharacter(
  17059. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17060. {
  17061. side: {
  17062. height: math.unit(8, "feet"),
  17063. weight: math.unit(6300, "lb"),
  17064. name: "Side",
  17065. image: {
  17066. source: "./media/characters/anima/side.svg",
  17067. bottom: 0.035
  17068. }
  17069. },
  17070. },
  17071. [
  17072. {
  17073. name: "Normal",
  17074. height: math.unit(8, "feet"),
  17075. default: true
  17076. },
  17077. ]
  17078. ))
  17079. characterMakers.push(() => makeCharacter(
  17080. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17081. {
  17082. front: {
  17083. height: math.unit(8, "feet"),
  17084. weight: math.unit(350, "lb"),
  17085. name: "Front",
  17086. image: {
  17087. source: "./media/characters/bianca/front.svg",
  17088. extra: 234 / 225,
  17089. bottom: 0.03
  17090. }
  17091. },
  17092. },
  17093. [
  17094. {
  17095. name: "Normal",
  17096. height: math.unit(8, "feet"),
  17097. default: true
  17098. },
  17099. ]
  17100. ))
  17101. characterMakers.push(() => makeCharacter(
  17102. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17103. {
  17104. front: {
  17105. height: math.unit(6, "feet"),
  17106. weight: math.unit(150, "lb"),
  17107. name: "Front",
  17108. image: {
  17109. source: "./media/characters/adinia/front.svg",
  17110. extra: 1845 / 1672,
  17111. bottom: 0.02
  17112. }
  17113. },
  17114. back: {
  17115. height: math.unit(6, "feet"),
  17116. weight: math.unit(150, "lb"),
  17117. name: "Back",
  17118. image: {
  17119. source: "./media/characters/adinia/back.svg",
  17120. extra: 1845 / 1672,
  17121. bottom: 0.002
  17122. }
  17123. },
  17124. },
  17125. [
  17126. {
  17127. name: "Normal",
  17128. height: math.unit(11 + 5 / 12, "feet"),
  17129. default: true
  17130. },
  17131. ]
  17132. ))
  17133. characterMakers.push(() => makeCharacter(
  17134. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17135. {
  17136. front: {
  17137. height: math.unit(3, "meters"),
  17138. weight: math.unit(200, "kg"),
  17139. name: "Front",
  17140. image: {
  17141. source: "./media/characters/lykasa/front.svg",
  17142. extra: 1076 / 976,
  17143. bottom: 0.06
  17144. }
  17145. },
  17146. },
  17147. [
  17148. {
  17149. name: "Normal",
  17150. height: math.unit(3, "meters")
  17151. },
  17152. {
  17153. name: "Kaiju",
  17154. height: math.unit(120, "meters"),
  17155. default: true
  17156. },
  17157. {
  17158. name: "Mega Kaiju",
  17159. height: math.unit(240, "km")
  17160. },
  17161. {
  17162. name: "Giga Kaiju",
  17163. height: math.unit(400, "megameters")
  17164. },
  17165. {
  17166. name: "Tera Kaiju",
  17167. height: math.unit(800, "gigameters")
  17168. },
  17169. {
  17170. name: "Kaiju Dragon Goddess",
  17171. height: math.unit(26, "zettaparsecs")
  17172. },
  17173. ]
  17174. ))
  17175. characterMakers.push(() => makeCharacter(
  17176. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17177. {
  17178. side: {
  17179. height: math.unit(283 / 124 * 6, "feet"),
  17180. weight: math.unit(35000, "lb"),
  17181. name: "Side",
  17182. image: {
  17183. source: "./media/characters/malfaren/side.svg",
  17184. extra: 2500 / 1010,
  17185. bottom: 0.01
  17186. }
  17187. },
  17188. front: {
  17189. height: math.unit(22.36, "feet"),
  17190. weight: math.unit(35000, "lb"),
  17191. name: "Front",
  17192. image: {
  17193. source: "./media/characters/malfaren/front.svg",
  17194. extra: 1631 / 1476,
  17195. bottom: 0.01
  17196. }
  17197. },
  17198. maw: {
  17199. height: math.unit(6.9, "feet"),
  17200. name: "Maw",
  17201. image: {
  17202. source: "./media/characters/malfaren/maw.svg"
  17203. }
  17204. },
  17205. },
  17206. [
  17207. {
  17208. name: "Big",
  17209. height: math.unit(283 / 162 * 6, "feet"),
  17210. },
  17211. {
  17212. name: "Bigger",
  17213. height: math.unit(283 / 124 * 6, "feet")
  17214. },
  17215. {
  17216. name: "Massive",
  17217. height: math.unit(283 / 92 * 6, "feet"),
  17218. default: true
  17219. },
  17220. {
  17221. name: "👀💦",
  17222. height: math.unit(283 / 73 * 6, "feet"),
  17223. },
  17224. ]
  17225. ))
  17226. characterMakers.push(() => makeCharacter(
  17227. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17228. {
  17229. front: {
  17230. height: math.unit(1.7, "m"),
  17231. weight: math.unit(70, "kg"),
  17232. name: "Front",
  17233. image: {
  17234. source: "./media/characters/kernel/front.svg",
  17235. extra: 222 / 210,
  17236. bottom: 0.007
  17237. }
  17238. },
  17239. },
  17240. [
  17241. {
  17242. name: "Nano",
  17243. height: math.unit(17, "micrometers")
  17244. },
  17245. {
  17246. name: "Micro",
  17247. height: math.unit(1.7, "mm")
  17248. },
  17249. {
  17250. name: "Small",
  17251. height: math.unit(1.7, "cm")
  17252. },
  17253. {
  17254. name: "Normal",
  17255. height: math.unit(1.7, "m"),
  17256. default: true
  17257. },
  17258. ]
  17259. ))
  17260. characterMakers.push(() => makeCharacter(
  17261. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17262. {
  17263. front: {
  17264. height: math.unit(1.75, "meters"),
  17265. weight: math.unit(65, "kg"),
  17266. name: "Front",
  17267. image: {
  17268. source: "./media/characters/jayne-folest/front.svg",
  17269. extra: 2115 / 2007,
  17270. bottom: 0.02
  17271. }
  17272. },
  17273. back: {
  17274. height: math.unit(1.75, "meters"),
  17275. weight: math.unit(65, "kg"),
  17276. name: "Back",
  17277. image: {
  17278. source: "./media/characters/jayne-folest/back.svg",
  17279. extra: 2115 / 2007,
  17280. bottom: 0.005
  17281. }
  17282. },
  17283. frontClothed: {
  17284. height: math.unit(1.75, "meters"),
  17285. weight: math.unit(65, "kg"),
  17286. name: "Front (Clothed)",
  17287. image: {
  17288. source: "./media/characters/jayne-folest/front-clothed.svg",
  17289. extra: 2115 / 2007,
  17290. bottom: 0.035
  17291. }
  17292. },
  17293. hand: {
  17294. height: math.unit(1 / 1.260, "feet"),
  17295. name: "Hand",
  17296. image: {
  17297. source: "./media/characters/jayne-folest/hand.svg"
  17298. }
  17299. },
  17300. foot: {
  17301. height: math.unit(1 / 0.918, "feet"),
  17302. name: "Foot",
  17303. image: {
  17304. source: "./media/characters/jayne-folest/foot.svg"
  17305. }
  17306. },
  17307. },
  17308. [
  17309. {
  17310. name: "Micro",
  17311. height: math.unit(4, "cm")
  17312. },
  17313. {
  17314. name: "Normal",
  17315. height: math.unit(1.75, "meters")
  17316. },
  17317. {
  17318. name: "Macro",
  17319. height: math.unit(47.5, "meters"),
  17320. default: true
  17321. },
  17322. ]
  17323. ))
  17324. characterMakers.push(() => makeCharacter(
  17325. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17326. {
  17327. front: {
  17328. height: math.unit(180, "cm"),
  17329. weight: math.unit(70, "kg"),
  17330. name: "Front",
  17331. image: {
  17332. source: "./media/characters/algier/front.svg",
  17333. extra: 596 / 572,
  17334. bottom: 0.04
  17335. }
  17336. },
  17337. back: {
  17338. height: math.unit(180, "cm"),
  17339. weight: math.unit(70, "kg"),
  17340. name: "Back",
  17341. image: {
  17342. source: "./media/characters/algier/back.svg",
  17343. extra: 596 / 572,
  17344. bottom: 0.025
  17345. }
  17346. },
  17347. frontdressed: {
  17348. height: math.unit(180, "cm"),
  17349. weight: math.unit(150, "kg"),
  17350. name: "Front-dressed",
  17351. image: {
  17352. source: "./media/characters/algier/front-dressed.svg",
  17353. extra: 596 / 572,
  17354. bottom: 0.038
  17355. }
  17356. },
  17357. },
  17358. [
  17359. {
  17360. name: "Micro",
  17361. height: math.unit(5, "cm")
  17362. },
  17363. {
  17364. name: "Normal",
  17365. height: math.unit(180, "cm"),
  17366. default: true
  17367. },
  17368. {
  17369. name: "Macro",
  17370. height: math.unit(64, "m")
  17371. },
  17372. ]
  17373. ))
  17374. characterMakers.push(() => makeCharacter(
  17375. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17376. {
  17377. upright: {
  17378. height: math.unit(7, "feet"),
  17379. weight: math.unit(300, "lb"),
  17380. name: "Upright",
  17381. image: {
  17382. source: "./media/characters/pretzel/upright.svg",
  17383. extra: 534 / 522,
  17384. bottom: 0.065
  17385. }
  17386. },
  17387. sprawling: {
  17388. height: math.unit(3.75, "feet"),
  17389. weight: math.unit(300, "lb"),
  17390. name: "Sprawling",
  17391. image: {
  17392. source: "./media/characters/pretzel/sprawling.svg",
  17393. extra: 314 / 281,
  17394. bottom: 0.1
  17395. }
  17396. },
  17397. tongue: {
  17398. height: math.unit(2, "feet"),
  17399. name: "Tongue",
  17400. image: {
  17401. source: "./media/characters/pretzel/tongue.svg"
  17402. }
  17403. },
  17404. },
  17405. [
  17406. {
  17407. name: "Normal",
  17408. height: math.unit(7, "feet"),
  17409. default: true
  17410. },
  17411. {
  17412. name: "Oversized",
  17413. height: math.unit(15, "feet")
  17414. },
  17415. {
  17416. name: "Huge",
  17417. height: math.unit(30, "feet")
  17418. },
  17419. {
  17420. name: "Macro",
  17421. height: math.unit(250, "feet")
  17422. },
  17423. ]
  17424. ))
  17425. characterMakers.push(() => makeCharacter(
  17426. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17427. {
  17428. sideFront: {
  17429. height: math.unit(5 + 2 / 12, "feet"),
  17430. weight: math.unit(120, "lb"),
  17431. name: "Front Side",
  17432. image: {
  17433. source: "./media/characters/roxi/side-front.svg",
  17434. extra: 2924 / 2717,
  17435. bottom: 0.08
  17436. }
  17437. },
  17438. sideBack: {
  17439. height: math.unit(5 + 2 / 12, "feet"),
  17440. weight: math.unit(120, "lb"),
  17441. name: "Back Side",
  17442. image: {
  17443. source: "./media/characters/roxi/side-back.svg",
  17444. extra: 2904 / 2693,
  17445. bottom: 0.06
  17446. }
  17447. },
  17448. front: {
  17449. height: math.unit(5 + 2 / 12, "feet"),
  17450. weight: math.unit(120, "lb"),
  17451. name: "Front",
  17452. image: {
  17453. source: "./media/characters/roxi/front.svg",
  17454. extra: 2028 / 1907,
  17455. bottom: 0.01
  17456. }
  17457. },
  17458. frontAlt: {
  17459. height: math.unit(5 + 2 / 12, "feet"),
  17460. weight: math.unit(120, "lb"),
  17461. name: "Front (Alt)",
  17462. image: {
  17463. source: "./media/characters/roxi/front-alt.svg",
  17464. extra: 1828 / 1798,
  17465. bottom: 0.01
  17466. }
  17467. },
  17468. sitting: {
  17469. height: math.unit(2.8, "feet"),
  17470. weight: math.unit(120, "lb"),
  17471. name: "Sitting",
  17472. image: {
  17473. source: "./media/characters/roxi/sitting.svg",
  17474. extra: 2660 / 2462,
  17475. bottom: 0.1
  17476. }
  17477. },
  17478. },
  17479. [
  17480. {
  17481. name: "Normal",
  17482. height: math.unit(5 + 2 / 12, "feet"),
  17483. default: true
  17484. },
  17485. ]
  17486. ))
  17487. characterMakers.push(() => makeCharacter(
  17488. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17489. {
  17490. side: {
  17491. height: math.unit(55, "feet"),
  17492. weight: math.unit(153, "tons"),
  17493. name: "Side",
  17494. image: {
  17495. source: "./media/characters/shadow/side.svg",
  17496. extra: 701 / 628,
  17497. bottom: 0.02
  17498. }
  17499. },
  17500. flying: {
  17501. height: math.unit(145, "feet"),
  17502. weight: math.unit(153, "tons"),
  17503. name: "Flying",
  17504. image: {
  17505. source: "./media/characters/shadow/flying.svg"
  17506. }
  17507. },
  17508. },
  17509. [
  17510. {
  17511. name: "Normal",
  17512. height: math.unit(55, "feet"),
  17513. default: true
  17514. },
  17515. ]
  17516. ))
  17517. characterMakers.push(() => makeCharacter(
  17518. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17519. {
  17520. front: {
  17521. height: math.unit(6, "feet"),
  17522. weight: math.unit(200, "lb"),
  17523. name: "Front",
  17524. image: {
  17525. source: "./media/characters/marcie/front.svg",
  17526. extra: 960 / 876,
  17527. bottom: 58 / 1017.87
  17528. }
  17529. },
  17530. },
  17531. [
  17532. {
  17533. name: "Macro",
  17534. height: math.unit(1, "mile"),
  17535. default: true
  17536. },
  17537. ]
  17538. ))
  17539. characterMakers.push(() => makeCharacter(
  17540. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17541. {
  17542. front: {
  17543. height: math.unit(7, "feet"),
  17544. weight: math.unit(200, "lb"),
  17545. name: "Front",
  17546. image: {
  17547. source: "./media/characters/kachina/front.svg",
  17548. extra: 1290.68 / 1119,
  17549. bottom: 36.5 / 1327.18
  17550. }
  17551. },
  17552. },
  17553. [
  17554. {
  17555. name: "Normal",
  17556. height: math.unit(7, "feet"),
  17557. default: true
  17558. },
  17559. ]
  17560. ))
  17561. characterMakers.push(() => makeCharacter(
  17562. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17563. {
  17564. looking: {
  17565. height: math.unit(2, "meters"),
  17566. weight: math.unit(300, "kg"),
  17567. name: "Looking",
  17568. image: {
  17569. source: "./media/characters/kash/looking.svg",
  17570. extra: 474 / 344,
  17571. bottom: 0.03
  17572. }
  17573. },
  17574. side: {
  17575. height: math.unit(2, "meters"),
  17576. weight: math.unit(300, "kg"),
  17577. name: "Side",
  17578. image: {
  17579. source: "./media/characters/kash/side.svg",
  17580. extra: 302 / 251,
  17581. bottom: 0.03
  17582. }
  17583. },
  17584. front: {
  17585. height: math.unit(2, "meters"),
  17586. weight: math.unit(300, "kg"),
  17587. name: "Front",
  17588. image: {
  17589. source: "./media/characters/kash/front.svg",
  17590. extra: 495 / 360,
  17591. bottom: 0.015
  17592. }
  17593. },
  17594. },
  17595. [
  17596. {
  17597. name: "Normal",
  17598. height: math.unit(2, "meters"),
  17599. default: true
  17600. },
  17601. {
  17602. name: "Big",
  17603. height: math.unit(3, "meters")
  17604. },
  17605. {
  17606. name: "Large",
  17607. height: math.unit(5, "meters")
  17608. },
  17609. ]
  17610. ))
  17611. characterMakers.push(() => makeCharacter(
  17612. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17613. {
  17614. feeding: {
  17615. height: math.unit(6.7, "feet"),
  17616. weight: math.unit(350, "lb"),
  17617. name: "Feeding",
  17618. image: {
  17619. source: "./media/characters/lalim/feeding.svg",
  17620. }
  17621. },
  17622. },
  17623. [
  17624. {
  17625. name: "Normal",
  17626. height: math.unit(6.7, "feet"),
  17627. default: true
  17628. },
  17629. ]
  17630. ))
  17631. characterMakers.push(() => makeCharacter(
  17632. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17633. {
  17634. front: {
  17635. height: math.unit(9.5, "feet"),
  17636. weight: math.unit(600, "lb"),
  17637. name: "Front",
  17638. image: {
  17639. source: "./media/characters/de'vout/front.svg",
  17640. extra: 1443 / 1328,
  17641. bottom: 0.025
  17642. }
  17643. },
  17644. back: {
  17645. height: math.unit(9.5, "feet"),
  17646. weight: math.unit(600, "lb"),
  17647. name: "Back",
  17648. image: {
  17649. source: "./media/characters/de'vout/back.svg",
  17650. extra: 1443 / 1328
  17651. }
  17652. },
  17653. frontDressed: {
  17654. height: math.unit(9.5, "feet"),
  17655. weight: math.unit(600, "lb"),
  17656. name: "Front (Dressed",
  17657. image: {
  17658. source: "./media/characters/de'vout/front-dressed.svg",
  17659. extra: 1443 / 1328,
  17660. bottom: 0.025
  17661. }
  17662. },
  17663. backDressed: {
  17664. height: math.unit(9.5, "feet"),
  17665. weight: math.unit(600, "lb"),
  17666. name: "Back (Dressed",
  17667. image: {
  17668. source: "./media/characters/de'vout/back-dressed.svg",
  17669. extra: 1443 / 1328
  17670. }
  17671. },
  17672. },
  17673. [
  17674. {
  17675. name: "Normal",
  17676. height: math.unit(9.5, "feet"),
  17677. default: true
  17678. },
  17679. ]
  17680. ))
  17681. characterMakers.push(() => makeCharacter(
  17682. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17683. {
  17684. front: {
  17685. height: math.unit(8, "feet"),
  17686. weight: math.unit(225, "lb"),
  17687. name: "Front",
  17688. image: {
  17689. source: "./media/characters/talana/front.svg",
  17690. extra: 1410 / 1300,
  17691. bottom: 0.015
  17692. }
  17693. },
  17694. frontDressed: {
  17695. height: math.unit(8, "feet"),
  17696. weight: math.unit(225, "lb"),
  17697. name: "Front (Dressed",
  17698. image: {
  17699. source: "./media/characters/talana/front-dressed.svg",
  17700. extra: 1410 / 1300,
  17701. bottom: 0.015
  17702. }
  17703. },
  17704. },
  17705. [
  17706. {
  17707. name: "Normal",
  17708. height: math.unit(8, "feet"),
  17709. default: true
  17710. },
  17711. ]
  17712. ))
  17713. characterMakers.push(() => makeCharacter(
  17714. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17715. {
  17716. side: {
  17717. height: math.unit(7.2, "feet"),
  17718. weight: math.unit(150, "lb"),
  17719. name: "Side",
  17720. image: {
  17721. source: "./media/characters/xeauvok/side.svg",
  17722. extra: 1975 / 1523,
  17723. bottom: 0.07
  17724. }
  17725. },
  17726. },
  17727. [
  17728. {
  17729. name: "Normal",
  17730. height: math.unit(7.2, "feet"),
  17731. default: true
  17732. },
  17733. ]
  17734. ))
  17735. characterMakers.push(() => makeCharacter(
  17736. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17737. {
  17738. side: {
  17739. height: math.unit(10, "feet"),
  17740. weight: math.unit(900, "kg"),
  17741. name: "Side",
  17742. image: {
  17743. source: "./media/characters/zara/side.svg",
  17744. extra: 504 / 498
  17745. }
  17746. },
  17747. },
  17748. [
  17749. {
  17750. name: "Normal",
  17751. height: math.unit(10, "feet"),
  17752. default: true
  17753. },
  17754. ]
  17755. ))
  17756. characterMakers.push(() => makeCharacter(
  17757. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17758. {
  17759. side: {
  17760. height: math.unit(6, "feet"),
  17761. weight: math.unit(150, "lb"),
  17762. name: "Side",
  17763. image: {
  17764. source: "./media/characters/richard-dragon/side.svg",
  17765. extra: 845 / 340,
  17766. bottom: 0.017
  17767. }
  17768. },
  17769. maw: {
  17770. height: math.unit(2.97, "feet"),
  17771. name: "Maw",
  17772. image: {
  17773. source: "./media/characters/richard-dragon/maw.svg"
  17774. }
  17775. },
  17776. },
  17777. [
  17778. ]
  17779. ))
  17780. characterMakers.push(() => makeCharacter(
  17781. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17782. {
  17783. front: {
  17784. height: math.unit(4, "feet"),
  17785. weight: math.unit(100, "lb"),
  17786. name: "Front",
  17787. image: {
  17788. source: "./media/characters/richard-smeargle/front.svg",
  17789. extra: 2952 / 2820,
  17790. bottom: 0.028
  17791. }
  17792. },
  17793. },
  17794. [
  17795. {
  17796. name: "Normal",
  17797. height: math.unit(4, "feet"),
  17798. default: true
  17799. },
  17800. {
  17801. name: "Dynamax",
  17802. height: math.unit(20, "meters")
  17803. },
  17804. ]
  17805. ))
  17806. characterMakers.push(() => makeCharacter(
  17807. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17808. {
  17809. front: {
  17810. height: math.unit(6, "feet"),
  17811. weight: math.unit(110, "lb"),
  17812. name: "Front",
  17813. image: {
  17814. source: "./media/characters/klay/front.svg",
  17815. extra: 962 / 883,
  17816. bottom: 0.04
  17817. }
  17818. },
  17819. back: {
  17820. height: math.unit(6, "feet"),
  17821. weight: math.unit(110, "lb"),
  17822. name: "Back",
  17823. image: {
  17824. source: "./media/characters/klay/back.svg",
  17825. extra: 962 / 883
  17826. }
  17827. },
  17828. beans: {
  17829. height: math.unit(1.15, "feet"),
  17830. name: "Beans",
  17831. image: {
  17832. source: "./media/characters/klay/beans.svg"
  17833. }
  17834. },
  17835. },
  17836. [
  17837. {
  17838. name: "Micro",
  17839. height: math.unit(6, "inches")
  17840. },
  17841. {
  17842. name: "Mini",
  17843. height: math.unit(3, "feet")
  17844. },
  17845. {
  17846. name: "Normal",
  17847. height: math.unit(6, "feet"),
  17848. default: true
  17849. },
  17850. {
  17851. name: "Big",
  17852. height: math.unit(25, "feet")
  17853. },
  17854. {
  17855. name: "Macro",
  17856. height: math.unit(100, "feet")
  17857. },
  17858. {
  17859. name: "Megamacro",
  17860. height: math.unit(400, "feet")
  17861. },
  17862. ]
  17863. ))
  17864. characterMakers.push(() => makeCharacter(
  17865. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17866. {
  17867. front: {
  17868. height: math.unit(6, "feet"),
  17869. weight: math.unit(160, "lb"),
  17870. name: "Front",
  17871. image: {
  17872. source: "./media/characters/marcus/front.svg",
  17873. extra: 734 / 676,
  17874. bottom: 0.03
  17875. }
  17876. },
  17877. },
  17878. [
  17879. {
  17880. name: "Little",
  17881. height: math.unit(6, "feet")
  17882. },
  17883. {
  17884. name: "Normal",
  17885. height: math.unit(110, "feet"),
  17886. default: true
  17887. },
  17888. {
  17889. name: "Macro",
  17890. height: math.unit(250, "feet")
  17891. },
  17892. {
  17893. name: "Megamacro",
  17894. height: math.unit(1000, "feet")
  17895. },
  17896. ]
  17897. ))
  17898. characterMakers.push(() => makeCharacter(
  17899. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17900. {
  17901. front: {
  17902. height: math.unit(7, "feet"),
  17903. weight: math.unit(275, "lb"),
  17904. name: "Front",
  17905. image: {
  17906. source: "./media/characters/claude-delroute/front.svg",
  17907. extra: 230 / 214,
  17908. bottom: 0.007
  17909. }
  17910. },
  17911. side: {
  17912. height: math.unit(7, "feet"),
  17913. weight: math.unit(275, "lb"),
  17914. name: "Side",
  17915. image: {
  17916. source: "./media/characters/claude-delroute/side.svg",
  17917. extra: 222 / 214,
  17918. bottom: 0.01
  17919. }
  17920. },
  17921. back: {
  17922. height: math.unit(7, "feet"),
  17923. weight: math.unit(275, "lb"),
  17924. name: "Back",
  17925. image: {
  17926. source: "./media/characters/claude-delroute/back.svg",
  17927. extra: 230 / 214,
  17928. bottom: 0.015
  17929. }
  17930. },
  17931. maw: {
  17932. height: math.unit(0.6407, "meters"),
  17933. name: "Maw",
  17934. image: {
  17935. source: "./media/characters/claude-delroute/maw.svg"
  17936. }
  17937. },
  17938. },
  17939. [
  17940. {
  17941. name: "Normal",
  17942. height: math.unit(7, "feet"),
  17943. default: true
  17944. },
  17945. {
  17946. name: "Lorge",
  17947. height: math.unit(20, "feet")
  17948. },
  17949. ]
  17950. ))
  17951. characterMakers.push(() => makeCharacter(
  17952. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17953. {
  17954. front: {
  17955. height: math.unit(8 + 4 / 12, "feet"),
  17956. weight: math.unit(600, "lb"),
  17957. name: "Front",
  17958. image: {
  17959. source: "./media/characters/dragonien/front.svg",
  17960. extra: 100 / 94,
  17961. bottom: 3.3 / 103.3445
  17962. }
  17963. },
  17964. back: {
  17965. height: math.unit(8 + 4 / 12, "feet"),
  17966. weight: math.unit(600, "lb"),
  17967. name: "Back",
  17968. image: {
  17969. source: "./media/characters/dragonien/back.svg",
  17970. extra: 776 / 746,
  17971. bottom: 6.4 / 782.0616
  17972. }
  17973. },
  17974. foot: {
  17975. height: math.unit(1.54, "feet"),
  17976. name: "Foot",
  17977. image: {
  17978. source: "./media/characters/dragonien/foot.svg",
  17979. }
  17980. },
  17981. },
  17982. [
  17983. {
  17984. name: "Normal",
  17985. height: math.unit(8 + 4 / 12, "feet"),
  17986. default: true
  17987. },
  17988. {
  17989. name: "Macro",
  17990. height: math.unit(200, "feet")
  17991. },
  17992. {
  17993. name: "Megamacro",
  17994. height: math.unit(1, "mile")
  17995. },
  17996. {
  17997. name: "Gigamacro",
  17998. height: math.unit(1000, "miles")
  17999. },
  18000. ]
  18001. ))
  18002. characterMakers.push(() => makeCharacter(
  18003. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18004. {
  18005. front: {
  18006. height: math.unit(5 + 2 / 12, "feet"),
  18007. weight: math.unit(110, "lb"),
  18008. name: "Front",
  18009. image: {
  18010. source: "./media/characters/desta/front.svg",
  18011. extra: 767 / 726,
  18012. bottom: 11.7 / 779
  18013. }
  18014. },
  18015. back: {
  18016. height: math.unit(5 + 2 / 12, "feet"),
  18017. weight: math.unit(110, "lb"),
  18018. name: "Back",
  18019. image: {
  18020. source: "./media/characters/desta/back.svg",
  18021. extra: 777 / 728,
  18022. bottom: 6 / 784
  18023. }
  18024. },
  18025. frontAlt: {
  18026. height: math.unit(5 + 2 / 12, "feet"),
  18027. weight: math.unit(110, "lb"),
  18028. name: "Front",
  18029. image: {
  18030. source: "./media/characters/desta/front-alt.svg",
  18031. extra: 1482 / 1417
  18032. }
  18033. },
  18034. side: {
  18035. height: math.unit(5 + 2 / 12, "feet"),
  18036. weight: math.unit(110, "lb"),
  18037. name: "Side",
  18038. image: {
  18039. source: "./media/characters/desta/side.svg",
  18040. extra: 2579 / 2491,
  18041. bottom: 0.053
  18042. }
  18043. },
  18044. },
  18045. [
  18046. {
  18047. name: "Micro",
  18048. height: math.unit(6, "inches")
  18049. },
  18050. {
  18051. name: "Normal",
  18052. height: math.unit(5 + 2 / 12, "feet"),
  18053. default: true
  18054. },
  18055. {
  18056. name: "Macro",
  18057. height: math.unit(62, "feet")
  18058. },
  18059. {
  18060. name: "Megamacro",
  18061. height: math.unit(1800, "feet")
  18062. },
  18063. ]
  18064. ))
  18065. characterMakers.push(() => makeCharacter(
  18066. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18067. {
  18068. front: {
  18069. height: math.unit(10, "feet"),
  18070. weight: math.unit(700, "lb"),
  18071. name: "Front",
  18072. image: {
  18073. source: "./media/characters/storm-alystar/front.svg",
  18074. extra: 2112 / 1898,
  18075. bottom: 0.034
  18076. }
  18077. },
  18078. },
  18079. [
  18080. {
  18081. name: "Micro",
  18082. height: math.unit(3.5, "inches")
  18083. },
  18084. {
  18085. name: "Normal",
  18086. height: math.unit(10, "feet"),
  18087. default: true
  18088. },
  18089. {
  18090. name: "Macro",
  18091. height: math.unit(400, "feet")
  18092. },
  18093. {
  18094. name: "Deific",
  18095. height: math.unit(60, "miles")
  18096. },
  18097. ]
  18098. ))
  18099. characterMakers.push(() => makeCharacter(
  18100. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18101. {
  18102. front: {
  18103. height: math.unit(2.35, "meters"),
  18104. weight: math.unit(119, "kg"),
  18105. name: "Front",
  18106. image: {
  18107. source: "./media/characters/ilia/front.svg",
  18108. extra: 1285 / 1255,
  18109. bottom: 0.06
  18110. }
  18111. },
  18112. },
  18113. [
  18114. {
  18115. name: "Normal",
  18116. height: math.unit(2.35, "meters")
  18117. },
  18118. {
  18119. name: "Macro",
  18120. height: math.unit(140, "meters"),
  18121. default: true
  18122. },
  18123. {
  18124. name: "Megamacro",
  18125. height: math.unit(100, "miles")
  18126. },
  18127. ]
  18128. ))
  18129. characterMakers.push(() => makeCharacter(
  18130. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18131. {
  18132. front: {
  18133. height: math.unit(6 + 5 / 12, "feet"),
  18134. weight: math.unit(190, "lb"),
  18135. name: "Front",
  18136. image: {
  18137. source: "./media/characters/kingdead/front.svg",
  18138. extra: 1228 / 1177
  18139. }
  18140. },
  18141. },
  18142. [
  18143. {
  18144. name: "Micro",
  18145. height: math.unit(7, "inches")
  18146. },
  18147. {
  18148. name: "Normal",
  18149. height: math.unit(6 + 5 / 12, "feet")
  18150. },
  18151. {
  18152. name: "Macro",
  18153. height: math.unit(150, "feet"),
  18154. default: true
  18155. },
  18156. {
  18157. name: "Megamacro",
  18158. height: math.unit(200, "miles")
  18159. },
  18160. ]
  18161. ))
  18162. characterMakers.push(() => makeCharacter(
  18163. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18164. {
  18165. front: {
  18166. height: math.unit(8, "feet"),
  18167. weight: math.unit(600, "lb"),
  18168. name: "Front",
  18169. image: {
  18170. source: "./media/characters/kyrehx/front.svg",
  18171. extra: 1195 / 1095,
  18172. bottom: 0.034
  18173. }
  18174. },
  18175. },
  18176. [
  18177. {
  18178. name: "Micro",
  18179. height: math.unit(2, "inches")
  18180. },
  18181. {
  18182. name: "Normal",
  18183. height: math.unit(8, "feet"),
  18184. default: true
  18185. },
  18186. {
  18187. name: "Macro",
  18188. height: math.unit(255, "feet")
  18189. },
  18190. ]
  18191. ))
  18192. characterMakers.push(() => makeCharacter(
  18193. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18194. {
  18195. front: {
  18196. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18197. weight: math.unit(184, "lb"),
  18198. name: "Front",
  18199. image: {
  18200. source: "./media/characters/xang/front.svg",
  18201. extra: 845 / 755
  18202. }
  18203. },
  18204. },
  18205. [
  18206. {
  18207. name: "Normal",
  18208. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18209. default: true
  18210. },
  18211. {
  18212. name: "Macro",
  18213. height: math.unit(0.935 * 146, "feet")
  18214. },
  18215. {
  18216. name: "Megamacro",
  18217. height: math.unit(0.935 * 3, "miles")
  18218. },
  18219. ]
  18220. ))
  18221. characterMakers.push(() => makeCharacter(
  18222. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18223. {
  18224. frontDressed: {
  18225. height: math.unit(5 + 7 / 12, "feet"),
  18226. weight: math.unit(140, "lb"),
  18227. name: "Front (Dressed)",
  18228. image: {
  18229. source: "./media/characters/doc-weardno/front-dressed.svg",
  18230. extra: 263 / 234
  18231. }
  18232. },
  18233. backDressed: {
  18234. height: math.unit(5 + 7 / 12, "feet"),
  18235. weight: math.unit(140, "lb"),
  18236. name: "Back (Dressed)",
  18237. image: {
  18238. source: "./media/characters/doc-weardno/back-dressed.svg",
  18239. extra: 266 / 238
  18240. }
  18241. },
  18242. front: {
  18243. height: math.unit(5 + 7 / 12, "feet"),
  18244. weight: math.unit(140, "lb"),
  18245. name: "Front",
  18246. image: {
  18247. source: "./media/characters/doc-weardno/front.svg",
  18248. extra: 254 / 233
  18249. }
  18250. },
  18251. },
  18252. [
  18253. {
  18254. name: "Micro",
  18255. height: math.unit(3, "inches")
  18256. },
  18257. {
  18258. name: "Normal",
  18259. height: math.unit(5 + 7 / 12, "feet"),
  18260. default: true
  18261. },
  18262. {
  18263. name: "Macro",
  18264. height: math.unit(25, "feet")
  18265. },
  18266. {
  18267. name: "Megamacro",
  18268. height: math.unit(2, "miles")
  18269. },
  18270. ]
  18271. ))
  18272. characterMakers.push(() => makeCharacter(
  18273. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18274. {
  18275. front: {
  18276. height: math.unit(6 + 2 / 12, "feet"),
  18277. weight: math.unit(153, "lb"),
  18278. name: "Front",
  18279. image: {
  18280. source: "./media/characters/seth-whilst/front.svg",
  18281. bottom: 0.07
  18282. }
  18283. },
  18284. },
  18285. [
  18286. {
  18287. name: "Micro",
  18288. height: math.unit(5, "inches")
  18289. },
  18290. {
  18291. name: "Normal",
  18292. height: math.unit(6 + 2 / 12, "feet"),
  18293. default: true
  18294. },
  18295. ]
  18296. ))
  18297. characterMakers.push(() => makeCharacter(
  18298. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18299. {
  18300. front: {
  18301. height: math.unit(3, "inches"),
  18302. weight: math.unit(8, "grams"),
  18303. name: "Front",
  18304. image: {
  18305. source: "./media/characters/pocket-jabari/front.svg",
  18306. extra: 1024 / 974,
  18307. bottom: 0.039
  18308. }
  18309. },
  18310. },
  18311. [
  18312. {
  18313. name: "Minimicro",
  18314. height: math.unit(8, "mm")
  18315. },
  18316. {
  18317. name: "Micro",
  18318. height: math.unit(3, "inches"),
  18319. default: true
  18320. },
  18321. {
  18322. name: "Normal",
  18323. height: math.unit(3, "feet")
  18324. },
  18325. ]
  18326. ))
  18327. characterMakers.push(() => makeCharacter(
  18328. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18329. {
  18330. front: {
  18331. height: math.unit(15, "feet"),
  18332. weight: math.unit(3280, "lb"),
  18333. name: "Front",
  18334. image: {
  18335. source: "./media/characters/sapphy/front.svg",
  18336. extra: 671 / 577,
  18337. bottom: 0.085
  18338. }
  18339. },
  18340. back: {
  18341. height: math.unit(15, "feet"),
  18342. weight: math.unit(3280, "lb"),
  18343. name: "Back",
  18344. image: {
  18345. source: "./media/characters/sapphy/back.svg",
  18346. extra: 631 / 607,
  18347. bottom: 0.045
  18348. }
  18349. },
  18350. },
  18351. [
  18352. {
  18353. name: "Normal",
  18354. height: math.unit(15, "feet")
  18355. },
  18356. {
  18357. name: "Casual Macro",
  18358. height: math.unit(120, "feet")
  18359. },
  18360. {
  18361. name: "Macro",
  18362. height: math.unit(2150, "feet"),
  18363. default: true
  18364. },
  18365. {
  18366. name: "Megamacro",
  18367. height: math.unit(8, "miles")
  18368. },
  18369. {
  18370. name: "Galaxy Mom",
  18371. height: math.unit(6, "megalightyears")
  18372. },
  18373. ]
  18374. ))
  18375. characterMakers.push(() => makeCharacter(
  18376. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18377. {
  18378. front: {
  18379. height: math.unit(6, "feet"),
  18380. weight: math.unit(170, "lb"),
  18381. name: "Front",
  18382. image: {
  18383. source: "./media/characters/kiro/front.svg",
  18384. extra: 1064 / 1012,
  18385. bottom: 0.052
  18386. }
  18387. },
  18388. },
  18389. [
  18390. {
  18391. name: "Micro",
  18392. height: math.unit(6, "inches")
  18393. },
  18394. {
  18395. name: "Normal",
  18396. height: math.unit(6, "feet"),
  18397. default: true
  18398. },
  18399. {
  18400. name: "Macro",
  18401. height: math.unit(72, "feet")
  18402. },
  18403. ]
  18404. ))
  18405. characterMakers.push(() => makeCharacter(
  18406. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18407. {
  18408. front: {
  18409. height: math.unit(5 + 9 / 12, "feet"),
  18410. weight: math.unit(175, "lb"),
  18411. name: "Front",
  18412. image: {
  18413. source: "./media/characters/irishfox/front.svg",
  18414. extra: 1912 / 1680,
  18415. bottom: 0.02
  18416. }
  18417. },
  18418. },
  18419. [
  18420. {
  18421. name: "Nano",
  18422. height: math.unit(1, "mm")
  18423. },
  18424. {
  18425. name: "Micro",
  18426. height: math.unit(2, "inches")
  18427. },
  18428. {
  18429. name: "Normal",
  18430. height: math.unit(5 + 9 / 12, "feet"),
  18431. default: true
  18432. },
  18433. {
  18434. name: "Macro",
  18435. height: math.unit(45, "feet")
  18436. },
  18437. ]
  18438. ))
  18439. characterMakers.push(() => makeCharacter(
  18440. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18441. {
  18442. front: {
  18443. height: math.unit(6 + 1 / 12, "feet"),
  18444. weight: math.unit(75, "lb"),
  18445. name: "Front",
  18446. image: {
  18447. source: "./media/characters/aronai-sieyes/front.svg",
  18448. extra: 1556 / 1480,
  18449. bottom: 0.015
  18450. }
  18451. },
  18452. side: {
  18453. height: math.unit(6 + 1 / 12, "feet"),
  18454. weight: math.unit(75, "lb"),
  18455. name: "Side",
  18456. image: {
  18457. source: "./media/characters/aronai-sieyes/side.svg",
  18458. extra: 1433 / 1390,
  18459. bottom: 0.0393
  18460. }
  18461. },
  18462. back: {
  18463. height: math.unit(6 + 1 / 12, "feet"),
  18464. weight: math.unit(75, "lb"),
  18465. name: "Back",
  18466. image: {
  18467. source: "./media/characters/aronai-sieyes/back.svg",
  18468. extra: 1544 / 1494,
  18469. bottom: 0.02
  18470. }
  18471. },
  18472. frontClothed: {
  18473. height: math.unit(6 + 1 / 12, "feet"),
  18474. weight: math.unit(75, "lb"),
  18475. name: "Front (Clothed)",
  18476. image: {
  18477. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18478. extra: 1582 / 1527
  18479. }
  18480. },
  18481. feral: {
  18482. height: math.unit(18, "feet"),
  18483. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18484. name: "Feral",
  18485. image: {
  18486. source: "./media/characters/aronai-sieyes/feral.svg",
  18487. extra: 1530 / 1240,
  18488. bottom: 0.035
  18489. }
  18490. },
  18491. },
  18492. [
  18493. {
  18494. name: "Micro",
  18495. height: math.unit(2, "inches")
  18496. },
  18497. {
  18498. name: "Normal",
  18499. height: math.unit(6 + 1 / 12, "feet"),
  18500. default: true
  18501. }
  18502. ]
  18503. ))
  18504. characterMakers.push(() => makeCharacter(
  18505. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18506. {
  18507. front: {
  18508. height: math.unit(12, "feet"),
  18509. weight: math.unit(410, "kg"),
  18510. name: "Front",
  18511. image: {
  18512. source: "./media/characters/xuna/front.svg",
  18513. extra: 2184 / 1980
  18514. }
  18515. },
  18516. side: {
  18517. height: math.unit(12, "feet"),
  18518. weight: math.unit(410, "kg"),
  18519. name: "Side",
  18520. image: {
  18521. source: "./media/characters/xuna/side.svg",
  18522. extra: 2184 / 1980
  18523. }
  18524. },
  18525. back: {
  18526. height: math.unit(12, "feet"),
  18527. weight: math.unit(410, "kg"),
  18528. name: "Back",
  18529. image: {
  18530. source: "./media/characters/xuna/back.svg",
  18531. extra: 2184 / 1980
  18532. }
  18533. },
  18534. },
  18535. [
  18536. {
  18537. name: "Nano glow",
  18538. height: math.unit(10, "nm")
  18539. },
  18540. {
  18541. name: "Micro floof",
  18542. height: math.unit(0.3, "m")
  18543. },
  18544. {
  18545. name: "Huggable softy boi",
  18546. height: math.unit(3.6576, "m"),
  18547. default: true
  18548. },
  18549. {
  18550. name: "Admirable floof",
  18551. height: math.unit(80, "meters")
  18552. },
  18553. {
  18554. name: "Gentle macro",
  18555. height: math.unit(300, "meters")
  18556. },
  18557. {
  18558. name: "Very careful floof",
  18559. height: math.unit(3200, "meters")
  18560. },
  18561. {
  18562. name: "The mega floof",
  18563. height: math.unit(36000, "meters")
  18564. },
  18565. {
  18566. name: "Giga-fur-Wicker",
  18567. height: math.unit(4800000, "meters")
  18568. },
  18569. {
  18570. name: "Licky world",
  18571. height: math.unit(20000000, "meters")
  18572. },
  18573. {
  18574. name: "Floofy cyan sun",
  18575. height: math.unit(1500000000, "meters")
  18576. },
  18577. {
  18578. name: "Milky Wicker",
  18579. height: math.unit(1000000000000000000000, "meters")
  18580. },
  18581. {
  18582. name: "The observing Wicker",
  18583. height: math.unit(999999999999999999999999999, "meters")
  18584. },
  18585. ]
  18586. ))
  18587. characterMakers.push(() => makeCharacter(
  18588. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18589. {
  18590. front: {
  18591. height: math.unit(5 + 9 / 12, "feet"),
  18592. weight: math.unit(150, "lb"),
  18593. name: "Front",
  18594. image: {
  18595. source: "./media/characters/arokha-sieyes/front.svg",
  18596. extra: 1425 / 1284,
  18597. bottom: 0.05
  18598. }
  18599. },
  18600. },
  18601. [
  18602. {
  18603. name: "Normal",
  18604. height: math.unit(5 + 9 / 12, "feet")
  18605. },
  18606. {
  18607. name: "Macro",
  18608. height: math.unit(30, "meters"),
  18609. default: true
  18610. },
  18611. ]
  18612. ))
  18613. characterMakers.push(() => makeCharacter(
  18614. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18615. {
  18616. front: {
  18617. height: math.unit(6, "feet"),
  18618. weight: math.unit(180, "lb"),
  18619. name: "Front",
  18620. image: {
  18621. source: "./media/characters/arokh-sieyes/front.svg",
  18622. extra: 1830 / 1769,
  18623. bottom: 0.01
  18624. }
  18625. },
  18626. },
  18627. [
  18628. {
  18629. name: "Normal",
  18630. height: math.unit(6, "feet")
  18631. },
  18632. {
  18633. name: "Macro",
  18634. height: math.unit(30, "meters"),
  18635. default: true
  18636. },
  18637. ]
  18638. ))
  18639. characterMakers.push(() => makeCharacter(
  18640. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18641. {
  18642. side: {
  18643. height: math.unit(13 + 1 / 12, "feet"),
  18644. weight: math.unit(8.5, "tonnes"),
  18645. name: "Side",
  18646. image: {
  18647. source: "./media/characters/goldeneye/side.svg",
  18648. extra: 1182 / 778,
  18649. bottom: 0.067
  18650. }
  18651. },
  18652. paw: {
  18653. height: math.unit(3.4, "feet"),
  18654. name: "Paw",
  18655. image: {
  18656. source: "./media/characters/goldeneye/paw.svg"
  18657. }
  18658. },
  18659. },
  18660. [
  18661. {
  18662. name: "Normal",
  18663. height: math.unit(13 + 1 / 12, "feet"),
  18664. default: true
  18665. },
  18666. ]
  18667. ))
  18668. characterMakers.push(() => makeCharacter(
  18669. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18670. {
  18671. front: {
  18672. height: math.unit(6 + 1 / 12, "feet"),
  18673. weight: math.unit(210, "lb"),
  18674. name: "Front",
  18675. image: {
  18676. source: "./media/characters/leonardo-lycheborne/front.svg",
  18677. extra: 390 / 365,
  18678. bottom: 0.032
  18679. }
  18680. },
  18681. side: {
  18682. height: math.unit(6 + 1 / 12, "feet"),
  18683. weight: math.unit(210, "lb"),
  18684. name: "Side",
  18685. image: {
  18686. source: "./media/characters/leonardo-lycheborne/side.svg",
  18687. extra: 390 / 365,
  18688. bottom: 0.005
  18689. }
  18690. },
  18691. back: {
  18692. height: math.unit(6 + 1 / 12, "feet"),
  18693. weight: math.unit(210, "lb"),
  18694. name: "Back",
  18695. image: {
  18696. source: "./media/characters/leonardo-lycheborne/back.svg",
  18697. extra: 392 / 366,
  18698. bottom: 0.01
  18699. }
  18700. },
  18701. hand: {
  18702. height: math.unit(1.08, "feet"),
  18703. name: "Hand",
  18704. image: {
  18705. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18706. }
  18707. },
  18708. foot: {
  18709. height: math.unit(1.32, "feet"),
  18710. name: "Foot",
  18711. image: {
  18712. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18713. }
  18714. },
  18715. were: {
  18716. height: math.unit(20, "feet"),
  18717. weight: math.unit(7800, "lb"),
  18718. name: "Were",
  18719. image: {
  18720. source: "./media/characters/leonardo-lycheborne/were.svg",
  18721. extra: 308 / 294,
  18722. bottom: 0.048
  18723. }
  18724. },
  18725. feral: {
  18726. height: math.unit(7.5, "feet"),
  18727. weight: math.unit(600, "lb"),
  18728. name: "Feral",
  18729. image: {
  18730. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18731. extra: 210 / 186,
  18732. bottom: 0.108
  18733. }
  18734. },
  18735. taur: {
  18736. height: math.unit(11, "feet"),
  18737. weight: math.unit(3300, "lb"),
  18738. name: "Taur",
  18739. image: {
  18740. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18741. extra: 320 / 303,
  18742. bottom: 0.025
  18743. }
  18744. },
  18745. barghest: {
  18746. height: math.unit(11, "feet"),
  18747. weight: math.unit(1300, "lb"),
  18748. name: "Barghest",
  18749. image: {
  18750. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18751. extra: 323 / 302,
  18752. bottom: 0.027
  18753. }
  18754. },
  18755. dick: {
  18756. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18757. name: "Dick",
  18758. image: {
  18759. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18760. }
  18761. },
  18762. dickWere: {
  18763. height: math.unit((20) / 3.8, "feet"),
  18764. name: "Dick (Were)",
  18765. image: {
  18766. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18767. }
  18768. },
  18769. },
  18770. [
  18771. {
  18772. name: "Normal",
  18773. height: math.unit(6 + 1 / 12, "feet"),
  18774. default: true
  18775. },
  18776. ]
  18777. ))
  18778. characterMakers.push(() => makeCharacter(
  18779. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18780. {
  18781. front: {
  18782. height: math.unit(10, "feet"),
  18783. weight: math.unit(350, "lb"),
  18784. name: "Front",
  18785. image: {
  18786. source: "./media/characters/jet/front.svg",
  18787. extra: 2050 / 1980,
  18788. bottom: 0.013
  18789. }
  18790. },
  18791. back: {
  18792. height: math.unit(10, "feet"),
  18793. weight: math.unit(350, "lb"),
  18794. name: "Back",
  18795. image: {
  18796. source: "./media/characters/jet/back.svg",
  18797. extra: 2050 / 1980,
  18798. bottom: 0.013
  18799. }
  18800. },
  18801. },
  18802. [
  18803. {
  18804. name: "Micro",
  18805. height: math.unit(6, "inches")
  18806. },
  18807. {
  18808. name: "Normal",
  18809. height: math.unit(10, "feet"),
  18810. default: true
  18811. },
  18812. {
  18813. name: "Macro",
  18814. height: math.unit(100, "feet")
  18815. },
  18816. ]
  18817. ))
  18818. characterMakers.push(() => makeCharacter(
  18819. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18820. {
  18821. front: {
  18822. height: math.unit(15, "feet"),
  18823. weight: math.unit(2800, "lb"),
  18824. name: "Front",
  18825. image: {
  18826. source: "./media/characters/tanarath/front.svg",
  18827. extra: 2392 / 2220,
  18828. bottom: 0.03
  18829. }
  18830. },
  18831. back: {
  18832. height: math.unit(15, "feet"),
  18833. weight: math.unit(2800, "lb"),
  18834. name: "Back",
  18835. image: {
  18836. source: "./media/characters/tanarath/back.svg",
  18837. extra: 2392 / 2220,
  18838. bottom: 0.03
  18839. }
  18840. },
  18841. },
  18842. [
  18843. {
  18844. name: "Normal",
  18845. height: math.unit(15, "feet"),
  18846. default: true
  18847. },
  18848. ]
  18849. ))
  18850. characterMakers.push(() => makeCharacter(
  18851. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18852. {
  18853. front: {
  18854. height: math.unit(7 + 1 / 12, "feet"),
  18855. weight: math.unit(175, "lb"),
  18856. name: "Front",
  18857. image: {
  18858. source: "./media/characters/patty-cattybatty/front.svg",
  18859. extra: 908 / 874,
  18860. bottom: 0.025
  18861. }
  18862. },
  18863. },
  18864. [
  18865. {
  18866. name: "Micro",
  18867. height: math.unit(1, "inch")
  18868. },
  18869. {
  18870. name: "Normal",
  18871. height: math.unit(7 + 1 / 12, "feet")
  18872. },
  18873. {
  18874. name: "Mini Macro",
  18875. height: math.unit(155, "feet")
  18876. },
  18877. {
  18878. name: "Macro",
  18879. height: math.unit(1077, "feet")
  18880. },
  18881. {
  18882. name: "Mega Macro",
  18883. height: math.unit(47650, "feet"),
  18884. default: true
  18885. },
  18886. {
  18887. name: "Giga Macro",
  18888. height: math.unit(440, "miles")
  18889. },
  18890. {
  18891. name: "Tera Macro",
  18892. height: math.unit(8700, "miles")
  18893. },
  18894. {
  18895. name: "Planetary Macro",
  18896. height: math.unit(32700, "miles")
  18897. },
  18898. {
  18899. name: "Solar Macro",
  18900. height: math.unit(550000, "miles")
  18901. },
  18902. {
  18903. name: "Celestial Macro",
  18904. height: math.unit(2.5, "AU")
  18905. },
  18906. ]
  18907. ))
  18908. characterMakers.push(() => makeCharacter(
  18909. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18910. {
  18911. front: {
  18912. height: math.unit(4 + 5 / 12, "feet"),
  18913. weight: math.unit(90, "lb"),
  18914. name: "Front",
  18915. image: {
  18916. source: "./media/characters/cappu/front.svg",
  18917. extra: 1247 / 1152,
  18918. bottom: 0.012
  18919. }
  18920. },
  18921. },
  18922. [
  18923. {
  18924. name: "Normal",
  18925. height: math.unit(4 + 5 / 12, "feet"),
  18926. default: true
  18927. },
  18928. ]
  18929. ))
  18930. characterMakers.push(() => makeCharacter(
  18931. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18932. {
  18933. frontDressed: {
  18934. height: math.unit(70, "cm"),
  18935. weight: math.unit(6, "kg"),
  18936. name: "Front (Dressed)",
  18937. image: {
  18938. source: "./media/characters/sebi/front-dressed.svg",
  18939. extra: 713.5 / 686.5,
  18940. bottom: 0.003
  18941. }
  18942. },
  18943. front: {
  18944. height: math.unit(70, "cm"),
  18945. weight: math.unit(5, "kg"),
  18946. name: "Front",
  18947. image: {
  18948. source: "./media/characters/sebi/front.svg",
  18949. extra: 713.5 / 686.5,
  18950. bottom: 0.003
  18951. }
  18952. }
  18953. },
  18954. [
  18955. {
  18956. name: "Normal",
  18957. height: math.unit(70, "cm"),
  18958. default: true
  18959. },
  18960. {
  18961. name: "Macro",
  18962. height: math.unit(8, "meters")
  18963. },
  18964. ]
  18965. ))
  18966. characterMakers.push(() => makeCharacter(
  18967. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18968. {
  18969. front: {
  18970. height: math.unit(6, "feet"),
  18971. weight: math.unit(150, "lb"),
  18972. name: "Front",
  18973. image: {
  18974. source: "./media/characters/typhek/front.svg",
  18975. extra: 1948 / 1929,
  18976. bottom: 0.025
  18977. }
  18978. },
  18979. side: {
  18980. height: math.unit(6, "feet"),
  18981. weight: math.unit(150, "lb"),
  18982. name: "Side",
  18983. image: {
  18984. source: "./media/characters/typhek/side.svg",
  18985. extra: 2034 / 2010,
  18986. bottom: 0.003
  18987. }
  18988. },
  18989. back: {
  18990. height: math.unit(6, "feet"),
  18991. weight: math.unit(150, "lb"),
  18992. name: "Back",
  18993. image: {
  18994. source: "./media/characters/typhek/back.svg",
  18995. extra: 2005 / 1978,
  18996. bottom: 0.004
  18997. }
  18998. },
  18999. palm: {
  19000. height: math.unit(1.2, "feet"),
  19001. name: "Palm",
  19002. image: {
  19003. source: "./media/characters/typhek/palm.svg"
  19004. }
  19005. },
  19006. fist: {
  19007. height: math.unit(1.1, "feet"),
  19008. name: "Fist",
  19009. image: {
  19010. source: "./media/characters/typhek/fist.svg"
  19011. }
  19012. },
  19013. foot: {
  19014. height: math.unit(1.57, "feet"),
  19015. name: "Foot",
  19016. image: {
  19017. source: "./media/characters/typhek/foot.svg"
  19018. }
  19019. },
  19020. sole: {
  19021. height: math.unit(2.05, "feet"),
  19022. name: "Sole",
  19023. image: {
  19024. source: "./media/characters/typhek/sole.svg"
  19025. }
  19026. },
  19027. },
  19028. [
  19029. {
  19030. name: "Macro",
  19031. height: math.unit(40, "stories"),
  19032. default: true
  19033. },
  19034. {
  19035. name: "Megamacro",
  19036. height: math.unit(1, "mile")
  19037. },
  19038. {
  19039. name: "Gigamacro",
  19040. height: math.unit(4000, "solarradii")
  19041. },
  19042. {
  19043. name: "Universal",
  19044. height: math.unit(1.1, "universes")
  19045. }
  19046. ]
  19047. ))
  19048. characterMakers.push(() => makeCharacter(
  19049. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19050. {
  19051. side: {
  19052. height: math.unit(5 + 7 / 12, "feet"),
  19053. weight: math.unit(150, "lb"),
  19054. name: "Side",
  19055. image: {
  19056. source: "./media/characters/kassy/side.svg",
  19057. extra: 1280 / 1225,
  19058. bottom: 0.002
  19059. }
  19060. },
  19061. front: {
  19062. height: math.unit(5 + 7 / 12, "feet"),
  19063. weight: math.unit(150, "lb"),
  19064. name: "Front",
  19065. image: {
  19066. source: "./media/characters/kassy/front.svg",
  19067. extra: 1280 / 1225,
  19068. bottom: 0.025
  19069. }
  19070. },
  19071. back: {
  19072. height: math.unit(5 + 7 / 12, "feet"),
  19073. weight: math.unit(150, "lb"),
  19074. name: "Back",
  19075. image: {
  19076. source: "./media/characters/kassy/back.svg",
  19077. extra: 1280 / 1225,
  19078. bottom: 0.002
  19079. }
  19080. },
  19081. foot: {
  19082. height: math.unit(1.266, "feet"),
  19083. name: "Foot",
  19084. image: {
  19085. source: "./media/characters/kassy/foot.svg"
  19086. }
  19087. },
  19088. },
  19089. [
  19090. {
  19091. name: "Normal",
  19092. height: math.unit(5 + 7 / 12, "feet")
  19093. },
  19094. {
  19095. name: "Macro",
  19096. height: math.unit(137, "feet"),
  19097. default: true
  19098. },
  19099. {
  19100. name: "Megamacro",
  19101. height: math.unit(1, "mile")
  19102. },
  19103. ]
  19104. ))
  19105. characterMakers.push(() => makeCharacter(
  19106. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19107. {
  19108. front: {
  19109. height: math.unit(6 + 1 / 12, "feet"),
  19110. weight: math.unit(200, "lb"),
  19111. name: "Front",
  19112. image: {
  19113. source: "./media/characters/neil/front.svg",
  19114. extra: 1326 / 1250,
  19115. bottom: 0.023
  19116. }
  19117. },
  19118. },
  19119. [
  19120. {
  19121. name: "Normal",
  19122. height: math.unit(6 + 1 / 12, "feet"),
  19123. default: true
  19124. },
  19125. {
  19126. name: "Macro",
  19127. height: math.unit(200, "feet")
  19128. },
  19129. ]
  19130. ))
  19131. characterMakers.push(() => makeCharacter(
  19132. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19133. {
  19134. front: {
  19135. height: math.unit(5 + 9 / 12, "feet"),
  19136. weight: math.unit(190, "lb"),
  19137. name: "Front",
  19138. image: {
  19139. source: "./media/characters/atticus/front.svg",
  19140. extra: 2934 / 2785,
  19141. bottom: 0.025
  19142. }
  19143. },
  19144. },
  19145. [
  19146. {
  19147. name: "Normal",
  19148. height: math.unit(5 + 9 / 12, "feet"),
  19149. default: true
  19150. },
  19151. {
  19152. name: "Macro",
  19153. height: math.unit(180, "feet")
  19154. },
  19155. ]
  19156. ))
  19157. characterMakers.push(() => makeCharacter(
  19158. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19159. {
  19160. side: {
  19161. height: math.unit(9, "feet"),
  19162. weight: math.unit(650, "lb"),
  19163. name: "Side",
  19164. image: {
  19165. source: "./media/characters/milo/side.svg",
  19166. extra: 2644 / 2310,
  19167. bottom: 0.032
  19168. }
  19169. },
  19170. },
  19171. [
  19172. {
  19173. name: "Normal",
  19174. height: math.unit(9, "feet"),
  19175. default: true
  19176. },
  19177. {
  19178. name: "Macro",
  19179. height: math.unit(300, "feet")
  19180. },
  19181. ]
  19182. ))
  19183. characterMakers.push(() => makeCharacter(
  19184. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19185. {
  19186. side: {
  19187. height: math.unit(8, "meters"),
  19188. weight: math.unit(90000, "kg"),
  19189. name: "Side",
  19190. image: {
  19191. source: "./media/characters/ijzer/side.svg",
  19192. extra: 2756 / 1600,
  19193. bottom: 0.01
  19194. }
  19195. },
  19196. },
  19197. [
  19198. {
  19199. name: "Small",
  19200. height: math.unit(3, "meters")
  19201. },
  19202. {
  19203. name: "Normal",
  19204. height: math.unit(8, "meters"),
  19205. default: true
  19206. },
  19207. {
  19208. name: "Normal+",
  19209. height: math.unit(10, "meters")
  19210. },
  19211. {
  19212. name: "Bigger",
  19213. height: math.unit(24, "meters")
  19214. },
  19215. {
  19216. name: "Huge",
  19217. height: math.unit(80, "meters")
  19218. },
  19219. ]
  19220. ))
  19221. characterMakers.push(() => makeCharacter(
  19222. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19223. {
  19224. front: {
  19225. height: math.unit(6 + 2 / 12, "feet"),
  19226. weight: math.unit(153, "lb"),
  19227. name: "Front",
  19228. image: {
  19229. source: "./media/characters/luca-cervicum/front.svg",
  19230. extra: 370 / 327,
  19231. bottom: 0.015
  19232. }
  19233. },
  19234. back: {
  19235. height: math.unit(6 + 2 / 12, "feet"),
  19236. weight: math.unit(153, "lb"),
  19237. name: "Back",
  19238. image: {
  19239. source: "./media/characters/luca-cervicum/back.svg",
  19240. extra: 367 / 333,
  19241. bottom: 0.005
  19242. }
  19243. },
  19244. frontGear: {
  19245. height: math.unit(6 + 2 / 12, "feet"),
  19246. weight: math.unit(173, "lb"),
  19247. name: "Front (Gear)",
  19248. image: {
  19249. source: "./media/characters/luca-cervicum/front-gear.svg",
  19250. extra: 377 / 333,
  19251. bottom: 0.006
  19252. }
  19253. },
  19254. },
  19255. [
  19256. {
  19257. name: "Normal",
  19258. height: math.unit(6 + 2 / 12, "feet"),
  19259. default: true
  19260. },
  19261. ]
  19262. ))
  19263. characterMakers.push(() => makeCharacter(
  19264. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19265. {
  19266. front: {
  19267. height: math.unit(6 + 1 / 12, "feet"),
  19268. weight: math.unit(304, "lb"),
  19269. name: "Front",
  19270. image: {
  19271. source: "./media/characters/oliver/front.svg",
  19272. extra: 157 / 143,
  19273. bottom: 0.08
  19274. }
  19275. },
  19276. },
  19277. [
  19278. {
  19279. name: "Normal",
  19280. height: math.unit(6 + 1 / 12, "feet"),
  19281. default: true
  19282. },
  19283. ]
  19284. ))
  19285. characterMakers.push(() => makeCharacter(
  19286. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19287. {
  19288. front: {
  19289. height: math.unit(5 + 7 / 12, "feet"),
  19290. weight: math.unit(140, "lb"),
  19291. name: "Front",
  19292. image: {
  19293. source: "./media/characters/shane/front.svg",
  19294. extra: 304 / 289,
  19295. bottom: 0.005
  19296. }
  19297. },
  19298. },
  19299. [
  19300. {
  19301. name: "Normal",
  19302. height: math.unit(5 + 7 / 12, "feet"),
  19303. default: true
  19304. },
  19305. ]
  19306. ))
  19307. characterMakers.push(() => makeCharacter(
  19308. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19309. {
  19310. front: {
  19311. height: math.unit(5 + 9 / 12, "feet"),
  19312. weight: math.unit(178, "lb"),
  19313. name: "Front",
  19314. image: {
  19315. source: "./media/characters/shin/front.svg",
  19316. extra: 159 / 151,
  19317. bottom: 0.015
  19318. }
  19319. },
  19320. },
  19321. [
  19322. {
  19323. name: "Normal",
  19324. height: math.unit(5 + 9 / 12, "feet"),
  19325. default: true
  19326. },
  19327. ]
  19328. ))
  19329. characterMakers.push(() => makeCharacter(
  19330. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19331. {
  19332. front: {
  19333. height: math.unit(5 + 10 / 12, "feet"),
  19334. weight: math.unit(168, "lb"),
  19335. name: "Front",
  19336. image: {
  19337. source: "./media/characters/xerxes/front.svg",
  19338. extra: 282 / 260,
  19339. bottom: 0.045
  19340. }
  19341. },
  19342. },
  19343. [
  19344. {
  19345. name: "Normal",
  19346. height: math.unit(5 + 10 / 12, "feet"),
  19347. default: true
  19348. },
  19349. ]
  19350. ))
  19351. characterMakers.push(() => makeCharacter(
  19352. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19353. {
  19354. front: {
  19355. height: math.unit(6 + 7 / 12, "feet"),
  19356. weight: math.unit(208, "lb"),
  19357. name: "Front",
  19358. image: {
  19359. source: "./media/characters/chaska/front.svg",
  19360. extra: 332 / 319,
  19361. bottom: 0.015
  19362. }
  19363. },
  19364. },
  19365. [
  19366. {
  19367. name: "Normal",
  19368. height: math.unit(6 + 7 / 12, "feet"),
  19369. default: true
  19370. },
  19371. ]
  19372. ))
  19373. characterMakers.push(() => makeCharacter(
  19374. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19375. {
  19376. front: {
  19377. height: math.unit(5 + 8 / 12, "feet"),
  19378. weight: math.unit(208, "lb"),
  19379. name: "Front",
  19380. image: {
  19381. source: "./media/characters/enuk/front.svg",
  19382. extra: 437 / 406,
  19383. bottom: 0.02
  19384. }
  19385. },
  19386. },
  19387. [
  19388. {
  19389. name: "Normal",
  19390. height: math.unit(5 + 8 / 12, "feet"),
  19391. default: true
  19392. },
  19393. ]
  19394. ))
  19395. characterMakers.push(() => makeCharacter(
  19396. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19397. {
  19398. front: {
  19399. height: math.unit(5 + 10 / 12, "feet"),
  19400. weight: math.unit(252, "lb"),
  19401. name: "Front",
  19402. image: {
  19403. source: "./media/characters/bruun/front.svg",
  19404. extra: 197 / 187,
  19405. bottom: 0.012
  19406. }
  19407. },
  19408. },
  19409. [
  19410. {
  19411. name: "Normal",
  19412. height: math.unit(5 + 10 / 12, "feet"),
  19413. default: true
  19414. },
  19415. ]
  19416. ))
  19417. characterMakers.push(() => makeCharacter(
  19418. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19419. {
  19420. front: {
  19421. height: math.unit(6 + 10 / 12, "feet"),
  19422. weight: math.unit(255, "lb"),
  19423. name: "Front",
  19424. image: {
  19425. source: "./media/characters/alexeev/front.svg",
  19426. extra: 213 / 200,
  19427. bottom: 0.05
  19428. }
  19429. },
  19430. },
  19431. [
  19432. {
  19433. name: "Normal",
  19434. height: math.unit(6 + 10 / 12, "feet"),
  19435. default: true
  19436. },
  19437. ]
  19438. ))
  19439. characterMakers.push(() => makeCharacter(
  19440. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19441. {
  19442. front: {
  19443. height: math.unit(2 + 8 / 12, "feet"),
  19444. weight: math.unit(22, "lb"),
  19445. name: "Front",
  19446. image: {
  19447. source: "./media/characters/evelyn/front.svg",
  19448. extra: 208 / 180
  19449. }
  19450. },
  19451. },
  19452. [
  19453. {
  19454. name: "Normal",
  19455. height: math.unit(2 + 8 / 12, "feet"),
  19456. default: true
  19457. },
  19458. ]
  19459. ))
  19460. characterMakers.push(() => makeCharacter(
  19461. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19462. {
  19463. front: {
  19464. height: math.unit(5 + 9 / 12, "feet"),
  19465. weight: math.unit(139, "lb"),
  19466. name: "Front",
  19467. image: {
  19468. source: "./media/characters/inca/front.svg",
  19469. extra: 294 / 291,
  19470. bottom: 0.03
  19471. }
  19472. },
  19473. },
  19474. [
  19475. {
  19476. name: "Normal",
  19477. height: math.unit(5 + 9 / 12, "feet"),
  19478. default: true
  19479. },
  19480. ]
  19481. ))
  19482. characterMakers.push(() => makeCharacter(
  19483. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19484. {
  19485. front: {
  19486. height: math.unit(5 + 1 / 12, "feet"),
  19487. weight: math.unit(84, "lb"),
  19488. name: "Front",
  19489. image: {
  19490. source: "./media/characters/magdalene/front.svg",
  19491. extra: 293 / 273
  19492. }
  19493. },
  19494. },
  19495. [
  19496. {
  19497. name: "Normal",
  19498. height: math.unit(5 + 1 / 12, "feet"),
  19499. default: true
  19500. },
  19501. ]
  19502. ))
  19503. characterMakers.push(() => makeCharacter(
  19504. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19505. {
  19506. front: {
  19507. height: math.unit(6 + 3 / 12, "feet"),
  19508. weight: math.unit(185, "lb"),
  19509. name: "Front",
  19510. image: {
  19511. source: "./media/characters/mera/front.svg",
  19512. extra: 291 / 277,
  19513. bottom: 0.03
  19514. }
  19515. },
  19516. },
  19517. [
  19518. {
  19519. name: "Normal",
  19520. height: math.unit(6 + 3 / 12, "feet"),
  19521. default: true
  19522. },
  19523. ]
  19524. ))
  19525. characterMakers.push(() => makeCharacter(
  19526. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19527. {
  19528. front: {
  19529. height: math.unit(6 + 7 / 12, "feet"),
  19530. weight: math.unit(160, "lb"),
  19531. name: "Front",
  19532. image: {
  19533. source: "./media/characters/ceres/front.svg",
  19534. extra: 1023 / 950,
  19535. bottom: 0.027
  19536. }
  19537. },
  19538. back: {
  19539. height: math.unit(6 + 7 / 12, "feet"),
  19540. weight: math.unit(160, "lb"),
  19541. name: "Back",
  19542. image: {
  19543. source: "./media/characters/ceres/back.svg",
  19544. extra: 1023 / 950
  19545. }
  19546. },
  19547. },
  19548. [
  19549. {
  19550. name: "Normal",
  19551. height: math.unit(6 + 7 / 12, "feet"),
  19552. default: true
  19553. },
  19554. ]
  19555. ))
  19556. characterMakers.push(() => makeCharacter(
  19557. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19558. {
  19559. front: {
  19560. height: math.unit(5 + 10 / 12, "feet"),
  19561. weight: math.unit(150, "lb"),
  19562. name: "Front",
  19563. image: {
  19564. source: "./media/characters/kris/front.svg",
  19565. extra: 885 / 803,
  19566. bottom: 0.03
  19567. }
  19568. },
  19569. },
  19570. [
  19571. {
  19572. name: "Normal",
  19573. height: math.unit(5 + 10 / 12, "feet"),
  19574. default: true
  19575. },
  19576. ]
  19577. ))
  19578. characterMakers.push(() => makeCharacter(
  19579. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19580. {
  19581. front: {
  19582. height: math.unit(7, "feet"),
  19583. weight: math.unit(120, "kg"),
  19584. name: "Front",
  19585. image: {
  19586. source: "./media/characters/taluthus/front.svg",
  19587. extra: 903 / 833,
  19588. bottom: 0.015
  19589. }
  19590. },
  19591. },
  19592. [
  19593. {
  19594. name: "Normal",
  19595. height: math.unit(7, "feet"),
  19596. default: true
  19597. },
  19598. {
  19599. name: "Macro",
  19600. height: math.unit(300, "feet")
  19601. },
  19602. ]
  19603. ))
  19604. characterMakers.push(() => makeCharacter(
  19605. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19606. {
  19607. front: {
  19608. height: math.unit(5 + 9 / 12, "feet"),
  19609. weight: math.unit(145, "lb"),
  19610. name: "Front",
  19611. image: {
  19612. source: "./media/characters/dawn/front.svg",
  19613. extra: 2094 / 2016,
  19614. bottom: 0.025
  19615. }
  19616. },
  19617. back: {
  19618. height: math.unit(5 + 9 / 12, "feet"),
  19619. weight: math.unit(160, "lb"),
  19620. name: "Back",
  19621. image: {
  19622. source: "./media/characters/dawn/back.svg",
  19623. extra: 2112 / 2080,
  19624. bottom: 0.005
  19625. }
  19626. },
  19627. },
  19628. [
  19629. {
  19630. name: "Normal",
  19631. height: math.unit(6 + 7 / 12, "feet"),
  19632. default: true
  19633. },
  19634. ]
  19635. ))
  19636. characterMakers.push(() => makeCharacter(
  19637. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19638. {
  19639. anthro: {
  19640. height: math.unit(8 + 3 / 12, "feet"),
  19641. weight: math.unit(450, "lb"),
  19642. name: "Anthro",
  19643. image: {
  19644. source: "./media/characters/arador/anthro.svg",
  19645. extra: 1835 / 1718,
  19646. bottom: 0.025
  19647. }
  19648. },
  19649. feral: {
  19650. height: math.unit(4, "feet"),
  19651. weight: math.unit(200, "lb"),
  19652. name: "Feral",
  19653. image: {
  19654. source: "./media/characters/arador/feral.svg",
  19655. extra: 1683 / 1514,
  19656. bottom: 0.07
  19657. }
  19658. },
  19659. },
  19660. [
  19661. {
  19662. name: "Normal",
  19663. height: math.unit(8 + 3 / 12, "feet")
  19664. },
  19665. {
  19666. name: "Macro",
  19667. height: math.unit(82.5, "feet"),
  19668. default: true
  19669. },
  19670. ]
  19671. ))
  19672. characterMakers.push(() => makeCharacter(
  19673. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19674. {
  19675. front: {
  19676. height: math.unit(5 + 10 / 12, "feet"),
  19677. weight: math.unit(125, "lb"),
  19678. name: "Front",
  19679. image: {
  19680. source: "./media/characters/dharsi/front.svg",
  19681. extra: 716 / 630,
  19682. bottom: 0.035
  19683. }
  19684. },
  19685. },
  19686. [
  19687. {
  19688. name: "Nano",
  19689. height: math.unit(100, "nm")
  19690. },
  19691. {
  19692. name: "Micro",
  19693. height: math.unit(2, "inches")
  19694. },
  19695. {
  19696. name: "Normal",
  19697. height: math.unit(5 + 10 / 12, "feet"),
  19698. default: true
  19699. },
  19700. {
  19701. name: "Macro",
  19702. height: math.unit(1000, "feet")
  19703. },
  19704. {
  19705. name: "Megamacro",
  19706. height: math.unit(10, "miles")
  19707. },
  19708. {
  19709. name: "Gigamacro",
  19710. height: math.unit(3000, "miles")
  19711. },
  19712. {
  19713. name: "Teramacro",
  19714. height: math.unit(500000, "miles")
  19715. },
  19716. {
  19717. name: "Teramacro+",
  19718. height: math.unit(30, "galaxies")
  19719. },
  19720. ]
  19721. ))
  19722. characterMakers.push(() => makeCharacter(
  19723. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19724. {
  19725. front: {
  19726. height: math.unit(6, "feet"),
  19727. weight: math.unit(150, "lb"),
  19728. name: "Front",
  19729. image: {
  19730. source: "./media/characters/deathy/front.svg",
  19731. extra: 1552 / 1463,
  19732. bottom: 0.025
  19733. }
  19734. },
  19735. side: {
  19736. height: math.unit(6, "feet"),
  19737. weight: math.unit(150, "lb"),
  19738. name: "Side",
  19739. image: {
  19740. source: "./media/characters/deathy/side.svg",
  19741. extra: 1604 / 1455,
  19742. bottom: 0.025
  19743. }
  19744. },
  19745. back: {
  19746. height: math.unit(6, "feet"),
  19747. weight: math.unit(150, "lb"),
  19748. name: "Back",
  19749. image: {
  19750. source: "./media/characters/deathy/back.svg",
  19751. extra: 1580 / 1463,
  19752. bottom: 0.005
  19753. }
  19754. },
  19755. },
  19756. [
  19757. {
  19758. name: "Micro",
  19759. height: math.unit(5, "millimeters")
  19760. },
  19761. {
  19762. name: "Normal",
  19763. height: math.unit(6 + 5 / 12, "feet"),
  19764. default: true
  19765. },
  19766. ]
  19767. ))
  19768. characterMakers.push(() => makeCharacter(
  19769. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19770. {
  19771. front: {
  19772. height: math.unit(16, "feet"),
  19773. weight: math.unit(4000, "lb"),
  19774. name: "Front",
  19775. image: {
  19776. source: "./media/characters/juniper/front.svg",
  19777. bottom: 0.04
  19778. }
  19779. },
  19780. },
  19781. [
  19782. {
  19783. name: "Normal",
  19784. height: math.unit(16, "feet"),
  19785. default: true
  19786. },
  19787. ]
  19788. ))
  19789. characterMakers.push(() => makeCharacter(
  19790. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19791. {
  19792. front: {
  19793. height: math.unit(6, "feet"),
  19794. weight: math.unit(150, "lb"),
  19795. name: "Front",
  19796. image: {
  19797. source: "./media/characters/hipster/front.svg",
  19798. extra: 1312 / 1209,
  19799. bottom: 0.025
  19800. }
  19801. },
  19802. back: {
  19803. height: math.unit(6, "feet"),
  19804. weight: math.unit(150, "lb"),
  19805. name: "Back",
  19806. image: {
  19807. source: "./media/characters/hipster/back.svg",
  19808. extra: 1281 / 1196,
  19809. bottom: 0.01
  19810. }
  19811. },
  19812. },
  19813. [
  19814. {
  19815. name: "Micro",
  19816. height: math.unit(1, "mm")
  19817. },
  19818. {
  19819. name: "Normal",
  19820. height: math.unit(4, "inches"),
  19821. default: true
  19822. },
  19823. {
  19824. name: "Macro",
  19825. height: math.unit(500, "feet")
  19826. },
  19827. {
  19828. name: "Megamacro",
  19829. height: math.unit(1000, "miles")
  19830. },
  19831. ]
  19832. ))
  19833. characterMakers.push(() => makeCharacter(
  19834. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19835. {
  19836. front: {
  19837. height: math.unit(6, "feet"),
  19838. weight: math.unit(150, "lb"),
  19839. name: "Front",
  19840. image: {
  19841. source: "./media/characters/tendirmuldr/front.svg",
  19842. extra: 1878 / 1772,
  19843. bottom: 0.015
  19844. }
  19845. },
  19846. },
  19847. [
  19848. {
  19849. name: "Megamacro",
  19850. height: math.unit(1500, "miles"),
  19851. default: true
  19852. },
  19853. ]
  19854. ))
  19855. characterMakers.push(() => makeCharacter(
  19856. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19857. {
  19858. front: {
  19859. height: math.unit(14, "feet"),
  19860. weight: math.unit(12000, "lb"),
  19861. name: "Front",
  19862. image: {
  19863. source: "./media/characters/mort/front.svg",
  19864. extra: 365 / 318,
  19865. bottom: 0.01
  19866. }
  19867. },
  19868. side: {
  19869. height: math.unit(14, "feet"),
  19870. weight: math.unit(12000, "lb"),
  19871. name: "Side",
  19872. image: {
  19873. source: "./media/characters/mort/side.svg",
  19874. extra: 365 / 318,
  19875. bottom: 0.052
  19876. },
  19877. default: true
  19878. },
  19879. back: {
  19880. height: math.unit(14, "feet"),
  19881. weight: math.unit(12000, "lb"),
  19882. name: "Back",
  19883. image: {
  19884. source: "./media/characters/mort/back.svg",
  19885. extra: 371 / 332,
  19886. bottom: 0.18
  19887. }
  19888. },
  19889. },
  19890. [
  19891. {
  19892. name: "Normal",
  19893. height: math.unit(14, "feet"),
  19894. default: true
  19895. },
  19896. ]
  19897. ))
  19898. characterMakers.push(() => makeCharacter(
  19899. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19900. {
  19901. front: {
  19902. height: math.unit(8, "feet"),
  19903. weight: math.unit(1, "ton"),
  19904. name: "Front",
  19905. image: {
  19906. source: "./media/characters/lycoa/front.svg",
  19907. extra: 1875 / 1789,
  19908. bottom: 0.022
  19909. }
  19910. },
  19911. back: {
  19912. height: math.unit(8, "feet"),
  19913. weight: math.unit(1, "ton"),
  19914. name: "Back",
  19915. image: {
  19916. source: "./media/characters/lycoa/back.svg",
  19917. extra: 1835 / 1781,
  19918. bottom: 0.03
  19919. }
  19920. },
  19921. head: {
  19922. height: math.unit(2.1, "feet"),
  19923. name: "Head",
  19924. image: {
  19925. source: "./media/characters/lycoa/head.svg"
  19926. }
  19927. },
  19928. tailmaw: {
  19929. height: math.unit(1.9, "feet"),
  19930. name: "Tailmaw",
  19931. image: {
  19932. source: "./media/characters/lycoa/tailmaw.svg"
  19933. }
  19934. },
  19935. tentacles: {
  19936. height: math.unit(2.1, "feet"),
  19937. name: "Tentacles",
  19938. image: {
  19939. source: "./media/characters/lycoa/tentacles.svg"
  19940. }
  19941. },
  19942. dick: {
  19943. height: math.unit(1.73, "feet"),
  19944. name: "Dick",
  19945. image: {
  19946. source: "./media/characters/lycoa/dick.svg"
  19947. }
  19948. },
  19949. },
  19950. [
  19951. {
  19952. name: "Normal",
  19953. height: math.unit(8, "feet"),
  19954. default: true
  19955. },
  19956. {
  19957. name: "Macro",
  19958. height: math.unit(30, "feet")
  19959. },
  19960. ]
  19961. ))
  19962. characterMakers.push(() => makeCharacter(
  19963. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19964. {
  19965. front: {
  19966. height: math.unit(4 + 2 / 12, "feet"),
  19967. weight: math.unit(70, "lb"),
  19968. name: "Front",
  19969. image: {
  19970. source: "./media/characters/naldara/front.svg",
  19971. extra: 841 / 720,
  19972. bottom: 0.04
  19973. }
  19974. },
  19975. naga: {
  19976. height: math.unit(23, "feet"),
  19977. weight: math.unit(15000, "kg"),
  19978. name: "Naga",
  19979. image: {
  19980. source: "./media/characters/naldara/naga.svg",
  19981. extra: 3290 / 2959,
  19982. bottom: 124 / 3432
  19983. }
  19984. },
  19985. },
  19986. [
  19987. {
  19988. name: "Normal",
  19989. height: math.unit(4 + 2 / 12, "feet"),
  19990. default: true
  19991. },
  19992. ]
  19993. ))
  19994. characterMakers.push(() => makeCharacter(
  19995. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19996. {
  19997. front: {
  19998. height: math.unit(13 + 7 / 12, "feet"),
  19999. weight: math.unit(1500, "lb"),
  20000. name: "Front",
  20001. image: {
  20002. source: "./media/characters/briar/front.svg",
  20003. extra: 626 / 596,
  20004. bottom: 0.08
  20005. }
  20006. },
  20007. },
  20008. [
  20009. {
  20010. name: "Normal",
  20011. height: math.unit(13 + 7 / 12, "feet"),
  20012. default: true
  20013. },
  20014. ]
  20015. ))
  20016. characterMakers.push(() => makeCharacter(
  20017. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20018. {
  20019. side: {
  20020. height: math.unit(10, "feet"),
  20021. weight: math.unit(500, "lb"),
  20022. name: "Side",
  20023. image: {
  20024. source: "./media/characters/vanguard/side.svg",
  20025. extra: 502 / 425,
  20026. bottom: 0.087
  20027. }
  20028. },
  20029. },
  20030. [
  20031. {
  20032. name: "Normal",
  20033. height: math.unit(10, "feet"),
  20034. default: true
  20035. },
  20036. ]
  20037. ))
  20038. characterMakers.push(() => makeCharacter(
  20039. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20040. {
  20041. front: {
  20042. height: math.unit(7.5, "feet"),
  20043. weight: math.unit(2, "lb"),
  20044. name: "Front",
  20045. image: {
  20046. source: "./media/characters/artemis/front.svg",
  20047. extra: 1192 / 1075,
  20048. bottom: 0.07
  20049. }
  20050. },
  20051. frontNsfw: {
  20052. height: math.unit(7.5, "feet"),
  20053. weight: math.unit(2, "lb"),
  20054. name: "Front (NSFW)",
  20055. image: {
  20056. source: "./media/characters/artemis/front-nsfw.svg",
  20057. extra: 1192 / 1075,
  20058. bottom: 0.07
  20059. }
  20060. },
  20061. frontNsfwer: {
  20062. height: math.unit(7.5, "feet"),
  20063. weight: math.unit(2, "lb"),
  20064. name: "Front (NSFW-er)",
  20065. image: {
  20066. source: "./media/characters/artemis/front-nsfwer.svg",
  20067. extra: 1192 / 1075,
  20068. bottom: 0.07
  20069. }
  20070. },
  20071. side: {
  20072. height: math.unit(7.5, "feet"),
  20073. weight: math.unit(2, "lb"),
  20074. name: "Side",
  20075. image: {
  20076. source: "./media/characters/artemis/side.svg",
  20077. extra: 1192 / 1075,
  20078. bottom: 0.07
  20079. }
  20080. },
  20081. sideNsfw: {
  20082. height: math.unit(7.5, "feet"),
  20083. weight: math.unit(2, "lb"),
  20084. name: "Side (NSFW)",
  20085. image: {
  20086. source: "./media/characters/artemis/side-nsfw.svg",
  20087. extra: 1192 / 1075,
  20088. bottom: 0.07
  20089. }
  20090. },
  20091. sideNsfwer: {
  20092. height: math.unit(7.5, "feet"),
  20093. weight: math.unit(2, "lb"),
  20094. name: "Side (NSFW-er)",
  20095. image: {
  20096. source: "./media/characters/artemis/side-nsfwer.svg",
  20097. extra: 1192 / 1075,
  20098. bottom: 0.07
  20099. }
  20100. },
  20101. maw: {
  20102. height: math.unit(1.1, "feet"),
  20103. name: "Maw",
  20104. image: {
  20105. source: "./media/characters/artemis/maw.svg"
  20106. }
  20107. },
  20108. stomach: {
  20109. height: math.unit(0.95, "feet"),
  20110. name: "Stomach",
  20111. image: {
  20112. source: "./media/characters/artemis/stomach.svg"
  20113. }
  20114. },
  20115. dickCanine: {
  20116. height: math.unit(1, "feet"),
  20117. name: "Dick (Canine)",
  20118. image: {
  20119. source: "./media/characters/artemis/dick-canine.svg"
  20120. }
  20121. },
  20122. dickEquine: {
  20123. height: math.unit(0.85, "feet"),
  20124. name: "Dick (Equine)",
  20125. image: {
  20126. source: "./media/characters/artemis/dick-equine.svg"
  20127. }
  20128. },
  20129. dickExotic: {
  20130. height: math.unit(0.85, "feet"),
  20131. name: "Dick (Exotic)",
  20132. image: {
  20133. source: "./media/characters/artemis/dick-exotic.svg"
  20134. }
  20135. },
  20136. },
  20137. [
  20138. {
  20139. name: "Normal",
  20140. height: math.unit(7.5, "feet"),
  20141. default: true
  20142. },
  20143. {
  20144. name: "Enlarged",
  20145. height: math.unit(12, "feet")
  20146. },
  20147. ]
  20148. ))
  20149. characterMakers.push(() => makeCharacter(
  20150. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20151. {
  20152. front: {
  20153. height: math.unit(5 + 3 / 12, "feet"),
  20154. weight: math.unit(160, "lb"),
  20155. name: "Front",
  20156. image: {
  20157. source: "./media/characters/kira/front.svg",
  20158. extra: 906 / 786,
  20159. bottom: 0.01
  20160. }
  20161. },
  20162. back: {
  20163. height: math.unit(5 + 3 / 12, "feet"),
  20164. weight: math.unit(160, "lb"),
  20165. name: "Back",
  20166. image: {
  20167. source: "./media/characters/kira/back.svg",
  20168. extra: 882 / 757,
  20169. bottom: 0.005
  20170. }
  20171. },
  20172. frontDressed: {
  20173. height: math.unit(5 + 3 / 12, "feet"),
  20174. weight: math.unit(160, "lb"),
  20175. name: "Front (Dressed)",
  20176. image: {
  20177. source: "./media/characters/kira/front-dressed.svg",
  20178. extra: 906 / 786,
  20179. bottom: 0.01
  20180. }
  20181. },
  20182. beans: {
  20183. height: math.unit(0.92, "feet"),
  20184. name: "Beans",
  20185. image: {
  20186. source: "./media/characters/kira/beans.svg"
  20187. }
  20188. },
  20189. },
  20190. [
  20191. {
  20192. name: "Normal",
  20193. height: math.unit(5 + 3 / 12, "feet"),
  20194. default: true
  20195. },
  20196. ]
  20197. ))
  20198. characterMakers.push(() => makeCharacter(
  20199. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20200. {
  20201. front: {
  20202. height: math.unit(5 + 4 / 12, "feet"),
  20203. weight: math.unit(145, "lb"),
  20204. name: "Front",
  20205. image: {
  20206. source: "./media/characters/scramble/front.svg",
  20207. extra: 763 / 727,
  20208. bottom: 0.05
  20209. }
  20210. },
  20211. back: {
  20212. height: math.unit(5 + 4 / 12, "feet"),
  20213. weight: math.unit(145, "lb"),
  20214. name: "Back",
  20215. image: {
  20216. source: "./media/characters/scramble/back.svg",
  20217. extra: 826 / 737,
  20218. bottom: 0.002
  20219. }
  20220. },
  20221. },
  20222. [
  20223. {
  20224. name: "Normal",
  20225. height: math.unit(5 + 4 / 12, "feet"),
  20226. default: true
  20227. },
  20228. ]
  20229. ))
  20230. characterMakers.push(() => makeCharacter(
  20231. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20232. {
  20233. side: {
  20234. height: math.unit(6 + 2 / 12, "feet"),
  20235. weight: math.unit(190, "lb"),
  20236. name: "Side",
  20237. image: {
  20238. source: "./media/characters/biscuit/side.svg",
  20239. extra: 858 / 791,
  20240. bottom: 0.044
  20241. }
  20242. },
  20243. },
  20244. [
  20245. {
  20246. name: "Normal",
  20247. height: math.unit(6 + 2 / 12, "feet"),
  20248. default: true
  20249. },
  20250. ]
  20251. ))
  20252. characterMakers.push(() => makeCharacter(
  20253. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20254. {
  20255. front: {
  20256. height: math.unit(5 + 2 / 12, "feet"),
  20257. weight: math.unit(120, "lb"),
  20258. name: "Front",
  20259. image: {
  20260. source: "./media/characters/poffin/front.svg",
  20261. extra: 786 / 680,
  20262. bottom: 0.005
  20263. }
  20264. },
  20265. },
  20266. [
  20267. {
  20268. name: "Normal",
  20269. height: math.unit(5 + 2 / 12, "feet"),
  20270. default: true
  20271. },
  20272. ]
  20273. ))
  20274. characterMakers.push(() => makeCharacter(
  20275. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20276. {
  20277. front: {
  20278. height: math.unit(6 + 3 / 12, "feet"),
  20279. weight: math.unit(519, "lb"),
  20280. name: "Front",
  20281. image: {
  20282. source: "./media/characters/dhari/front.svg",
  20283. extra: 1048 / 946,
  20284. bottom: 0.015
  20285. }
  20286. },
  20287. back: {
  20288. height: math.unit(6 + 3 / 12, "feet"),
  20289. weight: math.unit(519, "lb"),
  20290. name: "Back",
  20291. image: {
  20292. source: "./media/characters/dhari/back.svg",
  20293. extra: 1048 / 931,
  20294. bottom: 0.005
  20295. }
  20296. },
  20297. frontDressed: {
  20298. height: math.unit(6 + 3 / 12, "feet"),
  20299. weight: math.unit(519, "lb"),
  20300. name: "Front (Dressed)",
  20301. image: {
  20302. source: "./media/characters/dhari/front-dressed.svg",
  20303. extra: 1713 / 1546,
  20304. bottom: 0.02
  20305. }
  20306. },
  20307. backDressed: {
  20308. height: math.unit(6 + 3 / 12, "feet"),
  20309. weight: math.unit(519, "lb"),
  20310. name: "Back (Dressed)",
  20311. image: {
  20312. source: "./media/characters/dhari/back-dressed.svg",
  20313. extra: 1699 / 1537,
  20314. bottom: 0.01
  20315. }
  20316. },
  20317. maw: {
  20318. height: math.unit(0.95, "feet"),
  20319. name: "Maw",
  20320. image: {
  20321. source: "./media/characters/dhari/maw.svg"
  20322. }
  20323. },
  20324. wereFront: {
  20325. height: math.unit(12 + 8 / 12, "feet"),
  20326. weight: math.unit(4000, "lb"),
  20327. name: "Front (Were)",
  20328. image: {
  20329. source: "./media/characters/dhari/were-front.svg",
  20330. extra: 1065 / 969,
  20331. bottom: 0.015
  20332. }
  20333. },
  20334. wereBack: {
  20335. height: math.unit(12 + 8 / 12, "feet"),
  20336. weight: math.unit(4000, "lb"),
  20337. name: "Back (Were)",
  20338. image: {
  20339. source: "./media/characters/dhari/were-back.svg",
  20340. extra: 1065 / 969,
  20341. bottom: 0.012
  20342. }
  20343. },
  20344. wereMaw: {
  20345. height: math.unit(0.625, "meters"),
  20346. name: "Maw (Were)",
  20347. image: {
  20348. source: "./media/characters/dhari/were-maw.svg"
  20349. }
  20350. },
  20351. },
  20352. [
  20353. {
  20354. name: "Normal",
  20355. height: math.unit(6 + 3 / 12, "feet"),
  20356. default: true
  20357. },
  20358. ]
  20359. ))
  20360. characterMakers.push(() => makeCharacter(
  20361. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20362. {
  20363. anthro: {
  20364. height: math.unit(5 + 7 / 12, "feet"),
  20365. weight: math.unit(175, "lb"),
  20366. name: "Anthro",
  20367. image: {
  20368. source: "./media/characters/rena-dyne/anthro.svg",
  20369. extra: 1849 / 1785,
  20370. bottom: 0.005
  20371. }
  20372. },
  20373. taur: {
  20374. height: math.unit(15 + 6 / 12, "feet"),
  20375. weight: math.unit(8000, "lb"),
  20376. name: "Taur",
  20377. image: {
  20378. source: "./media/characters/rena-dyne/taur.svg",
  20379. extra: 2315 / 2234,
  20380. bottom: 0.033
  20381. }
  20382. },
  20383. },
  20384. [
  20385. {
  20386. name: "Normal",
  20387. height: math.unit(5 + 7 / 12, "feet"),
  20388. default: true
  20389. },
  20390. ]
  20391. ))
  20392. characterMakers.push(() => makeCharacter(
  20393. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20394. {
  20395. front: {
  20396. height: math.unit(8, "feet"),
  20397. weight: math.unit(600, "lb"),
  20398. name: "Front",
  20399. image: {
  20400. source: "./media/characters/weremeep/front.svg",
  20401. extra: 967 / 862,
  20402. bottom: 0.01
  20403. }
  20404. },
  20405. },
  20406. [
  20407. {
  20408. name: "Normal",
  20409. height: math.unit(8, "feet"),
  20410. default: true
  20411. },
  20412. {
  20413. name: "Lorg",
  20414. height: math.unit(12, "feet")
  20415. },
  20416. {
  20417. name: "Oh Lawd She Comin'",
  20418. height: math.unit(20, "feet")
  20419. },
  20420. ]
  20421. ))
  20422. characterMakers.push(() => makeCharacter(
  20423. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20424. {
  20425. front: {
  20426. height: math.unit(4, "feet"),
  20427. weight: math.unit(90, "lb"),
  20428. name: "Front",
  20429. image: {
  20430. source: "./media/characters/reza/front.svg",
  20431. extra: 1183 / 1111,
  20432. bottom: 0.017
  20433. }
  20434. },
  20435. back: {
  20436. height: math.unit(4, "feet"),
  20437. weight: math.unit(90, "lb"),
  20438. name: "Back",
  20439. image: {
  20440. source: "./media/characters/reza/back.svg",
  20441. extra: 1183 / 1111,
  20442. bottom: 0.01
  20443. }
  20444. },
  20445. drake: {
  20446. height: math.unit(30, "feet"),
  20447. weight: math.unit(246960, "lb"),
  20448. name: "Drake",
  20449. image: {
  20450. source: "./media/characters/reza/drake.svg",
  20451. extra: 2350 / 2024,
  20452. bottom: 60.7 / 2403
  20453. }
  20454. },
  20455. },
  20456. [
  20457. {
  20458. name: "Normal",
  20459. height: math.unit(4, "feet"),
  20460. default: true
  20461. },
  20462. ]
  20463. ))
  20464. characterMakers.push(() => makeCharacter(
  20465. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20466. {
  20467. side: {
  20468. height: math.unit(15, "feet"),
  20469. weight: math.unit(14, "tons"),
  20470. name: "Side",
  20471. image: {
  20472. source: "./media/characters/athea/side.svg",
  20473. extra: 960 / 540,
  20474. bottom: 0.003
  20475. }
  20476. },
  20477. sitting: {
  20478. height: math.unit(6 * 2.85, "feet"),
  20479. weight: math.unit(14, "tons"),
  20480. name: "Sitting",
  20481. image: {
  20482. source: "./media/characters/athea/sitting.svg",
  20483. extra: 621 / 581,
  20484. bottom: 0.075
  20485. }
  20486. },
  20487. maw: {
  20488. height: math.unit(7.59498031496063, "feet"),
  20489. name: "Maw",
  20490. image: {
  20491. source: "./media/characters/athea/maw.svg"
  20492. }
  20493. },
  20494. },
  20495. [
  20496. {
  20497. name: "Lap Cat",
  20498. height: math.unit(2.5, "feet")
  20499. },
  20500. {
  20501. name: "Minimacro",
  20502. height: math.unit(15, "feet"),
  20503. default: true
  20504. },
  20505. {
  20506. name: "Macro",
  20507. height: math.unit(120, "feet")
  20508. },
  20509. {
  20510. name: "Macro+",
  20511. height: math.unit(640, "feet")
  20512. },
  20513. {
  20514. name: "Colossus",
  20515. height: math.unit(2.2, "miles")
  20516. },
  20517. ]
  20518. ))
  20519. characterMakers.push(() => makeCharacter(
  20520. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20521. {
  20522. front: {
  20523. height: math.unit(8 + 8 / 12, "feet"),
  20524. weight: math.unit(130, "kg"),
  20525. name: "Front",
  20526. image: {
  20527. source: "./media/characters/seroko/front.svg",
  20528. extra: 1385 / 1280,
  20529. bottom: 0.025
  20530. }
  20531. },
  20532. back: {
  20533. height: math.unit(8 + 8 / 12, "feet"),
  20534. weight: math.unit(130, "kg"),
  20535. name: "Back",
  20536. image: {
  20537. source: "./media/characters/seroko/back.svg",
  20538. extra: 1369 / 1238,
  20539. bottom: 0.018
  20540. }
  20541. },
  20542. frontDressed: {
  20543. height: math.unit(8 + 8 / 12, "feet"),
  20544. weight: math.unit(130, "kg"),
  20545. name: "Front (Dressed)",
  20546. image: {
  20547. source: "./media/characters/seroko/front-dressed.svg",
  20548. extra: 1366 / 1275,
  20549. bottom: 0.03
  20550. }
  20551. },
  20552. },
  20553. [
  20554. {
  20555. name: "Normal",
  20556. height: math.unit(8 + 8 / 12, "feet"),
  20557. default: true
  20558. },
  20559. ]
  20560. ))
  20561. characterMakers.push(() => makeCharacter(
  20562. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20563. {
  20564. front: {
  20565. height: math.unit(5.5, "feet"),
  20566. weight: math.unit(160, "lb"),
  20567. name: "Front",
  20568. image: {
  20569. source: "./media/characters/quatzi/front.svg",
  20570. extra: 2346 / 2242,
  20571. bottom: 0.015
  20572. }
  20573. },
  20574. },
  20575. [
  20576. {
  20577. name: "Normal",
  20578. height: math.unit(5.5, "feet"),
  20579. default: true
  20580. },
  20581. {
  20582. name: "Big",
  20583. height: math.unit(7.7, "feet")
  20584. },
  20585. ]
  20586. ))
  20587. characterMakers.push(() => makeCharacter(
  20588. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20589. {
  20590. front: {
  20591. height: math.unit(5 + 11 / 12, "feet"),
  20592. weight: math.unit(180, "lb"),
  20593. name: "Front",
  20594. image: {
  20595. source: "./media/characters/sen/front.svg",
  20596. extra: 1321 / 1254,
  20597. bottom: 0.015
  20598. }
  20599. },
  20600. side: {
  20601. height: math.unit(5 + 11 / 12, "feet"),
  20602. weight: math.unit(180, "lb"),
  20603. name: "Side",
  20604. image: {
  20605. source: "./media/characters/sen/side.svg",
  20606. extra: 1321 / 1254,
  20607. bottom: 0.007
  20608. }
  20609. },
  20610. back: {
  20611. height: math.unit(5 + 11 / 12, "feet"),
  20612. weight: math.unit(180, "lb"),
  20613. name: "Back",
  20614. image: {
  20615. source: "./media/characters/sen/back.svg",
  20616. extra: 1321 / 1254
  20617. }
  20618. },
  20619. },
  20620. [
  20621. {
  20622. name: "Normal",
  20623. height: math.unit(5 + 11 / 12, "feet"),
  20624. default: true
  20625. },
  20626. ]
  20627. ))
  20628. characterMakers.push(() => makeCharacter(
  20629. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20630. {
  20631. front: {
  20632. height: math.unit(166.6, "cm"),
  20633. weight: math.unit(66.6, "kg"),
  20634. name: "Front",
  20635. image: {
  20636. source: "./media/characters/fruity/front.svg",
  20637. extra: 1510 / 1386,
  20638. bottom: 0.04
  20639. }
  20640. },
  20641. back: {
  20642. height: math.unit(166.6, "cm"),
  20643. weight: math.unit(66.6, "lb"),
  20644. name: "Back",
  20645. image: {
  20646. source: "./media/characters/fruity/back.svg",
  20647. extra: 1563 / 1435,
  20648. bottom: 0.005
  20649. }
  20650. },
  20651. },
  20652. [
  20653. {
  20654. name: "Normal",
  20655. height: math.unit(166.6, "cm"),
  20656. default: true
  20657. },
  20658. {
  20659. name: "Demonic",
  20660. height: math.unit(166.6, "feet")
  20661. },
  20662. ]
  20663. ))
  20664. characterMakers.push(() => makeCharacter(
  20665. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20666. {
  20667. side: {
  20668. height: math.unit(10, "feet"),
  20669. weight: math.unit(500, "lb"),
  20670. name: "Side",
  20671. image: {
  20672. source: "./media/characters/zost/side.svg",
  20673. extra: 966 / 880,
  20674. bottom: 0.075
  20675. }
  20676. },
  20677. mawFront: {
  20678. height: math.unit(1.08, "meters"),
  20679. name: "Maw (Front)",
  20680. image: {
  20681. source: "./media/characters/zost/maw-front.svg"
  20682. }
  20683. },
  20684. mawSide: {
  20685. height: math.unit(2.66, "feet"),
  20686. name: "Maw (Side)",
  20687. image: {
  20688. source: "./media/characters/zost/maw-side.svg"
  20689. }
  20690. },
  20691. },
  20692. [
  20693. {
  20694. name: "Normal",
  20695. height: math.unit(10, "feet"),
  20696. default: true
  20697. },
  20698. ]
  20699. ))
  20700. characterMakers.push(() => makeCharacter(
  20701. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20702. {
  20703. front: {
  20704. height: math.unit(5 + 4 / 12, "feet"),
  20705. weight: math.unit(120, "lb"),
  20706. name: "Front",
  20707. image: {
  20708. source: "./media/characters/luci/front.svg",
  20709. extra: 1985 / 1884,
  20710. bottom: 0.04
  20711. }
  20712. },
  20713. back: {
  20714. height: math.unit(5 + 4 / 12, "feet"),
  20715. weight: math.unit(120, "lb"),
  20716. name: "Back",
  20717. image: {
  20718. source: "./media/characters/luci/back.svg",
  20719. extra: 1892 / 1791,
  20720. bottom: 0.002
  20721. }
  20722. },
  20723. },
  20724. [
  20725. {
  20726. name: "Normal",
  20727. height: math.unit(5 + 4 / 12, "feet"),
  20728. default: true
  20729. },
  20730. ]
  20731. ))
  20732. characterMakers.push(() => makeCharacter(
  20733. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20734. {
  20735. front: {
  20736. height: math.unit(1500, "feet"),
  20737. weight: math.unit(3.8e6, "tons"),
  20738. name: "Front",
  20739. image: {
  20740. source: "./media/characters/2th/front.svg",
  20741. extra: 3489 / 3350,
  20742. bottom: 0.1
  20743. }
  20744. },
  20745. foot: {
  20746. height: math.unit(461, "feet"),
  20747. name: "Foot",
  20748. image: {
  20749. source: "./media/characters/2th/foot.svg"
  20750. }
  20751. },
  20752. },
  20753. [
  20754. {
  20755. name: "\"Micro\"",
  20756. height: math.unit(15 + 7 / 12, "feet")
  20757. },
  20758. {
  20759. name: "Normal",
  20760. height: math.unit(1500, "feet"),
  20761. default: true
  20762. },
  20763. {
  20764. name: "Macro",
  20765. height: math.unit(5000, "feet")
  20766. },
  20767. {
  20768. name: "Megamacro",
  20769. height: math.unit(15, "miles")
  20770. },
  20771. {
  20772. name: "Gigamacro",
  20773. height: math.unit(4000, "miles")
  20774. },
  20775. {
  20776. name: "Galactic",
  20777. height: math.unit(50, "AU")
  20778. },
  20779. ]
  20780. ))
  20781. characterMakers.push(() => makeCharacter(
  20782. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20783. {
  20784. front: {
  20785. height: math.unit(5 + 6 / 12, "feet"),
  20786. weight: math.unit(220, "lb"),
  20787. name: "Front",
  20788. image: {
  20789. source: "./media/characters/amethyst/front.svg",
  20790. extra: 2078 / 2040,
  20791. bottom: 0.045
  20792. }
  20793. },
  20794. back: {
  20795. height: math.unit(5 + 6 / 12, "feet"),
  20796. weight: math.unit(220, "lb"),
  20797. name: "Back",
  20798. image: {
  20799. source: "./media/characters/amethyst/back.svg",
  20800. extra: 2021 / 1989,
  20801. bottom: 0.02
  20802. }
  20803. },
  20804. },
  20805. [
  20806. {
  20807. name: "Normal",
  20808. height: math.unit(5 + 6 / 12, "feet"),
  20809. default: true
  20810. },
  20811. ]
  20812. ))
  20813. characterMakers.push(() => makeCharacter(
  20814. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20815. {
  20816. front: {
  20817. height: math.unit(4 + 11 / 12, "feet"),
  20818. weight: math.unit(120, "lb"),
  20819. name: "Front",
  20820. image: {
  20821. source: "./media/characters/yumi-akiyama/front.svg",
  20822. extra: 1327 / 1235,
  20823. bottom: 0.02
  20824. }
  20825. },
  20826. back: {
  20827. height: math.unit(4 + 11 / 12, "feet"),
  20828. weight: math.unit(120, "lb"),
  20829. name: "Back",
  20830. image: {
  20831. source: "./media/characters/yumi-akiyama/back.svg",
  20832. extra: 1287 / 1245,
  20833. bottom: 0.002
  20834. }
  20835. },
  20836. },
  20837. [
  20838. {
  20839. name: "Galactic",
  20840. height: math.unit(50, "galaxies"),
  20841. default: true
  20842. },
  20843. {
  20844. name: "Universal",
  20845. height: math.unit(100, "universes")
  20846. },
  20847. ]
  20848. ))
  20849. characterMakers.push(() => makeCharacter(
  20850. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20851. {
  20852. front: {
  20853. height: math.unit(8, "feet"),
  20854. weight: math.unit(500, "lb"),
  20855. name: "Front",
  20856. image: {
  20857. source: "./media/characters/rifter-yrmori/front.svg",
  20858. extra: 1180 / 1125,
  20859. bottom: 0.02
  20860. }
  20861. },
  20862. back: {
  20863. height: math.unit(8, "feet"),
  20864. weight: math.unit(500, "lb"),
  20865. name: "Back",
  20866. image: {
  20867. source: "./media/characters/rifter-yrmori/back.svg",
  20868. extra: 1190 / 1145,
  20869. bottom: 0.001
  20870. }
  20871. },
  20872. wings: {
  20873. height: math.unit(7.75, "feet"),
  20874. weight: math.unit(500, "lb"),
  20875. name: "Wings",
  20876. image: {
  20877. source: "./media/characters/rifter-yrmori/wings.svg",
  20878. extra: 1357 / 1285
  20879. }
  20880. },
  20881. maw: {
  20882. height: math.unit(0.8, "feet"),
  20883. name: "Maw",
  20884. image: {
  20885. source: "./media/characters/rifter-yrmori/maw.svg"
  20886. }
  20887. },
  20888. mawfront: {
  20889. height: math.unit(1.45, "feet"),
  20890. name: "Maw (Front)",
  20891. image: {
  20892. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20893. }
  20894. },
  20895. },
  20896. [
  20897. {
  20898. name: "Normal",
  20899. height: math.unit(8, "feet"),
  20900. default: true
  20901. },
  20902. {
  20903. name: "Macro",
  20904. height: math.unit(42, "meters")
  20905. },
  20906. ]
  20907. ))
  20908. characterMakers.push(() => makeCharacter(
  20909. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  20910. {
  20911. were: {
  20912. height: math.unit(25 + 6 / 12, "feet"),
  20913. weight: math.unit(10000, "lb"),
  20914. name: "Were",
  20915. image: {
  20916. source: "./media/characters/tahajin/were.svg",
  20917. extra: 801 / 770,
  20918. bottom: 0.042
  20919. }
  20920. },
  20921. aquatic: {
  20922. height: math.unit(6 + 4 / 12, "feet"),
  20923. weight: math.unit(160, "lb"),
  20924. name: "Aquatic",
  20925. image: {
  20926. source: "./media/characters/tahajin/aquatic.svg",
  20927. extra: 572 / 542,
  20928. bottom: 0.04
  20929. }
  20930. },
  20931. chow: {
  20932. height: math.unit(8 + 11 / 12, "feet"),
  20933. weight: math.unit(450, "lb"),
  20934. name: "Chow",
  20935. image: {
  20936. source: "./media/characters/tahajin/chow.svg",
  20937. extra: 660 / 640,
  20938. bottom: 0.015
  20939. }
  20940. },
  20941. demiNaga: {
  20942. height: math.unit(6 + 8 / 12, "feet"),
  20943. weight: math.unit(300, "lb"),
  20944. name: "Demi Naga",
  20945. image: {
  20946. source: "./media/characters/tahajin/demi-naga.svg",
  20947. extra: 643 / 615,
  20948. bottom: 0.1
  20949. }
  20950. },
  20951. data: {
  20952. height: math.unit(5, "inches"),
  20953. weight: math.unit(0.1, "lb"),
  20954. name: "Data",
  20955. image: {
  20956. source: "./media/characters/tahajin/data.svg"
  20957. }
  20958. },
  20959. fluu: {
  20960. height: math.unit(5 + 7 / 12, "feet"),
  20961. weight: math.unit(140, "lb"),
  20962. name: "Fluu",
  20963. image: {
  20964. source: "./media/characters/tahajin/fluu.svg",
  20965. extra: 628 / 592,
  20966. bottom: 0.02
  20967. }
  20968. },
  20969. starWarrior: {
  20970. height: math.unit(4 + 5 / 12, "feet"),
  20971. weight: math.unit(50, "lb"),
  20972. name: "Star Warrior",
  20973. image: {
  20974. source: "./media/characters/tahajin/star-warrior.svg"
  20975. }
  20976. },
  20977. },
  20978. [
  20979. {
  20980. name: "Normal",
  20981. height: math.unit(25 + 6 / 12, "feet"),
  20982. default: true
  20983. },
  20984. ]
  20985. ))
  20986. characterMakers.push(() => makeCharacter(
  20987. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20988. {
  20989. front: {
  20990. height: math.unit(8, "feet"),
  20991. weight: math.unit(350, "lb"),
  20992. name: "Front",
  20993. image: {
  20994. source: "./media/characters/gabira/front.svg",
  20995. extra: 608 / 580,
  20996. bottom: 0.03
  20997. }
  20998. },
  20999. back: {
  21000. height: math.unit(8, "feet"),
  21001. weight: math.unit(350, "lb"),
  21002. name: "Back",
  21003. image: {
  21004. source: "./media/characters/gabira/back.svg",
  21005. extra: 608 / 580,
  21006. bottom: 0.03
  21007. }
  21008. },
  21009. },
  21010. [
  21011. {
  21012. name: "Normal",
  21013. height: math.unit(8, "feet"),
  21014. default: true
  21015. },
  21016. ]
  21017. ))
  21018. characterMakers.push(() => makeCharacter(
  21019. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21020. {
  21021. front: {
  21022. height: math.unit(5 + 3 / 12, "feet"),
  21023. weight: math.unit(137, "lb"),
  21024. name: "Front",
  21025. image: {
  21026. source: "./media/characters/sasha-katraine/front.svg",
  21027. bottom: 0.045
  21028. }
  21029. },
  21030. },
  21031. [
  21032. {
  21033. name: "Micro",
  21034. height: math.unit(5, "inches")
  21035. },
  21036. {
  21037. name: "Normal",
  21038. height: math.unit(5 + 3 / 12, "feet"),
  21039. default: true
  21040. },
  21041. ]
  21042. ))
  21043. characterMakers.push(() => makeCharacter(
  21044. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21045. {
  21046. side: {
  21047. height: math.unit(4, "inches"),
  21048. weight: math.unit(200, "grams"),
  21049. name: "Side",
  21050. image: {
  21051. source: "./media/characters/der/side.svg",
  21052. extra: 719 / 400,
  21053. bottom: 30.6 / 749.9187
  21054. }
  21055. },
  21056. },
  21057. [
  21058. {
  21059. name: "Micro",
  21060. height: math.unit(4, "inches"),
  21061. default: true
  21062. },
  21063. ]
  21064. ))
  21065. characterMakers.push(() => makeCharacter(
  21066. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21067. {
  21068. side: {
  21069. height: math.unit(30, "meters"),
  21070. weight: math.unit(700, "tonnes"),
  21071. name: "Side",
  21072. image: {
  21073. source: "./media/characters/fixerdragon/side.svg",
  21074. extra: (1293.0514 - 116.03) / 1106.86,
  21075. bottom: 116.03 / 1293.0514
  21076. }
  21077. },
  21078. },
  21079. [
  21080. {
  21081. name: "Planck",
  21082. height: math.unit(1.6e-35, "meters")
  21083. },
  21084. {
  21085. name: "Micro",
  21086. height: math.unit(0.4, "meters")
  21087. },
  21088. {
  21089. name: "Normal",
  21090. height: math.unit(30, "meters"),
  21091. default: true
  21092. },
  21093. {
  21094. name: "Megamacro",
  21095. height: math.unit(1.2, "megameters")
  21096. },
  21097. {
  21098. name: "Teramacro",
  21099. height: math.unit(130, "terameters")
  21100. },
  21101. {
  21102. name: "Yottamacro",
  21103. height: math.unit(6200, "yottameters")
  21104. },
  21105. ]
  21106. ));
  21107. characterMakers.push(() => makeCharacter(
  21108. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21109. {
  21110. front: {
  21111. height: math.unit(8, "feet"),
  21112. weight: math.unit(250, "lb"),
  21113. name: "Front",
  21114. image: {
  21115. source: "./media/characters/kite/front.svg",
  21116. extra: 2796 / 2659,
  21117. bottom: 0.002
  21118. }
  21119. },
  21120. },
  21121. [
  21122. {
  21123. name: "Normal",
  21124. height: math.unit(8, "feet"),
  21125. default: true
  21126. },
  21127. {
  21128. name: "Macro",
  21129. height: math.unit(360, "feet")
  21130. },
  21131. {
  21132. name: "Megamacro",
  21133. height: math.unit(1500, "feet")
  21134. },
  21135. ]
  21136. ))
  21137. characterMakers.push(() => makeCharacter(
  21138. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21139. {
  21140. front: {
  21141. height: math.unit(5 + 10 / 12, "feet"),
  21142. weight: math.unit(150, "lb"),
  21143. name: "Front",
  21144. image: {
  21145. source: "./media/characters/poojawa-vynar/front.svg",
  21146. extra: (1506.1547 - 55) / 1356.6,
  21147. bottom: 55 / 1506.1547
  21148. }
  21149. },
  21150. frontTailless: {
  21151. height: math.unit(5 + 10 / 12, "feet"),
  21152. weight: math.unit(150, "lb"),
  21153. name: "Front (Tailless)",
  21154. image: {
  21155. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21156. extra: (1506.1547 - 55) / 1356.6,
  21157. bottom: 55 / 1506.1547
  21158. }
  21159. },
  21160. },
  21161. [
  21162. {
  21163. name: "Normal",
  21164. height: math.unit(5 + 10 / 12, "feet"),
  21165. default: true
  21166. },
  21167. ]
  21168. ))
  21169. characterMakers.push(() => makeCharacter(
  21170. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21171. {
  21172. front: {
  21173. height: math.unit(293, "meters"),
  21174. weight: math.unit(70400, "tons"),
  21175. name: "Front",
  21176. image: {
  21177. source: "./media/characters/violette/front.svg",
  21178. extra: 1227 / 1180,
  21179. bottom: 0.005
  21180. }
  21181. },
  21182. back: {
  21183. height: math.unit(293, "meters"),
  21184. weight: math.unit(70400, "tons"),
  21185. name: "Back",
  21186. image: {
  21187. source: "./media/characters/violette/back.svg",
  21188. extra: 1227 / 1180,
  21189. bottom: 0.005
  21190. }
  21191. },
  21192. },
  21193. [
  21194. {
  21195. name: "Macro",
  21196. height: math.unit(293, "meters"),
  21197. default: true
  21198. },
  21199. ]
  21200. ))
  21201. characterMakers.push(() => makeCharacter(
  21202. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21203. {
  21204. front: {
  21205. height: math.unit(1050, "feet"),
  21206. weight: math.unit(200000, "tons"),
  21207. name: "Front",
  21208. image: {
  21209. source: "./media/characters/alessandra/front.svg",
  21210. extra: 960 / 912,
  21211. bottom: 0.06
  21212. }
  21213. },
  21214. },
  21215. [
  21216. {
  21217. name: "Macro",
  21218. height: math.unit(1050, "feet")
  21219. },
  21220. {
  21221. name: "Macro+",
  21222. height: math.unit(900, "meters"),
  21223. default: true
  21224. },
  21225. ]
  21226. ))
  21227. characterMakers.push(() => makeCharacter(
  21228. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21229. {
  21230. front: {
  21231. height: math.unit(5, "feet"),
  21232. weight: math.unit(187, "lb"),
  21233. name: "Front",
  21234. image: {
  21235. source: "./media/characters/person/front.svg",
  21236. extra: 3087 / 2945,
  21237. bottom: 91 / 3181
  21238. }
  21239. },
  21240. },
  21241. [
  21242. {
  21243. name: "Micro",
  21244. height: math.unit(3, "inches")
  21245. },
  21246. {
  21247. name: "Normal",
  21248. height: math.unit(5, "feet"),
  21249. default: true
  21250. },
  21251. {
  21252. name: "Macro",
  21253. height: math.unit(90, "feet")
  21254. },
  21255. {
  21256. name: "Max Size",
  21257. height: math.unit(280, "feet")
  21258. },
  21259. ]
  21260. ))
  21261. characterMakers.push(() => makeCharacter(
  21262. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21263. {
  21264. front: {
  21265. height: math.unit(4.5, "meters"),
  21266. weight: math.unit(3200, "lb"),
  21267. name: "Front",
  21268. image: {
  21269. source: "./media/characters/ty/front.svg",
  21270. extra: 1038 / 960,
  21271. bottom: 31.156 / 1068
  21272. }
  21273. },
  21274. back: {
  21275. height: math.unit(4.5, "meters"),
  21276. weight: math.unit(3200, "lb"),
  21277. name: "Back",
  21278. image: {
  21279. source: "./media/characters/ty/back.svg",
  21280. extra: 1044 / 966,
  21281. bottom: 7.48 / 1049
  21282. }
  21283. },
  21284. },
  21285. [
  21286. {
  21287. name: "Normal",
  21288. height: math.unit(4.5, "meters"),
  21289. default: true
  21290. },
  21291. ]
  21292. ))
  21293. characterMakers.push(() => makeCharacter(
  21294. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21295. {
  21296. front: {
  21297. height: math.unit(5 + 4 / 12, "feet"),
  21298. weight: math.unit(115, "lb"),
  21299. name: "Front",
  21300. image: {
  21301. source: "./media/characters/rocky/front.svg",
  21302. extra: 1012 / 975,
  21303. bottom: 54 / 1066
  21304. }
  21305. },
  21306. },
  21307. [
  21308. {
  21309. name: "Normal",
  21310. height: math.unit(5 + 4 / 12, "feet"),
  21311. default: true
  21312. },
  21313. ]
  21314. ))
  21315. characterMakers.push(() => makeCharacter(
  21316. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21317. {
  21318. upright: {
  21319. height: math.unit(6, "meters"),
  21320. weight: math.unit(4000, "kg"),
  21321. name: "Upright",
  21322. image: {
  21323. source: "./media/characters/ruin/upright.svg",
  21324. extra: 668 / 661,
  21325. bottom: 42 / 799.8396
  21326. }
  21327. },
  21328. },
  21329. [
  21330. {
  21331. name: "Normal",
  21332. height: math.unit(6, "meters"),
  21333. default: true
  21334. },
  21335. ]
  21336. ))
  21337. characterMakers.push(() => makeCharacter(
  21338. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21339. {
  21340. front: {
  21341. height: math.unit(5, "feet"),
  21342. weight: math.unit(106, "lb"),
  21343. name: "Front",
  21344. image: {
  21345. source: "./media/characters/robin/front.svg",
  21346. extra: 862 / 799,
  21347. bottom: 42.4 / 914.8856
  21348. }
  21349. },
  21350. },
  21351. [
  21352. {
  21353. name: "Normal",
  21354. height: math.unit(5, "feet"),
  21355. default: true
  21356. },
  21357. ]
  21358. ))
  21359. characterMakers.push(() => makeCharacter(
  21360. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21361. {
  21362. side: {
  21363. height: math.unit(3, "feet"),
  21364. weight: math.unit(225, "lb"),
  21365. name: "Side",
  21366. image: {
  21367. source: "./media/characters/saian/side.svg",
  21368. extra: 566 / 356,
  21369. bottom: 79.7 / 643
  21370. }
  21371. },
  21372. maw: {
  21373. height: math.unit(2.85, "feet"),
  21374. name: "Maw",
  21375. image: {
  21376. source: "./media/characters/saian/maw.svg"
  21377. }
  21378. },
  21379. },
  21380. [
  21381. {
  21382. name: "Normal",
  21383. height: math.unit(3, "feet"),
  21384. default: true
  21385. },
  21386. ]
  21387. ))
  21388. characterMakers.push(() => makeCharacter(
  21389. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21390. {
  21391. side: {
  21392. height: math.unit(8, "feet"),
  21393. weight: math.unit(300, "lb"),
  21394. name: "Side",
  21395. image: {
  21396. source: "./media/characters/equus-silvermane/side.svg",
  21397. extra: 2176 / 2050,
  21398. bottom: 65.7 / 2245
  21399. }
  21400. },
  21401. front: {
  21402. height: math.unit(8, "feet"),
  21403. weight: math.unit(300, "lb"),
  21404. name: "Front",
  21405. image: {
  21406. source: "./media/characters/equus-silvermane/front.svg",
  21407. extra: 4633 / 4400,
  21408. bottom: 71.3 / 4706.915
  21409. }
  21410. },
  21411. sideStepping: {
  21412. height: math.unit(8, "feet"),
  21413. weight: math.unit(300, "lb"),
  21414. name: "Side (Stepping)",
  21415. image: {
  21416. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21417. extra: 1968 / 1860,
  21418. bottom: 16.4 / 1989
  21419. }
  21420. },
  21421. },
  21422. [
  21423. {
  21424. name: "Normal",
  21425. height: math.unit(8, "feet")
  21426. },
  21427. {
  21428. name: "Minimacro",
  21429. height: math.unit(75, "feet"),
  21430. default: true
  21431. },
  21432. {
  21433. name: "Macro",
  21434. height: math.unit(150, "feet")
  21435. },
  21436. {
  21437. name: "Macro+",
  21438. height: math.unit(1000, "feet")
  21439. },
  21440. {
  21441. name: "Megamacro",
  21442. height: math.unit(1, "mile")
  21443. },
  21444. ]
  21445. ))
  21446. characterMakers.push(() => makeCharacter(
  21447. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21448. {
  21449. side: {
  21450. height: math.unit(20, "feet"),
  21451. weight: math.unit(30000, "kg"),
  21452. name: "Side",
  21453. image: {
  21454. source: "./media/characters/windar/side.svg",
  21455. extra: 1491 / 1248,
  21456. bottom: 82.56 / 1568
  21457. }
  21458. },
  21459. },
  21460. [
  21461. {
  21462. name: "Normal",
  21463. height: math.unit(20, "feet"),
  21464. default: true
  21465. },
  21466. ]
  21467. ))
  21468. characterMakers.push(() => makeCharacter(
  21469. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21470. {
  21471. side: {
  21472. height: math.unit(15.66, "feet"),
  21473. weight: math.unit(150, "lb"),
  21474. name: "Side",
  21475. image: {
  21476. source: "./media/characters/melody/side.svg",
  21477. extra: 1097 / 944,
  21478. bottom: 11.8 / 1109
  21479. }
  21480. },
  21481. sideOutfit: {
  21482. height: math.unit(15.66, "feet"),
  21483. weight: math.unit(150, "lb"),
  21484. name: "Side (Outfit)",
  21485. image: {
  21486. source: "./media/characters/melody/side-outfit.svg",
  21487. extra: 1097 / 944,
  21488. bottom: 11.8 / 1109
  21489. }
  21490. },
  21491. },
  21492. [
  21493. {
  21494. name: "Normal",
  21495. height: math.unit(15.66, "feet"),
  21496. default: true
  21497. },
  21498. ]
  21499. ))
  21500. characterMakers.push(() => makeCharacter(
  21501. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21502. {
  21503. front: {
  21504. height: math.unit(8, "feet"),
  21505. weight: math.unit(325, "lb"),
  21506. name: "Front",
  21507. image: {
  21508. source: "./media/characters/windera/front.svg",
  21509. extra: 3180 / 2845,
  21510. bottom: 178 / 3365
  21511. }
  21512. },
  21513. },
  21514. [
  21515. {
  21516. name: "Normal",
  21517. height: math.unit(8, "feet"),
  21518. default: true
  21519. },
  21520. ]
  21521. ))
  21522. characterMakers.push(() => makeCharacter(
  21523. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21524. {
  21525. front: {
  21526. height: math.unit(28.75, "feet"),
  21527. weight: math.unit(2000, "kg"),
  21528. name: "Front",
  21529. image: {
  21530. source: "./media/characters/sonear/front.svg",
  21531. extra: 1041.1 / 964.9,
  21532. bottom: 53.7 / 1096.6
  21533. }
  21534. },
  21535. },
  21536. [
  21537. {
  21538. name: "Normal",
  21539. height: math.unit(28.75, "feet"),
  21540. default: true
  21541. },
  21542. ]
  21543. ))
  21544. characterMakers.push(() => makeCharacter(
  21545. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21546. {
  21547. side: {
  21548. height: math.unit(25.5, "feet"),
  21549. weight: math.unit(23000, "kg"),
  21550. name: "Side",
  21551. image: {
  21552. source: "./media/characters/kanara/side.svg"
  21553. }
  21554. },
  21555. },
  21556. [
  21557. {
  21558. name: "Normal",
  21559. height: math.unit(25.5, "feet"),
  21560. default: true
  21561. },
  21562. ]
  21563. ))
  21564. characterMakers.push(() => makeCharacter(
  21565. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21566. {
  21567. side: {
  21568. height: math.unit(10, "feet"),
  21569. weight: math.unit(1000, "kg"),
  21570. name: "Side",
  21571. image: {
  21572. source: "./media/characters/ereus/side.svg",
  21573. extra: 1157 / 959,
  21574. bottom: 153 / 1312.5
  21575. }
  21576. },
  21577. },
  21578. [
  21579. {
  21580. name: "Normal",
  21581. height: math.unit(10, "feet"),
  21582. default: true
  21583. },
  21584. ]
  21585. ))
  21586. characterMakers.push(() => makeCharacter(
  21587. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21588. {
  21589. side: {
  21590. height: math.unit(4.5, "feet"),
  21591. weight: math.unit(500, "lb"),
  21592. name: "Side",
  21593. image: {
  21594. source: "./media/characters/e-ter/side.svg",
  21595. extra: 1550 / 1248,
  21596. bottom: 146 / 1694
  21597. }
  21598. },
  21599. },
  21600. [
  21601. {
  21602. name: "Normal",
  21603. height: math.unit(4.5, "feet"),
  21604. default: true
  21605. },
  21606. ]
  21607. ))
  21608. characterMakers.push(() => makeCharacter(
  21609. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21610. {
  21611. side: {
  21612. height: math.unit(9.7, "feet"),
  21613. weight: math.unit(4000, "kg"),
  21614. name: "Side",
  21615. image: {
  21616. source: "./media/characters/yamie/side.svg"
  21617. }
  21618. },
  21619. },
  21620. [
  21621. {
  21622. name: "Normal",
  21623. height: math.unit(9.7, "feet"),
  21624. default: true
  21625. },
  21626. ]
  21627. ))
  21628. characterMakers.push(() => makeCharacter(
  21629. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21630. {
  21631. front: {
  21632. height: math.unit(50, "feet"),
  21633. weight: math.unit(50000, "kg"),
  21634. name: "Front",
  21635. image: {
  21636. source: "./media/characters/anders/front.svg",
  21637. extra: 570 / 539,
  21638. bottom: 14.7 / 586.7
  21639. }
  21640. },
  21641. },
  21642. [
  21643. {
  21644. name: "Large",
  21645. height: math.unit(50, "feet")
  21646. },
  21647. {
  21648. name: "Macro",
  21649. height: math.unit(2000, "feet"),
  21650. default: true
  21651. },
  21652. {
  21653. name: "Megamacro",
  21654. height: math.unit(12, "miles")
  21655. },
  21656. ]
  21657. ))
  21658. characterMakers.push(() => makeCharacter(
  21659. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21660. {
  21661. front: {
  21662. height: math.unit(7 + 2 / 12, "feet"),
  21663. weight: math.unit(300, "lb"),
  21664. name: "Front",
  21665. image: {
  21666. source: "./media/characters/reban/front.svg",
  21667. extra: 516 / 487,
  21668. bottom: 42.82 / 558.356
  21669. }
  21670. },
  21671. dick: {
  21672. height: math.unit(7 / 5, "feet"),
  21673. name: "Dick",
  21674. image: {
  21675. source: "./media/characters/reban/dick.svg"
  21676. }
  21677. },
  21678. },
  21679. [
  21680. {
  21681. name: "Natural Height",
  21682. height: math.unit(7 + 2 / 12, "feet")
  21683. },
  21684. {
  21685. name: "Macro",
  21686. height: math.unit(500, "feet"),
  21687. default: true
  21688. },
  21689. {
  21690. name: "Canon Height",
  21691. height: math.unit(50, "AU")
  21692. },
  21693. ]
  21694. ))
  21695. characterMakers.push(() => makeCharacter(
  21696. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21697. {
  21698. front: {
  21699. height: math.unit(6, "feet"),
  21700. weight: math.unit(150, "lb"),
  21701. name: "Front",
  21702. image: {
  21703. source: "./media/characters/terrance-keayes/front.svg",
  21704. extra: 1.005,
  21705. bottom: 151 / 1615
  21706. }
  21707. },
  21708. side: {
  21709. height: math.unit(6, "feet"),
  21710. weight: math.unit(150, "lb"),
  21711. name: "Side",
  21712. image: {
  21713. source: "./media/characters/terrance-keayes/side.svg",
  21714. extra: 1.005,
  21715. bottom: 129.4 / 1544
  21716. }
  21717. },
  21718. back: {
  21719. height: math.unit(6, "feet"),
  21720. weight: math.unit(150, "lb"),
  21721. name: "Back",
  21722. image: {
  21723. source: "./media/characters/terrance-keayes/back.svg",
  21724. extra: 1.005,
  21725. bottom: 58.4 / 1557.3
  21726. }
  21727. },
  21728. dick: {
  21729. height: math.unit(6 * 0.208, "feet"),
  21730. name: "Dick",
  21731. image: {
  21732. source: "./media/characters/terrance-keayes/dick.svg"
  21733. }
  21734. },
  21735. },
  21736. [
  21737. {
  21738. name: "Canon Height",
  21739. height: math.unit(35, "miles"),
  21740. default: true
  21741. },
  21742. ]
  21743. ))
  21744. characterMakers.push(() => makeCharacter(
  21745. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21746. {
  21747. front: {
  21748. height: math.unit(6, "feet"),
  21749. weight: math.unit(150, "lb"),
  21750. name: "Front",
  21751. image: {
  21752. source: "./media/characters/ofelia/front.svg",
  21753. extra: 546 / 541,
  21754. bottom: 39 / 583
  21755. }
  21756. },
  21757. back: {
  21758. height: math.unit(6, "feet"),
  21759. weight: math.unit(150, "lb"),
  21760. name: "Back",
  21761. image: {
  21762. source: "./media/characters/ofelia/back.svg",
  21763. extra: 564 / 559.5,
  21764. bottom: 8.69 / 573.02
  21765. }
  21766. },
  21767. maw: {
  21768. height: math.unit(1, "feet"),
  21769. name: "Maw",
  21770. image: {
  21771. source: "./media/characters/ofelia/maw.svg"
  21772. }
  21773. },
  21774. foot: {
  21775. height: math.unit(1.949, "feet"),
  21776. name: "Foot",
  21777. image: {
  21778. source: "./media/characters/ofelia/foot.svg"
  21779. }
  21780. },
  21781. },
  21782. [
  21783. {
  21784. name: "Canon Height",
  21785. height: math.unit(2000, "miles"),
  21786. default: true
  21787. },
  21788. ]
  21789. ))
  21790. characterMakers.push(() => makeCharacter(
  21791. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21792. {
  21793. front: {
  21794. height: math.unit(6, "feet"),
  21795. weight: math.unit(150, "lb"),
  21796. name: "Front",
  21797. image: {
  21798. source: "./media/characters/samuel/front.svg",
  21799. extra: 265 / 258,
  21800. bottom: 2 / 266.1566
  21801. }
  21802. },
  21803. },
  21804. [
  21805. {
  21806. name: "Macro",
  21807. height: math.unit(100, "feet"),
  21808. default: true
  21809. },
  21810. {
  21811. name: "Full Size",
  21812. height: math.unit(1000, "miles")
  21813. },
  21814. ]
  21815. ))
  21816. characterMakers.push(() => makeCharacter(
  21817. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21818. {
  21819. front: {
  21820. height: math.unit(6, "feet"),
  21821. weight: math.unit(300, "lb"),
  21822. name: "Front",
  21823. image: {
  21824. source: "./media/characters/beishir-kiel/front.svg",
  21825. extra: 569 / 547,
  21826. bottom: 41.9 / 609
  21827. }
  21828. },
  21829. maw: {
  21830. height: math.unit(6 * 0.202, "feet"),
  21831. name: "Maw",
  21832. image: {
  21833. source: "./media/characters/beishir-kiel/maw.svg"
  21834. }
  21835. },
  21836. },
  21837. [
  21838. {
  21839. name: "Macro",
  21840. height: math.unit(300, "feet"),
  21841. default: true
  21842. },
  21843. ]
  21844. ))
  21845. characterMakers.push(() => makeCharacter(
  21846. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21847. {
  21848. front: {
  21849. height: math.unit(5 + 8 / 12, "feet"),
  21850. weight: math.unit(120, "lb"),
  21851. name: "Front",
  21852. image: {
  21853. source: "./media/characters/logan-grey/front.svg",
  21854. extra: 2539 / 2393,
  21855. bottom: 97.6 / 2636.37
  21856. }
  21857. },
  21858. frontAlt: {
  21859. height: math.unit(5 + 8 / 12, "feet"),
  21860. weight: math.unit(120, "lb"),
  21861. name: "Front (Alt)",
  21862. image: {
  21863. source: "./media/characters/logan-grey/front-alt.svg",
  21864. extra: 958 / 893,
  21865. bottom: 15 / 970.768
  21866. }
  21867. },
  21868. back: {
  21869. height: math.unit(5 + 8 / 12, "feet"),
  21870. weight: math.unit(120, "lb"),
  21871. name: "Back",
  21872. image: {
  21873. source: "./media/characters/logan-grey/back.svg",
  21874. extra: 958 / 893,
  21875. bottom: 2.1881 / 970.9788
  21876. }
  21877. },
  21878. dick: {
  21879. height: math.unit(1.437, "feet"),
  21880. name: "Dick",
  21881. image: {
  21882. source: "./media/characters/logan-grey/dick.svg"
  21883. }
  21884. },
  21885. },
  21886. [
  21887. {
  21888. name: "Normal",
  21889. height: math.unit(5 + 8 / 12, "feet")
  21890. },
  21891. {
  21892. name: "The 500 Foot Femboy",
  21893. height: math.unit(500, "feet"),
  21894. default: true
  21895. },
  21896. {
  21897. name: "Megmacro",
  21898. height: math.unit(20, "miles")
  21899. },
  21900. ]
  21901. ))
  21902. characterMakers.push(() => makeCharacter(
  21903. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21904. {
  21905. front: {
  21906. height: math.unit(8 + 2 / 12, "feet"),
  21907. weight: math.unit(275, "lb"),
  21908. name: "Front",
  21909. image: {
  21910. source: "./media/characters/draganta/front.svg",
  21911. extra: 1177 / 1135,
  21912. bottom: 33.46 / 1212.1
  21913. }
  21914. },
  21915. },
  21916. [
  21917. {
  21918. name: "Normal",
  21919. height: math.unit(8 + 6 / 12, "feet"),
  21920. default: true
  21921. },
  21922. {
  21923. name: "Macro",
  21924. height: math.unit(150, "feet")
  21925. },
  21926. {
  21927. name: "Megamacro",
  21928. height: math.unit(1000, "miles")
  21929. },
  21930. ]
  21931. ))
  21932. characterMakers.push(() => makeCharacter(
  21933. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21934. {
  21935. front: {
  21936. height: math.unit(1.72, "m"),
  21937. weight: math.unit(80, "lb"),
  21938. name: "Front",
  21939. image: {
  21940. source: "./media/characters/voski/front.svg",
  21941. extra: 2076.22 / 2022.4,
  21942. bottom: 102.7 / 2177.3866
  21943. }
  21944. },
  21945. frontNsfw: {
  21946. height: math.unit(1.72, "m"),
  21947. weight: math.unit(80, "lb"),
  21948. name: "Front (NSFW)",
  21949. image: {
  21950. source: "./media/characters/voski/front-nsfw.svg",
  21951. extra: 2076.22 / 2022.4,
  21952. bottom: 102.7 / 2177.3866
  21953. }
  21954. },
  21955. back: {
  21956. height: math.unit(1.72, "m"),
  21957. weight: math.unit(80, "lb"),
  21958. name: "Back",
  21959. image: {
  21960. source: "./media/characters/voski/back.svg",
  21961. extra: 2104 / 2051,
  21962. bottom: 10.45 / 2113.63
  21963. }
  21964. },
  21965. },
  21966. [
  21967. {
  21968. name: "Normal",
  21969. height: math.unit(1.72, "m")
  21970. },
  21971. {
  21972. name: "Macro",
  21973. height: math.unit(55, "m"),
  21974. default: true
  21975. },
  21976. {
  21977. name: "Macro+",
  21978. height: math.unit(300, "m")
  21979. },
  21980. {
  21981. name: "Macro++",
  21982. height: math.unit(700, "m")
  21983. },
  21984. {
  21985. name: "Macro+++",
  21986. height: math.unit(4500, "m")
  21987. },
  21988. {
  21989. name: "Macro++++",
  21990. height: math.unit(45, "km")
  21991. },
  21992. {
  21993. name: "Macro+++++",
  21994. height: math.unit(1220, "km")
  21995. },
  21996. ]
  21997. ))
  21998. characterMakers.push(() => makeCharacter(
  21999. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22000. {
  22001. front: {
  22002. height: math.unit(2.3, "m"),
  22003. weight: math.unit(304, "kg"),
  22004. name: "Front",
  22005. image: {
  22006. source: "./media/characters/icowom-lee/front.svg",
  22007. extra: 985 / 955,
  22008. bottom: 25.4 / 1012
  22009. }
  22010. },
  22011. fronttentacles: {
  22012. height: math.unit(2.3, "m"),
  22013. weight: math.unit(304, "kg"),
  22014. name: "Front-tentacles",
  22015. image: {
  22016. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22017. extra: 985 / 955,
  22018. bottom: 25.4 / 1012
  22019. }
  22020. },
  22021. back: {
  22022. height: math.unit(2.3, "m"),
  22023. weight: math.unit(304, "kg"),
  22024. name: "Back",
  22025. image: {
  22026. source: "./media/characters/icowom-lee/back.svg",
  22027. extra: 975 / 954,
  22028. bottom: 9.5 / 985
  22029. }
  22030. },
  22031. backtentacles: {
  22032. height: math.unit(2.3, "m"),
  22033. weight: math.unit(304, "kg"),
  22034. name: "Back-tentacles",
  22035. image: {
  22036. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22037. extra: 975 / 954,
  22038. bottom: 9.5 / 985
  22039. }
  22040. },
  22041. frontDressed: {
  22042. height: math.unit(2.3, "m"),
  22043. weight: math.unit(304, "kg"),
  22044. name: "Front (Dressed)",
  22045. image: {
  22046. source: "./media/characters/icowom-lee/front-dressed.svg",
  22047. extra: 3076 / 2933,
  22048. bottom: 51.4 / 3125.1889
  22049. }
  22050. },
  22051. rump: {
  22052. height: math.unit(0.776, "meters"),
  22053. name: "Rump",
  22054. image: {
  22055. source: "./media/characters/icowom-lee/rump.svg"
  22056. }
  22057. },
  22058. genitals: {
  22059. height: math.unit(0.78, "meters"),
  22060. name: "Genitals",
  22061. image: {
  22062. source: "./media/characters/icowom-lee/genitals.svg"
  22063. }
  22064. },
  22065. },
  22066. [
  22067. {
  22068. name: "Normal",
  22069. height: math.unit(2.3, "meters"),
  22070. default: true
  22071. },
  22072. {
  22073. name: "Macro",
  22074. height: math.unit(94, "meters"),
  22075. default: true
  22076. },
  22077. ]
  22078. ))
  22079. characterMakers.push(() => makeCharacter(
  22080. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22081. {
  22082. front: {
  22083. height: math.unit(22, "meters"),
  22084. weight: math.unit(21000, "kg"),
  22085. name: "Front",
  22086. image: {
  22087. source: "./media/characters/shock-diamond/front.svg",
  22088. extra: 2204 / 2053,
  22089. bottom: 65 / 2239.47
  22090. }
  22091. },
  22092. frontNude: {
  22093. height: math.unit(22, "meters"),
  22094. weight: math.unit(21000, "kg"),
  22095. name: "Front (Nude)",
  22096. image: {
  22097. source: "./media/characters/shock-diamond/front-nude.svg",
  22098. extra: 2514 / 2285,
  22099. bottom: 13 / 2527.56
  22100. }
  22101. },
  22102. },
  22103. [
  22104. {
  22105. name: "Normal",
  22106. height: math.unit(3, "meters")
  22107. },
  22108. {
  22109. name: "Macro",
  22110. height: math.unit(22, "meters"),
  22111. default: true
  22112. },
  22113. ]
  22114. ))
  22115. characterMakers.push(() => makeCharacter(
  22116. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22117. {
  22118. front: {
  22119. height: math.unit(5 + 4 / 12, "feet"),
  22120. weight: math.unit(120, "lb"),
  22121. name: "Front",
  22122. image: {
  22123. source: "./media/characters/rory/front.svg",
  22124. extra: 589 / 556,
  22125. bottom: 45.7 / 635.76
  22126. }
  22127. },
  22128. frontNude: {
  22129. height: math.unit(5 + 4 / 12, "feet"),
  22130. weight: math.unit(120, "lb"),
  22131. name: "Front (Nude)",
  22132. image: {
  22133. source: "./media/characters/rory/front-nude.svg",
  22134. extra: 589 / 556,
  22135. bottom: 45.7 / 635.76
  22136. }
  22137. },
  22138. side: {
  22139. height: math.unit(5 + 4 / 12, "feet"),
  22140. weight: math.unit(120, "lb"),
  22141. name: "Side",
  22142. image: {
  22143. source: "./media/characters/rory/side.svg",
  22144. extra: 597 / 564,
  22145. bottom: 55 / 653
  22146. }
  22147. },
  22148. back: {
  22149. height: math.unit(5 + 4 / 12, "feet"),
  22150. weight: math.unit(120, "lb"),
  22151. name: "Back",
  22152. image: {
  22153. source: "./media/characters/rory/back.svg",
  22154. extra: 620 / 585,
  22155. bottom: 8.86 / 630.43
  22156. }
  22157. },
  22158. dick: {
  22159. height: math.unit(0.86, "feet"),
  22160. name: "Dick",
  22161. image: {
  22162. source: "./media/characters/rory/dick.svg"
  22163. }
  22164. },
  22165. },
  22166. [
  22167. {
  22168. name: "Normal",
  22169. height: math.unit(5 + 4 / 12, "feet"),
  22170. default: true
  22171. },
  22172. {
  22173. name: "Macro",
  22174. height: math.unit(100, "feet")
  22175. },
  22176. {
  22177. name: "Macro+",
  22178. height: math.unit(140, "feet")
  22179. },
  22180. {
  22181. name: "Macro++",
  22182. height: math.unit(300, "feet")
  22183. },
  22184. ]
  22185. ))
  22186. characterMakers.push(() => makeCharacter(
  22187. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22188. {
  22189. front: {
  22190. height: math.unit(5 + 9 / 12, "feet"),
  22191. weight: math.unit(190, "lb"),
  22192. name: "Front",
  22193. image: {
  22194. source: "./media/characters/sprisk/front.svg",
  22195. extra: 1225 / 1180,
  22196. bottom: 42.7 / 1266.4
  22197. }
  22198. },
  22199. frontNsfw: {
  22200. height: math.unit(5 + 9 / 12, "feet"),
  22201. weight: math.unit(190, "lb"),
  22202. name: "Front (NSFW)",
  22203. image: {
  22204. source: "./media/characters/sprisk/front-nsfw.svg",
  22205. extra: 1225 / 1180,
  22206. bottom: 42.7 / 1266.4
  22207. }
  22208. },
  22209. back: {
  22210. height: math.unit(5 + 9 / 12, "feet"),
  22211. weight: math.unit(190, "lb"),
  22212. name: "Back",
  22213. image: {
  22214. source: "./media/characters/sprisk/back.svg",
  22215. extra: 1247 / 1200,
  22216. bottom: 5.6 / 1253.04
  22217. }
  22218. },
  22219. },
  22220. [
  22221. {
  22222. name: "Tiny",
  22223. height: math.unit(2, "inches")
  22224. },
  22225. {
  22226. name: "Normal",
  22227. height: math.unit(5 + 9 / 12, "feet"),
  22228. default: true
  22229. },
  22230. {
  22231. name: "Mini Macro",
  22232. height: math.unit(18, "feet")
  22233. },
  22234. {
  22235. name: "Macro",
  22236. height: math.unit(100, "feet")
  22237. },
  22238. {
  22239. name: "MACRO",
  22240. height: math.unit(50, "miles")
  22241. },
  22242. {
  22243. name: "M A C R O",
  22244. height: math.unit(300, "miles")
  22245. },
  22246. ]
  22247. ))
  22248. characterMakers.push(() => makeCharacter(
  22249. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22250. {
  22251. side: {
  22252. height: math.unit(15.6, "meters"),
  22253. weight: math.unit(700000, "kg"),
  22254. name: "Side",
  22255. image: {
  22256. source: "./media/characters/bunsen/side.svg",
  22257. extra: 1644 / 358
  22258. }
  22259. },
  22260. foot: {
  22261. height: math.unit(1.611 * 1644 / 358, "meter"),
  22262. name: "Foot",
  22263. image: {
  22264. source: "./media/characters/bunsen/foot.svg"
  22265. }
  22266. },
  22267. },
  22268. [
  22269. {
  22270. name: "Small",
  22271. height: math.unit(10, "feet")
  22272. },
  22273. {
  22274. name: "Normal",
  22275. height: math.unit(15.6, "meters"),
  22276. default: true
  22277. },
  22278. ]
  22279. ))
  22280. characterMakers.push(() => makeCharacter(
  22281. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22282. {
  22283. front: {
  22284. height: math.unit(4 + 11 / 12, "feet"),
  22285. weight: math.unit(140, "lb"),
  22286. name: "Front",
  22287. image: {
  22288. source: "./media/characters/sesh/front.svg",
  22289. extra: 3420 / 3231,
  22290. bottom: 72 / 3949.5
  22291. }
  22292. },
  22293. },
  22294. [
  22295. {
  22296. name: "Normal",
  22297. height: math.unit(4 + 11 / 12, "feet")
  22298. },
  22299. {
  22300. name: "Grown",
  22301. height: math.unit(15, "feet"),
  22302. default: true
  22303. },
  22304. {
  22305. name: "Macro",
  22306. height: math.unit(1500, "feet")
  22307. },
  22308. {
  22309. name: "Megamacro",
  22310. height: math.unit(30, "miles")
  22311. },
  22312. {
  22313. name: "Continental",
  22314. height: math.unit(3000, "miles")
  22315. },
  22316. {
  22317. name: "Gravity Mass",
  22318. height: math.unit(300000, "miles")
  22319. },
  22320. {
  22321. name: "Planet Buster",
  22322. height: math.unit(30000000, "miles")
  22323. },
  22324. {
  22325. name: "Big",
  22326. height: math.unit(3000000000, "miles")
  22327. },
  22328. ]
  22329. ))
  22330. characterMakers.push(() => makeCharacter(
  22331. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22332. {
  22333. front: {
  22334. height: math.unit(9, "feet"),
  22335. weight: math.unit(350, "lb"),
  22336. name: "Front",
  22337. image: {
  22338. source: "./media/characters/pepper/front.svg",
  22339. extra: 1448 / 1312,
  22340. bottom: 9.4 / 1457.88
  22341. }
  22342. },
  22343. back: {
  22344. height: math.unit(9, "feet"),
  22345. weight: math.unit(350, "lb"),
  22346. name: "Back",
  22347. image: {
  22348. source: "./media/characters/pepper/back.svg",
  22349. extra: 1423 / 1300,
  22350. bottom: 4.6 / 1429
  22351. }
  22352. },
  22353. maw: {
  22354. height: math.unit(0.932, "feet"),
  22355. name: "Maw",
  22356. image: {
  22357. source: "./media/characters/pepper/maw.svg"
  22358. }
  22359. },
  22360. },
  22361. [
  22362. {
  22363. name: "Normal",
  22364. height: math.unit(9, "feet"),
  22365. default: true
  22366. },
  22367. ]
  22368. ))
  22369. characterMakers.push(() => makeCharacter(
  22370. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22371. {
  22372. front: {
  22373. height: math.unit(6, "feet"),
  22374. weight: math.unit(150, "lb"),
  22375. name: "Front",
  22376. image: {
  22377. source: "./media/characters/maelstrom/front.svg",
  22378. extra: 2100 / 1883,
  22379. bottom: 94 / 2196.7
  22380. }
  22381. },
  22382. },
  22383. [
  22384. {
  22385. name: "Less Kaiju",
  22386. height: math.unit(200, "feet")
  22387. },
  22388. {
  22389. name: "Kaiju",
  22390. height: math.unit(400, "feet"),
  22391. default: true
  22392. },
  22393. {
  22394. name: "Kaiju-er",
  22395. height: math.unit(600, "feet")
  22396. },
  22397. ]
  22398. ))
  22399. characterMakers.push(() => makeCharacter(
  22400. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22401. {
  22402. front: {
  22403. height: math.unit(6 + 5 / 12, "feet"),
  22404. weight: math.unit(180, "lb"),
  22405. name: "Front",
  22406. image: {
  22407. source: "./media/characters/lexir/front.svg",
  22408. extra: 180 / 172,
  22409. bottom: 12 / 192
  22410. }
  22411. },
  22412. back: {
  22413. height: math.unit(6 + 5 / 12, "feet"),
  22414. weight: math.unit(180, "lb"),
  22415. name: "Back",
  22416. image: {
  22417. source: "./media/characters/lexir/back.svg",
  22418. extra: 183.84 / 175.5,
  22419. bottom: 3.1 / 187
  22420. }
  22421. },
  22422. },
  22423. [
  22424. {
  22425. name: "Very Smal",
  22426. height: math.unit(1, "nm")
  22427. },
  22428. {
  22429. name: "Normal",
  22430. height: math.unit(6 + 5 / 12, "feet"),
  22431. default: true
  22432. },
  22433. {
  22434. name: "Macro",
  22435. height: math.unit(1, "mile")
  22436. },
  22437. {
  22438. name: "Megamacro",
  22439. height: math.unit(50, "miles")
  22440. },
  22441. ]
  22442. ))
  22443. characterMakers.push(() => makeCharacter(
  22444. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22445. {
  22446. front: {
  22447. height: math.unit(1.5, "meters"),
  22448. weight: math.unit(100, "lb"),
  22449. name: "Front",
  22450. image: {
  22451. source: "./media/characters/maksio/front.svg",
  22452. extra: 1549 / 1531,
  22453. bottom: 123.7 / 1674.5429
  22454. }
  22455. },
  22456. back: {
  22457. height: math.unit(1.5, "meters"),
  22458. weight: math.unit(100, "lb"),
  22459. name: "Back",
  22460. image: {
  22461. source: "./media/characters/maksio/back.svg",
  22462. extra: 1541 / 1509,
  22463. bottom: 97 / 1639
  22464. }
  22465. },
  22466. hand: {
  22467. height: math.unit(0.621, "feet"),
  22468. name: "Hand",
  22469. image: {
  22470. source: "./media/characters/maksio/hand.svg"
  22471. }
  22472. },
  22473. foot: {
  22474. height: math.unit(1.611, "feet"),
  22475. name: "Foot",
  22476. image: {
  22477. source: "./media/characters/maksio/foot.svg"
  22478. }
  22479. },
  22480. },
  22481. [
  22482. {
  22483. name: "Shrunken",
  22484. height: math.unit(10, "cm")
  22485. },
  22486. {
  22487. name: "Normal",
  22488. height: math.unit(150, "cm"),
  22489. default: true
  22490. },
  22491. ]
  22492. ))
  22493. characterMakers.push(() => makeCharacter(
  22494. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22495. {
  22496. front: {
  22497. height: math.unit(100, "feet"),
  22498. name: "Front",
  22499. image: {
  22500. source: "./media/characters/erza-bear/front.svg",
  22501. extra: 2449 / 2390,
  22502. bottom: 46 / 2494
  22503. }
  22504. },
  22505. back: {
  22506. height: math.unit(100, "feet"),
  22507. name: "Back",
  22508. image: {
  22509. source: "./media/characters/erza-bear/back.svg",
  22510. extra: 2489 / 2430,
  22511. bottom: 85.4 / 2480
  22512. }
  22513. },
  22514. tail: {
  22515. height: math.unit(42, "feet"),
  22516. name: "Tail",
  22517. image: {
  22518. source: "./media/characters/erza-bear/tail.svg"
  22519. }
  22520. },
  22521. tongue: {
  22522. height: math.unit(8, "feet"),
  22523. name: "Tongue",
  22524. image: {
  22525. source: "./media/characters/erza-bear/tongue.svg"
  22526. }
  22527. },
  22528. dick: {
  22529. height: math.unit(10.5, "feet"),
  22530. name: "Dick",
  22531. image: {
  22532. source: "./media/characters/erza-bear/dick.svg"
  22533. }
  22534. },
  22535. dickVertical: {
  22536. height: math.unit(16.9, "feet"),
  22537. name: "Dick (Vertical)",
  22538. image: {
  22539. source: "./media/characters/erza-bear/dick-vertical.svg"
  22540. }
  22541. },
  22542. },
  22543. [
  22544. {
  22545. name: "Macro",
  22546. height: math.unit(100, "feet"),
  22547. default: true
  22548. },
  22549. ]
  22550. ))
  22551. characterMakers.push(() => makeCharacter(
  22552. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22553. {
  22554. front: {
  22555. height: math.unit(172, "cm"),
  22556. weight: math.unit(73, "kg"),
  22557. name: "Front",
  22558. image: {
  22559. source: "./media/characters/violet-flor/front.svg",
  22560. extra: 1530 / 1442,
  22561. bottom: 61.9 / 1588.8
  22562. }
  22563. },
  22564. back: {
  22565. height: math.unit(180, "cm"),
  22566. weight: math.unit(73, "kg"),
  22567. name: "Back",
  22568. image: {
  22569. source: "./media/characters/violet-flor/back.svg",
  22570. extra: 1692 / 1630,
  22571. bottom: 20 / 1712
  22572. }
  22573. },
  22574. },
  22575. [
  22576. {
  22577. name: "Normal",
  22578. height: math.unit(172, "cm"),
  22579. default: true
  22580. },
  22581. ]
  22582. ))
  22583. characterMakers.push(() => makeCharacter(
  22584. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22585. {
  22586. front: {
  22587. height: math.unit(6, "feet"),
  22588. weight: math.unit(220, "lb"),
  22589. name: "Front",
  22590. image: {
  22591. source: "./media/characters/lynn-rhea/front.svg",
  22592. extra: 310 / 273
  22593. }
  22594. },
  22595. back: {
  22596. height: math.unit(6, "feet"),
  22597. weight: math.unit(220, "lb"),
  22598. name: "Back",
  22599. image: {
  22600. source: "./media/characters/lynn-rhea/back.svg",
  22601. extra: 310 / 273
  22602. }
  22603. },
  22604. dicks: {
  22605. height: math.unit(0.9, "feet"),
  22606. name: "Dicks",
  22607. image: {
  22608. source: "./media/characters/lynn-rhea/dicks.svg"
  22609. }
  22610. },
  22611. slit: {
  22612. height: math.unit(0.4, "feet"),
  22613. name: "Slit",
  22614. image: {
  22615. source: "./media/characters/lynn-rhea/slit.svg"
  22616. }
  22617. },
  22618. },
  22619. [
  22620. {
  22621. name: "Micro",
  22622. height: math.unit(1, "inch")
  22623. },
  22624. {
  22625. name: "Macro",
  22626. height: math.unit(60, "feet"),
  22627. default: true
  22628. },
  22629. {
  22630. name: "Megamacro",
  22631. height: math.unit(2, "miles")
  22632. },
  22633. {
  22634. name: "Gigamacro",
  22635. height: math.unit(3, "earths")
  22636. },
  22637. {
  22638. name: "Galactic",
  22639. height: math.unit(0.8, "galaxies")
  22640. },
  22641. ]
  22642. ))
  22643. characterMakers.push(() => makeCharacter(
  22644. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22645. {
  22646. front: {
  22647. height: math.unit(1600, "feet"),
  22648. weight: math.unit(85758785169, "kg"),
  22649. name: "Front",
  22650. image: {
  22651. source: "./media/characters/valathos/front.svg",
  22652. extra: 1451 / 1339
  22653. }
  22654. },
  22655. },
  22656. [
  22657. {
  22658. name: "Macro",
  22659. height: math.unit(1600, "feet"),
  22660. default: true
  22661. },
  22662. ]
  22663. ))
  22664. characterMakers.push(() => makeCharacter(
  22665. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22666. {
  22667. front: {
  22668. height: math.unit(7 + 5 / 12, "feet"),
  22669. weight: math.unit(300, "lb"),
  22670. name: "Front",
  22671. image: {
  22672. source: "./media/characters/azula/front.svg",
  22673. extra: 3208 / 2880,
  22674. bottom: 80.2 / 3277
  22675. }
  22676. },
  22677. back: {
  22678. height: math.unit(7 + 5 / 12, "feet"),
  22679. weight: math.unit(300, "lb"),
  22680. name: "Back",
  22681. image: {
  22682. source: "./media/characters/azula/back.svg",
  22683. extra: 3169 / 2822,
  22684. bottom: 150.6 / 3321
  22685. }
  22686. },
  22687. },
  22688. [
  22689. {
  22690. name: "Normal",
  22691. height: math.unit(7 + 5 / 12, "feet"),
  22692. default: true
  22693. },
  22694. {
  22695. name: "Big",
  22696. height: math.unit(20, "feet")
  22697. },
  22698. ]
  22699. ))
  22700. characterMakers.push(() => makeCharacter(
  22701. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22702. {
  22703. front: {
  22704. height: math.unit(5 + 1 / 12, "feet"),
  22705. weight: math.unit(110, "lb"),
  22706. name: "Front",
  22707. image: {
  22708. source: "./media/characters/rupert/front.svg",
  22709. extra: 1549 / 1495,
  22710. bottom: 54.2 / 1604.4
  22711. }
  22712. },
  22713. },
  22714. [
  22715. {
  22716. name: "Normal",
  22717. height: math.unit(5 + 1 / 12, "feet"),
  22718. default: true
  22719. },
  22720. ]
  22721. ))
  22722. characterMakers.push(() => makeCharacter(
  22723. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22724. {
  22725. front: {
  22726. height: math.unit(8 + 4 / 12, "feet"),
  22727. weight: math.unit(350, "lb"),
  22728. name: "Front",
  22729. image: {
  22730. source: "./media/characters/sheera-castellar/front.svg",
  22731. extra: 1957 / 1894,
  22732. bottom: 26.97 / 1975.017
  22733. }
  22734. },
  22735. side: {
  22736. height: math.unit(8 + 4 / 12, "feet"),
  22737. weight: math.unit(350, "lb"),
  22738. name: "Side",
  22739. image: {
  22740. source: "./media/characters/sheera-castellar/side.svg",
  22741. extra: 1957 / 1894
  22742. }
  22743. },
  22744. back: {
  22745. height: math.unit(8 + 4 / 12, "feet"),
  22746. weight: math.unit(350, "lb"),
  22747. name: "Back",
  22748. image: {
  22749. source: "./media/characters/sheera-castellar/back.svg",
  22750. extra: 1957 / 1894
  22751. }
  22752. },
  22753. angled: {
  22754. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22755. weight: math.unit(350, "lb"),
  22756. name: "Angled",
  22757. image: {
  22758. source: "./media/characters/sheera-castellar/angled.svg",
  22759. extra: 1807 / 1707,
  22760. bottom: 68 / 1875
  22761. }
  22762. },
  22763. genitals: {
  22764. height: math.unit(2.2, "feet"),
  22765. name: "Genitals",
  22766. image: {
  22767. source: "./media/characters/sheera-castellar/genitals.svg"
  22768. }
  22769. },
  22770. taur: {
  22771. height: math.unit(10 + 6/12, "feet"),
  22772. name: "Taur",
  22773. image: {
  22774. source: "./media/characters/sheera-castellar/taur.svg",
  22775. extra: 2017/1909,
  22776. bottom: 185/2202
  22777. }
  22778. },
  22779. },
  22780. [
  22781. {
  22782. name: "Normal",
  22783. height: math.unit(8 + 4 / 12, "feet")
  22784. },
  22785. {
  22786. name: "Macro",
  22787. height: math.unit(150, "feet"),
  22788. default: true
  22789. },
  22790. {
  22791. name: "Macro+",
  22792. height: math.unit(800, "feet")
  22793. },
  22794. ]
  22795. ))
  22796. characterMakers.push(() => makeCharacter(
  22797. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22798. {
  22799. front: {
  22800. height: math.unit(6, "feet"),
  22801. weight: math.unit(150, "lb"),
  22802. name: "Front",
  22803. image: {
  22804. source: "./media/characters/jaipur/front.svg",
  22805. extra: 3860 / 3731,
  22806. bottom: 287 / 4140
  22807. }
  22808. },
  22809. back: {
  22810. height: math.unit(6, "feet"),
  22811. weight: math.unit(150, "lb"),
  22812. name: "Back",
  22813. image: {
  22814. source: "./media/characters/jaipur/back.svg",
  22815. extra: 4060 / 3930,
  22816. bottom: 151 / 4200
  22817. }
  22818. },
  22819. },
  22820. [
  22821. {
  22822. name: "Normal",
  22823. height: math.unit(1.85, "meters"),
  22824. default: true
  22825. },
  22826. {
  22827. name: "Macro",
  22828. height: math.unit(150, "meters")
  22829. },
  22830. {
  22831. name: "Macro+",
  22832. height: math.unit(0.5, "miles")
  22833. },
  22834. {
  22835. name: "Macro++",
  22836. height: math.unit(2.5, "miles")
  22837. },
  22838. {
  22839. name: "Macro+++",
  22840. height: math.unit(12, "miles")
  22841. },
  22842. {
  22843. name: "Macro++++",
  22844. height: math.unit(120, "miles")
  22845. },
  22846. {
  22847. name: "Macro+++++",
  22848. height: math.unit(1200, "miles")
  22849. },
  22850. ]
  22851. ))
  22852. characterMakers.push(() => makeCharacter(
  22853. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22854. {
  22855. front: {
  22856. height: math.unit(6, "feet"),
  22857. weight: math.unit(150, "lb"),
  22858. name: "Front",
  22859. image: {
  22860. source: "./media/characters/sheila-wolf/front.svg",
  22861. extra: 1931 / 1808,
  22862. bottom: 29.5 / 1960
  22863. }
  22864. },
  22865. dick: {
  22866. height: math.unit(1.464, "feet"),
  22867. name: "Dick",
  22868. image: {
  22869. source: "./media/characters/sheila-wolf/dick.svg"
  22870. }
  22871. },
  22872. muzzle: {
  22873. height: math.unit(0.513, "feet"),
  22874. name: "Muzzle",
  22875. image: {
  22876. source: "./media/characters/sheila-wolf/muzzle.svg"
  22877. }
  22878. },
  22879. },
  22880. [
  22881. {
  22882. name: "Macro",
  22883. height: math.unit(70, "feet"),
  22884. default: true
  22885. },
  22886. ]
  22887. ))
  22888. characterMakers.push(() => makeCharacter(
  22889. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22890. {
  22891. front: {
  22892. height: math.unit(32, "meters"),
  22893. weight: math.unit(300000, "kg"),
  22894. name: "Front",
  22895. image: {
  22896. source: "./media/characters/almor/front.svg",
  22897. extra: 1408 / 1322,
  22898. bottom: 94.6 / 1506.5
  22899. }
  22900. },
  22901. },
  22902. [
  22903. {
  22904. name: "Macro",
  22905. height: math.unit(32, "meters"),
  22906. default: true
  22907. },
  22908. ]
  22909. ))
  22910. characterMakers.push(() => makeCharacter(
  22911. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22912. {
  22913. front: {
  22914. height: math.unit(7, "feet"),
  22915. weight: math.unit(200, "lb"),
  22916. name: "Front",
  22917. image: {
  22918. source: "./media/characters/silver/front.svg",
  22919. extra: 472.1 / 450.5,
  22920. bottom: 26.5 / 499.424
  22921. }
  22922. },
  22923. },
  22924. [
  22925. {
  22926. name: "Normal",
  22927. height: math.unit(7, "feet"),
  22928. default: true
  22929. },
  22930. {
  22931. name: "Macro",
  22932. height: math.unit(800, "feet")
  22933. },
  22934. {
  22935. name: "Megamacro",
  22936. height: math.unit(250, "miles")
  22937. },
  22938. ]
  22939. ))
  22940. characterMakers.push(() => makeCharacter(
  22941. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22942. {
  22943. front: {
  22944. height: math.unit(6, "feet"),
  22945. weight: math.unit(150, "lb"),
  22946. name: "Front",
  22947. image: {
  22948. source: "./media/characters/pliskin/front.svg",
  22949. extra: 1469 / 1359,
  22950. bottom: 70 / 1540
  22951. }
  22952. },
  22953. },
  22954. [
  22955. {
  22956. name: "Micro",
  22957. height: math.unit(3, "inches")
  22958. },
  22959. {
  22960. name: "Normal",
  22961. height: math.unit(5 + 11 / 12, "feet"),
  22962. default: true
  22963. },
  22964. {
  22965. name: "Macro",
  22966. height: math.unit(120, "feet")
  22967. },
  22968. ]
  22969. ))
  22970. characterMakers.push(() => makeCharacter(
  22971. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22972. {
  22973. front: {
  22974. height: math.unit(6, "feet"),
  22975. weight: math.unit(150, "lb"),
  22976. name: "Front",
  22977. image: {
  22978. source: "./media/characters/sammy/front.svg",
  22979. extra: 1193 / 1089,
  22980. bottom: 30.5 / 1226
  22981. }
  22982. },
  22983. },
  22984. [
  22985. {
  22986. name: "Macro",
  22987. height: math.unit(1700, "feet"),
  22988. default: true
  22989. },
  22990. {
  22991. name: "Examacro",
  22992. height: math.unit(2.5e9, "lightyears")
  22993. },
  22994. ]
  22995. ))
  22996. characterMakers.push(() => makeCharacter(
  22997. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22998. {
  22999. front: {
  23000. height: math.unit(21, "meters"),
  23001. weight: math.unit(12, "tonnes"),
  23002. name: "Front",
  23003. image: {
  23004. source: "./media/characters/kuru/front.svg",
  23005. extra: 4301 / 3785,
  23006. bottom: 371.3 / 4691
  23007. }
  23008. },
  23009. },
  23010. [
  23011. {
  23012. name: "Macro",
  23013. height: math.unit(21, "meters"),
  23014. default: true
  23015. },
  23016. ]
  23017. ))
  23018. characterMakers.push(() => makeCharacter(
  23019. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23020. {
  23021. front: {
  23022. height: math.unit(23, "meters"),
  23023. weight: math.unit(12.2, "tonnes"),
  23024. name: "Front",
  23025. image: {
  23026. source: "./media/characters/rakka/front.svg",
  23027. extra: 4670 / 4169,
  23028. bottom: 301 / 4968.7
  23029. }
  23030. },
  23031. },
  23032. [
  23033. {
  23034. name: "Macro",
  23035. height: math.unit(23, "meters"),
  23036. default: true
  23037. },
  23038. ]
  23039. ))
  23040. characterMakers.push(() => makeCharacter(
  23041. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23042. {
  23043. front: {
  23044. height: math.unit(6, "feet"),
  23045. weight: math.unit(150, "lb"),
  23046. name: "Front",
  23047. image: {
  23048. source: "./media/characters/rhys-feline/front.svg",
  23049. extra: 2488 / 2308,
  23050. bottom: 35.67 / 2519.19
  23051. }
  23052. },
  23053. },
  23054. [
  23055. {
  23056. name: "Really Small",
  23057. height: math.unit(1, "nm")
  23058. },
  23059. {
  23060. name: "Micro",
  23061. height: math.unit(4, "inches")
  23062. },
  23063. {
  23064. name: "Normal",
  23065. height: math.unit(4 + 10 / 12, "feet"),
  23066. default: true
  23067. },
  23068. {
  23069. name: "Macro",
  23070. height: math.unit(100, "feet")
  23071. },
  23072. {
  23073. name: "Megamacto",
  23074. height: math.unit(50, "miles")
  23075. },
  23076. ]
  23077. ))
  23078. characterMakers.push(() => makeCharacter(
  23079. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23080. {
  23081. side: {
  23082. height: math.unit(30, "feet"),
  23083. weight: math.unit(35000, "kg"),
  23084. name: "Side",
  23085. image: {
  23086. source: "./media/characters/alydar/side.svg",
  23087. extra: 234 / 222,
  23088. bottom: 6.5 / 241
  23089. }
  23090. },
  23091. front: {
  23092. height: math.unit(30, "feet"),
  23093. weight: math.unit(35000, "kg"),
  23094. name: "Front",
  23095. image: {
  23096. source: "./media/characters/alydar/front.svg",
  23097. extra: 223.37 / 210.2,
  23098. bottom: 22.3 / 246.76
  23099. }
  23100. },
  23101. top: {
  23102. height: math.unit(64.54, "feet"),
  23103. weight: math.unit(35000, "kg"),
  23104. name: "Top",
  23105. image: {
  23106. source: "./media/characters/alydar/top.svg"
  23107. }
  23108. },
  23109. anthro: {
  23110. height: math.unit(30, "feet"),
  23111. weight: math.unit(9000, "kg"),
  23112. name: "Anthro",
  23113. image: {
  23114. source: "./media/characters/alydar/anthro.svg",
  23115. extra: 432 / 421,
  23116. bottom: 7.18 / 440
  23117. }
  23118. },
  23119. maw: {
  23120. height: math.unit(11.693, "feet"),
  23121. name: "Maw",
  23122. image: {
  23123. source: "./media/characters/alydar/maw.svg"
  23124. }
  23125. },
  23126. head: {
  23127. height: math.unit(11.693, "feet"),
  23128. name: "Head",
  23129. image: {
  23130. source: "./media/characters/alydar/head.svg"
  23131. }
  23132. },
  23133. headAlt: {
  23134. height: math.unit(12.861, "feet"),
  23135. name: "Head (Alt)",
  23136. image: {
  23137. source: "./media/characters/alydar/head-alt.svg"
  23138. }
  23139. },
  23140. wing: {
  23141. height: math.unit(20.712, "feet"),
  23142. name: "Wing",
  23143. image: {
  23144. source: "./media/characters/alydar/wing.svg"
  23145. }
  23146. },
  23147. wingFeather: {
  23148. height: math.unit(9.662, "feet"),
  23149. name: "Wing Feather",
  23150. image: {
  23151. source: "./media/characters/alydar/wing-feather.svg"
  23152. }
  23153. },
  23154. countourFeather: {
  23155. height: math.unit(4.154, "feet"),
  23156. name: "Contour Feather",
  23157. image: {
  23158. source: "./media/characters/alydar/contour-feather.svg"
  23159. }
  23160. },
  23161. },
  23162. [
  23163. {
  23164. name: "Diplomatic",
  23165. height: math.unit(13, "feet"),
  23166. default: true
  23167. },
  23168. {
  23169. name: "Small",
  23170. height: math.unit(30, "feet")
  23171. },
  23172. {
  23173. name: "Normal",
  23174. height: math.unit(95, "feet"),
  23175. default: true
  23176. },
  23177. {
  23178. name: "Large",
  23179. height: math.unit(285, "feet")
  23180. },
  23181. {
  23182. name: "Incomprehensible",
  23183. height: math.unit(450, "megameters")
  23184. },
  23185. ]
  23186. ))
  23187. characterMakers.push(() => makeCharacter(
  23188. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23189. {
  23190. side: {
  23191. height: math.unit(11, "feet"),
  23192. weight: math.unit(1750, "kg"),
  23193. name: "Side",
  23194. image: {
  23195. source: "./media/characters/selicia/side.svg",
  23196. extra: 440 / 396,
  23197. bottom: 24.8 / 465.979
  23198. }
  23199. },
  23200. maw: {
  23201. height: math.unit(4.665, "feet"),
  23202. name: "Maw",
  23203. image: {
  23204. source: "./media/characters/selicia/maw.svg"
  23205. }
  23206. },
  23207. },
  23208. [
  23209. {
  23210. name: "Normal",
  23211. height: math.unit(11, "feet"),
  23212. default: true
  23213. },
  23214. ]
  23215. ))
  23216. characterMakers.push(() => makeCharacter(
  23217. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23218. {
  23219. side: {
  23220. height: math.unit(2 + 6 / 12, "feet"),
  23221. weight: math.unit(30, "lb"),
  23222. name: "Side",
  23223. image: {
  23224. source: "./media/characters/layla/side.svg",
  23225. extra: 244 / 188,
  23226. bottom: 18.2 / 262.1
  23227. }
  23228. },
  23229. back: {
  23230. height: math.unit(2 + 6 / 12, "feet"),
  23231. weight: math.unit(30, "lb"),
  23232. name: "Back",
  23233. image: {
  23234. source: "./media/characters/layla/back.svg",
  23235. extra: 308 / 241.5,
  23236. bottom: 8.9 / 316.8
  23237. }
  23238. },
  23239. cumming: {
  23240. height: math.unit(2 + 6 / 12, "feet"),
  23241. weight: math.unit(30, "lb"),
  23242. name: "Cumming",
  23243. image: {
  23244. source: "./media/characters/layla/cumming.svg",
  23245. extra: 342 / 279,
  23246. bottom: 595 / 938
  23247. }
  23248. },
  23249. dickFlaccid: {
  23250. height: math.unit(2.595, "feet"),
  23251. name: "Flaccid Genitals",
  23252. image: {
  23253. source: "./media/characters/layla/dick-flaccid.svg"
  23254. }
  23255. },
  23256. dickErect: {
  23257. height: math.unit(2.359, "feet"),
  23258. name: "Erect Genitals",
  23259. image: {
  23260. source: "./media/characters/layla/dick-erect.svg"
  23261. }
  23262. },
  23263. dragon: {
  23264. height: math.unit(40, "feet"),
  23265. name: "Dragon",
  23266. image: {
  23267. source: "./media/characters/layla/dragon.svg",
  23268. extra: 610/535,
  23269. bottom: 367/977
  23270. }
  23271. },
  23272. taur: {
  23273. height: math.unit(30, "feet"),
  23274. name: "Taur",
  23275. image: {
  23276. source: "./media/characters/layla/taur.svg",
  23277. extra: 1268/1199,
  23278. bottom: 112/1380
  23279. }
  23280. },
  23281. },
  23282. [
  23283. {
  23284. name: "Micro",
  23285. height: math.unit(1, "inch")
  23286. },
  23287. {
  23288. name: "Small",
  23289. height: math.unit(1, "foot")
  23290. },
  23291. {
  23292. name: "Normal",
  23293. height: math.unit(2 + 6 / 12, "feet"),
  23294. default: true
  23295. },
  23296. {
  23297. name: "Macro",
  23298. height: math.unit(200, "feet")
  23299. },
  23300. {
  23301. name: "Megamacro",
  23302. height: math.unit(1000, "miles")
  23303. },
  23304. {
  23305. name: "Planetary",
  23306. height: math.unit(8000, "miles")
  23307. },
  23308. {
  23309. name: "True Layla",
  23310. height: math.unit(200000 * 7, "multiverses")
  23311. },
  23312. ]
  23313. ))
  23314. characterMakers.push(() => makeCharacter(
  23315. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23316. {
  23317. back: {
  23318. height: math.unit(10.5, "feet"),
  23319. weight: math.unit(800, "lb"),
  23320. name: "Back",
  23321. image: {
  23322. source: "./media/characters/knox/back.svg",
  23323. extra: 1486 / 1089,
  23324. bottom: 107 / 1601.4
  23325. }
  23326. },
  23327. side: {
  23328. height: math.unit(10.5, "feet"),
  23329. weight: math.unit(800, "lb"),
  23330. name: "Side",
  23331. image: {
  23332. source: "./media/characters/knox/side.svg",
  23333. extra: 244 / 218,
  23334. bottom: 14 / 260
  23335. }
  23336. },
  23337. },
  23338. [
  23339. {
  23340. name: "Compact",
  23341. height: math.unit(10.5, "feet"),
  23342. default: true
  23343. },
  23344. {
  23345. name: "Dynamax",
  23346. height: math.unit(210, "feet")
  23347. },
  23348. {
  23349. name: "Full Macro",
  23350. height: math.unit(850, "feet")
  23351. },
  23352. ]
  23353. ))
  23354. characterMakers.push(() => makeCharacter(
  23355. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23356. {
  23357. front: {
  23358. height: math.unit(6, "feet"),
  23359. weight: math.unit(152, "lb"),
  23360. name: "Front",
  23361. image: {
  23362. source: "./media/characters/shin-pikachu/front.svg",
  23363. extra: 1854/1602,
  23364. bottom: 166/2020
  23365. }
  23366. },
  23367. hand: {
  23368. height: math.unit(1.055, "feet"),
  23369. name: "Hand",
  23370. image: {
  23371. source: "./media/characters/shin-pikachu/hand.svg"
  23372. }
  23373. },
  23374. foot: {
  23375. height: math.unit(1.1, "feet"),
  23376. name: "Foot",
  23377. image: {
  23378. source: "./media/characters/shin-pikachu/foot.svg"
  23379. }
  23380. },
  23381. collar: {
  23382. height: math.unit(0.386, "feet"),
  23383. name: "Collar",
  23384. image: {
  23385. source: "./media/characters/shin-pikachu/collar.svg"
  23386. }
  23387. },
  23388. },
  23389. [
  23390. {
  23391. name: "Smallest",
  23392. height: math.unit(0.5, "inches")
  23393. },
  23394. {
  23395. name: "Micro",
  23396. height: math.unit(6, "inches")
  23397. },
  23398. {
  23399. name: "Normal",
  23400. height: math.unit(6, "feet"),
  23401. default: true
  23402. },
  23403. {
  23404. name: "Macro",
  23405. height: math.unit(150, "feet")
  23406. },
  23407. ]
  23408. ))
  23409. characterMakers.push(() => makeCharacter(
  23410. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23411. {
  23412. front: {
  23413. height: math.unit(28, "feet"),
  23414. weight: math.unit(10500, "lb"),
  23415. name: "Front",
  23416. image: {
  23417. source: "./media/characters/kayda/front.svg",
  23418. extra: 1536 / 1428,
  23419. bottom: 68.7 / 1603
  23420. }
  23421. },
  23422. back: {
  23423. height: math.unit(28, "feet"),
  23424. weight: math.unit(10500, "lb"),
  23425. name: "Back",
  23426. image: {
  23427. source: "./media/characters/kayda/back.svg",
  23428. extra: 1557 / 1464,
  23429. bottom: 39.5 / 1597.49
  23430. }
  23431. },
  23432. dick: {
  23433. height: math.unit(3.858, "feet"),
  23434. name: "Dick",
  23435. image: {
  23436. source: "./media/characters/kayda/dick.svg"
  23437. }
  23438. },
  23439. },
  23440. [
  23441. {
  23442. name: "Macro",
  23443. height: math.unit(28, "feet"),
  23444. default: true
  23445. },
  23446. ]
  23447. ))
  23448. characterMakers.push(() => makeCharacter(
  23449. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23450. {
  23451. front: {
  23452. height: math.unit(10 + 11 / 12, "feet"),
  23453. weight: math.unit(1400, "lb"),
  23454. name: "Front",
  23455. image: {
  23456. source: "./media/characters/brian/front.svg",
  23457. extra: 737 / 692,
  23458. bottom: 55.4 / 785
  23459. }
  23460. },
  23461. },
  23462. [
  23463. {
  23464. name: "Normal",
  23465. height: math.unit(10 + 11 / 12, "feet"),
  23466. default: true
  23467. },
  23468. ]
  23469. ))
  23470. characterMakers.push(() => makeCharacter(
  23471. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23472. {
  23473. front: {
  23474. height: math.unit(5 + 8 / 12, "feet"),
  23475. weight: math.unit(140, "lb"),
  23476. name: "Front",
  23477. image: {
  23478. source: "./media/characters/khemri/front.svg",
  23479. extra: 4780 / 4059,
  23480. bottom: 80.1 / 4859.25
  23481. }
  23482. },
  23483. },
  23484. [
  23485. {
  23486. name: "Micro",
  23487. height: math.unit(6, "inches")
  23488. },
  23489. {
  23490. name: "Normal",
  23491. height: math.unit(5 + 8 / 12, "feet"),
  23492. default: true
  23493. },
  23494. ]
  23495. ))
  23496. characterMakers.push(() => makeCharacter(
  23497. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23498. {
  23499. front: {
  23500. height: math.unit(13, "feet"),
  23501. weight: math.unit(1700, "lb"),
  23502. name: "Front",
  23503. image: {
  23504. source: "./media/characters/felix-braveheart/front.svg",
  23505. extra: 1222 / 1157,
  23506. bottom: 53.2 / 1280
  23507. }
  23508. },
  23509. back: {
  23510. height: math.unit(13, "feet"),
  23511. weight: math.unit(1700, "lb"),
  23512. name: "Back",
  23513. image: {
  23514. source: "./media/characters/felix-braveheart/back.svg",
  23515. extra: 1277 / 1203,
  23516. bottom: 50.2 / 1327
  23517. }
  23518. },
  23519. feral: {
  23520. height: math.unit(6, "feet"),
  23521. weight: math.unit(400, "lb"),
  23522. name: "Feral",
  23523. image: {
  23524. source: "./media/characters/felix-braveheart/feral.svg",
  23525. extra: 682 / 625,
  23526. bottom: 6.9 / 688
  23527. }
  23528. },
  23529. },
  23530. [
  23531. {
  23532. name: "Normal",
  23533. height: math.unit(13, "feet"),
  23534. default: true
  23535. },
  23536. ]
  23537. ))
  23538. characterMakers.push(() => makeCharacter(
  23539. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23540. {
  23541. side: {
  23542. height: math.unit(5 + 11 / 12, "feet"),
  23543. weight: math.unit(1400, "lb"),
  23544. name: "Side",
  23545. image: {
  23546. source: "./media/characters/shadow-blade/side.svg",
  23547. extra: 1726 / 1267,
  23548. bottom: 58.4 / 1785
  23549. }
  23550. },
  23551. },
  23552. [
  23553. {
  23554. name: "Normal",
  23555. height: math.unit(5 + 11 / 12, "feet"),
  23556. default: true
  23557. },
  23558. ]
  23559. ))
  23560. characterMakers.push(() => makeCharacter(
  23561. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23562. {
  23563. front: {
  23564. height: math.unit(1 + 6 / 12, "feet"),
  23565. weight: math.unit(25, "lb"),
  23566. name: "Front",
  23567. image: {
  23568. source: "./media/characters/karla-halldor/front.svg",
  23569. extra: 1459 / 1383,
  23570. bottom: 12 / 1472
  23571. }
  23572. },
  23573. },
  23574. [
  23575. {
  23576. name: "Normal",
  23577. height: math.unit(1 + 6 / 12, "feet"),
  23578. default: true
  23579. },
  23580. ]
  23581. ))
  23582. characterMakers.push(() => makeCharacter(
  23583. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23584. {
  23585. front: {
  23586. height: math.unit(6 + 2 / 12, "feet"),
  23587. weight: math.unit(160, "lb"),
  23588. name: "Front",
  23589. image: {
  23590. source: "./media/characters/ariam/front.svg",
  23591. extra: 714 / 617,
  23592. bottom: 23.4 / 737,
  23593. }
  23594. },
  23595. squatting: {
  23596. height: math.unit(4.1, "feet"),
  23597. weight: math.unit(160, "lb"),
  23598. name: "Squatting",
  23599. image: {
  23600. source: "./media/characters/ariam/squatting.svg",
  23601. extra: 2617 / 2112,
  23602. bottom: 61.2 / 2681,
  23603. }
  23604. },
  23605. },
  23606. [
  23607. {
  23608. name: "Normal",
  23609. height: math.unit(6 + 2 / 12, "feet"),
  23610. default: true
  23611. },
  23612. {
  23613. name: "Normal+",
  23614. height: math.unit(4, "meters")
  23615. },
  23616. {
  23617. name: "Macro",
  23618. height: math.unit(50, "meters")
  23619. },
  23620. {
  23621. name: "Macro+",
  23622. height: math.unit(100, "meters")
  23623. },
  23624. {
  23625. name: "Megamacro",
  23626. height: math.unit(20, "km")
  23627. },
  23628. ]
  23629. ))
  23630. characterMakers.push(() => makeCharacter(
  23631. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23632. {
  23633. front: {
  23634. height: math.unit(1.67, "meters"),
  23635. weight: math.unit(140, "lb"),
  23636. name: "Front",
  23637. image: {
  23638. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23639. extra: 438 / 410,
  23640. bottom: 0.75 / 439
  23641. }
  23642. },
  23643. },
  23644. [
  23645. {
  23646. name: "Shrunken",
  23647. height: math.unit(7.6, "cm")
  23648. },
  23649. {
  23650. name: "Human Scale",
  23651. height: math.unit(1.67, "meters")
  23652. },
  23653. {
  23654. name: "Wolxi Scale",
  23655. height: math.unit(36.7, "meters"),
  23656. default: true
  23657. },
  23658. ]
  23659. ))
  23660. characterMakers.push(() => makeCharacter(
  23661. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23662. {
  23663. front: {
  23664. height: math.unit(1.73, "meters"),
  23665. weight: math.unit(240, "lb"),
  23666. name: "Front",
  23667. image: {
  23668. source: "./media/characters/izue-two-mothers/front.svg",
  23669. extra: 469 / 437,
  23670. bottom: 1.24 / 470.6
  23671. }
  23672. },
  23673. },
  23674. [
  23675. {
  23676. name: "Shrunken",
  23677. height: math.unit(7.86, "cm")
  23678. },
  23679. {
  23680. name: "Human Scale",
  23681. height: math.unit(1.73, "meters")
  23682. },
  23683. {
  23684. name: "Wolxi Scale",
  23685. height: math.unit(38, "meters"),
  23686. default: true
  23687. },
  23688. ]
  23689. ))
  23690. characterMakers.push(() => makeCharacter(
  23691. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23692. {
  23693. front: {
  23694. height: math.unit(1.55, "meters"),
  23695. weight: math.unit(120, "lb"),
  23696. name: "Front",
  23697. image: {
  23698. source: "./media/characters/teeku-love-shack/front.svg",
  23699. extra: 387 / 362,
  23700. bottom: 1.51 / 388
  23701. }
  23702. },
  23703. },
  23704. [
  23705. {
  23706. name: "Shrunken",
  23707. height: math.unit(7, "cm")
  23708. },
  23709. {
  23710. name: "Human Scale",
  23711. height: math.unit(1.55, "meters")
  23712. },
  23713. {
  23714. name: "Wolxi Scale",
  23715. height: math.unit(34.1, "meters"),
  23716. default: true
  23717. },
  23718. ]
  23719. ))
  23720. characterMakers.push(() => makeCharacter(
  23721. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23722. {
  23723. front: {
  23724. height: math.unit(1.83, "meters"),
  23725. weight: math.unit(135, "lb"),
  23726. name: "Front",
  23727. image: {
  23728. source: "./media/characters/dejma-the-red/front.svg",
  23729. extra: 480 / 458,
  23730. bottom: 1.8 / 482
  23731. }
  23732. },
  23733. },
  23734. [
  23735. {
  23736. name: "Shrunken",
  23737. height: math.unit(8.3, "cm")
  23738. },
  23739. {
  23740. name: "Human Scale",
  23741. height: math.unit(1.83, "meters")
  23742. },
  23743. {
  23744. name: "Wolxi Scale",
  23745. height: math.unit(40, "meters"),
  23746. default: true
  23747. },
  23748. ]
  23749. ))
  23750. characterMakers.push(() => makeCharacter(
  23751. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23752. {
  23753. front: {
  23754. height: math.unit(1.78, "meters"),
  23755. weight: math.unit(65, "kg"),
  23756. name: "Front",
  23757. image: {
  23758. source: "./media/characters/aki/front.svg",
  23759. extra: 452 / 415
  23760. }
  23761. },
  23762. frontNsfw: {
  23763. height: math.unit(1.78, "meters"),
  23764. weight: math.unit(65, "kg"),
  23765. name: "Front (NSFW)",
  23766. image: {
  23767. source: "./media/characters/aki/front-nsfw.svg",
  23768. extra: 452 / 415
  23769. }
  23770. },
  23771. back: {
  23772. height: math.unit(1.78, "meters"),
  23773. weight: math.unit(65, "kg"),
  23774. name: "Back",
  23775. image: {
  23776. source: "./media/characters/aki/back.svg",
  23777. extra: 452 / 415
  23778. }
  23779. },
  23780. rump: {
  23781. height: math.unit(2.05, "feet"),
  23782. name: "Rump",
  23783. image: {
  23784. source: "./media/characters/aki/rump.svg"
  23785. }
  23786. },
  23787. dick: {
  23788. height: math.unit(0.95, "feet"),
  23789. name: "Dick",
  23790. image: {
  23791. source: "./media/characters/aki/dick.svg"
  23792. }
  23793. },
  23794. },
  23795. [
  23796. {
  23797. name: "Micro",
  23798. height: math.unit(15, "cm")
  23799. },
  23800. {
  23801. name: "Normal",
  23802. height: math.unit(178, "cm"),
  23803. default: true
  23804. },
  23805. {
  23806. name: "Macro",
  23807. height: math.unit(214, "m")
  23808. },
  23809. {
  23810. name: "Macro+",
  23811. height: math.unit(534, "m")
  23812. },
  23813. ]
  23814. ))
  23815. characterMakers.push(() => makeCharacter(
  23816. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23817. {
  23818. front: {
  23819. height: math.unit(5 + 5 / 12, "feet"),
  23820. weight: math.unit(120, "lb"),
  23821. name: "Front",
  23822. image: {
  23823. source: "./media/characters/ari/front.svg",
  23824. extra: 714.5 / 682,
  23825. bottom: 8 / 722.5
  23826. }
  23827. },
  23828. },
  23829. [
  23830. {
  23831. name: "Normal",
  23832. height: math.unit(5 + 5 / 12, "feet")
  23833. },
  23834. {
  23835. name: "Macro",
  23836. height: math.unit(100, "feet"),
  23837. default: true
  23838. },
  23839. {
  23840. name: "Megamacro",
  23841. height: math.unit(100, "miles")
  23842. },
  23843. {
  23844. name: "Gigamacro",
  23845. height: math.unit(80000, "miles")
  23846. },
  23847. ]
  23848. ))
  23849. characterMakers.push(() => makeCharacter(
  23850. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23851. {
  23852. side: {
  23853. height: math.unit(9, "feet"),
  23854. weight: math.unit(400, "kg"),
  23855. name: "Side",
  23856. image: {
  23857. source: "./media/characters/bolt/side.svg",
  23858. extra: 1126 / 896,
  23859. bottom: 60 / 1187.3,
  23860. }
  23861. },
  23862. },
  23863. [
  23864. {
  23865. name: "Micro",
  23866. height: math.unit(5, "inches")
  23867. },
  23868. {
  23869. name: "Normal",
  23870. height: math.unit(9, "feet"),
  23871. default: true
  23872. },
  23873. {
  23874. name: "Macro",
  23875. height: math.unit(700, "feet")
  23876. },
  23877. {
  23878. name: "Max Size",
  23879. height: math.unit(1.52e22, "yottameters")
  23880. },
  23881. ]
  23882. ))
  23883. characterMakers.push(() => makeCharacter(
  23884. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23885. {
  23886. front: {
  23887. height: math.unit(4.53, "meters"),
  23888. weight: math.unit(3, "tons"),
  23889. name: "Front",
  23890. image: {
  23891. source: "./media/characters/draekon-sylviar/front.svg",
  23892. extra: 1228 / 1068,
  23893. bottom: 41 / 1270
  23894. }
  23895. },
  23896. tail: {
  23897. height: math.unit(1.772, "meter"),
  23898. name: "Tail",
  23899. image: {
  23900. source: "./media/characters/draekon-sylviar/tail.svg"
  23901. }
  23902. },
  23903. head: {
  23904. height: math.unit(1.331, "meter"),
  23905. name: "Head",
  23906. image: {
  23907. source: "./media/characters/draekon-sylviar/head.svg"
  23908. }
  23909. },
  23910. hand: {
  23911. height: math.unit(0.564, "meter"),
  23912. name: "Hand",
  23913. image: {
  23914. source: "./media/characters/draekon-sylviar/hand.svg"
  23915. }
  23916. },
  23917. foot: {
  23918. height: math.unit(0.621, "meter"),
  23919. name: "Foot",
  23920. image: {
  23921. source: "./media/characters/draekon-sylviar/foot.svg",
  23922. bottom: 32 / 324
  23923. }
  23924. },
  23925. dick: {
  23926. height: math.unit(61, "cm"),
  23927. name: "Dick",
  23928. image: {
  23929. source: "./media/characters/draekon-sylviar/dick.svg"
  23930. }
  23931. },
  23932. dickseparated: {
  23933. height: math.unit(61, "cm"),
  23934. name: "Dick-separated",
  23935. image: {
  23936. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23937. }
  23938. },
  23939. },
  23940. [
  23941. {
  23942. name: "Small",
  23943. height: math.unit(4.53 / 2, "meters"),
  23944. default: true
  23945. },
  23946. {
  23947. name: "Normal",
  23948. height: math.unit(4.53, "meters"),
  23949. default: true
  23950. },
  23951. {
  23952. name: "Large",
  23953. height: math.unit(4.53 * 2, "meters"),
  23954. },
  23955. ]
  23956. ))
  23957. characterMakers.push(() => makeCharacter(
  23958. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23959. {
  23960. front: {
  23961. height: math.unit(6 + 2 / 12, "feet"),
  23962. weight: math.unit(180, "lb"),
  23963. name: "Front",
  23964. image: {
  23965. source: "./media/characters/brawler/front.svg",
  23966. extra: 3301 / 3027,
  23967. bottom: 138 / 3439
  23968. }
  23969. },
  23970. },
  23971. [
  23972. {
  23973. name: "Normal",
  23974. height: math.unit(6 + 2 / 12, "feet"),
  23975. default: true
  23976. },
  23977. ]
  23978. ))
  23979. characterMakers.push(() => makeCharacter(
  23980. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23981. {
  23982. front: {
  23983. height: math.unit(11, "feet"),
  23984. weight: math.unit(1000, "lb"),
  23985. name: "Front",
  23986. image: {
  23987. source: "./media/characters/alex/front.svg",
  23988. bottom: 44.5 / 620
  23989. }
  23990. },
  23991. },
  23992. [
  23993. {
  23994. name: "Micro",
  23995. height: math.unit(5, "inches")
  23996. },
  23997. {
  23998. name: "Normal",
  23999. height: math.unit(11, "feet"),
  24000. default: true
  24001. },
  24002. {
  24003. name: "Macro",
  24004. height: math.unit(9.5e9, "feet")
  24005. },
  24006. {
  24007. name: "Max Size",
  24008. height: math.unit(1.4e283, "yottameters")
  24009. },
  24010. ]
  24011. ))
  24012. characterMakers.push(() => makeCharacter(
  24013. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24014. {
  24015. female: {
  24016. height: math.unit(29.9, "m"),
  24017. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24018. name: "Female",
  24019. image: {
  24020. source: "./media/characters/zenari/female.svg",
  24021. extra: 3281.6 / 3217,
  24022. bottom: 72.2 / 3353
  24023. }
  24024. },
  24025. male: {
  24026. height: math.unit(27.7, "m"),
  24027. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24028. name: "Male",
  24029. image: {
  24030. source: "./media/characters/zenari/male.svg",
  24031. extra: 3008 / 2991,
  24032. bottom: 54.6 / 3069
  24033. }
  24034. },
  24035. },
  24036. [
  24037. {
  24038. name: "Macro",
  24039. height: math.unit(29.7, "meters"),
  24040. default: true
  24041. },
  24042. ]
  24043. ))
  24044. characterMakers.push(() => makeCharacter(
  24045. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24046. {
  24047. female: {
  24048. height: math.unit(23.8, "m"),
  24049. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24050. name: "Female",
  24051. image: {
  24052. source: "./media/characters/mactarian/female.svg",
  24053. extra: 2662 / 2569,
  24054. bottom: 73 / 2736
  24055. }
  24056. },
  24057. male: {
  24058. height: math.unit(23.8, "m"),
  24059. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24060. name: "Male",
  24061. image: {
  24062. source: "./media/characters/mactarian/male.svg",
  24063. extra: 2673 / 2600,
  24064. bottom: 76 / 2750
  24065. }
  24066. },
  24067. },
  24068. [
  24069. {
  24070. name: "Macro",
  24071. height: math.unit(23.8, "meters"),
  24072. default: true
  24073. },
  24074. ]
  24075. ))
  24076. characterMakers.push(() => makeCharacter(
  24077. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24078. {
  24079. female: {
  24080. height: math.unit(19.3, "m"),
  24081. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24082. name: "Female",
  24083. image: {
  24084. source: "./media/characters/umok/female.svg",
  24085. extra: 2186 / 2078,
  24086. bottom: 87 / 2277
  24087. }
  24088. },
  24089. male: {
  24090. height: math.unit(19.5, "m"),
  24091. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24092. name: "Male",
  24093. image: {
  24094. source: "./media/characters/umok/male.svg",
  24095. extra: 2233 / 2140,
  24096. bottom: 24.4 / 2258
  24097. }
  24098. },
  24099. },
  24100. [
  24101. {
  24102. name: "Macro",
  24103. height: math.unit(19.3, "meters"),
  24104. default: true
  24105. },
  24106. ]
  24107. ))
  24108. characterMakers.push(() => makeCharacter(
  24109. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24110. {
  24111. female: {
  24112. height: math.unit(26.15, "m"),
  24113. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24114. name: "Female",
  24115. image: {
  24116. source: "./media/characters/joraxian/female.svg",
  24117. extra: 2912 / 2824,
  24118. bottom: 36 / 2956
  24119. }
  24120. },
  24121. male: {
  24122. height: math.unit(25.4, "m"),
  24123. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24124. name: "Male",
  24125. image: {
  24126. source: "./media/characters/joraxian/male.svg",
  24127. extra: 2877 / 2721,
  24128. bottom: 82 / 2967
  24129. }
  24130. },
  24131. },
  24132. [
  24133. {
  24134. name: "Macro",
  24135. height: math.unit(26.15, "meters"),
  24136. default: true
  24137. },
  24138. ]
  24139. ))
  24140. characterMakers.push(() => makeCharacter(
  24141. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24142. {
  24143. female: {
  24144. height: math.unit(21.6, "m"),
  24145. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24146. name: "Female",
  24147. image: {
  24148. source: "./media/characters/sthara/female.svg",
  24149. extra: 2516 / 2347,
  24150. bottom: 21.5 / 2537
  24151. }
  24152. },
  24153. male: {
  24154. height: math.unit(24, "m"),
  24155. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24156. name: "Male",
  24157. image: {
  24158. source: "./media/characters/sthara/male.svg",
  24159. extra: 2732 / 2607,
  24160. bottom: 23 / 2732
  24161. }
  24162. },
  24163. },
  24164. [
  24165. {
  24166. name: "Macro",
  24167. height: math.unit(21.6, "meters"),
  24168. default: true
  24169. },
  24170. ]
  24171. ))
  24172. characterMakers.push(() => makeCharacter(
  24173. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24174. {
  24175. front: {
  24176. height: math.unit(6 + 4 / 12, "feet"),
  24177. weight: math.unit(175, "lb"),
  24178. name: "Front",
  24179. image: {
  24180. source: "./media/characters/luka-bryzant/front.svg",
  24181. extra: 311 / 289,
  24182. bottom: 4 / 315
  24183. }
  24184. },
  24185. back: {
  24186. height: math.unit(6 + 4 / 12, "feet"),
  24187. weight: math.unit(175, "lb"),
  24188. name: "Back",
  24189. image: {
  24190. source: "./media/characters/luka-bryzant/back.svg",
  24191. extra: 311 / 289,
  24192. bottom: 3.8 / 313.7
  24193. }
  24194. },
  24195. },
  24196. [
  24197. {
  24198. name: "Micro",
  24199. height: math.unit(10, "inches")
  24200. },
  24201. {
  24202. name: "Normal",
  24203. height: math.unit(6 + 4 / 12, "feet"),
  24204. default: true
  24205. },
  24206. {
  24207. name: "Large",
  24208. height: math.unit(12, "feet")
  24209. },
  24210. ]
  24211. ))
  24212. characterMakers.push(() => makeCharacter(
  24213. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24214. {
  24215. front: {
  24216. height: math.unit(5 + 7 / 12, "feet"),
  24217. weight: math.unit(185, "lb"),
  24218. name: "Front",
  24219. image: {
  24220. source: "./media/characters/aman-aquila/front.svg",
  24221. extra: 1013 / 976,
  24222. bottom: 45.6 / 1057
  24223. }
  24224. },
  24225. side: {
  24226. height: math.unit(5 + 7 / 12, "feet"),
  24227. weight: math.unit(185, "lb"),
  24228. name: "Side",
  24229. image: {
  24230. source: "./media/characters/aman-aquila/side.svg",
  24231. extra: 1054 / 1011,
  24232. bottom: 15 / 1070
  24233. }
  24234. },
  24235. back: {
  24236. height: math.unit(5 + 7 / 12, "feet"),
  24237. weight: math.unit(185, "lb"),
  24238. name: "Back",
  24239. image: {
  24240. source: "./media/characters/aman-aquila/back.svg",
  24241. extra: 1026 / 970,
  24242. bottom: 12 / 1039
  24243. }
  24244. },
  24245. head: {
  24246. height: math.unit(1.211, "feet"),
  24247. name: "Head",
  24248. image: {
  24249. source: "./media/characters/aman-aquila/head.svg",
  24250. }
  24251. },
  24252. },
  24253. [
  24254. {
  24255. name: "Minimicro",
  24256. height: math.unit(0.057, "inches")
  24257. },
  24258. {
  24259. name: "Micro",
  24260. height: math.unit(7, "inches")
  24261. },
  24262. {
  24263. name: "Mini",
  24264. height: math.unit(3 + 7 / 12, "feet")
  24265. },
  24266. {
  24267. name: "Normal",
  24268. height: math.unit(5 + 7 / 12, "feet"),
  24269. default: true
  24270. },
  24271. {
  24272. name: "Macro",
  24273. height: math.unit(157 + 7 / 12, "feet")
  24274. },
  24275. {
  24276. name: "Megamacro",
  24277. height: math.unit(1557 + 7 / 12, "feet")
  24278. },
  24279. {
  24280. name: "Gigamacro",
  24281. height: math.unit(15557 + 7 / 12, "feet")
  24282. },
  24283. ]
  24284. ))
  24285. characterMakers.push(() => makeCharacter(
  24286. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24287. {
  24288. front: {
  24289. height: math.unit(3 + 2 / 12, "inches"),
  24290. weight: math.unit(0.3, "ounces"),
  24291. name: "Front",
  24292. image: {
  24293. source: "./media/characters/hiphae/front.svg",
  24294. extra: 1931 / 1683,
  24295. bottom: 24 / 1955
  24296. }
  24297. },
  24298. },
  24299. [
  24300. {
  24301. name: "Normal",
  24302. height: math.unit(3 + 1 / 2, "inches"),
  24303. default: true
  24304. },
  24305. ]
  24306. ))
  24307. characterMakers.push(() => makeCharacter(
  24308. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24309. {
  24310. front: {
  24311. height: math.unit(5 + 10 / 12, "feet"),
  24312. weight: math.unit(165, "lb"),
  24313. name: "Front",
  24314. image: {
  24315. source: "./media/characters/nicky/front.svg",
  24316. extra: 3144 / 2886,
  24317. bottom: 45.6 / 3192
  24318. }
  24319. },
  24320. back: {
  24321. height: math.unit(5 + 10 / 12, "feet"),
  24322. weight: math.unit(165, "lb"),
  24323. name: "Back",
  24324. image: {
  24325. source: "./media/characters/nicky/back.svg",
  24326. extra: 3055 / 2804,
  24327. bottom: 28.4 / 3087
  24328. }
  24329. },
  24330. frontclothed: {
  24331. height: math.unit(5 + 10 / 12, "feet"),
  24332. weight: math.unit(165, "lb"),
  24333. name: "Front-clothed",
  24334. image: {
  24335. source: "./media/characters/nicky/front-clothed.svg",
  24336. extra: 3184.9 / 2926.9,
  24337. bottom: 86.5 / 3239.9
  24338. }
  24339. },
  24340. foot: {
  24341. height: math.unit(1.16, "feet"),
  24342. name: "Foot",
  24343. image: {
  24344. source: "./media/characters/nicky/foot.svg"
  24345. }
  24346. },
  24347. feet: {
  24348. height: math.unit(1.34, "feet"),
  24349. name: "Feet",
  24350. image: {
  24351. source: "./media/characters/nicky/feet.svg"
  24352. }
  24353. },
  24354. maw: {
  24355. height: math.unit(0.9, "feet"),
  24356. name: "Maw",
  24357. image: {
  24358. source: "./media/characters/nicky/maw.svg"
  24359. }
  24360. },
  24361. },
  24362. [
  24363. {
  24364. name: "Normal",
  24365. height: math.unit(5 + 10 / 12, "feet"),
  24366. default: true
  24367. },
  24368. {
  24369. name: "Macro",
  24370. height: math.unit(60, "feet")
  24371. },
  24372. {
  24373. name: "Megamacro",
  24374. height: math.unit(1, "mile")
  24375. },
  24376. ]
  24377. ))
  24378. characterMakers.push(() => makeCharacter(
  24379. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24380. {
  24381. side: {
  24382. height: math.unit(10, "feet"),
  24383. weight: math.unit(600, "lb"),
  24384. name: "Side",
  24385. image: {
  24386. source: "./media/characters/blair/side.svg",
  24387. bottom: 16.6 / 475,
  24388. extra: 458 / 431
  24389. }
  24390. },
  24391. },
  24392. [
  24393. {
  24394. name: "Micro",
  24395. height: math.unit(8, "inches")
  24396. },
  24397. {
  24398. name: "Normal",
  24399. height: math.unit(10, "feet"),
  24400. default: true
  24401. },
  24402. {
  24403. name: "Macro",
  24404. height: math.unit(180, "feet")
  24405. },
  24406. ]
  24407. ))
  24408. characterMakers.push(() => makeCharacter(
  24409. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24410. {
  24411. front: {
  24412. height: math.unit(5 + 4 / 12, "feet"),
  24413. weight: math.unit(125, "lb"),
  24414. name: "Front",
  24415. image: {
  24416. source: "./media/characters/fisher/front.svg",
  24417. extra: 444 / 390,
  24418. bottom: 2 / 444.8
  24419. }
  24420. },
  24421. },
  24422. [
  24423. {
  24424. name: "Micro",
  24425. height: math.unit(4, "inches")
  24426. },
  24427. {
  24428. name: "Normal",
  24429. height: math.unit(5 + 4 / 12, "feet"),
  24430. default: true
  24431. },
  24432. {
  24433. name: "Macro",
  24434. height: math.unit(100, "feet")
  24435. },
  24436. ]
  24437. ))
  24438. characterMakers.push(() => makeCharacter(
  24439. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24440. {
  24441. front: {
  24442. height: math.unit(6.71, "feet"),
  24443. weight: math.unit(200, "lb"),
  24444. capacity: math.unit(1000000, "people"),
  24445. name: "Front",
  24446. image: {
  24447. source: "./media/characters/gliss/front.svg",
  24448. extra: 2347 / 2231,
  24449. bottom: 113 / 2462
  24450. }
  24451. },
  24452. hammerspaceSize: {
  24453. height: math.unit(6.71 * 717, "feet"),
  24454. weight: math.unit(200, "lb"),
  24455. capacity: math.unit(1000000, "people"),
  24456. name: "Hammerspace Size",
  24457. image: {
  24458. source: "./media/characters/gliss/front.svg",
  24459. extra: 2347 / 2231,
  24460. bottom: 113 / 2462
  24461. }
  24462. },
  24463. },
  24464. [
  24465. {
  24466. name: "Normal",
  24467. height: math.unit(6.71, "feet"),
  24468. default: true
  24469. },
  24470. ]
  24471. ))
  24472. characterMakers.push(() => makeCharacter(
  24473. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24474. {
  24475. side: {
  24476. height: math.unit(1.44, "m"),
  24477. weight: math.unit(80, "kg"),
  24478. name: "Side",
  24479. image: {
  24480. source: "./media/characters/dune-anderson/side.svg",
  24481. bottom: 49 / 1426
  24482. }
  24483. },
  24484. },
  24485. [
  24486. {
  24487. name: "Wolf-sized",
  24488. height: math.unit(1.44, "meters")
  24489. },
  24490. {
  24491. name: "Normal",
  24492. height: math.unit(5.05, "meters"),
  24493. default: true
  24494. },
  24495. {
  24496. name: "Big",
  24497. height: math.unit(14.4, "meters")
  24498. },
  24499. {
  24500. name: "Huge",
  24501. height: math.unit(144, "meters")
  24502. },
  24503. ]
  24504. ))
  24505. characterMakers.push(() => makeCharacter(
  24506. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24507. {
  24508. front: {
  24509. height: math.unit(7, "feet"),
  24510. weight: math.unit(425, "lb"),
  24511. name: "Front",
  24512. image: {
  24513. source: "./media/characters/hind/front.svg",
  24514. extra: 2091 / 1860,
  24515. bottom: 129 / 2220
  24516. }
  24517. },
  24518. back: {
  24519. height: math.unit(7, "feet"),
  24520. weight: math.unit(425, "lb"),
  24521. name: "Back",
  24522. image: {
  24523. source: "./media/characters/hind/back.svg",
  24524. extra: 2091 / 1860,
  24525. bottom: 24.6 / 2309
  24526. }
  24527. },
  24528. tail: {
  24529. height: math.unit(2.8, "feet"),
  24530. name: "Tail",
  24531. image: {
  24532. source: "./media/characters/hind/tail.svg"
  24533. }
  24534. },
  24535. head: {
  24536. height: math.unit(2.55, "feet"),
  24537. name: "Head",
  24538. image: {
  24539. source: "./media/characters/hind/head.svg"
  24540. }
  24541. },
  24542. },
  24543. [
  24544. {
  24545. name: "XS",
  24546. height: math.unit(0.7, "feet")
  24547. },
  24548. {
  24549. name: "Normal",
  24550. height: math.unit(7, "feet"),
  24551. default: true
  24552. },
  24553. {
  24554. name: "XL",
  24555. height: math.unit(70, "feet")
  24556. },
  24557. ]
  24558. ))
  24559. characterMakers.push(() => makeCharacter(
  24560. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24561. {
  24562. front: {
  24563. height: math.unit(6, "feet"),
  24564. weight: math.unit(150, "lb"),
  24565. name: "Front",
  24566. image: {
  24567. source: "./media/characters/dylan-skaven/front.svg",
  24568. extra: 2318 / 2063,
  24569. bottom: 93.4 / 2410
  24570. }
  24571. },
  24572. },
  24573. [
  24574. {
  24575. name: "Nano",
  24576. height: math.unit(1, "mm")
  24577. },
  24578. {
  24579. name: "Micro",
  24580. height: math.unit(1, "cm")
  24581. },
  24582. {
  24583. name: "Normal",
  24584. height: math.unit(2.1, "meters"),
  24585. default: true
  24586. },
  24587. ]
  24588. ))
  24589. characterMakers.push(() => makeCharacter(
  24590. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24591. {
  24592. front: {
  24593. height: math.unit(7 + 5 / 12, "feet"),
  24594. weight: math.unit(357, "lb"),
  24595. name: "Front",
  24596. image: {
  24597. source: "./media/characters/solex-draconov/front.svg",
  24598. extra: 1993 / 1865,
  24599. bottom: 117 / 2111
  24600. }
  24601. },
  24602. },
  24603. [
  24604. {
  24605. name: "Natural Height",
  24606. height: math.unit(7 + 5 / 12, "feet"),
  24607. default: true
  24608. },
  24609. {
  24610. name: "Macro",
  24611. height: math.unit(350, "feet")
  24612. },
  24613. {
  24614. name: "Macro+",
  24615. height: math.unit(1000, "feet")
  24616. },
  24617. {
  24618. name: "Megamacro",
  24619. height: math.unit(20, "km")
  24620. },
  24621. {
  24622. name: "Megamacro+",
  24623. height: math.unit(1000, "km")
  24624. },
  24625. {
  24626. name: "Gigamacro",
  24627. height: math.unit(2.5, "Gm")
  24628. },
  24629. {
  24630. name: "Teramacro",
  24631. height: math.unit(15, "Tm")
  24632. },
  24633. {
  24634. name: "Galactic",
  24635. height: math.unit(30, "Zm")
  24636. },
  24637. {
  24638. name: "Universal",
  24639. height: math.unit(21000, "Ym")
  24640. },
  24641. {
  24642. name: "Omniversal",
  24643. height: math.unit(9.861e50, "Ym")
  24644. },
  24645. {
  24646. name: "Existential",
  24647. height: math.unit(1e300, "meters")
  24648. },
  24649. ]
  24650. ))
  24651. characterMakers.push(() => makeCharacter(
  24652. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24653. {
  24654. side: {
  24655. height: math.unit(25, "feet"),
  24656. weight: math.unit(90000, "lb"),
  24657. name: "Side",
  24658. image: {
  24659. source: "./media/characters/mandarax/side.svg",
  24660. extra: 614 / 332,
  24661. bottom: 55 / 630
  24662. }
  24663. },
  24664. head: {
  24665. height: math.unit(11.4, "feet"),
  24666. name: "Head",
  24667. image: {
  24668. source: "./media/characters/mandarax/head.svg"
  24669. }
  24670. },
  24671. belly: {
  24672. height: math.unit(33, "feet"),
  24673. name: "Belly",
  24674. capacity: math.unit(500, "people"),
  24675. image: {
  24676. source: "./media/characters/mandarax/belly.svg"
  24677. }
  24678. },
  24679. dick: {
  24680. height: math.unit(8.46, "feet"),
  24681. name: "Dick",
  24682. image: {
  24683. source: "./media/characters/mandarax/dick.svg"
  24684. }
  24685. },
  24686. top: {
  24687. height: math.unit(28, "meters"),
  24688. name: "Top",
  24689. image: {
  24690. source: "./media/characters/mandarax/top.svg"
  24691. }
  24692. },
  24693. },
  24694. [
  24695. {
  24696. name: "Normal",
  24697. height: math.unit(25, "feet"),
  24698. default: true
  24699. },
  24700. ]
  24701. ))
  24702. characterMakers.push(() => makeCharacter(
  24703. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24704. {
  24705. front: {
  24706. height: math.unit(5, "feet"),
  24707. weight: math.unit(90, "lb"),
  24708. name: "Front",
  24709. image: {
  24710. source: "./media/characters/pixil/front.svg",
  24711. extra: 2000 / 1618,
  24712. bottom: 12.3 / 2011
  24713. }
  24714. },
  24715. },
  24716. [
  24717. {
  24718. name: "Normal",
  24719. height: math.unit(5, "feet"),
  24720. default: true
  24721. },
  24722. {
  24723. name: "Megamacro",
  24724. height: math.unit(10, "miles"),
  24725. },
  24726. ]
  24727. ))
  24728. characterMakers.push(() => makeCharacter(
  24729. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24730. {
  24731. front: {
  24732. height: math.unit(7 + 2 / 12, "feet"),
  24733. weight: math.unit(200, "lb"),
  24734. name: "Front",
  24735. image: {
  24736. source: "./media/characters/angel/front.svg",
  24737. extra: 1830 / 1737,
  24738. bottom: 22.6 / 1854,
  24739. }
  24740. },
  24741. },
  24742. [
  24743. {
  24744. name: "Normal",
  24745. height: math.unit(7 + 2 / 12, "feet"),
  24746. default: true
  24747. },
  24748. {
  24749. name: "Macro",
  24750. height: math.unit(1000, "feet")
  24751. },
  24752. {
  24753. name: "Megamacro",
  24754. height: math.unit(2, "miles")
  24755. },
  24756. {
  24757. name: "Gigamacro",
  24758. height: math.unit(20, "earths")
  24759. },
  24760. ]
  24761. ))
  24762. characterMakers.push(() => makeCharacter(
  24763. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24764. {
  24765. front: {
  24766. height: math.unit(5, "feet"),
  24767. weight: math.unit(180, "lb"),
  24768. name: "Front",
  24769. image: {
  24770. source: "./media/characters/mekana/front.svg",
  24771. extra: 1671 / 1605,
  24772. bottom: 3.5 / 1691
  24773. }
  24774. },
  24775. side: {
  24776. height: math.unit(5, "feet"),
  24777. weight: math.unit(180, "lb"),
  24778. name: "Side",
  24779. image: {
  24780. source: "./media/characters/mekana/side.svg",
  24781. extra: 1671 / 1605,
  24782. bottom: 3.5 / 1691
  24783. }
  24784. },
  24785. back: {
  24786. height: math.unit(5, "feet"),
  24787. weight: math.unit(180, "lb"),
  24788. name: "Back",
  24789. image: {
  24790. source: "./media/characters/mekana/back.svg",
  24791. extra: 1671 / 1605,
  24792. bottom: 3.5 / 1691
  24793. }
  24794. },
  24795. },
  24796. [
  24797. {
  24798. name: "Normal",
  24799. height: math.unit(5, "feet"),
  24800. default: true
  24801. },
  24802. ]
  24803. ))
  24804. characterMakers.push(() => makeCharacter(
  24805. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24806. {
  24807. front: {
  24808. height: math.unit(4 + 6 / 12, "feet"),
  24809. weight: math.unit(80, "lb"),
  24810. name: "Front",
  24811. image: {
  24812. source: "./media/characters/pixie/front.svg",
  24813. extra: 1924 / 1825,
  24814. bottom: 22.4 / 1946
  24815. }
  24816. },
  24817. },
  24818. [
  24819. {
  24820. name: "Normal",
  24821. height: math.unit(4 + 6 / 12, "feet"),
  24822. default: true
  24823. },
  24824. {
  24825. name: "Macro",
  24826. height: math.unit(40, "feet")
  24827. },
  24828. ]
  24829. ))
  24830. characterMakers.push(() => makeCharacter(
  24831. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24832. {
  24833. front: {
  24834. height: math.unit(2.1, "meters"),
  24835. weight: math.unit(200, "lb"),
  24836. name: "Front",
  24837. image: {
  24838. source: "./media/characters/the-lascivious/front.svg",
  24839. extra: 1 / 0.893,
  24840. bottom: 3.5 / 573.7
  24841. }
  24842. },
  24843. },
  24844. [
  24845. {
  24846. name: "Human Scale",
  24847. height: math.unit(2.1, "meters")
  24848. },
  24849. {
  24850. name: "Wolxi Scale",
  24851. height: math.unit(46.2, "m"),
  24852. default: true
  24853. },
  24854. {
  24855. name: "Boinker of Buildings",
  24856. height: math.unit(10, "km")
  24857. },
  24858. {
  24859. name: "Shagger of Skyscrapers",
  24860. height: math.unit(40, "km")
  24861. },
  24862. {
  24863. name: "Banger of Boroughs",
  24864. height: math.unit(4000, "km")
  24865. },
  24866. {
  24867. name: "Screwer of States",
  24868. height: math.unit(100000, "km")
  24869. },
  24870. {
  24871. name: "Pounder of Planets",
  24872. height: math.unit(2000000, "km")
  24873. },
  24874. ]
  24875. ))
  24876. characterMakers.push(() => makeCharacter(
  24877. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24878. {
  24879. front: {
  24880. height: math.unit(6, "feet"),
  24881. weight: math.unit(150, "lb"),
  24882. name: "Front",
  24883. image: {
  24884. source: "./media/characters/aj/front.svg",
  24885. extra: 2039 / 1562,
  24886. bottom: 40 / 2079
  24887. }
  24888. },
  24889. },
  24890. [
  24891. {
  24892. name: "Normal",
  24893. height: math.unit(11 + 6 / 12, "feet"),
  24894. default: true
  24895. },
  24896. {
  24897. name: "Megamacro",
  24898. height: math.unit(60, "megameters")
  24899. },
  24900. ]
  24901. ))
  24902. characterMakers.push(() => makeCharacter(
  24903. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24904. {
  24905. side: {
  24906. height: math.unit(31 + 8 / 12, "feet"),
  24907. weight: math.unit(75000, "kg"),
  24908. name: "Side",
  24909. image: {
  24910. source: "./media/characters/koros/side.svg",
  24911. extra: 1442 / 1297,
  24912. bottom: 122.7 / 1562
  24913. }
  24914. },
  24915. dicksKingsCrown: {
  24916. height: math.unit(6, "feet"),
  24917. name: "Dicks (King's Crown)",
  24918. image: {
  24919. source: "./media/characters/koros/dicks-kings-crown.svg"
  24920. }
  24921. },
  24922. dicksTailSet: {
  24923. height: math.unit(3, "feet"),
  24924. name: "Dicks (Tail Set)",
  24925. image: {
  24926. source: "./media/characters/koros/dicks-tail-set.svg"
  24927. }
  24928. },
  24929. dickCumming: {
  24930. height: math.unit(7.98, "feet"),
  24931. name: "Dick (Cumming)",
  24932. image: {
  24933. source: "./media/characters/koros/dick-cumming.svg"
  24934. }
  24935. },
  24936. dicksBack: {
  24937. height: math.unit(5.9, "feet"),
  24938. name: "Dicks (Back)",
  24939. image: {
  24940. source: "./media/characters/koros/dicks-back.svg"
  24941. }
  24942. },
  24943. dicksFront: {
  24944. height: math.unit(3.72, "feet"),
  24945. name: "Dicks (Front)",
  24946. image: {
  24947. source: "./media/characters/koros/dicks-front.svg"
  24948. }
  24949. },
  24950. dicksPeeking: {
  24951. height: math.unit(3.0, "feet"),
  24952. name: "Dicks (Peeking)",
  24953. image: {
  24954. source: "./media/characters/koros/dicks-peeking.svg"
  24955. }
  24956. },
  24957. eye: {
  24958. height: math.unit(1.7, "feet"),
  24959. name: "Eye",
  24960. image: {
  24961. source: "./media/characters/koros/eye.svg"
  24962. }
  24963. },
  24964. headFront: {
  24965. height: math.unit(11.69, "feet"),
  24966. name: "Head (Front)",
  24967. image: {
  24968. source: "./media/characters/koros/head-front.svg"
  24969. }
  24970. },
  24971. headSide: {
  24972. height: math.unit(14, "feet"),
  24973. name: "Head (Side)",
  24974. image: {
  24975. source: "./media/characters/koros/head-side.svg"
  24976. }
  24977. },
  24978. leg: {
  24979. height: math.unit(17, "feet"),
  24980. name: "Leg",
  24981. image: {
  24982. source: "./media/characters/koros/leg.svg"
  24983. }
  24984. },
  24985. mawSide: {
  24986. height: math.unit(12.8, "feet"),
  24987. name: "Maw (Side)",
  24988. image: {
  24989. source: "./media/characters/koros/maw-side.svg"
  24990. }
  24991. },
  24992. mawSpitting: {
  24993. height: math.unit(17, "feet"),
  24994. name: "Maw (Spitting)",
  24995. image: {
  24996. source: "./media/characters/koros/maw-spitting.svg"
  24997. }
  24998. },
  24999. slit: {
  25000. height: math.unit(2.8, "feet"),
  25001. name: "Slit",
  25002. image: {
  25003. source: "./media/characters/koros/slit.svg"
  25004. }
  25005. },
  25006. stomach: {
  25007. height: math.unit(6.8, "feet"),
  25008. capacity: math.unit(20, "people"),
  25009. name: "Stomach",
  25010. image: {
  25011. source: "./media/characters/koros/stomach.svg"
  25012. }
  25013. },
  25014. wingspanBottom: {
  25015. height: math.unit(114, "feet"),
  25016. name: "Wingspan (Bottom)",
  25017. image: {
  25018. source: "./media/characters/koros/wingspan-bottom.svg"
  25019. }
  25020. },
  25021. wingspanTop: {
  25022. height: math.unit(104, "feet"),
  25023. name: "Wingspan (Top)",
  25024. image: {
  25025. source: "./media/characters/koros/wingspan-top.svg"
  25026. }
  25027. },
  25028. },
  25029. [
  25030. {
  25031. name: "Normal",
  25032. height: math.unit(31 + 8 / 12, "feet"),
  25033. default: true
  25034. },
  25035. ]
  25036. ))
  25037. characterMakers.push(() => makeCharacter(
  25038. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25039. {
  25040. front: {
  25041. height: math.unit(18 + 5 / 12, "feet"),
  25042. weight: math.unit(3750, "kg"),
  25043. name: "Front",
  25044. image: {
  25045. source: "./media/characters/vexx/front.svg",
  25046. extra: 426 / 396,
  25047. bottom: 31.5 / 458
  25048. }
  25049. },
  25050. maw: {
  25051. height: math.unit(6, "feet"),
  25052. name: "Maw",
  25053. image: {
  25054. source: "./media/characters/vexx/maw.svg"
  25055. }
  25056. },
  25057. },
  25058. [
  25059. {
  25060. name: "Normal",
  25061. height: math.unit(18 + 5 / 12, "feet"),
  25062. default: true
  25063. },
  25064. ]
  25065. ))
  25066. characterMakers.push(() => makeCharacter(
  25067. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25068. {
  25069. front: {
  25070. height: math.unit(17 + 6 / 12, "feet"),
  25071. weight: math.unit(150, "lb"),
  25072. name: "Front",
  25073. image: {
  25074. source: "./media/characters/baadra/front.svg",
  25075. extra: 3137 / 2890,
  25076. bottom: 168.4 / 3305
  25077. }
  25078. },
  25079. back: {
  25080. height: math.unit(17 + 6 / 12, "feet"),
  25081. weight: math.unit(150, "lb"),
  25082. name: "Back",
  25083. image: {
  25084. source: "./media/characters/baadra/back.svg",
  25085. extra: 3142 / 2890,
  25086. bottom: 220 / 3371
  25087. }
  25088. },
  25089. head: {
  25090. height: math.unit(5.45, "feet"),
  25091. name: "Head",
  25092. image: {
  25093. source: "./media/characters/baadra/head.svg"
  25094. }
  25095. },
  25096. headAngry: {
  25097. height: math.unit(4.95, "feet"),
  25098. name: "Head (Angry)",
  25099. image: {
  25100. source: "./media/characters/baadra/head-angry.svg"
  25101. }
  25102. },
  25103. headOpen: {
  25104. height: math.unit(6, "feet"),
  25105. name: "Head (Open)",
  25106. image: {
  25107. source: "./media/characters/baadra/head-open.svg"
  25108. }
  25109. },
  25110. },
  25111. [
  25112. {
  25113. name: "Normal",
  25114. height: math.unit(17 + 6 / 12, "feet"),
  25115. default: true
  25116. },
  25117. ]
  25118. ))
  25119. characterMakers.push(() => makeCharacter(
  25120. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25121. {
  25122. front: {
  25123. height: math.unit(7 + 3 / 12, "feet"),
  25124. weight: math.unit(180, "lb"),
  25125. name: "Front",
  25126. image: {
  25127. source: "./media/characters/juri/front.svg",
  25128. extra: 1401 / 1237,
  25129. bottom: 18.5 / 1418
  25130. }
  25131. },
  25132. side: {
  25133. height: math.unit(7 + 3 / 12, "feet"),
  25134. weight: math.unit(180, "lb"),
  25135. name: "Side",
  25136. image: {
  25137. source: "./media/characters/juri/side.svg",
  25138. extra: 1424 / 1242,
  25139. bottom: 18.5 / 1447
  25140. }
  25141. },
  25142. sitting: {
  25143. height: math.unit(6, "feet"),
  25144. weight: math.unit(180, "lb"),
  25145. name: "Sitting",
  25146. image: {
  25147. source: "./media/characters/juri/sitting.svg",
  25148. extra: 1270 / 1143,
  25149. bottom: 100 / 1343
  25150. }
  25151. },
  25152. back: {
  25153. height: math.unit(7 + 3 / 12, "feet"),
  25154. weight: math.unit(180, "lb"),
  25155. name: "Back",
  25156. image: {
  25157. source: "./media/characters/juri/back.svg",
  25158. extra: 1377 / 1240,
  25159. bottom: 23.7 / 1405
  25160. }
  25161. },
  25162. maw: {
  25163. height: math.unit(2.8, "feet"),
  25164. name: "Maw",
  25165. image: {
  25166. source: "./media/characters/juri/maw.svg"
  25167. }
  25168. },
  25169. stomach: {
  25170. height: math.unit(0.89, "feet"),
  25171. capacity: math.unit(4, "liters"),
  25172. name: "Stomach",
  25173. image: {
  25174. source: "./media/characters/juri/stomach.svg"
  25175. }
  25176. },
  25177. },
  25178. [
  25179. {
  25180. name: "Normal",
  25181. height: math.unit(7 + 3 / 12, "feet"),
  25182. default: true
  25183. },
  25184. ]
  25185. ))
  25186. characterMakers.push(() => makeCharacter(
  25187. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25188. {
  25189. fox: {
  25190. height: math.unit(5 + 6 / 12, "feet"),
  25191. weight: math.unit(140, "lb"),
  25192. name: "Fox",
  25193. image: {
  25194. source: "./media/characters/maxene-sita/fox.svg",
  25195. extra: 146 / 138,
  25196. bottom: 2.1 / 148.19
  25197. }
  25198. },
  25199. foxLaying: {
  25200. height: math.unit(1.70, "feet"),
  25201. weight: math.unit(140, "lb"),
  25202. name: "Fox (Laying)",
  25203. image: {
  25204. source: "./media/characters/maxene-sita/fox-laying.svg",
  25205. extra: 910 / 572,
  25206. bottom: 71 / 981
  25207. }
  25208. },
  25209. kitsune: {
  25210. height: math.unit(10, "feet"),
  25211. weight: math.unit(800, "lb"),
  25212. name: "Kitsune",
  25213. image: {
  25214. source: "./media/characters/maxene-sita/kitsune.svg",
  25215. extra: 185 / 176,
  25216. bottom: 4.7 / 189.9
  25217. }
  25218. },
  25219. hellhound: {
  25220. height: math.unit(10, "feet"),
  25221. weight: math.unit(700, "lb"),
  25222. name: "Hellhound",
  25223. image: {
  25224. source: "./media/characters/maxene-sita/hellhound.svg",
  25225. extra: 1600 / 1545,
  25226. bottom: 81 / 1681
  25227. }
  25228. },
  25229. },
  25230. [
  25231. {
  25232. name: "Normal",
  25233. height: math.unit(5 + 6 / 12, "feet"),
  25234. default: true
  25235. },
  25236. ]
  25237. ))
  25238. characterMakers.push(() => makeCharacter(
  25239. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25240. {
  25241. front: {
  25242. height: math.unit(3 + 4 / 12, "feet"),
  25243. weight: math.unit(70, "lb"),
  25244. name: "Front",
  25245. image: {
  25246. source: "./media/characters/maia/front.svg",
  25247. extra: 227 / 219.5,
  25248. bottom: 40 / 267
  25249. }
  25250. },
  25251. back: {
  25252. height: math.unit(3 + 4 / 12, "feet"),
  25253. weight: math.unit(70, "lb"),
  25254. name: "Back",
  25255. image: {
  25256. source: "./media/characters/maia/back.svg",
  25257. extra: 237 / 225
  25258. }
  25259. },
  25260. },
  25261. [
  25262. {
  25263. name: "Normal",
  25264. height: math.unit(3 + 4 / 12, "feet"),
  25265. default: true
  25266. },
  25267. ]
  25268. ))
  25269. characterMakers.push(() => makeCharacter(
  25270. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25271. {
  25272. front: {
  25273. height: math.unit(5 + 10 / 12, "feet"),
  25274. weight: math.unit(197, "lb"),
  25275. name: "Front",
  25276. image: {
  25277. source: "./media/characters/jabaro/front.svg",
  25278. extra: 225 / 216,
  25279. bottom: 5.06 / 230
  25280. }
  25281. },
  25282. back: {
  25283. height: math.unit(5 + 10 / 12, "feet"),
  25284. weight: math.unit(197, "lb"),
  25285. name: "Back",
  25286. image: {
  25287. source: "./media/characters/jabaro/back.svg",
  25288. extra: 225 / 219,
  25289. bottom: 1.9 / 227
  25290. }
  25291. },
  25292. },
  25293. [
  25294. {
  25295. name: "Normal",
  25296. height: math.unit(5 + 10 / 12, "feet"),
  25297. default: true
  25298. },
  25299. ]
  25300. ))
  25301. characterMakers.push(() => makeCharacter(
  25302. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25303. {
  25304. front: {
  25305. height: math.unit(5 + 8 / 12, "feet"),
  25306. weight: math.unit(139, "lb"),
  25307. name: "Front",
  25308. image: {
  25309. source: "./media/characters/risa/front.svg",
  25310. extra: 270 / 260,
  25311. bottom: 11.2 / 282
  25312. }
  25313. },
  25314. back: {
  25315. height: math.unit(5 + 8 / 12, "feet"),
  25316. weight: math.unit(139, "lb"),
  25317. name: "Back",
  25318. image: {
  25319. source: "./media/characters/risa/back.svg",
  25320. extra: 264 / 255,
  25321. bottom: 4 / 268
  25322. }
  25323. },
  25324. },
  25325. [
  25326. {
  25327. name: "Normal",
  25328. height: math.unit(5 + 8 / 12, "feet"),
  25329. default: true
  25330. },
  25331. ]
  25332. ))
  25333. characterMakers.push(() => makeCharacter(
  25334. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25335. {
  25336. front: {
  25337. height: math.unit(2 + 11 / 12, "feet"),
  25338. weight: math.unit(30, "lb"),
  25339. name: "Front",
  25340. image: {
  25341. source: "./media/characters/weatley/front.svg",
  25342. bottom: 10.7 / 414,
  25343. extra: 403.5 / 362
  25344. }
  25345. },
  25346. back: {
  25347. height: math.unit(2 + 11 / 12, "feet"),
  25348. weight: math.unit(30, "lb"),
  25349. name: "Back",
  25350. image: {
  25351. source: "./media/characters/weatley/back.svg",
  25352. bottom: 10.7 / 414,
  25353. extra: 403.5 / 362
  25354. }
  25355. },
  25356. },
  25357. [
  25358. {
  25359. name: "Normal",
  25360. height: math.unit(2 + 11 / 12, "feet"),
  25361. default: true
  25362. },
  25363. ]
  25364. ))
  25365. characterMakers.push(() => makeCharacter(
  25366. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25367. {
  25368. front: {
  25369. height: math.unit(5 + 2 / 12, "feet"),
  25370. weight: math.unit(50, "kg"),
  25371. name: "Front",
  25372. image: {
  25373. source: "./media/characters/mercury-crescent/front.svg",
  25374. extra: 1088 / 1033,
  25375. bottom: 18.9 / 1109
  25376. }
  25377. },
  25378. },
  25379. [
  25380. {
  25381. name: "Normal",
  25382. height: math.unit(5 + 2 / 12, "feet"),
  25383. default: true
  25384. },
  25385. ]
  25386. ))
  25387. characterMakers.push(() => makeCharacter(
  25388. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25389. {
  25390. front: {
  25391. height: math.unit(2, "feet"),
  25392. weight: math.unit(15, "kg"),
  25393. name: "Front",
  25394. image: {
  25395. source: "./media/characters/diamond-jones/front.svg",
  25396. bottom: 16 / 568
  25397. }
  25398. },
  25399. },
  25400. [
  25401. {
  25402. name: "Normal",
  25403. height: math.unit(2, "feet"),
  25404. default: true
  25405. },
  25406. ]
  25407. ))
  25408. characterMakers.push(() => makeCharacter(
  25409. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25410. {
  25411. front: {
  25412. height: math.unit(3, "feet"),
  25413. weight: math.unit(30, "kg"),
  25414. name: "Front",
  25415. image: {
  25416. source: "./media/characters/sweet-bit/front.svg",
  25417. extra: 675 / 567,
  25418. bottom: 27.7 / 703
  25419. }
  25420. },
  25421. },
  25422. [
  25423. {
  25424. name: "Normal",
  25425. height: math.unit(3, "feet"),
  25426. default: true
  25427. },
  25428. ]
  25429. ))
  25430. characterMakers.push(() => makeCharacter(
  25431. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25432. {
  25433. side: {
  25434. height: math.unit(9.178, "feet"),
  25435. weight: math.unit(500, "lb"),
  25436. name: "Side",
  25437. image: {
  25438. source: "./media/characters/umbrazen/side.svg",
  25439. extra: 1730 / 1473,
  25440. bottom: 34.6 / 1765
  25441. }
  25442. },
  25443. },
  25444. [
  25445. {
  25446. name: "Normal",
  25447. height: math.unit(9.178, "feet"),
  25448. default: true
  25449. },
  25450. ]
  25451. ))
  25452. characterMakers.push(() => makeCharacter(
  25453. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25454. {
  25455. front: {
  25456. height: math.unit(10, "feet"),
  25457. weight: math.unit(750, "lb"),
  25458. name: "Front",
  25459. image: {
  25460. source: "./media/characters/arlist/front.svg",
  25461. extra: 961 / 778,
  25462. bottom: 6.2 / 986
  25463. }
  25464. },
  25465. },
  25466. [
  25467. {
  25468. name: "Normal",
  25469. height: math.unit(10, "feet"),
  25470. default: true
  25471. },
  25472. ]
  25473. ))
  25474. characterMakers.push(() => makeCharacter(
  25475. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25476. {
  25477. front: {
  25478. height: math.unit(5 + 1 / 12, "feet"),
  25479. weight: math.unit(110, "lb"),
  25480. name: "Front",
  25481. image: {
  25482. source: "./media/characters/aradel/front.svg",
  25483. extra: 324 / 303,
  25484. bottom: 3.6 / 329.4
  25485. }
  25486. },
  25487. },
  25488. [
  25489. {
  25490. name: "Normal",
  25491. height: math.unit(5 + 1 / 12, "feet"),
  25492. default: true
  25493. },
  25494. ]
  25495. ))
  25496. characterMakers.push(() => makeCharacter(
  25497. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25498. {
  25499. front: {
  25500. height: math.unit(3 + 8 / 12, "feet"),
  25501. weight: math.unit(50, "lb"),
  25502. name: "Front",
  25503. image: {
  25504. source: "./media/characters/serryn/front.svg",
  25505. extra: 1792 / 1656,
  25506. bottom: 43.5 / 1840
  25507. }
  25508. },
  25509. },
  25510. [
  25511. {
  25512. name: "Normal",
  25513. height: math.unit(3 + 8 / 12, "feet"),
  25514. default: true
  25515. },
  25516. ]
  25517. ))
  25518. characterMakers.push(() => makeCharacter(
  25519. { name: "Xavier Thyme" },
  25520. {
  25521. front: {
  25522. height: math.unit(7 + 10 / 12, "feet"),
  25523. weight: math.unit(255, "lb"),
  25524. name: "Front",
  25525. image: {
  25526. source: "./media/characters/xavier-thyme/front.svg",
  25527. extra: 3733 / 3642,
  25528. bottom: 131 / 3869
  25529. }
  25530. },
  25531. frontRaven: {
  25532. height: math.unit(7 + 10 / 12, "feet"),
  25533. weight: math.unit(255, "lb"),
  25534. name: "Front (Raven)",
  25535. image: {
  25536. source: "./media/characters/xavier-thyme/front-raven.svg",
  25537. extra: 4385 / 3642,
  25538. bottom: 131 / 4517
  25539. }
  25540. },
  25541. },
  25542. [
  25543. {
  25544. name: "Normal",
  25545. height: math.unit(7 + 10 / 12, "feet"),
  25546. default: true
  25547. },
  25548. ]
  25549. ))
  25550. characterMakers.push(() => makeCharacter(
  25551. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25552. {
  25553. front: {
  25554. height: math.unit(1.6, "m"),
  25555. weight: math.unit(50, "kg"),
  25556. name: "Front",
  25557. image: {
  25558. source: "./media/characters/kiki/front.svg",
  25559. extra: 4682 / 3610,
  25560. bottom: 115 / 4777
  25561. }
  25562. },
  25563. },
  25564. [
  25565. {
  25566. name: "Normal",
  25567. height: math.unit(1.6, "meters"),
  25568. default: true
  25569. },
  25570. ]
  25571. ))
  25572. characterMakers.push(() => makeCharacter(
  25573. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25574. {
  25575. front: {
  25576. height: math.unit(50, "m"),
  25577. weight: math.unit(500, "tonnes"),
  25578. name: "Front",
  25579. image: {
  25580. source: "./media/characters/ryoko/front.svg",
  25581. extra: 4632 / 3926,
  25582. bottom: 193 / 4823
  25583. }
  25584. },
  25585. },
  25586. [
  25587. {
  25588. name: "Normal",
  25589. height: math.unit(50, "meters"),
  25590. default: true
  25591. },
  25592. ]
  25593. ))
  25594. characterMakers.push(() => makeCharacter(
  25595. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25596. {
  25597. front: {
  25598. height: math.unit(30, "m"),
  25599. weight: math.unit(22, "tonnes"),
  25600. name: "Front",
  25601. image: {
  25602. source: "./media/characters/elio/front.svg",
  25603. extra: 4582 / 3720,
  25604. bottom: 236 / 4828
  25605. }
  25606. },
  25607. },
  25608. [
  25609. {
  25610. name: "Normal",
  25611. height: math.unit(30, "meters"),
  25612. default: true
  25613. },
  25614. ]
  25615. ))
  25616. characterMakers.push(() => makeCharacter(
  25617. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25618. {
  25619. front: {
  25620. height: math.unit(6 + 3 / 12, "feet"),
  25621. weight: math.unit(120, "lb"),
  25622. name: "Front",
  25623. image: {
  25624. source: "./media/characters/azura/front.svg",
  25625. extra: 1149 / 1135,
  25626. bottom: 45 / 1194
  25627. }
  25628. },
  25629. frontClothed: {
  25630. height: math.unit(6 + 3 / 12, "feet"),
  25631. weight: math.unit(120, "lb"),
  25632. name: "Front (Clothed)",
  25633. image: {
  25634. source: "./media/characters/azura/front-clothed.svg",
  25635. extra: 1149 / 1135,
  25636. bottom: 45 / 1194
  25637. }
  25638. },
  25639. },
  25640. [
  25641. {
  25642. name: "Normal",
  25643. height: math.unit(6 + 3 / 12, "feet"),
  25644. default: true
  25645. },
  25646. {
  25647. name: "Macro",
  25648. height: math.unit(20 + 6 / 12, "feet")
  25649. },
  25650. {
  25651. name: "Megamacro",
  25652. height: math.unit(12, "miles")
  25653. },
  25654. {
  25655. name: "Gigamacro",
  25656. height: math.unit(10000, "miles")
  25657. },
  25658. {
  25659. name: "Teramacro",
  25660. height: math.unit(900000, "miles")
  25661. },
  25662. ]
  25663. ))
  25664. characterMakers.push(() => makeCharacter(
  25665. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25666. {
  25667. front: {
  25668. height: math.unit(12, "feet"),
  25669. weight: math.unit(1, "ton"),
  25670. capacity: math.unit(660000, "gallons"),
  25671. name: "Front",
  25672. image: {
  25673. source: "./media/characters/zeus/front.svg",
  25674. extra: 5005 / 4717,
  25675. bottom: 363 / 5388
  25676. }
  25677. },
  25678. },
  25679. [
  25680. {
  25681. name: "Normal",
  25682. height: math.unit(12, "feet")
  25683. },
  25684. {
  25685. name: "Preferred Size",
  25686. height: math.unit(0.5, "miles"),
  25687. default: true
  25688. },
  25689. {
  25690. name: "Giga Horse",
  25691. height: math.unit(300, "miles")
  25692. },
  25693. {
  25694. name: "Riding Planets",
  25695. height: math.unit(30, "megameters")
  25696. },
  25697. {
  25698. name: "Cosmic Giant",
  25699. height: math.unit(3, "zettameters")
  25700. },
  25701. {
  25702. name: "Breeding God",
  25703. height: math.unit(9.92e22, "yottameters")
  25704. },
  25705. ]
  25706. ))
  25707. characterMakers.push(() => makeCharacter(
  25708. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25709. {
  25710. side: {
  25711. height: math.unit(9, "feet"),
  25712. weight: math.unit(1500, "kg"),
  25713. name: "Side",
  25714. image: {
  25715. source: "./media/characters/fang/side.svg",
  25716. extra: 924 / 866,
  25717. bottom: 47.5 / 972.3
  25718. }
  25719. },
  25720. },
  25721. [
  25722. {
  25723. name: "Normal",
  25724. height: math.unit(9, "feet"),
  25725. default: true
  25726. },
  25727. {
  25728. name: "Macro",
  25729. height: math.unit(75 + 6 / 12, "feet")
  25730. },
  25731. {
  25732. name: "Teramacro",
  25733. height: math.unit(50000, "miles")
  25734. },
  25735. ]
  25736. ))
  25737. characterMakers.push(() => makeCharacter(
  25738. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25739. {
  25740. front: {
  25741. height: math.unit(10, "feet"),
  25742. weight: math.unit(2, "tons"),
  25743. name: "Front",
  25744. image: {
  25745. source: "./media/characters/rekhit/front.svg",
  25746. extra: 2796 / 2590,
  25747. bottom: 225 / 3022
  25748. }
  25749. },
  25750. },
  25751. [
  25752. {
  25753. name: "Normal",
  25754. height: math.unit(10, "feet"),
  25755. default: true
  25756. },
  25757. {
  25758. name: "Macro",
  25759. height: math.unit(500, "feet")
  25760. },
  25761. ]
  25762. ))
  25763. characterMakers.push(() => makeCharacter(
  25764. { name: "Dahlia Verrick" },
  25765. {
  25766. front: {
  25767. height: math.unit(7 + 6.451 / 12, "feet"),
  25768. weight: math.unit(310, "lb"),
  25769. name: "Front",
  25770. image: {
  25771. source: "./media/characters/dahlia-verrick/front.svg",
  25772. extra: 1488 / 1365,
  25773. bottom: 6.2 / 1495
  25774. }
  25775. },
  25776. back: {
  25777. height: math.unit(7 + 6.451 / 12, "feet"),
  25778. weight: math.unit(310, "lb"),
  25779. name: "Back",
  25780. image: {
  25781. source: "./media/characters/dahlia-verrick/back.svg",
  25782. extra: 1472 / 1351,
  25783. bottom: 5.28 / 1477
  25784. }
  25785. },
  25786. frontBusiness: {
  25787. height: math.unit(7 + 6.451 / 12, "feet"),
  25788. weight: math.unit(200, "lb"),
  25789. name: "Front (Business)",
  25790. image: {
  25791. source: "./media/characters/dahlia-verrick/front-business.svg",
  25792. extra: 1478 / 1381,
  25793. bottom: 5.5 / 1484
  25794. }
  25795. },
  25796. frontCasual: {
  25797. height: math.unit(7 + 6.451 / 12, "feet"),
  25798. weight: math.unit(200, "lb"),
  25799. name: "Front (Casual)",
  25800. image: {
  25801. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25802. extra: 1478 / 1381,
  25803. bottom: 5.5 / 1484
  25804. }
  25805. },
  25806. },
  25807. [
  25808. {
  25809. name: "Travel-Sized",
  25810. height: math.unit(7.45, "inches")
  25811. },
  25812. {
  25813. name: "Normal",
  25814. height: math.unit(7 + 6.451 / 12, "feet"),
  25815. default: true
  25816. },
  25817. {
  25818. name: "Hitting the Town",
  25819. height: math.unit(37 + 8 / 12, "feet")
  25820. },
  25821. {
  25822. name: "Stomp in the Suburbs",
  25823. height: math.unit(964 + 9.728 / 12, "feet")
  25824. },
  25825. {
  25826. name: "Sit on the City",
  25827. height: math.unit(61747 + 10.592 / 12, "feet")
  25828. },
  25829. {
  25830. name: "Glomp the Globe",
  25831. height: math.unit(252919327 + 4.832 / 12, "feet")
  25832. },
  25833. ]
  25834. ))
  25835. characterMakers.push(() => makeCharacter(
  25836. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25837. {
  25838. front: {
  25839. height: math.unit(6 + 4 / 12, "feet"),
  25840. weight: math.unit(320, "lb"),
  25841. name: "Front",
  25842. image: {
  25843. source: "./media/characters/balina-mahigan/front.svg",
  25844. extra: 447 / 428,
  25845. bottom: 18 / 466
  25846. }
  25847. },
  25848. back: {
  25849. height: math.unit(6 + 4 / 12, "feet"),
  25850. weight: math.unit(320, "lb"),
  25851. name: "Back",
  25852. image: {
  25853. source: "./media/characters/balina-mahigan/back.svg",
  25854. extra: 445 / 428,
  25855. bottom: 4.07 / 448
  25856. }
  25857. },
  25858. arm: {
  25859. height: math.unit(1.88, "feet"),
  25860. name: "Arm",
  25861. image: {
  25862. source: "./media/characters/balina-mahigan/arm.svg"
  25863. }
  25864. },
  25865. backPort: {
  25866. height: math.unit(0.685, "feet"),
  25867. name: "Back Port",
  25868. image: {
  25869. source: "./media/characters/balina-mahigan/back-port.svg"
  25870. }
  25871. },
  25872. hoofpaw: {
  25873. height: math.unit(1.41, "feet"),
  25874. name: "Hoofpaw",
  25875. image: {
  25876. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25877. }
  25878. },
  25879. leftHandBack: {
  25880. height: math.unit(0.938, "feet"),
  25881. name: "Left Hand (Back)",
  25882. image: {
  25883. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25884. }
  25885. },
  25886. leftHandFront: {
  25887. height: math.unit(0.938, "feet"),
  25888. name: "Left Hand (Front)",
  25889. image: {
  25890. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25891. }
  25892. },
  25893. rightHandBack: {
  25894. height: math.unit(0.95, "feet"),
  25895. name: "Right Hand (Back)",
  25896. image: {
  25897. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25898. }
  25899. },
  25900. rightHandFront: {
  25901. height: math.unit(0.95, "feet"),
  25902. name: "Right Hand (Front)",
  25903. image: {
  25904. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25905. }
  25906. },
  25907. },
  25908. [
  25909. {
  25910. name: "Normal",
  25911. height: math.unit(6 + 4 / 12, "feet"),
  25912. default: true
  25913. },
  25914. ]
  25915. ))
  25916. characterMakers.push(() => makeCharacter(
  25917. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25918. {
  25919. front: {
  25920. height: math.unit(6, "feet"),
  25921. weight: math.unit(320, "lb"),
  25922. name: "Front",
  25923. image: {
  25924. source: "./media/characters/balina-mejeri/front.svg",
  25925. extra: 517 / 488,
  25926. bottom: 44.2 / 561
  25927. }
  25928. },
  25929. },
  25930. [
  25931. {
  25932. name: "Normal",
  25933. height: math.unit(6 + 4 / 12, "feet")
  25934. },
  25935. {
  25936. name: "Business",
  25937. height: math.unit(155, "feet"),
  25938. default: true
  25939. },
  25940. ]
  25941. ))
  25942. characterMakers.push(() => makeCharacter(
  25943. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25944. {
  25945. kneeling: {
  25946. height: math.unit(6 + 4 / 12, "feet"),
  25947. weight: math.unit(300 * 20, "lb"),
  25948. name: "Kneeling",
  25949. image: {
  25950. source: "./media/characters/balbarian/kneeling.svg",
  25951. extra: 922 / 862,
  25952. bottom: 42.4 / 965
  25953. }
  25954. },
  25955. },
  25956. [
  25957. {
  25958. name: "Normal",
  25959. height: math.unit(6 + 4 / 12, "feet")
  25960. },
  25961. {
  25962. name: "Treasured",
  25963. height: math.unit(18 + 9 / 12, "feet"),
  25964. default: true
  25965. },
  25966. {
  25967. name: "Macro",
  25968. height: math.unit(900, "feet")
  25969. },
  25970. ]
  25971. ))
  25972. characterMakers.push(() => makeCharacter(
  25973. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25974. {
  25975. front: {
  25976. height: math.unit(6 + 4 / 12, "feet"),
  25977. weight: math.unit(325, "lb"),
  25978. name: "Front",
  25979. image: {
  25980. source: "./media/characters/balina-amarini/front.svg",
  25981. extra: 415 / 403,
  25982. bottom: 19 / 433.4
  25983. }
  25984. },
  25985. back: {
  25986. height: math.unit(6 + 4 / 12, "feet"),
  25987. weight: math.unit(325, "lb"),
  25988. name: "Back",
  25989. image: {
  25990. source: "./media/characters/balina-amarini/back.svg",
  25991. extra: 415 / 403,
  25992. bottom: 13.5 / 432
  25993. }
  25994. },
  25995. overdrive: {
  25996. height: math.unit(6 + 4 / 12, "feet"),
  25997. weight: math.unit(400, "lb"),
  25998. name: "Overdrive",
  25999. image: {
  26000. source: "./media/characters/balina-amarini/overdrive.svg",
  26001. extra: 269 / 259,
  26002. bottom: 12 / 282
  26003. }
  26004. },
  26005. },
  26006. [
  26007. {
  26008. name: "Boom",
  26009. height: math.unit(9 + 10 / 12, "feet"),
  26010. default: true
  26011. },
  26012. {
  26013. name: "Macro",
  26014. height: math.unit(280, "feet")
  26015. },
  26016. ]
  26017. ))
  26018. characterMakers.push(() => makeCharacter(
  26019. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26020. {
  26021. goddess: {
  26022. height: math.unit(600, "feet"),
  26023. weight: math.unit(2000000, "tons"),
  26024. name: "Goddess",
  26025. image: {
  26026. source: "./media/characters/lady-kubwa/goddess.svg",
  26027. extra: 1240.5 / 1223,
  26028. bottom: 22 / 1263
  26029. }
  26030. },
  26031. goddesser: {
  26032. height: math.unit(900, "feet"),
  26033. weight: math.unit(20000000, "lb"),
  26034. name: "Goddess-er",
  26035. image: {
  26036. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26037. extra: 899 / 888,
  26038. bottom: 12.6 / 912
  26039. }
  26040. },
  26041. },
  26042. [
  26043. {
  26044. name: "Macro",
  26045. height: math.unit(600, "feet"),
  26046. default: true
  26047. },
  26048. {
  26049. name: "Megamacro",
  26050. height: math.unit(250, "miles")
  26051. },
  26052. ]
  26053. ))
  26054. characterMakers.push(() => makeCharacter(
  26055. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26056. {
  26057. front: {
  26058. height: math.unit(7 + 7 / 12, "feet"),
  26059. weight: math.unit(250, "lb"),
  26060. name: "Front",
  26061. image: {
  26062. source: "./media/characters/tala-grovehorn/front.svg",
  26063. extra: 2636 / 2525,
  26064. bottom: 147 / 2781
  26065. }
  26066. },
  26067. back: {
  26068. height: math.unit(7 + 7 / 12, "feet"),
  26069. weight: math.unit(250, "lb"),
  26070. name: "Back",
  26071. image: {
  26072. source: "./media/characters/tala-grovehorn/back.svg",
  26073. extra: 2635 / 2539,
  26074. bottom: 100 / 2732.8
  26075. }
  26076. },
  26077. mouth: {
  26078. height: math.unit(1.15, "feet"),
  26079. name: "Mouth",
  26080. image: {
  26081. source: "./media/characters/tala-grovehorn/mouth.svg"
  26082. }
  26083. },
  26084. dick: {
  26085. height: math.unit(2.36, "feet"),
  26086. name: "Dick",
  26087. image: {
  26088. source: "./media/characters/tala-grovehorn/dick.svg"
  26089. }
  26090. },
  26091. slit: {
  26092. height: math.unit(0.61, "feet"),
  26093. name: "Slit",
  26094. image: {
  26095. source: "./media/characters/tala-grovehorn/slit.svg"
  26096. }
  26097. },
  26098. },
  26099. [
  26100. ]
  26101. ))
  26102. characterMakers.push(() => makeCharacter(
  26103. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26104. {
  26105. front: {
  26106. height: math.unit(7 + 7 / 12, "feet"),
  26107. weight: math.unit(225, "lb"),
  26108. name: "Front",
  26109. image: {
  26110. source: "./media/characters/epona/front.svg",
  26111. extra: 2445 / 2290,
  26112. bottom: 251 / 2696
  26113. }
  26114. },
  26115. back: {
  26116. height: math.unit(7 + 7 / 12, "feet"),
  26117. weight: math.unit(225, "lb"),
  26118. name: "Back",
  26119. image: {
  26120. source: "./media/characters/epona/back.svg",
  26121. extra: 2546 / 2408,
  26122. bottom: 44 / 2589
  26123. }
  26124. },
  26125. genitals: {
  26126. height: math.unit(1.5, "feet"),
  26127. name: "Genitals",
  26128. image: {
  26129. source: "./media/characters/epona/genitals.svg"
  26130. }
  26131. },
  26132. },
  26133. [
  26134. {
  26135. name: "Normal",
  26136. height: math.unit(7 + 7 / 12, "feet"),
  26137. default: true
  26138. },
  26139. ]
  26140. ))
  26141. characterMakers.push(() => makeCharacter(
  26142. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26143. {
  26144. front: {
  26145. height: math.unit(7, "feet"),
  26146. weight: math.unit(518, "lb"),
  26147. name: "Front",
  26148. image: {
  26149. source: "./media/characters/avia-bloodbourn/front.svg",
  26150. extra: 1466 / 1350,
  26151. bottom: 65 / 1527
  26152. }
  26153. },
  26154. },
  26155. [
  26156. ]
  26157. ))
  26158. characterMakers.push(() => makeCharacter(
  26159. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26160. {
  26161. front: {
  26162. height: math.unit(9.35, "feet"),
  26163. weight: math.unit(600, "lb"),
  26164. name: "Front",
  26165. image: {
  26166. source: "./media/characters/amera/front.svg",
  26167. extra: 891 / 818,
  26168. bottom: 30 / 922.7
  26169. }
  26170. },
  26171. back: {
  26172. height: math.unit(9.35, "feet"),
  26173. weight: math.unit(600, "lb"),
  26174. name: "Back",
  26175. image: {
  26176. source: "./media/characters/amera/back.svg",
  26177. extra: 876 / 824,
  26178. bottom: 6.8 / 884
  26179. }
  26180. },
  26181. dick: {
  26182. height: math.unit(2.14, "feet"),
  26183. name: "Dick",
  26184. image: {
  26185. source: "./media/characters/amera/dick.svg"
  26186. }
  26187. },
  26188. },
  26189. [
  26190. {
  26191. name: "Normal",
  26192. height: math.unit(9.35, "feet"),
  26193. default: true
  26194. },
  26195. ]
  26196. ))
  26197. characterMakers.push(() => makeCharacter(
  26198. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26199. {
  26200. kneeling: {
  26201. height: math.unit(3 + 4 / 12, "feet"),
  26202. weight: math.unit(90, "lb"),
  26203. name: "Kneeling",
  26204. image: {
  26205. source: "./media/characters/rosewen/kneeling.svg",
  26206. extra: 1835 / 1571,
  26207. bottom: 27.7 / 1862
  26208. }
  26209. },
  26210. },
  26211. [
  26212. {
  26213. name: "Normal",
  26214. height: math.unit(3 + 4 / 12, "feet"),
  26215. default: true
  26216. },
  26217. ]
  26218. ))
  26219. characterMakers.push(() => makeCharacter(
  26220. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26221. {
  26222. front: {
  26223. height: math.unit(5 + 10 / 12, "feet"),
  26224. weight: math.unit(200, "lb"),
  26225. name: "Front",
  26226. image: {
  26227. source: "./media/characters/sabah/front.svg",
  26228. extra: 849 / 763,
  26229. bottom: 33.9 / 881
  26230. }
  26231. },
  26232. },
  26233. [
  26234. {
  26235. name: "Normal",
  26236. height: math.unit(5 + 10 / 12, "feet"),
  26237. default: true
  26238. },
  26239. ]
  26240. ))
  26241. characterMakers.push(() => makeCharacter(
  26242. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26243. {
  26244. front: {
  26245. height: math.unit(3 + 5 / 12, "feet"),
  26246. weight: math.unit(40, "kg"),
  26247. name: "Front",
  26248. image: {
  26249. source: "./media/characters/purple-flame/front.svg",
  26250. extra: 1577 / 1412,
  26251. bottom: 97 / 1694
  26252. }
  26253. },
  26254. frontDressed: {
  26255. height: math.unit(3 + 5 / 12, "feet"),
  26256. weight: math.unit(40, "kg"),
  26257. name: "Front (Dressed)",
  26258. image: {
  26259. source: "./media/characters/purple-flame/front-dressed.svg",
  26260. extra: 1577 / 1412,
  26261. bottom: 97 / 1694
  26262. }
  26263. },
  26264. headphones: {
  26265. height: math.unit(0.85, "feet"),
  26266. name: "Headphones",
  26267. image: {
  26268. source: "./media/characters/purple-flame/headphones.svg"
  26269. }
  26270. },
  26271. },
  26272. [
  26273. {
  26274. name: "Really Small",
  26275. height: math.unit(5, "cm")
  26276. },
  26277. {
  26278. name: "Micro",
  26279. height: math.unit(1 + 5 / 12, "feet")
  26280. },
  26281. {
  26282. name: "Normal",
  26283. height: math.unit(3 + 5 / 12, "feet"),
  26284. default: true
  26285. },
  26286. {
  26287. name: "Minimacro",
  26288. height: math.unit(125, "feet")
  26289. },
  26290. {
  26291. name: "Macro",
  26292. height: math.unit(0.5, "miles")
  26293. },
  26294. {
  26295. name: "Megamacro",
  26296. height: math.unit(50, "miles")
  26297. },
  26298. {
  26299. name: "Gigantic",
  26300. height: math.unit(750, "miles")
  26301. },
  26302. {
  26303. name: "Planetary",
  26304. height: math.unit(15000, "miles")
  26305. },
  26306. ]
  26307. ))
  26308. characterMakers.push(() => makeCharacter(
  26309. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26310. {
  26311. front: {
  26312. height: math.unit(14, "feet"),
  26313. weight: math.unit(959, "lb"),
  26314. name: "Front",
  26315. image: {
  26316. source: "./media/characters/arsenal/front.svg",
  26317. extra: 2357 / 2157,
  26318. bottom: 93 / 2458
  26319. }
  26320. },
  26321. },
  26322. [
  26323. {
  26324. name: "Normal",
  26325. height: math.unit(14, "feet"),
  26326. default: true
  26327. },
  26328. ]
  26329. ))
  26330. characterMakers.push(() => makeCharacter(
  26331. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26332. {
  26333. front: {
  26334. height: math.unit(6, "feet"),
  26335. weight: math.unit(150, "lb"),
  26336. name: "Front",
  26337. image: {
  26338. source: "./media/characters/adira/front.svg",
  26339. extra: 1078 / 1029,
  26340. bottom: 87 / 1166
  26341. }
  26342. },
  26343. },
  26344. [
  26345. {
  26346. name: "Micro",
  26347. height: math.unit(4, "inches"),
  26348. default: true
  26349. },
  26350. {
  26351. name: "Macro",
  26352. height: math.unit(50, "feet")
  26353. },
  26354. ]
  26355. ))
  26356. characterMakers.push(() => makeCharacter(
  26357. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26358. {
  26359. front: {
  26360. height: math.unit(16, "feet"),
  26361. weight: math.unit(1000, "lb"),
  26362. name: "Front",
  26363. image: {
  26364. source: "./media/characters/grim/front.svg",
  26365. extra: 622 / 614,
  26366. bottom: 18.1 / 642
  26367. }
  26368. },
  26369. back: {
  26370. height: math.unit(16, "feet"),
  26371. weight: math.unit(1000, "lb"),
  26372. name: "Back",
  26373. image: {
  26374. source: "./media/characters/grim/back.svg",
  26375. extra: 610.6 / 602,
  26376. bottom: 40.8 / 652
  26377. }
  26378. },
  26379. hunched: {
  26380. height: math.unit(9.75, "feet"),
  26381. weight: math.unit(1000, "lb"),
  26382. name: "Hunched",
  26383. image: {
  26384. source: "./media/characters/grim/hunched.svg",
  26385. extra: 304 / 297,
  26386. bottom: 35.4 / 394
  26387. }
  26388. },
  26389. },
  26390. [
  26391. {
  26392. name: "Normal",
  26393. height: math.unit(16, "feet"),
  26394. default: true
  26395. },
  26396. ]
  26397. ))
  26398. characterMakers.push(() => makeCharacter(
  26399. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26400. {
  26401. front: {
  26402. height: math.unit(2.3, "meters"),
  26403. weight: math.unit(300, "lb"),
  26404. name: "Front",
  26405. image: {
  26406. source: "./media/characters/sinja/front-sfw.svg",
  26407. extra: 1393 / 1294,
  26408. bottom: 70 / 1463
  26409. }
  26410. },
  26411. frontNsfw: {
  26412. height: math.unit(2.3, "meters"),
  26413. weight: math.unit(300, "lb"),
  26414. name: "Front (NSFW)",
  26415. image: {
  26416. source: "./media/characters/sinja/front-nsfw.svg",
  26417. extra: 1393 / 1294,
  26418. bottom: 70 / 1463
  26419. }
  26420. },
  26421. back: {
  26422. height: math.unit(2.3, "meters"),
  26423. weight: math.unit(300, "lb"),
  26424. name: "Back",
  26425. image: {
  26426. source: "./media/characters/sinja/back.svg",
  26427. extra: 1393 / 1294,
  26428. bottom: 70 / 1463
  26429. }
  26430. },
  26431. head: {
  26432. height: math.unit(1.771, "feet"),
  26433. name: "Head",
  26434. image: {
  26435. source: "./media/characters/sinja/head.svg"
  26436. }
  26437. },
  26438. slit: {
  26439. height: math.unit(0.8, "feet"),
  26440. name: "Slit",
  26441. image: {
  26442. source: "./media/characters/sinja/slit.svg"
  26443. }
  26444. },
  26445. },
  26446. [
  26447. {
  26448. name: "Normal",
  26449. height: math.unit(2.3, "meters")
  26450. },
  26451. {
  26452. name: "Macro",
  26453. height: math.unit(91, "meters"),
  26454. default: true
  26455. },
  26456. {
  26457. name: "Megamacro",
  26458. height: math.unit(91440, "meters")
  26459. },
  26460. {
  26461. name: "Gigamacro",
  26462. height: math.unit(60960000, "meters")
  26463. },
  26464. {
  26465. name: "Teramacro",
  26466. height: math.unit(9144000000, "meters")
  26467. },
  26468. ]
  26469. ))
  26470. characterMakers.push(() => makeCharacter(
  26471. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26472. {
  26473. front: {
  26474. height: math.unit(1.7, "meters"),
  26475. weight: math.unit(130, "lb"),
  26476. name: "Front",
  26477. image: {
  26478. source: "./media/characters/kyu/front.svg",
  26479. extra: 415 / 395,
  26480. bottom: 5 / 420
  26481. }
  26482. },
  26483. head: {
  26484. height: math.unit(1.75, "feet"),
  26485. name: "Head",
  26486. image: {
  26487. source: "./media/characters/kyu/head.svg"
  26488. }
  26489. },
  26490. foot: {
  26491. height: math.unit(0.81, "feet"),
  26492. name: "Foot",
  26493. image: {
  26494. source: "./media/characters/kyu/foot.svg"
  26495. }
  26496. },
  26497. },
  26498. [
  26499. {
  26500. name: "Normal",
  26501. height: math.unit(1.7, "meters")
  26502. },
  26503. {
  26504. name: "Macro",
  26505. height: math.unit(131, "feet"),
  26506. default: true
  26507. },
  26508. {
  26509. name: "Megamacro",
  26510. height: math.unit(91440, "meters")
  26511. },
  26512. {
  26513. name: "Gigamacro",
  26514. height: math.unit(60960000, "meters")
  26515. },
  26516. {
  26517. name: "Teramacro",
  26518. height: math.unit(9144000000, "meters")
  26519. },
  26520. ]
  26521. ))
  26522. characterMakers.push(() => makeCharacter(
  26523. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26524. {
  26525. front: {
  26526. height: math.unit(7 + 1 / 12, "feet"),
  26527. weight: math.unit(250, "lb"),
  26528. name: "Front",
  26529. image: {
  26530. source: "./media/characters/joey/front.svg",
  26531. extra: 1791 / 1537,
  26532. bottom: 28 / 1816
  26533. }
  26534. },
  26535. },
  26536. [
  26537. {
  26538. name: "Micro",
  26539. height: math.unit(3, "inches")
  26540. },
  26541. {
  26542. name: "Normal",
  26543. height: math.unit(7 + 1 / 12, "feet"),
  26544. default: true
  26545. },
  26546. ]
  26547. ))
  26548. characterMakers.push(() => makeCharacter(
  26549. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26550. {
  26551. front: {
  26552. height: math.unit(165, "cm"),
  26553. weight: math.unit(140, "lb"),
  26554. name: "Front",
  26555. image: {
  26556. source: "./media/characters/sam-evans/front.svg",
  26557. extra: 3417 / 3230,
  26558. bottom: 41.3 / 3417
  26559. }
  26560. },
  26561. frontSixTails: {
  26562. height: math.unit(165, "cm"),
  26563. weight: math.unit(140, "lb"),
  26564. name: "Front-six-tails",
  26565. image: {
  26566. source: "./media/characters/sam-evans/front-six-tails.svg",
  26567. extra: 3417 / 3230,
  26568. bottom: 41.3 / 3417
  26569. }
  26570. },
  26571. back: {
  26572. height: math.unit(165, "cm"),
  26573. weight: math.unit(140, "lb"),
  26574. name: "Back",
  26575. image: {
  26576. source: "./media/characters/sam-evans/back.svg",
  26577. extra: 3227 / 3032,
  26578. bottom: 6.8 / 3234
  26579. }
  26580. },
  26581. face: {
  26582. height: math.unit(0.68, "feet"),
  26583. name: "Face",
  26584. image: {
  26585. source: "./media/characters/sam-evans/face.svg"
  26586. }
  26587. },
  26588. },
  26589. [
  26590. {
  26591. name: "Normal",
  26592. height: math.unit(165, "cm"),
  26593. default: true
  26594. },
  26595. {
  26596. name: "Macro",
  26597. height: math.unit(100, "meters")
  26598. },
  26599. {
  26600. name: "Macro+",
  26601. height: math.unit(800, "meters")
  26602. },
  26603. {
  26604. name: "Macro++",
  26605. height: math.unit(3, "km")
  26606. },
  26607. {
  26608. name: "Macro+++",
  26609. height: math.unit(30, "km")
  26610. },
  26611. ]
  26612. ))
  26613. characterMakers.push(() => makeCharacter(
  26614. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26615. {
  26616. front: {
  26617. height: math.unit(10, "feet"),
  26618. weight: math.unit(750, "lb"),
  26619. name: "Front",
  26620. image: {
  26621. source: "./media/characters/juliet-a/front.svg",
  26622. extra: 1766 / 1720,
  26623. bottom: 43 / 1809
  26624. }
  26625. },
  26626. back: {
  26627. height: math.unit(10, "feet"),
  26628. weight: math.unit(750, "lb"),
  26629. name: "Back",
  26630. image: {
  26631. source: "./media/characters/juliet-a/back.svg",
  26632. extra: 1781 / 1734,
  26633. bottom: 35 / 1810,
  26634. }
  26635. },
  26636. },
  26637. [
  26638. {
  26639. name: "Normal",
  26640. height: math.unit(10, "feet"),
  26641. default: true
  26642. },
  26643. {
  26644. name: "Dragon Form",
  26645. height: math.unit(250, "feet")
  26646. },
  26647. {
  26648. name: "Macro",
  26649. height: math.unit(1000, "feet")
  26650. },
  26651. {
  26652. name: "Megamacro",
  26653. height: math.unit(10000, "feet")
  26654. }
  26655. ]
  26656. ))
  26657. characterMakers.push(() => makeCharacter(
  26658. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26659. {
  26660. regular: {
  26661. height: math.unit(7 + 3 / 12, "feet"),
  26662. weight: math.unit(260, "lb"),
  26663. name: "Regular",
  26664. image: {
  26665. source: "./media/characters/wild/regular.svg",
  26666. extra: 97.45 / 92,
  26667. bottom: 6.8 / 104.3
  26668. }
  26669. },
  26670. biggums: {
  26671. height: math.unit(8 + 6 / 12, "feet"),
  26672. weight: math.unit(425, "lb"),
  26673. name: "Biggums",
  26674. image: {
  26675. source: "./media/characters/wild/biggums.svg",
  26676. extra: 97.45 / 92,
  26677. bottom: 7.5 / 132.34
  26678. }
  26679. },
  26680. mawRegular: {
  26681. height: math.unit(1.24, "feet"),
  26682. name: "Maw (Regular)",
  26683. image: {
  26684. source: "./media/characters/wild/maw.svg"
  26685. }
  26686. },
  26687. mawBiggums: {
  26688. height: math.unit(1.47, "feet"),
  26689. name: "Maw (Biggums)",
  26690. image: {
  26691. source: "./media/characters/wild/maw.svg"
  26692. }
  26693. },
  26694. },
  26695. [
  26696. {
  26697. name: "Normal",
  26698. height: math.unit(7 + 3 / 12, "feet"),
  26699. default: true
  26700. },
  26701. ]
  26702. ))
  26703. characterMakers.push(() => makeCharacter(
  26704. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26705. {
  26706. front: {
  26707. height: math.unit(2.5, "meters"),
  26708. weight: math.unit(200, "kg"),
  26709. name: "Front",
  26710. image: {
  26711. source: "./media/characters/vidar/front.svg",
  26712. extra: 2994 / 2795,
  26713. bottom: 56 / 3061
  26714. }
  26715. },
  26716. back: {
  26717. height: math.unit(2.5, "meters"),
  26718. weight: math.unit(200, "kg"),
  26719. name: "Back",
  26720. image: {
  26721. source: "./media/characters/vidar/back.svg",
  26722. extra: 3131 / 2928,
  26723. bottom: 13.5 / 3141.5
  26724. }
  26725. },
  26726. feral: {
  26727. height: math.unit(2.5, "meters"),
  26728. weight: math.unit(2000, "kg"),
  26729. name: "Feral",
  26730. image: {
  26731. source: "./media/characters/vidar/feral.svg",
  26732. extra: 2790 / 1765,
  26733. bottom: 6 / 2796
  26734. }
  26735. },
  26736. },
  26737. [
  26738. {
  26739. name: "Normal",
  26740. height: math.unit(2.5, "meters"),
  26741. default: true
  26742. },
  26743. {
  26744. name: "Macro",
  26745. height: math.unit(100, "meters")
  26746. },
  26747. ]
  26748. ))
  26749. characterMakers.push(() => makeCharacter(
  26750. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26751. {
  26752. front: {
  26753. height: math.unit(5 + 9 / 12, "feet"),
  26754. weight: math.unit(120, "lb"),
  26755. name: "Front",
  26756. image: {
  26757. source: "./media/characters/ash/front.svg",
  26758. extra: 2189 / 1961,
  26759. bottom: 5.2 / 2194
  26760. }
  26761. },
  26762. },
  26763. [
  26764. {
  26765. name: "Normal",
  26766. height: math.unit(5 + 9 / 12, "feet"),
  26767. default: true
  26768. },
  26769. ]
  26770. ))
  26771. characterMakers.push(() => makeCharacter(
  26772. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26773. {
  26774. front: {
  26775. height: math.unit(9, "feet"),
  26776. weight: math.unit(10000, "lb"),
  26777. name: "Front",
  26778. image: {
  26779. source: "./media/characters/gygabite/front.svg",
  26780. bottom: 31.7 / 537.8,
  26781. extra: 505 / 370
  26782. }
  26783. },
  26784. },
  26785. [
  26786. {
  26787. name: "Normal",
  26788. height: math.unit(9, "feet"),
  26789. default: true
  26790. },
  26791. ]
  26792. ))
  26793. characterMakers.push(() => makeCharacter(
  26794. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26795. {
  26796. front: {
  26797. height: math.unit(12, "feet"),
  26798. weight: math.unit(35000, "lb"),
  26799. name: "Front",
  26800. image: {
  26801. source: "./media/characters/p0tat0/front.svg",
  26802. extra: 1065 / 921,
  26803. bottom: 55.7 / 1121.25
  26804. }
  26805. },
  26806. },
  26807. [
  26808. {
  26809. name: "Normal",
  26810. height: math.unit(12, "feet"),
  26811. default: true
  26812. },
  26813. ]
  26814. ))
  26815. characterMakers.push(() => makeCharacter(
  26816. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26817. {
  26818. side: {
  26819. height: math.unit(6.5, "feet"),
  26820. weight: math.unit(800, "lb"),
  26821. name: "Side",
  26822. image: {
  26823. source: "./media/characters/dusk/side.svg",
  26824. extra: 615 / 373,
  26825. bottom: 53 / 664
  26826. }
  26827. },
  26828. sitting: {
  26829. height: math.unit(7, "feet"),
  26830. weight: math.unit(800, "lb"),
  26831. name: "Sitting",
  26832. image: {
  26833. source: "./media/characters/dusk/sitting.svg",
  26834. extra: 753 / 425,
  26835. bottom: 33 / 774
  26836. }
  26837. },
  26838. head: {
  26839. height: math.unit(6.1, "feet"),
  26840. name: "Head",
  26841. image: {
  26842. source: "./media/characters/dusk/head.svg"
  26843. }
  26844. },
  26845. },
  26846. [
  26847. {
  26848. name: "Normal",
  26849. height: math.unit(7, "feet"),
  26850. default: true
  26851. },
  26852. ]
  26853. ))
  26854. characterMakers.push(() => makeCharacter(
  26855. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26856. {
  26857. front: {
  26858. height: math.unit(15, "feet"),
  26859. weight: math.unit(7000, "lb"),
  26860. name: "Front",
  26861. image: {
  26862. source: "./media/characters/jay-direwolf/front.svg",
  26863. extra: 1810 / 1732,
  26864. bottom: 66 / 1892
  26865. }
  26866. },
  26867. },
  26868. [
  26869. {
  26870. name: "Normal",
  26871. height: math.unit(15, "feet"),
  26872. default: true
  26873. },
  26874. ]
  26875. ))
  26876. characterMakers.push(() => makeCharacter(
  26877. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26878. {
  26879. front: {
  26880. height: math.unit(4 + 9 / 12, "feet"),
  26881. weight: math.unit(130, "lb"),
  26882. name: "Front",
  26883. image: {
  26884. source: "./media/characters/anchovie/front.svg",
  26885. extra: 382 / 350,
  26886. bottom: 25 / 409
  26887. }
  26888. },
  26889. back: {
  26890. height: math.unit(4 + 9 / 12, "feet"),
  26891. weight: math.unit(130, "lb"),
  26892. name: "Back",
  26893. image: {
  26894. source: "./media/characters/anchovie/back.svg",
  26895. extra: 385 / 352,
  26896. bottom: 16.6 / 402
  26897. }
  26898. },
  26899. frontDressed: {
  26900. height: math.unit(4 + 9 / 12, "feet"),
  26901. weight: math.unit(130, "lb"),
  26902. name: "Front (Dressed)",
  26903. image: {
  26904. source: "./media/characters/anchovie/front-dressed.svg",
  26905. extra: 382 / 350,
  26906. bottom: 25 / 409
  26907. }
  26908. },
  26909. backDressed: {
  26910. height: math.unit(4 + 9 / 12, "feet"),
  26911. weight: math.unit(130, "lb"),
  26912. name: "Back (Dressed)",
  26913. image: {
  26914. source: "./media/characters/anchovie/back-dressed.svg",
  26915. extra: 385 / 352,
  26916. bottom: 16.6 / 402
  26917. }
  26918. },
  26919. },
  26920. [
  26921. {
  26922. name: "Micro",
  26923. height: math.unit(6.4, "inches")
  26924. },
  26925. {
  26926. name: "Normal",
  26927. height: math.unit(4 + 9 / 12, "feet"),
  26928. default: true
  26929. },
  26930. ]
  26931. ))
  26932. characterMakers.push(() => makeCharacter(
  26933. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26934. {
  26935. front: {
  26936. height: math.unit(2, "meters"),
  26937. weight: math.unit(180, "lb"),
  26938. name: "Front",
  26939. image: {
  26940. source: "./media/characters/acidrenamon/front.svg",
  26941. extra: 987 / 890,
  26942. bottom: 22.8 / 1009
  26943. }
  26944. },
  26945. back: {
  26946. height: math.unit(2, "meters"),
  26947. weight: math.unit(180, "lb"),
  26948. name: "Back",
  26949. image: {
  26950. source: "./media/characters/acidrenamon/back.svg",
  26951. extra: 983 / 891,
  26952. bottom: 8.4 / 992
  26953. }
  26954. },
  26955. head: {
  26956. height: math.unit(1.92, "feet"),
  26957. name: "Head",
  26958. image: {
  26959. source: "./media/characters/acidrenamon/head.svg"
  26960. }
  26961. },
  26962. rump: {
  26963. height: math.unit(1.72, "feet"),
  26964. name: "Rump",
  26965. image: {
  26966. source: "./media/characters/acidrenamon/rump.svg"
  26967. }
  26968. },
  26969. tail: {
  26970. height: math.unit(4.2, "feet"),
  26971. name: "Tail",
  26972. image: {
  26973. source: "./media/characters/acidrenamon/tail.svg"
  26974. }
  26975. },
  26976. },
  26977. [
  26978. {
  26979. name: "Normal",
  26980. height: math.unit(2, "meters"),
  26981. default: true
  26982. },
  26983. {
  26984. name: "Minimacro",
  26985. height: math.unit(7, "meters")
  26986. },
  26987. {
  26988. name: "Macro",
  26989. height: math.unit(200, "meters")
  26990. },
  26991. {
  26992. name: "Gigamacro",
  26993. height: math.unit(0.2, "earths")
  26994. },
  26995. ]
  26996. ))
  26997. characterMakers.push(() => makeCharacter(
  26998. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26999. {
  27000. front: {
  27001. height: math.unit(6, "feet"),
  27002. weight: math.unit(150, "lb"),
  27003. name: "Front",
  27004. image: {
  27005. source: "./media/characters/kenzie-lee/front.svg",
  27006. extra: 1525 / 1465,
  27007. bottom: 45 / 1570
  27008. }
  27009. },
  27010. side: {
  27011. height: math.unit(6, "feet"),
  27012. weight: math.unit(150, "lb"),
  27013. name: "Side",
  27014. image: {
  27015. source: "./media/characters/kenzie-lee/side.svg",
  27016. extra: 5505 / 5383,
  27017. bottom: 60 / 5573
  27018. }
  27019. },
  27020. paw: {
  27021. height: math.unit(0.57, "feet"),
  27022. name: "Paw",
  27023. image: {
  27024. source: "./media/characters/kenzie-lee/paw.svg"
  27025. }
  27026. },
  27027. },
  27028. [
  27029. {
  27030. name: "Normal",
  27031. height: math.unit(152, "feet"),
  27032. default: true
  27033. },
  27034. {
  27035. name: "Megamacro",
  27036. height: math.unit(7, "miles")
  27037. },
  27038. {
  27039. name: "Gigamacro",
  27040. height: math.unit(8000, "miles")
  27041. },
  27042. ]
  27043. ))
  27044. characterMakers.push(() => makeCharacter(
  27045. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27046. {
  27047. side: {
  27048. height: math.unit(6, "feet"),
  27049. weight: math.unit(150, "lb"),
  27050. name: "Side",
  27051. image: {
  27052. source: "./media/characters/withers/side.svg",
  27053. extra: 1830 / 1728,
  27054. bottom: 96 / 1927
  27055. }
  27056. },
  27057. front: {
  27058. height: math.unit(6, "feet"),
  27059. weight: math.unit(150, "lb"),
  27060. name: "Front",
  27061. image: {
  27062. source: "./media/characters/withers/front.svg",
  27063. extra: 1514 / 1438,
  27064. bottom: 118 / 1632
  27065. }
  27066. },
  27067. },
  27068. [
  27069. {
  27070. name: "Macro",
  27071. height: math.unit(168, "feet"),
  27072. default: true
  27073. },
  27074. {
  27075. name: "Megamacro",
  27076. height: math.unit(15, "miles")
  27077. }
  27078. ]
  27079. ))
  27080. characterMakers.push(() => makeCharacter(
  27081. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27082. {
  27083. front: {
  27084. height: math.unit(6 + 7 / 12, "feet"),
  27085. weight: math.unit(250, "lb"),
  27086. name: "Front",
  27087. image: {
  27088. source: "./media/characters/nemoskii/front.svg",
  27089. extra: 2270 / 1734,
  27090. bottom: 86 / 2354
  27091. }
  27092. },
  27093. back: {
  27094. height: math.unit(6 + 7 / 12, "feet"),
  27095. weight: math.unit(250, "lb"),
  27096. name: "Back",
  27097. image: {
  27098. source: "./media/characters/nemoskii/back.svg",
  27099. extra: 1845 / 1788,
  27100. bottom: 10.5 / 1852
  27101. }
  27102. },
  27103. head: {
  27104. height: math.unit(1.31, "feet"),
  27105. name: "Head",
  27106. image: {
  27107. source: "./media/characters/nemoskii/head.svg"
  27108. }
  27109. },
  27110. },
  27111. [
  27112. {
  27113. name: "Micro",
  27114. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27115. },
  27116. {
  27117. name: "Normal",
  27118. height: math.unit(6 + 7 / 12, "feet"),
  27119. default: true
  27120. },
  27121. {
  27122. name: "Macro",
  27123. height: math.unit((6 + 7 / 12) * 150, "feet")
  27124. },
  27125. {
  27126. name: "Macro+",
  27127. height: math.unit((6 + 7 / 12) * 500, "feet")
  27128. },
  27129. {
  27130. name: "Megamacro",
  27131. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27132. },
  27133. ]
  27134. ))
  27135. characterMakers.push(() => makeCharacter(
  27136. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27137. {
  27138. front: {
  27139. height: math.unit(1, "mile"),
  27140. weight: math.unit(265261.9, "lb"),
  27141. name: "Front",
  27142. image: {
  27143. source: "./media/characters/shui/front.svg",
  27144. extra: 1633 / 1564,
  27145. bottom: 91.5 / 1726
  27146. }
  27147. },
  27148. },
  27149. [
  27150. {
  27151. name: "Macro",
  27152. height: math.unit(1, "mile"),
  27153. default: true
  27154. },
  27155. ]
  27156. ))
  27157. characterMakers.push(() => makeCharacter(
  27158. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27159. {
  27160. front: {
  27161. height: math.unit(12 + 6 / 12, "feet"),
  27162. weight: math.unit(1342, "lb"),
  27163. name: "Front",
  27164. image: {
  27165. source: "./media/characters/arokh-takakura/front.svg",
  27166. extra: 1089 / 1043,
  27167. bottom: 77.4 / 1176.7
  27168. }
  27169. },
  27170. back: {
  27171. height: math.unit(12 + 6 / 12, "feet"),
  27172. weight: math.unit(1342, "lb"),
  27173. name: "Back",
  27174. image: {
  27175. source: "./media/characters/arokh-takakura/back.svg",
  27176. extra: 1046 / 1019,
  27177. bottom: 102 / 1150
  27178. }
  27179. },
  27180. },
  27181. [
  27182. {
  27183. name: "Big",
  27184. height: math.unit(12 + 6 / 12, "feet"),
  27185. default: true
  27186. },
  27187. ]
  27188. ))
  27189. characterMakers.push(() => makeCharacter(
  27190. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27191. {
  27192. front: {
  27193. height: math.unit(5 + 6 / 12, "feet"),
  27194. weight: math.unit(150, "lb"),
  27195. name: "Front",
  27196. image: {
  27197. source: "./media/characters/theo/front.svg",
  27198. extra: 1184 / 1131,
  27199. bottom: 7.4 / 1191
  27200. }
  27201. },
  27202. },
  27203. [
  27204. {
  27205. name: "Micro",
  27206. height: math.unit(5, "inches")
  27207. },
  27208. {
  27209. name: "Normal",
  27210. height: math.unit(5 + 6 / 12, "feet"),
  27211. default: true
  27212. },
  27213. ]
  27214. ))
  27215. characterMakers.push(() => makeCharacter(
  27216. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27217. {
  27218. front: {
  27219. height: math.unit(5 + 9 / 12, "feet"),
  27220. weight: math.unit(130, "lb"),
  27221. name: "Front",
  27222. image: {
  27223. source: "./media/characters/cecelia-swift/front.svg",
  27224. extra: 502 / 484,
  27225. bottom: 23 / 523
  27226. }
  27227. },
  27228. back: {
  27229. height: math.unit(5 + 9 / 12, "feet"),
  27230. weight: math.unit(130, "lb"),
  27231. name: "Back",
  27232. image: {
  27233. source: "./media/characters/cecelia-swift/back.svg",
  27234. extra: 499 / 485,
  27235. bottom: 12 / 511
  27236. }
  27237. },
  27238. head: {
  27239. height: math.unit(0.90, "feet"),
  27240. name: "Head",
  27241. image: {
  27242. source: "./media/characters/cecelia-swift/head.svg"
  27243. }
  27244. },
  27245. rump: {
  27246. height: math.unit(1.75, "feet"),
  27247. name: "Rump",
  27248. image: {
  27249. source: "./media/characters/cecelia-swift/rump.svg"
  27250. }
  27251. },
  27252. },
  27253. [
  27254. {
  27255. name: "Normal",
  27256. height: math.unit(5 + 9 / 12, "feet"),
  27257. default: true
  27258. },
  27259. {
  27260. name: "Big",
  27261. height: math.unit(50, "feet")
  27262. },
  27263. {
  27264. name: "Macro",
  27265. height: math.unit(100, "feet")
  27266. },
  27267. {
  27268. name: "Macro+",
  27269. height: math.unit(500, "feet")
  27270. },
  27271. {
  27272. name: "Macro++",
  27273. height: math.unit(1000, "feet")
  27274. },
  27275. ]
  27276. ))
  27277. characterMakers.push(() => makeCharacter(
  27278. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27279. {
  27280. front: {
  27281. height: math.unit(6, "feet"),
  27282. weight: math.unit(150, "lb"),
  27283. name: "Front",
  27284. image: {
  27285. source: "./media/characters/kaunan/front.svg",
  27286. extra: 2890 / 2523,
  27287. bottom: 49 / 2939
  27288. }
  27289. },
  27290. },
  27291. [
  27292. {
  27293. name: "Macro",
  27294. height: math.unit(150, "feet"),
  27295. default: true
  27296. },
  27297. ]
  27298. ))
  27299. characterMakers.push(() => makeCharacter(
  27300. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27301. {
  27302. front: {
  27303. height: math.unit(175, "cm"),
  27304. weight: math.unit(60, "kg"),
  27305. name: "Front",
  27306. image: {
  27307. source: "./media/characters/fei/front.svg",
  27308. extra: 2581 / 2400,
  27309. bottom: 82.2 / 2663
  27310. }
  27311. },
  27312. },
  27313. [
  27314. {
  27315. name: "Mortal",
  27316. height: math.unit(175, "cm")
  27317. },
  27318. {
  27319. name: "Normal",
  27320. height: math.unit(3500, "m"),
  27321. default: true
  27322. },
  27323. {
  27324. name: "Stroll",
  27325. height: math.unit(17.5, "km")
  27326. },
  27327. {
  27328. name: "Showoff",
  27329. height: math.unit(175, "km")
  27330. },
  27331. ]
  27332. ))
  27333. characterMakers.push(() => makeCharacter(
  27334. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27335. {
  27336. front: {
  27337. height: math.unit(7, "feet"),
  27338. weight: math.unit(1000, "kg"),
  27339. name: "Front",
  27340. image: {
  27341. source: "./media/characters/edrax/front.svg",
  27342. extra: 2838 / 2550,
  27343. bottom: 130 / 2968
  27344. }
  27345. },
  27346. },
  27347. [
  27348. {
  27349. name: "Small",
  27350. height: math.unit(7, "feet")
  27351. },
  27352. {
  27353. name: "Normal",
  27354. height: math.unit(1500, "meters")
  27355. },
  27356. {
  27357. name: "Mega",
  27358. height: math.unit(12000000, "km"),
  27359. default: true
  27360. },
  27361. {
  27362. name: "Megamacro",
  27363. height: math.unit(10600000, "lightyears")
  27364. },
  27365. {
  27366. name: "Hypermacro",
  27367. height: math.unit(256, "yottameters")
  27368. },
  27369. ]
  27370. ))
  27371. characterMakers.push(() => makeCharacter(
  27372. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27373. {
  27374. front: {
  27375. height: math.unit(10, "feet"),
  27376. weight: math.unit(750, "lb"),
  27377. name: "Front",
  27378. image: {
  27379. source: "./media/characters/clove/front.svg",
  27380. extra: 2031 / 1860,
  27381. bottom: 47.8 / 2080
  27382. }
  27383. },
  27384. back: {
  27385. height: math.unit(10, "feet"),
  27386. weight: math.unit(750, "lb"),
  27387. name: "Back",
  27388. image: {
  27389. source: "./media/characters/clove/back.svg",
  27390. extra: 2025 / 1859,
  27391. bottom: 46 / 2071
  27392. }
  27393. },
  27394. },
  27395. [
  27396. {
  27397. name: "Normal",
  27398. height: math.unit(10, "feet"),
  27399. default: true
  27400. },
  27401. ]
  27402. ))
  27403. characterMakers.push(() => makeCharacter(
  27404. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27405. {
  27406. front: {
  27407. height: math.unit(4, "feet"),
  27408. weight: math.unit(50, "lb"),
  27409. name: "Front",
  27410. image: {
  27411. source: "./media/characters/alex-rabbit/front.svg",
  27412. extra: 507 / 458,
  27413. bottom: 18.5 / 527
  27414. }
  27415. },
  27416. back: {
  27417. height: math.unit(4, "feet"),
  27418. weight: math.unit(50, "lb"),
  27419. name: "Back",
  27420. image: {
  27421. source: "./media/characters/alex-rabbit/back.svg",
  27422. extra: 502 / 460,
  27423. bottom: 18.9 / 521
  27424. }
  27425. },
  27426. },
  27427. [
  27428. {
  27429. name: "Normal",
  27430. height: math.unit(4, "feet"),
  27431. default: true
  27432. },
  27433. ]
  27434. ))
  27435. characterMakers.push(() => makeCharacter(
  27436. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27437. {
  27438. front: {
  27439. height: math.unit(1 + 3 / 12, "feet"),
  27440. weight: math.unit(80, "lb"),
  27441. name: "Front",
  27442. image: {
  27443. source: "./media/characters/zander-rose/front.svg",
  27444. extra: 916 / 797,
  27445. bottom: 17 / 933
  27446. }
  27447. },
  27448. back: {
  27449. height: math.unit(1 + 3 / 12, "feet"),
  27450. weight: math.unit(80, "lb"),
  27451. name: "Back",
  27452. image: {
  27453. source: "./media/characters/zander-rose/back.svg",
  27454. extra: 903 / 779,
  27455. bottom: 31 / 934
  27456. }
  27457. },
  27458. },
  27459. [
  27460. {
  27461. name: "Normal",
  27462. height: math.unit(1 + 3 / 12, "feet"),
  27463. default: true
  27464. },
  27465. ]
  27466. ))
  27467. characterMakers.push(() => makeCharacter(
  27468. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27469. {
  27470. anthro: {
  27471. height: math.unit(6, "feet"),
  27472. weight: math.unit(150, "lb"),
  27473. name: "Anthro",
  27474. image: {
  27475. source: "./media/characters/razz/anthro.svg",
  27476. extra: 1437 / 1343,
  27477. bottom: 48 / 1485
  27478. }
  27479. },
  27480. feral: {
  27481. height: math.unit(6, "feet"),
  27482. weight: math.unit(150, "lb"),
  27483. name: "Feral",
  27484. image: {
  27485. source: "./media/characters/razz/feral.svg",
  27486. extra: 2569 / 1385,
  27487. bottom: 95 / 2664
  27488. }
  27489. },
  27490. },
  27491. [
  27492. {
  27493. name: "Normal",
  27494. height: math.unit(6, "feet"),
  27495. default: true
  27496. },
  27497. ]
  27498. ))
  27499. characterMakers.push(() => makeCharacter(
  27500. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27501. {
  27502. front: {
  27503. height: math.unit(9 + 4 / 12, "feet"),
  27504. weight: math.unit(500, "lb"),
  27505. name: "Front",
  27506. image: {
  27507. source: "./media/characters/morrigan/front.svg",
  27508. extra: 2707 / 2579,
  27509. bottom: 156 / 2863
  27510. }
  27511. },
  27512. },
  27513. [
  27514. {
  27515. name: "Normal",
  27516. height: math.unit(9 + 4 / 12, "feet"),
  27517. default: true
  27518. },
  27519. ]
  27520. ))
  27521. characterMakers.push(() => makeCharacter(
  27522. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27523. {
  27524. front: {
  27525. height: math.unit(5, "stories"),
  27526. weight: math.unit(4000, "lb"),
  27527. name: "Front",
  27528. image: {
  27529. source: "./media/characters/jenene/front.svg",
  27530. extra: 1780 / 1710,
  27531. bottom: 57 / 1837
  27532. }
  27533. },
  27534. },
  27535. [
  27536. {
  27537. name: "Normal",
  27538. height: math.unit(5, "stories"),
  27539. default: true
  27540. },
  27541. ]
  27542. ))
  27543. characterMakers.push(() => makeCharacter(
  27544. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27545. {
  27546. front: {
  27547. height: math.unit(6, "feet"),
  27548. weight: math.unit(150, "lb"),
  27549. name: "Front",
  27550. image: {
  27551. source: "./media/characters/vix-archaser/front.svg",
  27552. extra: 2767 / 2562,
  27553. bottom: 36 / 2803
  27554. }
  27555. },
  27556. },
  27557. [
  27558. {
  27559. name: "Micro",
  27560. height: math.unit(1, "foot")
  27561. },
  27562. {
  27563. name: "Normal",
  27564. height: math.unit(6 + 5 / 12, "feet")
  27565. },
  27566. {
  27567. name: "Minimacro",
  27568. height: math.unit(500, "feet")
  27569. },
  27570. {
  27571. name: "Macro",
  27572. height: math.unit(4, "miles")
  27573. },
  27574. {
  27575. name: "Megamacro",
  27576. height: math.unit(250, "miles"),
  27577. default: true
  27578. },
  27579. {
  27580. name: "Gigamacro",
  27581. height: math.unit(1, "universe")
  27582. },
  27583. {
  27584. name: "Endgame",
  27585. height: math.unit(100, "multiverses")
  27586. }
  27587. ]
  27588. ))
  27589. characterMakers.push(() => makeCharacter(
  27590. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27591. {
  27592. taurSfw: {
  27593. height: math.unit(10, "meters"),
  27594. weight: math.unit(17500, "kg"),
  27595. name: "Taur",
  27596. image: {
  27597. source: "./media/characters/faey/taur-sfw.svg",
  27598. extra: 1200 / 968,
  27599. bottom: 41 / 1241
  27600. }
  27601. },
  27602. chestmaw: {
  27603. height: math.unit(2.01, "meters"),
  27604. name: "Chestmaw",
  27605. image: {
  27606. source: "./media/characters/faey/chestmaw.svg"
  27607. }
  27608. },
  27609. foot: {
  27610. height: math.unit(2.43, "meters"),
  27611. name: "Foot",
  27612. image: {
  27613. source: "./media/characters/faey/foot.svg"
  27614. }
  27615. },
  27616. jaws: {
  27617. height: math.unit(1.66, "meters"),
  27618. name: "Jaws",
  27619. image: {
  27620. source: "./media/characters/faey/jaws.svg"
  27621. }
  27622. },
  27623. tongues: {
  27624. height: math.unit(2.01, "meters"),
  27625. name: "Tongues",
  27626. image: {
  27627. source: "./media/characters/faey/tongues.svg"
  27628. }
  27629. },
  27630. },
  27631. [
  27632. {
  27633. name: "Small",
  27634. height: math.unit(10, "meters"),
  27635. default: true
  27636. },
  27637. {
  27638. name: "Big",
  27639. height: math.unit(500000, "km")
  27640. },
  27641. ]
  27642. ))
  27643. characterMakers.push(() => makeCharacter(
  27644. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27645. {
  27646. front: {
  27647. height: math.unit(7, "feet"),
  27648. weight: math.unit(275, "lb"),
  27649. name: "Front",
  27650. image: {
  27651. source: "./media/characters/roku/front.svg",
  27652. extra: 903 / 878,
  27653. bottom: 37 / 940
  27654. }
  27655. },
  27656. },
  27657. [
  27658. {
  27659. name: "Normal",
  27660. height: math.unit(7, "feet"),
  27661. default: true
  27662. },
  27663. {
  27664. name: "Macro",
  27665. height: math.unit(500, "feet")
  27666. },
  27667. {
  27668. name: "Megamacro",
  27669. height: math.unit(200, "miles")
  27670. },
  27671. ]
  27672. ))
  27673. characterMakers.push(() => makeCharacter(
  27674. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27675. {
  27676. front: {
  27677. height: math.unit(6 + 2 / 12, "feet"),
  27678. weight: math.unit(150, "lb"),
  27679. name: "Front",
  27680. image: {
  27681. source: "./media/characters/lira/front.svg",
  27682. extra: 1727 / 1605,
  27683. bottom: 26 / 1753
  27684. }
  27685. },
  27686. back: {
  27687. height: math.unit(6 + 2 / 12, "feet"),
  27688. weight: math.unit(150, "lb"),
  27689. name: "Back",
  27690. image: {
  27691. source: "./media/characters/lira/back.svg",
  27692. extra: 1713/1621,
  27693. bottom: 20/1733
  27694. }
  27695. },
  27696. hand: {
  27697. height: math.unit(0.75, "feet"),
  27698. name: "Hand",
  27699. image: {
  27700. source: "./media/characters/lira/hand.svg"
  27701. }
  27702. },
  27703. maw: {
  27704. height: math.unit(0.65, "feet"),
  27705. name: "Maw",
  27706. image: {
  27707. source: "./media/characters/lira/maw.svg"
  27708. }
  27709. },
  27710. pawDigi: {
  27711. height: math.unit(1.6, "feet"),
  27712. name: "Paw Digi",
  27713. image: {
  27714. source: "./media/characters/lira/paw-digi.svg"
  27715. }
  27716. },
  27717. pawPlanti: {
  27718. height: math.unit(1.4, "feet"),
  27719. name: "Paw Planti",
  27720. image: {
  27721. source: "./media/characters/lira/paw-planti.svg"
  27722. }
  27723. },
  27724. },
  27725. [
  27726. {
  27727. name: "Normal",
  27728. height: math.unit(6 + 2 / 12, "feet"),
  27729. default: true
  27730. },
  27731. {
  27732. name: "Macro",
  27733. height: math.unit(100, "feet")
  27734. },
  27735. {
  27736. name: "Macro²",
  27737. height: math.unit(1600, "feet")
  27738. },
  27739. {
  27740. name: "Planetary",
  27741. height: math.unit(20, "earths")
  27742. },
  27743. ]
  27744. ))
  27745. characterMakers.push(() => makeCharacter(
  27746. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27747. {
  27748. front: {
  27749. height: math.unit(6, "feet"),
  27750. weight: math.unit(150, "lb"),
  27751. name: "Front",
  27752. image: {
  27753. source: "./media/characters/hadjet/front.svg",
  27754. extra: 1480 / 1346,
  27755. bottom: 26 / 1506
  27756. }
  27757. },
  27758. frontNsfw: {
  27759. height: math.unit(6, "feet"),
  27760. weight: math.unit(150, "lb"),
  27761. name: "Front (NSFW)",
  27762. image: {
  27763. source: "./media/characters/hadjet/front-nsfw.svg",
  27764. extra: 1440 / 1358,
  27765. bottom: 52 / 1492
  27766. }
  27767. },
  27768. },
  27769. [
  27770. {
  27771. name: "Macro",
  27772. height: math.unit(10, "stories"),
  27773. default: true
  27774. },
  27775. {
  27776. name: "Megamacro",
  27777. height: math.unit(1.5, "miles")
  27778. },
  27779. {
  27780. name: "Megamacro+",
  27781. height: math.unit(5, "miles")
  27782. },
  27783. ]
  27784. ))
  27785. characterMakers.push(() => makeCharacter(
  27786. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27787. {
  27788. side: {
  27789. height: math.unit(106, "feet"),
  27790. weight: math.unit(500, "tonnes"),
  27791. name: "Side",
  27792. image: {
  27793. source: "./media/characters/kodran/side.svg",
  27794. extra: 553 / 480,
  27795. bottom: 33 / 586
  27796. }
  27797. },
  27798. front: {
  27799. height: math.unit(132, "feet"),
  27800. weight: math.unit(500, "tonnes"),
  27801. name: "Front",
  27802. image: {
  27803. source: "./media/characters/kodran/front.svg",
  27804. extra: 667 / 643,
  27805. bottom: 42 / 709
  27806. }
  27807. },
  27808. flying: {
  27809. height: math.unit(350, "feet"),
  27810. weight: math.unit(500, "tonnes"),
  27811. name: "Flying",
  27812. image: {
  27813. source: "./media/characters/kodran/flying.svg"
  27814. }
  27815. },
  27816. foot: {
  27817. height: math.unit(33, "feet"),
  27818. name: "Foot",
  27819. image: {
  27820. source: "./media/characters/kodran/foot.svg"
  27821. }
  27822. },
  27823. footFront: {
  27824. height: math.unit(19, "feet"),
  27825. name: "Foot (Front)",
  27826. image: {
  27827. source: "./media/characters/kodran/foot-front.svg",
  27828. extra: 261 / 261,
  27829. bottom: 91 / 352
  27830. }
  27831. },
  27832. headFront: {
  27833. height: math.unit(53, "feet"),
  27834. name: "Head (Front)",
  27835. image: {
  27836. source: "./media/characters/kodran/head-front.svg"
  27837. }
  27838. },
  27839. headSide: {
  27840. height: math.unit(65, "feet"),
  27841. name: "Head (Side)",
  27842. image: {
  27843. source: "./media/characters/kodran/head-side.svg"
  27844. }
  27845. },
  27846. throat: {
  27847. height: math.unit(79, "feet"),
  27848. name: "Throat",
  27849. image: {
  27850. source: "./media/characters/kodran/throat.svg"
  27851. }
  27852. },
  27853. },
  27854. [
  27855. {
  27856. name: "Large",
  27857. height: math.unit(106, "feet"),
  27858. default: true
  27859. },
  27860. ]
  27861. ))
  27862. characterMakers.push(() => makeCharacter(
  27863. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27864. {
  27865. side: {
  27866. height: math.unit(11, "feet"),
  27867. weight: math.unit(150, "lb"),
  27868. name: "Side",
  27869. image: {
  27870. source: "./media/characters/pyxaron/side.svg",
  27871. extra: 305 / 195,
  27872. bottom: 17 / 322
  27873. }
  27874. },
  27875. },
  27876. [
  27877. {
  27878. name: "Normal",
  27879. height: math.unit(11, "feet"),
  27880. default: true
  27881. },
  27882. ]
  27883. ))
  27884. characterMakers.push(() => makeCharacter(
  27885. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27886. {
  27887. front: {
  27888. height: math.unit(6, "feet"),
  27889. weight: math.unit(150, "lb"),
  27890. name: "Front",
  27891. image: {
  27892. source: "./media/characters/meep/front.svg",
  27893. extra: 88 / 80,
  27894. bottom: 6 / 94
  27895. }
  27896. },
  27897. },
  27898. [
  27899. {
  27900. name: "Fun Sized",
  27901. height: math.unit(2, "inches"),
  27902. default: true
  27903. },
  27904. {
  27905. name: "Friend Sized",
  27906. height: math.unit(8, "inches")
  27907. },
  27908. ]
  27909. ))
  27910. characterMakers.push(() => makeCharacter(
  27911. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27912. {
  27913. front: {
  27914. height: math.unit(15, "feet"),
  27915. weight: math.unit(2500, "lb"),
  27916. name: "Front",
  27917. image: {
  27918. source: "./media/characters/holly-rabbit/front.svg",
  27919. extra: 1433 / 1233,
  27920. bottom: 125 / 1558
  27921. }
  27922. },
  27923. dick: {
  27924. height: math.unit(4.6, "feet"),
  27925. name: "Dick",
  27926. image: {
  27927. source: "./media/characters/holly-rabbit/dick.svg"
  27928. }
  27929. },
  27930. },
  27931. [
  27932. {
  27933. name: "Normal",
  27934. height: math.unit(15, "feet"),
  27935. default: true
  27936. },
  27937. {
  27938. name: "Macro",
  27939. height: math.unit(250, "feet")
  27940. },
  27941. {
  27942. name: "Macro+",
  27943. height: math.unit(2500, "feet")
  27944. },
  27945. ]
  27946. ))
  27947. characterMakers.push(() => makeCharacter(
  27948. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27949. {
  27950. front: {
  27951. height: math.unit(3.02, "meters"),
  27952. weight: math.unit(500, "kg"),
  27953. name: "Front",
  27954. image: {
  27955. source: "./media/characters/drena/front.svg",
  27956. extra: 282 / 243,
  27957. bottom: 8 / 290
  27958. }
  27959. },
  27960. side: {
  27961. height: math.unit(3.02, "meters"),
  27962. weight: math.unit(500, "kg"),
  27963. name: "Side",
  27964. image: {
  27965. source: "./media/characters/drena/side.svg",
  27966. extra: 280 / 245,
  27967. bottom: 10 / 290
  27968. }
  27969. },
  27970. back: {
  27971. height: math.unit(3.02, "meters"),
  27972. weight: math.unit(500, "kg"),
  27973. name: "Back",
  27974. image: {
  27975. source: "./media/characters/drena/back.svg",
  27976. extra: 278 / 243,
  27977. bottom: 2 / 280
  27978. }
  27979. },
  27980. foot: {
  27981. height: math.unit(0.75, "meters"),
  27982. name: "Foot",
  27983. image: {
  27984. source: "./media/characters/drena/foot.svg"
  27985. }
  27986. },
  27987. maw: {
  27988. height: math.unit(0.82, "meters"),
  27989. name: "Maw",
  27990. image: {
  27991. source: "./media/characters/drena/maw.svg"
  27992. }
  27993. },
  27994. rump: {
  27995. height: math.unit(0.93, "meters"),
  27996. name: "Rump",
  27997. image: {
  27998. source: "./media/characters/drena/rump.svg"
  27999. }
  28000. },
  28001. },
  28002. [
  28003. {
  28004. name: "Normal",
  28005. height: math.unit(3.02, "meters"),
  28006. default: true
  28007. },
  28008. ]
  28009. ))
  28010. characterMakers.push(() => makeCharacter(
  28011. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28012. {
  28013. front: {
  28014. height: math.unit(6 + 4 / 12, "feet"),
  28015. weight: math.unit(250, "lb"),
  28016. name: "Front",
  28017. image: {
  28018. source: "./media/characters/remmyzilla/front.svg",
  28019. extra: 4033 / 3588,
  28020. bottom: 123 / 4156
  28021. }
  28022. },
  28023. back: {
  28024. height: math.unit(6 + 4 / 12, "feet"),
  28025. weight: math.unit(250, "lb"),
  28026. name: "Back",
  28027. image: {
  28028. source: "./media/characters/remmyzilla/back.svg",
  28029. extra: 2687 / 2555,
  28030. bottom: 48 / 2735
  28031. }
  28032. },
  28033. frontFancy: {
  28034. height: math.unit(6 + 4 / 12, "feet"),
  28035. weight: math.unit(250, "lb"),
  28036. name: "Front (Fancy)",
  28037. image: {
  28038. source: "./media/characters/remmyzilla/front-fancy.svg",
  28039. extra: 4119 / 3419,
  28040. bottom: 237 / 4356
  28041. }
  28042. },
  28043. paw: {
  28044. height: math.unit(1.73, "feet"),
  28045. name: "Paw",
  28046. image: {
  28047. source: "./media/characters/remmyzilla/paw.svg"
  28048. }
  28049. },
  28050. maw: {
  28051. height: math.unit(1.73, "feet"),
  28052. name: "Maw",
  28053. image: {
  28054. source: "./media/characters/remmyzilla/maw.svg"
  28055. }
  28056. },
  28057. },
  28058. [
  28059. {
  28060. name: "Normal",
  28061. height: math.unit(6 + 4 / 12, "feet")
  28062. },
  28063. {
  28064. name: "Minimacro",
  28065. height: math.unit(12 + 8 / 12, "feet")
  28066. },
  28067. {
  28068. name: "Normal",
  28069. height: math.unit(640, "feet"),
  28070. default: true
  28071. },
  28072. {
  28073. name: "Megamacro",
  28074. height: math.unit(6400, "feet")
  28075. },
  28076. {
  28077. name: "Gigamacro",
  28078. height: math.unit(64000, "miles")
  28079. },
  28080. ]
  28081. ))
  28082. characterMakers.push(() => makeCharacter(
  28083. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28084. {
  28085. front: {
  28086. height: math.unit(2.5, "meters"),
  28087. weight: math.unit(300, "lb"),
  28088. name: "Front",
  28089. image: {
  28090. source: "./media/characters/lawrence/front.svg",
  28091. extra: 357 / 335,
  28092. bottom: 30 / 387
  28093. }
  28094. },
  28095. back: {
  28096. height: math.unit(2.5, "meters"),
  28097. weight: math.unit(300, "lb"),
  28098. name: "Back",
  28099. image: {
  28100. source: "./media/characters/lawrence/back.svg",
  28101. extra: 357 / 338,
  28102. bottom: 16 / 373
  28103. }
  28104. },
  28105. head: {
  28106. height: math.unit(0.9, "meter"),
  28107. name: "Head",
  28108. image: {
  28109. source: "./media/characters/lawrence/head.svg"
  28110. }
  28111. },
  28112. maw: {
  28113. height: math.unit(0.7, "meter"),
  28114. name: "Maw",
  28115. image: {
  28116. source: "./media/characters/lawrence/maw.svg"
  28117. }
  28118. },
  28119. footBottom: {
  28120. height: math.unit(0.5, "meter"),
  28121. name: "Foot (Bottom)",
  28122. image: {
  28123. source: "./media/characters/lawrence/foot-bottom.svg"
  28124. }
  28125. },
  28126. footTop: {
  28127. height: math.unit(0.5, "meter"),
  28128. name: "Foot (Top)",
  28129. image: {
  28130. source: "./media/characters/lawrence/foot-top.svg"
  28131. }
  28132. },
  28133. },
  28134. [
  28135. {
  28136. name: "Normal",
  28137. height: math.unit(2.5, "meters"),
  28138. default: true
  28139. },
  28140. {
  28141. name: "Macro",
  28142. height: math.unit(95, "meters")
  28143. },
  28144. {
  28145. name: "Megamacro",
  28146. height: math.unit(150, "km")
  28147. },
  28148. ]
  28149. ))
  28150. characterMakers.push(() => makeCharacter(
  28151. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28152. {
  28153. front: {
  28154. height: math.unit(4.2, "meters"),
  28155. name: "Front",
  28156. image: {
  28157. source: "./media/characters/sydney/front.svg",
  28158. extra: 1323 / 1277,
  28159. bottom: 111 / 1434
  28160. }
  28161. },
  28162. },
  28163. [
  28164. {
  28165. name: "Normal",
  28166. height: math.unit(4.2, "meters"),
  28167. default: true
  28168. },
  28169. ]
  28170. ))
  28171. characterMakers.push(() => makeCharacter(
  28172. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28173. {
  28174. back: {
  28175. height: math.unit(201, "feet"),
  28176. name: "Back",
  28177. image: {
  28178. source: "./media/characters/jessica/back.svg",
  28179. extra: 273 / 259,
  28180. bottom: 7 / 280
  28181. }
  28182. },
  28183. },
  28184. [
  28185. {
  28186. name: "Normal",
  28187. height: math.unit(201, "feet"),
  28188. default: true
  28189. },
  28190. {
  28191. name: "Megamacro",
  28192. height: math.unit(8, "miles")
  28193. },
  28194. ]
  28195. ))
  28196. characterMakers.push(() => makeCharacter(
  28197. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28198. {
  28199. side: {
  28200. height: math.unit(320, "cm"),
  28201. name: "Side",
  28202. image: {
  28203. source: "./media/characters/victoria/side.svg",
  28204. extra: 778 / 346,
  28205. bottom: 56 / 834
  28206. }
  28207. },
  28208. maw: {
  28209. height: math.unit(5.9, "feet"),
  28210. name: "Maw",
  28211. image: {
  28212. source: "./media/characters/victoria/maw.svg"
  28213. }
  28214. },
  28215. },
  28216. [
  28217. {
  28218. name: "Normal",
  28219. height: math.unit(320, "cm"),
  28220. default: true
  28221. },
  28222. ]
  28223. ))
  28224. characterMakers.push(() => makeCharacter(
  28225. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28226. {
  28227. front: {
  28228. height: math.unit(5 + 6 / 12, "feet"),
  28229. name: "Front",
  28230. image: {
  28231. source: "./media/characters/cat/front.svg",
  28232. extra: 1374 / 1257,
  28233. bottom: 59 / 1433
  28234. }
  28235. },
  28236. back: {
  28237. height: math.unit(5 + 6 / 12, "feet"),
  28238. name: "Back",
  28239. image: {
  28240. source: "./media/characters/cat/back.svg",
  28241. extra: 1337 / 1226,
  28242. bottom: 34 / 1371
  28243. }
  28244. },
  28245. taur: {
  28246. height: math.unit(7, "feet"),
  28247. name: "Taur",
  28248. image: {
  28249. source: "./media/characters/cat/taur.svg",
  28250. extra: 1345 / 1231,
  28251. bottom: 66 / 1411
  28252. }
  28253. },
  28254. lucario: {
  28255. height: math.unit(4, "feet"),
  28256. name: "Lucario",
  28257. image: {
  28258. source: "./media/characters/cat/lucario.svg",
  28259. extra: 1470 / 1318,
  28260. bottom: 65 / 1535
  28261. }
  28262. },
  28263. megaLucario: {
  28264. height: math.unit(4, "feet"),
  28265. name: "Mega Lucario",
  28266. image: {
  28267. source: "./media/characters/cat/mega-lucario.svg",
  28268. extra: 1515 / 1319,
  28269. bottom: 63 / 1578
  28270. }
  28271. },
  28272. nickit: {
  28273. height: math.unit(2, "feet"),
  28274. name: "Nickit",
  28275. image: {
  28276. source: "./media/characters/cat/nickit.svg",
  28277. extra: 1980 / 1585,
  28278. bottom: 102 / 2082
  28279. }
  28280. },
  28281. lopunnyFront: {
  28282. height: math.unit(5, "feet"),
  28283. name: "Lopunny (Front)",
  28284. image: {
  28285. source: "./media/characters/cat/lopunny-front.svg",
  28286. extra: 1782 / 1469,
  28287. bottom: 38 / 1820
  28288. }
  28289. },
  28290. lopunnyBack: {
  28291. height: math.unit(5, "feet"),
  28292. name: "Lopunny (Back)",
  28293. image: {
  28294. source: "./media/characters/cat/lopunny-back.svg",
  28295. extra: 1660 / 1490,
  28296. bottom: 25 / 1685
  28297. }
  28298. },
  28299. },
  28300. [
  28301. {
  28302. name: "Really small",
  28303. height: math.unit(1, "nm")
  28304. },
  28305. {
  28306. name: "Micro",
  28307. height: math.unit(5, "inches")
  28308. },
  28309. {
  28310. name: "Normal",
  28311. height: math.unit(5 + 6 / 12, "feet"),
  28312. default: true
  28313. },
  28314. {
  28315. name: "Macro",
  28316. height: math.unit(50, "feet")
  28317. },
  28318. {
  28319. name: "Macro+",
  28320. height: math.unit(150, "feet")
  28321. },
  28322. {
  28323. name: "Megamacro",
  28324. height: math.unit(100, "miles")
  28325. },
  28326. ]
  28327. ))
  28328. characterMakers.push(() => makeCharacter(
  28329. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28330. {
  28331. front: {
  28332. height: math.unit(63.4, "meters"),
  28333. weight: math.unit(3.28349e+6, "kilograms"),
  28334. name: "Front",
  28335. image: {
  28336. source: "./media/characters/kirina-violet/front.svg",
  28337. extra: 2812 / 2725,
  28338. bottom: 0 / 2812
  28339. }
  28340. },
  28341. back: {
  28342. height: math.unit(63.4, "meters"),
  28343. weight: math.unit(3.28349e+6, "kilograms"),
  28344. name: "Back",
  28345. image: {
  28346. source: "./media/characters/kirina-violet/back.svg",
  28347. extra: 2812 / 2725,
  28348. bottom: 0 / 2812
  28349. }
  28350. },
  28351. mouth: {
  28352. height: math.unit(4.35, "meters"),
  28353. name: "Mouth",
  28354. image: {
  28355. source: "./media/characters/kirina-violet/mouth.svg"
  28356. }
  28357. },
  28358. paw: {
  28359. height: math.unit(5.6, "meters"),
  28360. name: "Paw",
  28361. image: {
  28362. source: "./media/characters/kirina-violet/paw.svg"
  28363. }
  28364. },
  28365. tail: {
  28366. height: math.unit(18, "meters"),
  28367. name: "Tail",
  28368. image: {
  28369. source: "./media/characters/kirina-violet/tail.svg"
  28370. }
  28371. },
  28372. },
  28373. [
  28374. {
  28375. name: "Macro",
  28376. height: math.unit(63.4, "meters"),
  28377. default: true
  28378. },
  28379. ]
  28380. ))
  28381. characterMakers.push(() => makeCharacter(
  28382. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28383. {
  28384. front: {
  28385. height: math.unit(75, "feet"),
  28386. name: "Front",
  28387. image: {
  28388. source: "./media/characters/cat-gigachu/front.svg",
  28389. extra: 1239/1027,
  28390. bottom: 32/1271
  28391. }
  28392. },
  28393. back: {
  28394. height: math.unit(75, "feet"),
  28395. name: "Back",
  28396. image: {
  28397. source: "./media/characters/cat-gigachu/back.svg",
  28398. extra: 1229/1030,
  28399. bottom: 9/1238
  28400. }
  28401. },
  28402. },
  28403. [
  28404. {
  28405. name: "Dynamax",
  28406. height: math.unit(75, "feet"),
  28407. default: true
  28408. },
  28409. ]
  28410. ))
  28411. characterMakers.push(() => makeCharacter(
  28412. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28413. {
  28414. front: {
  28415. height: math.unit(6, "feet"),
  28416. weight: math.unit(150, "lb"),
  28417. name: "Front",
  28418. image: {
  28419. source: "./media/characters/sfaiyan/front.svg",
  28420. extra: 999 / 978,
  28421. bottom: 5 / 1004
  28422. }
  28423. },
  28424. },
  28425. [
  28426. {
  28427. name: "Normal",
  28428. height: math.unit(1.82, "meters")
  28429. },
  28430. {
  28431. name: "Giant",
  28432. height: math.unit(2.27, "km"),
  28433. default: true
  28434. },
  28435. ]
  28436. ))
  28437. characterMakers.push(() => makeCharacter(
  28438. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28439. {
  28440. front: {
  28441. height: math.unit(179, "cm"),
  28442. weight: math.unit(100, "kg"),
  28443. name: "Front",
  28444. image: {
  28445. source: "./media/characters/raunehkeli/front.svg",
  28446. extra: 1934 / 1926,
  28447. bottom: 0 / 1934
  28448. }
  28449. },
  28450. },
  28451. [
  28452. {
  28453. name: "Normal",
  28454. height: math.unit(179, "cm")
  28455. },
  28456. {
  28457. name: "Maximum",
  28458. height: math.unit(575, "meters"),
  28459. default: true
  28460. },
  28461. ]
  28462. ))
  28463. characterMakers.push(() => makeCharacter(
  28464. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28465. {
  28466. front: {
  28467. height: math.unit(6, "feet"),
  28468. weight: math.unit(150, "lb"),
  28469. name: "Front",
  28470. image: {
  28471. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28472. extra: 2625 / 2518,
  28473. bottom: 60 / 2685
  28474. }
  28475. },
  28476. },
  28477. [
  28478. {
  28479. name: "Normal",
  28480. height: math.unit(6 + 2 / 12, "feet")
  28481. },
  28482. {
  28483. name: "Macro",
  28484. height: math.unit(1180, "feet"),
  28485. default: true
  28486. },
  28487. ]
  28488. ))
  28489. characterMakers.push(() => makeCharacter(
  28490. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28491. {
  28492. front: {
  28493. height: math.unit(5 + 6 / 12, "feet"),
  28494. weight: math.unit(108, "lb"),
  28495. name: "Front",
  28496. image: {
  28497. source: "./media/characters/lilith-zott/front.svg",
  28498. extra: 2510 / 2238,
  28499. bottom: 100 / 2610
  28500. }
  28501. },
  28502. frontDressed: {
  28503. height: math.unit(5 + 6 / 12, "feet"),
  28504. weight: math.unit(108, "lb"),
  28505. name: "Front (Dressed)",
  28506. image: {
  28507. source: "./media/characters/lilith-zott/front-dressed.svg",
  28508. extra: 2510 / 2238,
  28509. bottom: 100 / 2610
  28510. }
  28511. },
  28512. },
  28513. [
  28514. {
  28515. name: "Normal",
  28516. height: math.unit(5 + 6 / 12, "feet")
  28517. },
  28518. {
  28519. name: "Macro",
  28520. height: math.unit(1030, "feet"),
  28521. default: true
  28522. },
  28523. ]
  28524. ))
  28525. characterMakers.push(() => makeCharacter(
  28526. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28527. {
  28528. front: {
  28529. height: math.unit(6, "feet"),
  28530. weight: math.unit(150, "lb"),
  28531. name: "Front",
  28532. image: {
  28533. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28534. extra: 2567 / 2435,
  28535. bottom: 39 / 2606
  28536. }
  28537. },
  28538. frontSuper: {
  28539. height: math.unit(6, "feet"),
  28540. name: "Front (Super)",
  28541. image: {
  28542. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28543. extra: 2567 / 2435,
  28544. bottom: 39 / 2606
  28545. }
  28546. },
  28547. },
  28548. [
  28549. {
  28550. name: "Normal",
  28551. height: math.unit(5 + 10 / 12, "feet")
  28552. },
  28553. {
  28554. name: "Macro",
  28555. height: math.unit(1100, "feet"),
  28556. default: true
  28557. },
  28558. ]
  28559. ))
  28560. characterMakers.push(() => makeCharacter(
  28561. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28562. {
  28563. front: {
  28564. height: math.unit(100, "miles"),
  28565. name: "Front",
  28566. image: {
  28567. source: "./media/characters/sona/front.svg",
  28568. extra: 2433 / 2201,
  28569. bottom: 53 / 2486
  28570. }
  28571. },
  28572. foot: {
  28573. height: math.unit(16.1, "miles"),
  28574. name: "Foot",
  28575. image: {
  28576. source: "./media/characters/sona/foot.svg"
  28577. }
  28578. },
  28579. },
  28580. [
  28581. {
  28582. name: "Macro",
  28583. height: math.unit(100, "miles"),
  28584. default: true
  28585. },
  28586. ]
  28587. ))
  28588. characterMakers.push(() => makeCharacter(
  28589. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28590. {
  28591. front: {
  28592. height: math.unit(6, "feet"),
  28593. weight: math.unit(150, "lb"),
  28594. name: "Front",
  28595. image: {
  28596. source: "./media/characters/bailey/front.svg",
  28597. extra: 1778 / 1724,
  28598. bottom: 30 / 1808
  28599. }
  28600. },
  28601. },
  28602. [
  28603. {
  28604. name: "Micro",
  28605. height: math.unit(4, "inches")
  28606. },
  28607. {
  28608. name: "Normal",
  28609. height: math.unit(5 + 5 / 12, "feet"),
  28610. default: true
  28611. },
  28612. {
  28613. name: "Macro",
  28614. height: math.unit(250, "feet")
  28615. },
  28616. {
  28617. name: "Megamacro",
  28618. height: math.unit(100, "miles")
  28619. },
  28620. ]
  28621. ))
  28622. characterMakers.push(() => makeCharacter(
  28623. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28624. {
  28625. front: {
  28626. height: math.unit(5 + 2 / 12, "feet"),
  28627. weight: math.unit(120, "lb"),
  28628. name: "Front",
  28629. image: {
  28630. source: "./media/characters/snaps/front.svg",
  28631. extra: 2370 / 2177,
  28632. bottom: 48 / 2418
  28633. }
  28634. },
  28635. back: {
  28636. height: math.unit(5 + 2 / 12, "feet"),
  28637. weight: math.unit(120, "lb"),
  28638. name: "Back",
  28639. image: {
  28640. source: "./media/characters/snaps/back.svg",
  28641. extra: 2408 / 2258,
  28642. bottom: 15 / 2423
  28643. }
  28644. },
  28645. },
  28646. [
  28647. {
  28648. name: "Micro",
  28649. height: math.unit(9, "inches")
  28650. },
  28651. {
  28652. name: "Normal",
  28653. height: math.unit(5 + 2 / 12, "feet"),
  28654. default: true
  28655. },
  28656. {
  28657. name: "Mini Macro",
  28658. height: math.unit(10, "feet")
  28659. },
  28660. ]
  28661. ))
  28662. characterMakers.push(() => makeCharacter(
  28663. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28664. {
  28665. front: {
  28666. height: math.unit(1.8, "meters"),
  28667. weight: math.unit(85, "kg"),
  28668. name: "Front",
  28669. image: {
  28670. source: "./media/characters/azteck/front.svg",
  28671. extra: 2815 / 2625,
  28672. bottom: 89 / 2904
  28673. }
  28674. },
  28675. back: {
  28676. height: math.unit(1.8, "meters"),
  28677. weight: math.unit(85, "kg"),
  28678. name: "Back",
  28679. image: {
  28680. source: "./media/characters/azteck/back.svg",
  28681. extra: 2856 / 2648,
  28682. bottom: 85 / 2941
  28683. }
  28684. },
  28685. frontDressed: {
  28686. height: math.unit(1.8, "meters"),
  28687. weight: math.unit(85, "kg"),
  28688. name: "Front (Dressed)",
  28689. image: {
  28690. source: "./media/characters/azteck/front-dressed.svg",
  28691. extra: 2147 / 2003,
  28692. bottom: 68 / 2215
  28693. }
  28694. },
  28695. head: {
  28696. height: math.unit(0.47, "meters"),
  28697. weight: math.unit(85, "kg"),
  28698. name: "Head",
  28699. image: {
  28700. source: "./media/characters/azteck/head.svg"
  28701. }
  28702. },
  28703. },
  28704. [
  28705. {
  28706. name: "Bite sized",
  28707. height: math.unit(16, "cm")
  28708. },
  28709. {
  28710. name: "Normal",
  28711. height: math.unit(1.8, "meters"),
  28712. default: true
  28713. },
  28714. ]
  28715. ))
  28716. characterMakers.push(() => makeCharacter(
  28717. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28718. {
  28719. front: {
  28720. height: math.unit(6, "feet"),
  28721. weight: math.unit(150, "lb"),
  28722. name: "Front",
  28723. image: {
  28724. source: "./media/characters/pidge/front.svg",
  28725. extra: 620 / 588,
  28726. bottom: 9 / 629
  28727. }
  28728. },
  28729. back: {
  28730. height: math.unit(6, "feet"),
  28731. weight: math.unit(150, "lb"),
  28732. name: "Back",
  28733. image: {
  28734. source: "./media/characters/pidge/back.svg",
  28735. extra: 620 / 588,
  28736. bottom: 9 / 629
  28737. }
  28738. },
  28739. },
  28740. [
  28741. {
  28742. name: "Macro",
  28743. height: math.unit(1, "mile"),
  28744. default: true
  28745. },
  28746. ]
  28747. ))
  28748. characterMakers.push(() => makeCharacter(
  28749. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28750. {
  28751. front: {
  28752. height: math.unit(6, "feet"),
  28753. weight: math.unit(150, "lb"),
  28754. name: "Front",
  28755. image: {
  28756. source: "./media/characters/en/front.svg",
  28757. extra: 1697 / 1563,
  28758. bottom: 103 / 1800
  28759. }
  28760. },
  28761. back: {
  28762. height: math.unit(6, "feet"),
  28763. weight: math.unit(150, "lb"),
  28764. name: "Back",
  28765. image: {
  28766. source: "./media/characters/en/back.svg",
  28767. extra: 1700 / 1570,
  28768. bottom: 51 / 1751
  28769. }
  28770. },
  28771. frontDressed: {
  28772. height: math.unit(6, "feet"),
  28773. weight: math.unit(150, "lb"),
  28774. name: "Front (Dressed)",
  28775. image: {
  28776. source: "./media/characters/en/front-dressed.svg",
  28777. extra: 1697 / 1563,
  28778. bottom: 103 / 1800
  28779. }
  28780. },
  28781. backDressed: {
  28782. height: math.unit(6, "feet"),
  28783. weight: math.unit(150, "lb"),
  28784. name: "Back (Dressed)",
  28785. image: {
  28786. source: "./media/characters/en/back-dressed.svg",
  28787. extra: 1700 / 1570,
  28788. bottom: 51 / 1751
  28789. }
  28790. },
  28791. },
  28792. [
  28793. {
  28794. name: "Macro",
  28795. height: math.unit(210, "feet"),
  28796. default: true
  28797. },
  28798. ]
  28799. ))
  28800. characterMakers.push(() => makeCharacter(
  28801. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28802. {
  28803. front: {
  28804. height: math.unit(6, "feet"),
  28805. weight: math.unit(150, "lb"),
  28806. name: "Front",
  28807. image: {
  28808. source: "./media/characters/haze-orris/front.svg",
  28809. extra: 3975 / 3525,
  28810. bottom: 137 / 4112
  28811. }
  28812. },
  28813. },
  28814. [
  28815. {
  28816. name: "Micro",
  28817. height: math.unit(150, "mm"),
  28818. default: true
  28819. },
  28820. ]
  28821. ))
  28822. characterMakers.push(() => makeCharacter(
  28823. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28824. {
  28825. front: {
  28826. height: math.unit(6, "feet"),
  28827. weight: math.unit(150, "lb"),
  28828. name: "Front",
  28829. image: {
  28830. source: "./media/characters/casselene-yaro/front.svg",
  28831. extra: 4721 / 4541,
  28832. bottom: 82 / 4803
  28833. }
  28834. },
  28835. back: {
  28836. height: math.unit(6, "feet"),
  28837. weight: math.unit(150, "lb"),
  28838. name: "Back",
  28839. image: {
  28840. source: "./media/characters/casselene-yaro/back.svg",
  28841. extra: 4569 / 4377,
  28842. bottom: 69 / 4638
  28843. }
  28844. },
  28845. frontDressed: {
  28846. height: math.unit(6, "feet"),
  28847. weight: math.unit(150, "lb"),
  28848. name: "Front-dressed",
  28849. image: {
  28850. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28851. extra: 4721 / 4541,
  28852. bottom: 82 / 4803
  28853. }
  28854. },
  28855. },
  28856. [
  28857. {
  28858. name: "Macro",
  28859. height: math.unit(190, "feet"),
  28860. default: true
  28861. },
  28862. ]
  28863. ))
  28864. characterMakers.push(() => makeCharacter(
  28865. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28866. {
  28867. front: {
  28868. height: math.unit(6, "feet"),
  28869. weight: math.unit(150, "lb"),
  28870. name: "Front",
  28871. image: {
  28872. source: "./media/characters/myra-rue-delore/front.svg",
  28873. extra: 1340 / 1308,
  28874. bottom: 67 / 1407
  28875. }
  28876. },
  28877. back: {
  28878. height: math.unit(6, "feet"),
  28879. weight: math.unit(150, "lb"),
  28880. name: "Back",
  28881. image: {
  28882. source: "./media/characters/myra-rue-delore/back.svg",
  28883. extra: 1341 / 1310,
  28884. bottom: 40 / 1381
  28885. }
  28886. },
  28887. frontDressed: {
  28888. height: math.unit(6, "feet"),
  28889. weight: math.unit(150, "lb"),
  28890. name: "Front (Dressed)",
  28891. image: {
  28892. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28893. extra: 1340 / 1308,
  28894. bottom: 67 / 1407
  28895. }
  28896. },
  28897. },
  28898. [
  28899. {
  28900. name: "Macro",
  28901. height: math.unit(150, "feet"),
  28902. default: true
  28903. },
  28904. ]
  28905. ))
  28906. characterMakers.push(() => makeCharacter(
  28907. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28908. {
  28909. front: {
  28910. height: math.unit(10, "feet"),
  28911. weight: math.unit(15015, "lb"),
  28912. name: "Front",
  28913. image: {
  28914. source: "./media/characters/fem!plat/front.svg",
  28915. extra: 2799 / 2604,
  28916. bottom: 149 / 2948
  28917. }
  28918. },
  28919. },
  28920. [
  28921. {
  28922. name: "Normal",
  28923. height: math.unit(10, "feet"),
  28924. default: true
  28925. },
  28926. {
  28927. name: "Macro",
  28928. height: math.unit(100, "feet")
  28929. },
  28930. {
  28931. name: "Megamacro",
  28932. height: math.unit(1000, "feet")
  28933. },
  28934. ]
  28935. ))
  28936. characterMakers.push(() => makeCharacter(
  28937. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28938. {
  28939. front: {
  28940. height: math.unit(15 + 5 / 12, "feet"),
  28941. weight: math.unit(4600, "lb"),
  28942. name: "Front",
  28943. image: {
  28944. source: "./media/characters/neapolitan-ananassa/front.svg",
  28945. extra: 2903 / 2736,
  28946. bottom: 0 / 2903
  28947. }
  28948. },
  28949. side: {
  28950. height: math.unit(15 + 5 / 12, "feet"),
  28951. weight: math.unit(4600, "lb"),
  28952. name: "Side",
  28953. image: {
  28954. source: "./media/characters/neapolitan-ananassa/side.svg",
  28955. extra: 2925 / 2719,
  28956. bottom: 0 / 2925
  28957. }
  28958. },
  28959. back: {
  28960. height: math.unit(15 + 5 / 12, "feet"),
  28961. weight: math.unit(4600, "lb"),
  28962. name: "Back",
  28963. image: {
  28964. source: "./media/characters/neapolitan-ananassa/back.svg",
  28965. extra: 2903 / 2736,
  28966. bottom: 0 / 2903
  28967. }
  28968. },
  28969. },
  28970. [
  28971. {
  28972. name: "Normal",
  28973. height: math.unit(15 + 5 / 12, "feet"),
  28974. default: true
  28975. },
  28976. {
  28977. name: "Post-Millenium",
  28978. height: math.unit(35 + 5 / 12, "feet")
  28979. },
  28980. {
  28981. name: "Post-Era",
  28982. height: math.unit(450 + 5 / 12, "feet")
  28983. },
  28984. ]
  28985. ))
  28986. characterMakers.push(() => makeCharacter(
  28987. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28988. {
  28989. front: {
  28990. height: math.unit(300, "meters"),
  28991. weight: math.unit(125000, "tonnes"),
  28992. name: "Front",
  28993. image: {
  28994. source: "./media/characters/pazuzu/front.svg",
  28995. extra: 877 / 794,
  28996. bottom: 47 / 924
  28997. }
  28998. },
  28999. },
  29000. [
  29001. {
  29002. name: "Macro",
  29003. height: math.unit(300, "meters"),
  29004. default: true
  29005. },
  29006. ]
  29007. ))
  29008. characterMakers.push(() => makeCharacter(
  29009. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29010. {
  29011. side: {
  29012. height: math.unit(10 + 7 / 12, "feet"),
  29013. weight: math.unit(2.5, "tons"),
  29014. name: "Side",
  29015. image: {
  29016. source: "./media/characters/aasha/side.svg",
  29017. extra: 1345 / 1245,
  29018. bottom: 111 / 1456
  29019. }
  29020. },
  29021. back: {
  29022. height: math.unit(10 + 7 / 12, "feet"),
  29023. weight: math.unit(2.5, "tons"),
  29024. name: "Back",
  29025. image: {
  29026. source: "./media/characters/aasha/back.svg",
  29027. extra: 1133 / 1057,
  29028. bottom: 257 / 1390
  29029. }
  29030. },
  29031. },
  29032. [
  29033. {
  29034. name: "Normal",
  29035. height: math.unit(10 + 7 / 12, "feet"),
  29036. default: true
  29037. },
  29038. ]
  29039. ))
  29040. characterMakers.push(() => makeCharacter(
  29041. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29042. {
  29043. front: {
  29044. height: math.unit(6 + 3 / 12, "feet"),
  29045. name: "Front",
  29046. image: {
  29047. source: "./media/characters/nevan/front.svg",
  29048. extra: 704 / 704,
  29049. bottom: 28 / 732
  29050. }
  29051. },
  29052. back: {
  29053. height: math.unit(6 + 3 / 12, "feet"),
  29054. name: "Back",
  29055. image: {
  29056. source: "./media/characters/nevan/back.svg",
  29057. extra: 714 / 714,
  29058. bottom: 21 / 735
  29059. }
  29060. },
  29061. frontFlaccid: {
  29062. height: math.unit(6 + 3 / 12, "feet"),
  29063. name: "Front (Flaccid)",
  29064. image: {
  29065. source: "./media/characters/nevan/front-flaccid.svg",
  29066. extra: 704 / 704,
  29067. bottom: 28 / 732
  29068. }
  29069. },
  29070. frontErect: {
  29071. height: math.unit(6 + 3 / 12, "feet"),
  29072. name: "Front (Erect)",
  29073. image: {
  29074. source: "./media/characters/nevan/front-erect.svg",
  29075. extra: 704 / 704,
  29076. bottom: 28 / 732
  29077. }
  29078. },
  29079. backFlaccid: {
  29080. height: math.unit(6 + 3 / 12, "feet"),
  29081. name: "Back (Flaccid)",
  29082. image: {
  29083. source: "./media/characters/nevan/back-flaccid.svg",
  29084. extra: 714 / 714,
  29085. bottom: 21 / 735
  29086. }
  29087. },
  29088. },
  29089. [
  29090. {
  29091. name: "Normal",
  29092. height: math.unit(6 + 3 / 12, "feet"),
  29093. default: true
  29094. },
  29095. ]
  29096. ))
  29097. characterMakers.push(() => makeCharacter(
  29098. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29099. {
  29100. front: {
  29101. height: math.unit(4, "feet"),
  29102. name: "Front",
  29103. image: {
  29104. source: "./media/characters/arhan/front.svg",
  29105. extra: 3368 / 3133,
  29106. bottom: 0 / 3368
  29107. }
  29108. },
  29109. side: {
  29110. height: math.unit(4, "feet"),
  29111. name: "Side",
  29112. image: {
  29113. source: "./media/characters/arhan/side.svg",
  29114. extra: 3347 / 3105,
  29115. bottom: 0 / 3347
  29116. }
  29117. },
  29118. tongue: {
  29119. height: math.unit(1.42, "feet"),
  29120. name: "Tongue",
  29121. image: {
  29122. source: "./media/characters/arhan/tongue.svg"
  29123. }
  29124. },
  29125. head: {
  29126. height: math.unit(0.85, "feet"),
  29127. name: "Head",
  29128. image: {
  29129. source: "./media/characters/arhan/head.svg"
  29130. }
  29131. },
  29132. },
  29133. [
  29134. {
  29135. name: "Normal",
  29136. height: math.unit(4, "feet"),
  29137. default: true
  29138. },
  29139. ]
  29140. ))
  29141. characterMakers.push(() => makeCharacter(
  29142. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29143. {
  29144. front: {
  29145. height: math.unit(5 + 7.5 / 12, "feet"),
  29146. weight: math.unit(120, "lb"),
  29147. name: "Front",
  29148. image: {
  29149. source: "./media/characters/digi-duncan/front.svg",
  29150. extra: 330 / 326,
  29151. bottom: 16 / 346
  29152. }
  29153. },
  29154. side: {
  29155. height: math.unit(5 + 7.5 / 12, "feet"),
  29156. weight: math.unit(120, "lb"),
  29157. name: "Side",
  29158. image: {
  29159. source: "./media/characters/digi-duncan/side.svg",
  29160. extra: 341 / 337,
  29161. bottom: 1 / 342
  29162. }
  29163. },
  29164. back: {
  29165. height: math.unit(5 + 7.5 / 12, "feet"),
  29166. weight: math.unit(120, "lb"),
  29167. name: "Back",
  29168. image: {
  29169. source: "./media/characters/digi-duncan/back.svg",
  29170. extra: 330 / 326,
  29171. bottom: 12 / 342
  29172. }
  29173. },
  29174. },
  29175. [
  29176. {
  29177. name: "Speck",
  29178. height: math.unit(0.25, "mm")
  29179. },
  29180. {
  29181. name: "Micro",
  29182. height: math.unit(5, "mm")
  29183. },
  29184. {
  29185. name: "Tiny",
  29186. height: math.unit(0.5, "inches"),
  29187. default: true
  29188. },
  29189. {
  29190. name: "Human",
  29191. height: math.unit(5 + 7.5 / 12, "feet")
  29192. },
  29193. {
  29194. name: "Minigiant",
  29195. height: math.unit(8 + 5.25, "feet")
  29196. },
  29197. {
  29198. name: "Giant",
  29199. height: math.unit(2000, "feet")
  29200. },
  29201. {
  29202. name: "Mega",
  29203. height: math.unit(371.1, "miles")
  29204. },
  29205. ]
  29206. ))
  29207. characterMakers.push(() => makeCharacter(
  29208. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29209. {
  29210. front: {
  29211. height: math.unit(2, "meters"),
  29212. weight: math.unit(350, "kg"),
  29213. name: "Front",
  29214. image: {
  29215. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29216. extra: 898 / 838,
  29217. bottom: 9 / 907
  29218. }
  29219. },
  29220. },
  29221. [
  29222. {
  29223. name: "Micro",
  29224. height: math.unit(8, "meters")
  29225. },
  29226. {
  29227. name: "Normal",
  29228. height: math.unit(50, "meters"),
  29229. default: true
  29230. },
  29231. {
  29232. name: "Macro",
  29233. height: math.unit(500, "meters")
  29234. },
  29235. ]
  29236. ))
  29237. characterMakers.push(() => makeCharacter(
  29238. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29239. {
  29240. front: {
  29241. height: math.unit(6 + 6 / 12, "feet"),
  29242. name: "Front",
  29243. image: {
  29244. source: "./media/characters/khardesh/front.svg",
  29245. extra: 888 / 797,
  29246. bottom: 25 / 913
  29247. }
  29248. },
  29249. },
  29250. [
  29251. {
  29252. name: "Normal",
  29253. height: math.unit(6 + 6 / 12, "feet"),
  29254. default: true
  29255. },
  29256. {
  29257. name: "Normal+",
  29258. height: math.unit(4, "meters")
  29259. },
  29260. {
  29261. name: "Macro",
  29262. height: math.unit(50, "meters")
  29263. },
  29264. {
  29265. name: "Macro+",
  29266. height: math.unit(100, "meters")
  29267. },
  29268. {
  29269. name: "Megamacro",
  29270. height: math.unit(20, "km")
  29271. },
  29272. ]
  29273. ))
  29274. characterMakers.push(() => makeCharacter(
  29275. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29276. {
  29277. front: {
  29278. height: math.unit(6, "feet"),
  29279. weight: math.unit(150, "lb"),
  29280. name: "Front",
  29281. image: {
  29282. source: "./media/characters/kosho/front.svg",
  29283. extra: 1847 / 1847,
  29284. bottom: 86 / 1933
  29285. }
  29286. },
  29287. },
  29288. [
  29289. {
  29290. name: "Second-stage micro",
  29291. height: math.unit(0.5, "inches")
  29292. },
  29293. {
  29294. name: "First-stage micro",
  29295. height: math.unit(6, "inches")
  29296. },
  29297. {
  29298. name: "Normal",
  29299. height: math.unit(6, "feet"),
  29300. default: true
  29301. },
  29302. {
  29303. name: "First-stage macro",
  29304. height: math.unit(72, "feet")
  29305. },
  29306. {
  29307. name: "Second-stage macro",
  29308. height: math.unit(864, "feet")
  29309. },
  29310. ]
  29311. ))
  29312. characterMakers.push(() => makeCharacter(
  29313. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29314. {
  29315. normal: {
  29316. height: math.unit(4 + 6 / 12, "feet"),
  29317. name: "Normal",
  29318. image: {
  29319. source: "./media/characters/hydra/normal.svg",
  29320. extra: 2833 / 2634,
  29321. bottom: 68 / 2901
  29322. }
  29323. },
  29324. smol: {
  29325. height: math.unit(0.705, "inches"),
  29326. name: "Smol",
  29327. image: {
  29328. source: "./media/characters/hydra/smol.svg",
  29329. extra: 2715 / 2540,
  29330. bottom: 0 / 2715
  29331. }
  29332. },
  29333. },
  29334. [
  29335. {
  29336. name: "Normal",
  29337. height: math.unit(4 + 6 / 12, "feet"),
  29338. default: true
  29339. }
  29340. ]
  29341. ))
  29342. characterMakers.push(() => makeCharacter(
  29343. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29344. {
  29345. front: {
  29346. height: math.unit(0.6, "cm"),
  29347. name: "Front",
  29348. image: {
  29349. source: "./media/characters/daz/front.svg",
  29350. extra: 1682 / 1164,
  29351. bottom: 42 / 1724
  29352. }
  29353. },
  29354. },
  29355. [
  29356. {
  29357. name: "Normal",
  29358. height: math.unit(0.6, "cm"),
  29359. default: true
  29360. },
  29361. ]
  29362. ))
  29363. characterMakers.push(() => makeCharacter(
  29364. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29365. {
  29366. front: {
  29367. height: math.unit(6, "feet"),
  29368. weight: math.unit(235, "lb"),
  29369. name: "Front",
  29370. image: {
  29371. source: "./media/characters/theo-pangolin/front.svg",
  29372. extra: 1996 / 1969,
  29373. bottom: 115 / 2111
  29374. }
  29375. },
  29376. back: {
  29377. height: math.unit(6, "feet"),
  29378. weight: math.unit(235, "lb"),
  29379. name: "Back",
  29380. image: {
  29381. source: "./media/characters/theo-pangolin/back.svg",
  29382. extra: 1979 / 1979,
  29383. bottom: 40 / 2019
  29384. }
  29385. },
  29386. feral: {
  29387. height: math.unit(2, "feet"),
  29388. weight: math.unit(30, "lb"),
  29389. name: "Feral",
  29390. image: {
  29391. source: "./media/characters/theo-pangolin/feral.svg",
  29392. extra: 803 / 791,
  29393. bottom: 181 / 984
  29394. }
  29395. },
  29396. footFive: {
  29397. height: math.unit(1.43, "feet"),
  29398. name: "Foot (Five Toes)",
  29399. image: {
  29400. source: "./media/characters/theo-pangolin/foot-five.svg"
  29401. }
  29402. },
  29403. footFour: {
  29404. height: math.unit(1.43, "feet"),
  29405. name: "Foot (Four Toes)",
  29406. image: {
  29407. source: "./media/characters/theo-pangolin/foot-four.svg"
  29408. }
  29409. },
  29410. handFour: {
  29411. height: math.unit(0.81, "feet"),
  29412. name: "Hand (Four Fingers)",
  29413. image: {
  29414. source: "./media/characters/theo-pangolin/hand-four.svg"
  29415. }
  29416. },
  29417. handThree: {
  29418. height: math.unit(0.81, "feet"),
  29419. name: "Hand (Three Fingers)",
  29420. image: {
  29421. source: "./media/characters/theo-pangolin/hand-three.svg"
  29422. }
  29423. },
  29424. headFront: {
  29425. height: math.unit(1.37, "feet"),
  29426. name: "Head (Front)",
  29427. image: {
  29428. source: "./media/characters/theo-pangolin/head-front.svg"
  29429. }
  29430. },
  29431. headSide: {
  29432. height: math.unit(1.43, "feet"),
  29433. name: "Head (Side)",
  29434. image: {
  29435. source: "./media/characters/theo-pangolin/head-side.svg"
  29436. }
  29437. },
  29438. tongue: {
  29439. height: math.unit(2.29, "feet"),
  29440. name: "Tongue",
  29441. image: {
  29442. source: "./media/characters/theo-pangolin/tongue.svg"
  29443. }
  29444. },
  29445. },
  29446. [
  29447. {
  29448. name: "Normal",
  29449. height: math.unit(6, "feet")
  29450. },
  29451. {
  29452. name: "Macro",
  29453. height: math.unit(400, "feet"),
  29454. default: true
  29455. },
  29456. ]
  29457. ))
  29458. characterMakers.push(() => makeCharacter(
  29459. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29460. {
  29461. front: {
  29462. height: math.unit(6, "inches"),
  29463. weight: math.unit(0.036, "kg"),
  29464. name: "Front",
  29465. image: {
  29466. source: "./media/characters/renée/front.svg",
  29467. extra: 900 / 886,
  29468. bottom: 8 / 908
  29469. }
  29470. },
  29471. },
  29472. [
  29473. {
  29474. name: "Nano",
  29475. height: math.unit(1, "nm")
  29476. },
  29477. {
  29478. name: "Micro",
  29479. height: math.unit(1, "mm")
  29480. },
  29481. {
  29482. name: "Normal",
  29483. height: math.unit(6, "inches")
  29484. },
  29485. {
  29486. name: "Macro",
  29487. height: math.unit(2000, "feet"),
  29488. default: true
  29489. },
  29490. {
  29491. name: "Megamacro",
  29492. height: math.unit(2, "km")
  29493. },
  29494. {
  29495. name: "Gigamacro",
  29496. height: math.unit(2000, "km")
  29497. },
  29498. {
  29499. name: "Teramacro",
  29500. height: math.unit(250000, "km")
  29501. },
  29502. ]
  29503. ))
  29504. characterMakers.push(() => makeCharacter(
  29505. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29506. {
  29507. front: {
  29508. height: math.unit(4, "meters"),
  29509. weight: math.unit(150, "kg"),
  29510. name: "Front",
  29511. image: {
  29512. source: "./media/characters/caledvwlch/front.svg",
  29513. extra: 1760 / 1551,
  29514. bottom: 28 / 1788
  29515. }
  29516. },
  29517. side: {
  29518. height: math.unit(4, "meters"),
  29519. weight: math.unit(150, "kg"),
  29520. name: "Side",
  29521. image: {
  29522. source: "./media/characters/caledvwlch/side.svg",
  29523. extra: 1605 / 1536,
  29524. bottom: 31 / 1636
  29525. }
  29526. },
  29527. back: {
  29528. height: math.unit(4, "meters"),
  29529. weight: math.unit(150, "kg"),
  29530. name: "Back",
  29531. image: {
  29532. source: "./media/characters/caledvwlch/back.svg",
  29533. extra: 1635 / 1565,
  29534. bottom: 27 / 1662
  29535. }
  29536. },
  29537. },
  29538. [
  29539. {
  29540. name: "\"Incognito\"",
  29541. height: math.unit(4, "meters")
  29542. },
  29543. {
  29544. name: "Small rampage",
  29545. height: math.unit(600, "meters")
  29546. },
  29547. {
  29548. name: "Mega",
  29549. height: math.unit(30, "km")
  29550. },
  29551. {
  29552. name: "Home-size",
  29553. height: math.unit(50, "km"),
  29554. default: true
  29555. },
  29556. {
  29557. name: "Giga",
  29558. height: math.unit(300, "km")
  29559. },
  29560. {
  29561. name: "Lounging",
  29562. height: math.unit(11000, "km")
  29563. },
  29564. {
  29565. name: "Planet snacking",
  29566. height: math.unit(2000000, "km")
  29567. },
  29568. ]
  29569. ))
  29570. characterMakers.push(() => makeCharacter(
  29571. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29572. {
  29573. front: {
  29574. height: math.unit(6, "feet"),
  29575. weight: math.unit(215, "lb"),
  29576. name: "Front",
  29577. image: {
  29578. source: "./media/characters/sapphire-svell/front.svg",
  29579. extra: 495 / 455,
  29580. bottom: 20 / 515
  29581. }
  29582. },
  29583. back: {
  29584. height: math.unit(6, "feet"),
  29585. weight: math.unit(216, "lb"),
  29586. name: "Back",
  29587. image: {
  29588. source: "./media/characters/sapphire-svell/back.svg",
  29589. extra: 497 / 477,
  29590. bottom: 7 / 504
  29591. }
  29592. },
  29593. maw: {
  29594. height: math.unit(1.57, "feet"),
  29595. name: "Maw",
  29596. image: {
  29597. source: "./media/characters/sapphire-svell/maw.svg"
  29598. }
  29599. },
  29600. foot: {
  29601. height: math.unit(1.07, "feet"),
  29602. name: "Foot",
  29603. image: {
  29604. source: "./media/characters/sapphire-svell/foot.svg"
  29605. }
  29606. },
  29607. toering: {
  29608. height: math.unit(1.7, "inch"),
  29609. name: "Toering",
  29610. image: {
  29611. source: "./media/characters/sapphire-svell/toering.svg"
  29612. }
  29613. },
  29614. },
  29615. [
  29616. {
  29617. name: "Normal",
  29618. height: math.unit(300, "feet"),
  29619. default: true
  29620. },
  29621. {
  29622. name: "Augmented",
  29623. height: math.unit(1250, "feet")
  29624. },
  29625. {
  29626. name: "Unleashed",
  29627. height: math.unit(3000, "feet")
  29628. },
  29629. ]
  29630. ))
  29631. characterMakers.push(() => makeCharacter(
  29632. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29633. {
  29634. side: {
  29635. height: math.unit(2 + 3 / 12, "feet"),
  29636. weight: math.unit(110, "lb"),
  29637. name: "Side",
  29638. image: {
  29639. source: "./media/characters/glitch-flux/side.svg",
  29640. extra: 997 / 805,
  29641. bottom: 20 / 1017
  29642. }
  29643. },
  29644. },
  29645. [
  29646. {
  29647. name: "Normal",
  29648. height: math.unit(2 + 3 / 12, "feet"),
  29649. default: true
  29650. },
  29651. ]
  29652. ))
  29653. characterMakers.push(() => makeCharacter(
  29654. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29655. {
  29656. front: {
  29657. height: math.unit(4, "meters"),
  29658. name: "Front",
  29659. image: {
  29660. source: "./media/characters/mid/front.svg",
  29661. extra: 507 / 476,
  29662. bottom: 17 / 524
  29663. }
  29664. },
  29665. back: {
  29666. height: math.unit(4, "meters"),
  29667. name: "Back",
  29668. image: {
  29669. source: "./media/characters/mid/back.svg",
  29670. extra: 519 / 487,
  29671. bottom: 7 / 526
  29672. }
  29673. },
  29674. stuck: {
  29675. height: math.unit(2.2, "meters"),
  29676. name: "Stuck",
  29677. image: {
  29678. source: "./media/characters/mid/stuck.svg",
  29679. extra: 1951 / 1869,
  29680. bottom: 88 / 2039
  29681. }
  29682. }
  29683. },
  29684. [
  29685. {
  29686. name: "Normal",
  29687. height: math.unit(4, "meters"),
  29688. default: true
  29689. },
  29690. {
  29691. name: "Big",
  29692. height: math.unit(10, "meters")
  29693. },
  29694. {
  29695. name: "Macro",
  29696. height: math.unit(800, "meters")
  29697. },
  29698. {
  29699. name: "Megamacro",
  29700. height: math.unit(100, "km")
  29701. },
  29702. {
  29703. name: "Overgrown",
  29704. height: math.unit(1, "parsec")
  29705. },
  29706. ]
  29707. ))
  29708. characterMakers.push(() => makeCharacter(
  29709. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29710. {
  29711. front: {
  29712. height: math.unit(2.5, "meters"),
  29713. weight: math.unit(225, "kg"),
  29714. name: "Front",
  29715. image: {
  29716. source: "./media/characters/iris/front.svg",
  29717. extra: 3348 / 3251,
  29718. bottom: 205 / 3553
  29719. }
  29720. },
  29721. maw: {
  29722. height: math.unit(0.56, "meter"),
  29723. name: "Maw",
  29724. image: {
  29725. source: "./media/characters/iris/maw.svg"
  29726. }
  29727. },
  29728. },
  29729. [
  29730. {
  29731. name: "Mewter cat",
  29732. height: math.unit(1.2, "meters")
  29733. },
  29734. {
  29735. name: "Minimacro",
  29736. height: math.unit(2.5, "meters"),
  29737. default: true
  29738. },
  29739. {
  29740. name: "Macro",
  29741. height: math.unit(180, "meters")
  29742. },
  29743. {
  29744. name: "Megamacro",
  29745. height: math.unit(2746, "meters")
  29746. },
  29747. ]
  29748. ))
  29749. characterMakers.push(() => makeCharacter(
  29750. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29751. {
  29752. front: {
  29753. height: math.unit(6, "feet"),
  29754. weight: math.unit(135, "lb"),
  29755. name: "Front",
  29756. image: {
  29757. source: "./media/characters/axel/front.svg",
  29758. extra: 908 / 908,
  29759. bottom: 58 / 966
  29760. }
  29761. },
  29762. side: {
  29763. height: math.unit(6, "feet"),
  29764. weight: math.unit(135, "lb"),
  29765. name: "Side",
  29766. image: {
  29767. source: "./media/characters/axel/side.svg",
  29768. extra: 958 / 958,
  29769. bottom: 11 / 969
  29770. }
  29771. },
  29772. back: {
  29773. height: math.unit(6, "feet"),
  29774. weight: math.unit(135, "lb"),
  29775. name: "Back",
  29776. image: {
  29777. source: "./media/characters/axel/back.svg",
  29778. extra: 887 / 887,
  29779. bottom: 34 / 921
  29780. }
  29781. },
  29782. head: {
  29783. height: math.unit(1.07, "feet"),
  29784. name: "Head",
  29785. image: {
  29786. source: "./media/characters/axel/head.svg"
  29787. }
  29788. },
  29789. beak: {
  29790. height: math.unit(1.4, "feet"),
  29791. name: "Beak",
  29792. image: {
  29793. source: "./media/characters/axel/beak.svg"
  29794. }
  29795. },
  29796. beakSide: {
  29797. height: math.unit(1.4, "feet"),
  29798. name: "Beak Side",
  29799. image: {
  29800. source: "./media/characters/axel/beak-side.svg"
  29801. }
  29802. },
  29803. sheath: {
  29804. height: math.unit(0.5, "feet"),
  29805. name: "Sheath",
  29806. image: {
  29807. source: "./media/characters/axel/sheath.svg"
  29808. }
  29809. },
  29810. dick: {
  29811. height: math.unit(0.98, "feet"),
  29812. name: "Dick",
  29813. image: {
  29814. source: "./media/characters/axel/dick.svg"
  29815. }
  29816. },
  29817. },
  29818. [
  29819. {
  29820. name: "Macro",
  29821. height: math.unit(68, "meters"),
  29822. default: true
  29823. },
  29824. ]
  29825. ))
  29826. characterMakers.push(() => makeCharacter(
  29827. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29828. {
  29829. front: {
  29830. height: math.unit(3.5, "meters"),
  29831. weight: math.unit(1200, "kg"),
  29832. name: "Front",
  29833. image: {
  29834. source: "./media/characters/joanna/front.svg",
  29835. extra: 1596 / 1488,
  29836. bottom: 29 / 1625
  29837. }
  29838. },
  29839. back: {
  29840. height: math.unit(3.5, "meters"),
  29841. weight: math.unit(1200, "kg"),
  29842. name: "Back",
  29843. image: {
  29844. source: "./media/characters/joanna/back.svg",
  29845. extra: 1594 / 1495,
  29846. bottom: 26 / 1620
  29847. }
  29848. },
  29849. frontShorts: {
  29850. height: math.unit(3.5, "meters"),
  29851. weight: math.unit(1200, "kg"),
  29852. name: "Front (Shorts)",
  29853. image: {
  29854. source: "./media/characters/joanna/front-shorts.svg",
  29855. extra: 1596 / 1488,
  29856. bottom: 29 / 1625
  29857. }
  29858. },
  29859. frontBiker: {
  29860. height: math.unit(3.5, "meters"),
  29861. weight: math.unit(1200, "kg"),
  29862. name: "Front (Biker)",
  29863. image: {
  29864. source: "./media/characters/joanna/front-biker.svg",
  29865. extra: 1596 / 1488,
  29866. bottom: 29 / 1625
  29867. }
  29868. },
  29869. backBiker: {
  29870. height: math.unit(3.5, "meters"),
  29871. weight: math.unit(1200, "kg"),
  29872. name: "Back (Biker)",
  29873. image: {
  29874. source: "./media/characters/joanna/back-biker.svg",
  29875. extra: 1594 / 1495,
  29876. bottom: 88 / 1682
  29877. }
  29878. },
  29879. bikeLeft: {
  29880. height: math.unit(2.4, "meters"),
  29881. weight: math.unit(1600, "kg"),
  29882. name: "Bike (Left)",
  29883. image: {
  29884. source: "./media/characters/joanna/bike-left.svg",
  29885. extra: 720 / 720,
  29886. bottom: 8 / 728
  29887. }
  29888. },
  29889. bikeRight: {
  29890. height: math.unit(2.4, "meters"),
  29891. weight: math.unit(1600, "kg"),
  29892. name: "Bike (Right)",
  29893. image: {
  29894. source: "./media/characters/joanna/bike-right.svg",
  29895. extra: 720 / 720,
  29896. bottom: 8 / 728
  29897. }
  29898. },
  29899. },
  29900. [
  29901. {
  29902. name: "Incognito",
  29903. height: math.unit(3.5, "meters")
  29904. },
  29905. {
  29906. name: "Casual Big",
  29907. height: math.unit(200, "meters")
  29908. },
  29909. {
  29910. name: "Macro",
  29911. height: math.unit(600, "meters")
  29912. },
  29913. {
  29914. name: "Original",
  29915. height: math.unit(20, "km"),
  29916. default: true
  29917. },
  29918. {
  29919. name: "Giga",
  29920. height: math.unit(400, "km")
  29921. },
  29922. {
  29923. name: "Lounging",
  29924. height: math.unit(1500, "km")
  29925. },
  29926. {
  29927. name: "Planetary",
  29928. height: math.unit(200000, "km")
  29929. },
  29930. ]
  29931. ))
  29932. characterMakers.push(() => makeCharacter(
  29933. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29934. {
  29935. front: {
  29936. height: math.unit(6, "feet"),
  29937. weight: math.unit(150, "lb"),
  29938. name: "Front",
  29939. image: {
  29940. source: "./media/characters/hugo-sigil/front.svg",
  29941. extra: 522 / 500,
  29942. bottom: 2 / 524
  29943. }
  29944. },
  29945. back: {
  29946. height: math.unit(6, "feet"),
  29947. weight: math.unit(150, "lb"),
  29948. name: "Back",
  29949. image: {
  29950. source: "./media/characters/hugo-sigil/back.svg",
  29951. extra: 519 / 495,
  29952. bottom: 5 / 524
  29953. }
  29954. },
  29955. maw: {
  29956. height: math.unit(1.4, "feet"),
  29957. weight: math.unit(150, "lb"),
  29958. name: "Maw",
  29959. image: {
  29960. source: "./media/characters/hugo-sigil/maw.svg"
  29961. }
  29962. },
  29963. feet: {
  29964. height: math.unit(1.56, "feet"),
  29965. weight: math.unit(150, "lb"),
  29966. name: "Feet",
  29967. image: {
  29968. source: "./media/characters/hugo-sigil/feet.svg",
  29969. extra: 177 / 177,
  29970. bottom: 12 / 189
  29971. }
  29972. },
  29973. },
  29974. [
  29975. {
  29976. name: "Normal",
  29977. height: math.unit(6, "feet")
  29978. },
  29979. {
  29980. name: "Macro",
  29981. height: math.unit(200, "feet"),
  29982. default: true
  29983. },
  29984. ]
  29985. ))
  29986. characterMakers.push(() => makeCharacter(
  29987. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29988. {
  29989. front: {
  29990. height: math.unit(6, "feet"),
  29991. weight: math.unit(150, "lb"),
  29992. name: "Front",
  29993. image: {
  29994. source: "./media/characters/peri/front.svg",
  29995. extra: 2354 / 2233,
  29996. bottom: 49 / 2403
  29997. }
  29998. },
  29999. },
  30000. [
  30001. {
  30002. name: "Really Small",
  30003. height: math.unit(1, "nm")
  30004. },
  30005. {
  30006. name: "Micro",
  30007. height: math.unit(4, "inches")
  30008. },
  30009. {
  30010. name: "Normal",
  30011. height: math.unit(7, "inches"),
  30012. default: true
  30013. },
  30014. {
  30015. name: "Macro",
  30016. height: math.unit(400, "feet")
  30017. },
  30018. {
  30019. name: "Megamacro",
  30020. height: math.unit(100, "miles")
  30021. },
  30022. ]
  30023. ))
  30024. characterMakers.push(() => makeCharacter(
  30025. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30026. {
  30027. frontSlim: {
  30028. height: math.unit(7, "feet"),
  30029. name: "Front (Slim)",
  30030. image: {
  30031. source: "./media/characters/issilora/front-slim.svg",
  30032. extra: 529 / 449,
  30033. bottom: 53 / 582
  30034. }
  30035. },
  30036. sideSlim: {
  30037. height: math.unit(7, "feet"),
  30038. name: "Side (Slim)",
  30039. image: {
  30040. source: "./media/characters/issilora/side-slim.svg",
  30041. extra: 570 / 480,
  30042. bottom: 30 / 600
  30043. }
  30044. },
  30045. backSlim: {
  30046. height: math.unit(7, "feet"),
  30047. name: "Back (Slim)",
  30048. image: {
  30049. source: "./media/characters/issilora/back-slim.svg",
  30050. extra: 537 / 455,
  30051. bottom: 46 / 583
  30052. }
  30053. },
  30054. frontBuff: {
  30055. height: math.unit(7, "feet"),
  30056. name: "Front (Buff)",
  30057. image: {
  30058. source: "./media/characters/issilora/front-buff.svg",
  30059. extra: 2310 / 2035,
  30060. bottom: 335 / 2645
  30061. }
  30062. },
  30063. head: {
  30064. height: math.unit(1.94, "feet"),
  30065. name: "Head",
  30066. image: {
  30067. source: "./media/characters/issilora/head.svg"
  30068. }
  30069. },
  30070. },
  30071. [
  30072. {
  30073. name: "Minimum",
  30074. height: math.unit(7, "feet")
  30075. },
  30076. {
  30077. name: "Comfortable",
  30078. height: math.unit(17, "feet")
  30079. },
  30080. {
  30081. name: "Fun Size",
  30082. height: math.unit(47, "feet")
  30083. },
  30084. {
  30085. name: "Natural Macro",
  30086. height: math.unit(137, "feet"),
  30087. default: true
  30088. },
  30089. {
  30090. name: "Maximum Kaiju",
  30091. height: math.unit(397, "feet")
  30092. },
  30093. ]
  30094. ))
  30095. characterMakers.push(() => makeCharacter(
  30096. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30097. {
  30098. front: {
  30099. height: math.unit(50 + 9/12, "feet"),
  30100. weight: math.unit(32.8, "tons"),
  30101. name: "Front",
  30102. image: {
  30103. source: "./media/characters/irb'iiritaahn/front.svg",
  30104. extra: 1878/1826,
  30105. bottom: 326/2204
  30106. }
  30107. },
  30108. back: {
  30109. height: math.unit(50 + 9/12, "feet"),
  30110. weight: math.unit(32.8, "tons"),
  30111. name: "Back",
  30112. image: {
  30113. source: "./media/characters/irb'iiritaahn/back.svg",
  30114. extra: 2052/2018,
  30115. bottom: 152/2204
  30116. }
  30117. },
  30118. head: {
  30119. height: math.unit(12.86, "feet"),
  30120. name: "Head",
  30121. image: {
  30122. source: "./media/characters/irb'iiritaahn/head.svg"
  30123. }
  30124. },
  30125. maw: {
  30126. height: math.unit(9.66, "feet"),
  30127. name: "Maw",
  30128. image: {
  30129. source: "./media/characters/irb'iiritaahn/maw.svg"
  30130. }
  30131. },
  30132. frontDick: {
  30133. height: math.unit(8.78461, "feet"),
  30134. name: "Front Dick",
  30135. image: {
  30136. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30137. }
  30138. },
  30139. rearDick: {
  30140. height: math.unit(8.78461, "feet"),
  30141. name: "Rear Dick",
  30142. image: {
  30143. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30144. }
  30145. },
  30146. rearDickUnfolded: {
  30147. height: math.unit(8.78, "feet"),
  30148. name: "Rear Dick (Unfolded)",
  30149. image: {
  30150. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30151. }
  30152. },
  30153. wings: {
  30154. height: math.unit(43, "feet"),
  30155. name: "Wings",
  30156. image: {
  30157. source: "./media/characters/irb'iiritaahn/wings.svg"
  30158. }
  30159. },
  30160. },
  30161. [
  30162. {
  30163. name: "Macro",
  30164. height: math.unit(50 + 9/12, "feet"),
  30165. default: true
  30166. },
  30167. ]
  30168. ))
  30169. characterMakers.push(() => makeCharacter(
  30170. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30171. {
  30172. front: {
  30173. height: math.unit(205, "cm"),
  30174. weight: math.unit(102, "kg"),
  30175. name: "Front",
  30176. image: {
  30177. source: "./media/characters/irbisgreif/front.svg",
  30178. extra: 785/706,
  30179. bottom: 13/798
  30180. }
  30181. },
  30182. back: {
  30183. height: math.unit(205, "cm"),
  30184. weight: math.unit(102, "kg"),
  30185. name: "Back",
  30186. image: {
  30187. source: "./media/characters/irbisgreif/back.svg",
  30188. extra: 713/701,
  30189. bottom: 26/739
  30190. }
  30191. },
  30192. frontDressed: {
  30193. height: math.unit(216, "cm"),
  30194. weight: math.unit(102, "kg"),
  30195. name: "Front-dressed",
  30196. image: {
  30197. source: "./media/characters/irbisgreif/front-dressed.svg",
  30198. extra: 902/776,
  30199. bottom: 14/916
  30200. }
  30201. },
  30202. sideDressed: {
  30203. height: math.unit(195, "cm"),
  30204. weight: math.unit(102, "kg"),
  30205. name: "Side-dressed",
  30206. image: {
  30207. source: "./media/characters/irbisgreif/side-dressed.svg",
  30208. extra: 788/688,
  30209. bottom: 21/809
  30210. }
  30211. },
  30212. backDressed: {
  30213. height: math.unit(216, "cm"),
  30214. weight: math.unit(102, "kg"),
  30215. name: "Back-dressed",
  30216. image: {
  30217. source: "./media/characters/irbisgreif/back-dressed.svg",
  30218. extra: 901/783,
  30219. bottom: 10/911
  30220. }
  30221. },
  30222. dick: {
  30223. height: math.unit(0.49, "feet"),
  30224. name: "Dick",
  30225. image: {
  30226. source: "./media/characters/irbisgreif/dick.svg"
  30227. }
  30228. },
  30229. wingTop: {
  30230. height: math.unit(1.93 , "feet"),
  30231. name: "Wing-top",
  30232. image: {
  30233. source: "./media/characters/irbisgreif/wing-top.svg"
  30234. }
  30235. },
  30236. wingBottom: {
  30237. height: math.unit(1.93 , "feet"),
  30238. name: "Wing-bottom",
  30239. image: {
  30240. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30241. }
  30242. },
  30243. },
  30244. [
  30245. {
  30246. name: "Normal",
  30247. height: math.unit(216, "cm"),
  30248. default: true
  30249. },
  30250. ]
  30251. ))
  30252. characterMakers.push(() => makeCharacter(
  30253. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30254. {
  30255. front: {
  30256. height: math.unit(6, "feet"),
  30257. weight: math.unit(150, "lb"),
  30258. name: "Front",
  30259. image: {
  30260. source: "./media/characters/pride/front.svg",
  30261. extra: 1299/1230,
  30262. bottom: 18/1317
  30263. }
  30264. },
  30265. },
  30266. [
  30267. {
  30268. name: "Normal",
  30269. height: math.unit(7, "feet")
  30270. },
  30271. {
  30272. name: "Mini-macro",
  30273. height: math.unit(11, "feet")
  30274. },
  30275. {
  30276. name: "Macro",
  30277. height: math.unit(15, "meters"),
  30278. default: true
  30279. },
  30280. {
  30281. name: "Macro+",
  30282. height: math.unit(40, "meters")
  30283. },
  30284. ]
  30285. ))
  30286. characterMakers.push(() => makeCharacter(
  30287. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30288. {
  30289. front: {
  30290. height: math.unit(4 + 2 / 12, "feet"),
  30291. weight: math.unit(95, "lb"),
  30292. name: "Front",
  30293. image: {
  30294. source: "./media/characters/vaelophis-nyx/front.svg",
  30295. extra: 2532/2330,
  30296. bottom: 0/2532
  30297. }
  30298. },
  30299. back: {
  30300. height: math.unit(4 + 2 / 12, "feet"),
  30301. weight: math.unit(95, "lb"),
  30302. name: "Back",
  30303. image: {
  30304. source: "./media/characters/vaelophis-nyx/back.svg",
  30305. extra: 2484/2361,
  30306. bottom: 0/2484
  30307. }
  30308. },
  30309. feralSide: {
  30310. height: math.unit(2 + 1/12, "feet"),
  30311. weight: math.unit(20, "lb"),
  30312. name: "Feral (Side)",
  30313. image: {
  30314. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30315. extra: 1721/1581,
  30316. bottom: 70/1791
  30317. }
  30318. },
  30319. feralLazing: {
  30320. height: math.unit(1.08, "feet"),
  30321. weight: math.unit(20, "lb"),
  30322. name: "Feral (Lazing)",
  30323. image: {
  30324. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30325. extra: 822/822,
  30326. bottom: 248/1070
  30327. }
  30328. },
  30329. ear: {
  30330. height: math.unit(0.416, "feet"),
  30331. name: "Ear",
  30332. image: {
  30333. source: "./media/characters/vaelophis-nyx/ear.svg"
  30334. }
  30335. },
  30336. eye: {
  30337. height: math.unit(0.0748, "feet"),
  30338. name: "Eye",
  30339. image: {
  30340. source: "./media/characters/vaelophis-nyx/eye.svg"
  30341. }
  30342. },
  30343. mouth: {
  30344. height: math.unit(0.378, "feet"),
  30345. name: "Mouth",
  30346. image: {
  30347. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30348. }
  30349. },
  30350. spade: {
  30351. height: math.unit(0.55, "feet"),
  30352. name: "Spade",
  30353. image: {
  30354. source: "./media/characters/vaelophis-nyx/spade.svg"
  30355. }
  30356. },
  30357. },
  30358. [
  30359. {
  30360. name: "Normal",
  30361. height: math.unit(4 + 2/12, "feet"),
  30362. default: true
  30363. },
  30364. ]
  30365. ))
  30366. characterMakers.push(() => makeCharacter(
  30367. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30368. {
  30369. front: {
  30370. height: math.unit(7, "feet"),
  30371. weight: math.unit(231, "lb"),
  30372. name: "Front",
  30373. image: {
  30374. source: "./media/characters/flux/front.svg",
  30375. extra: 919/871,
  30376. bottom: 0/919
  30377. }
  30378. },
  30379. back: {
  30380. height: math.unit(7, "feet"),
  30381. weight: math.unit(231, "lb"),
  30382. name: "Back",
  30383. image: {
  30384. source: "./media/characters/flux/back.svg",
  30385. extra: 1040/992,
  30386. bottom: 0/1040
  30387. }
  30388. },
  30389. frontDressed: {
  30390. height: math.unit(7, "feet"),
  30391. weight: math.unit(231, "lb"),
  30392. name: "Front (Dressed)",
  30393. image: {
  30394. source: "./media/characters/flux/front-dressed.svg",
  30395. extra: 919/871,
  30396. bottom: 0/919
  30397. }
  30398. },
  30399. feralSide: {
  30400. height: math.unit(5, "feet"),
  30401. weight: math.unit(150, "lb"),
  30402. name: "Feral (Side)",
  30403. image: {
  30404. source: "./media/characters/flux/feral-side.svg",
  30405. extra: 598/528,
  30406. bottom: 28/626
  30407. }
  30408. },
  30409. head: {
  30410. height: math.unit(1.585, "feet"),
  30411. name: "Head",
  30412. image: {
  30413. source: "./media/characters/flux/head.svg"
  30414. }
  30415. },
  30416. headSide: {
  30417. height: math.unit(1.74, "feet"),
  30418. name: "Head (Side)",
  30419. image: {
  30420. source: "./media/characters/flux/head-side.svg"
  30421. }
  30422. },
  30423. headSideFire: {
  30424. height: math.unit(1.76, "feet"),
  30425. name: "Head (Side, Fire)",
  30426. image: {
  30427. source: "./media/characters/flux/head-side-fire.svg"
  30428. }
  30429. },
  30430. },
  30431. [
  30432. {
  30433. name: "Normal",
  30434. height: math.unit(7, "feet"),
  30435. default: true
  30436. },
  30437. ]
  30438. ))
  30439. characterMakers.push(() => makeCharacter(
  30440. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30441. {
  30442. front: {
  30443. height: math.unit(9, "feet"),
  30444. weight: math.unit(1012, "lb"),
  30445. name: "Front",
  30446. image: {
  30447. source: "./media/characters/ulfra-lupae/front.svg",
  30448. extra: 1083/1011,
  30449. bottom: 67/1150
  30450. }
  30451. },
  30452. },
  30453. [
  30454. {
  30455. name: "Micro",
  30456. height: math.unit(6, "inches")
  30457. },
  30458. {
  30459. name: "Socializing",
  30460. height: math.unit(6 + 5/12, "feet")
  30461. },
  30462. {
  30463. name: "Normal",
  30464. height: math.unit(9, "feet"),
  30465. default: true
  30466. },
  30467. {
  30468. name: "Macro",
  30469. height: math.unit(150, "feet")
  30470. },
  30471. ]
  30472. ))
  30473. characterMakers.push(() => makeCharacter(
  30474. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30475. {
  30476. front: {
  30477. height: math.unit(5 + 2/12, "feet"),
  30478. weight: math.unit(120, "lb"),
  30479. name: "Front",
  30480. image: {
  30481. source: "./media/characters/timber/front.svg",
  30482. extra: 2814/2705,
  30483. bottom: 181/2995
  30484. }
  30485. },
  30486. },
  30487. [
  30488. {
  30489. name: "Normal",
  30490. height: math.unit(5 + 2/12, "feet"),
  30491. default: true
  30492. },
  30493. ]
  30494. ))
  30495. characterMakers.push(() => makeCharacter(
  30496. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30497. {
  30498. front: {
  30499. height: math.unit(5 + 7/12, "feet"),
  30500. weight: math.unit(220, "lb"),
  30501. name: "Front",
  30502. image: {
  30503. source: "./media/characters/nicki/front.svg",
  30504. extra: 453/419,
  30505. bottom: 7/460
  30506. }
  30507. },
  30508. frontAlt: {
  30509. height: math.unit(5 + 7/12, "feet"),
  30510. weight: math.unit(220, "lb"),
  30511. name: "Front-alt",
  30512. image: {
  30513. source: "./media/characters/nicki/front-alt.svg",
  30514. extra: 435/411,
  30515. bottom: 12/447
  30516. }
  30517. },
  30518. back: {
  30519. height: math.unit(5 + 7/12, "feet"),
  30520. weight: math.unit(220, "lb"),
  30521. name: "Back",
  30522. image: {
  30523. source: "./media/characters/nicki/back.svg",
  30524. extra: 440/413,
  30525. bottom: 19/459
  30526. }
  30527. },
  30528. taur: {
  30529. height: math.unit(7 + 6/12, "feet"),
  30530. weight: math.unit(700, "lb"),
  30531. name: "Taur",
  30532. image: {
  30533. source: "./media/characters/nicki/taur.svg",
  30534. extra: 975/773,
  30535. bottom: 0/975
  30536. }
  30537. },
  30538. frontNsfw: {
  30539. height: math.unit(5 + 7/12, "feet"),
  30540. weight: math.unit(220, "lb"),
  30541. name: "Front (NSFW)",
  30542. image: {
  30543. source: "./media/characters/nicki/front-nsfw.svg",
  30544. extra: 453/419,
  30545. bottom: 7/460
  30546. }
  30547. },
  30548. frontNsfwAlt: {
  30549. height: math.unit(5 + 7/12, "feet"),
  30550. weight: math.unit(220, "lb"),
  30551. name: "Front (Alt, NSFW)",
  30552. image: {
  30553. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30554. extra: 435/411,
  30555. bottom: 12/447
  30556. }
  30557. },
  30558. backNsfw: {
  30559. height: math.unit(5 + 7/12, "feet"),
  30560. weight: math.unit(220, "lb"),
  30561. name: "Back (NSFW)",
  30562. image: {
  30563. source: "./media/characters/nicki/back-nsfw.svg",
  30564. extra: 440/413,
  30565. bottom: 19/459
  30566. }
  30567. },
  30568. head: {
  30569. height: math.unit(2.1, "feet"),
  30570. name: "Head",
  30571. image: {
  30572. source: "./media/characters/nicki/head.svg"
  30573. }
  30574. },
  30575. paw: {
  30576. height: math.unit(1.88, "feet"),
  30577. name: "Paw",
  30578. image: {
  30579. source: "./media/characters/nicki/paw.svg"
  30580. }
  30581. },
  30582. },
  30583. [
  30584. {
  30585. name: "Normal",
  30586. height: math.unit(5 + 7/12, "feet"),
  30587. default: true
  30588. },
  30589. ]
  30590. ))
  30591. characterMakers.push(() => makeCharacter(
  30592. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30593. {
  30594. front: {
  30595. height: math.unit(7 + 10/12, "feet"),
  30596. weight: math.unit(3.5, "tons"),
  30597. name: "Front",
  30598. image: {
  30599. source: "./media/characters/lee/front.svg",
  30600. extra: 1773/1615,
  30601. bottom: 86/1859
  30602. }
  30603. },
  30604. hand: {
  30605. height: math.unit(1.78, "feet"),
  30606. name: "Hand",
  30607. image: {
  30608. source: "./media/characters/lee/hand.svg"
  30609. }
  30610. },
  30611. maw: {
  30612. height: math.unit(1.18, "feet"),
  30613. name: "Maw",
  30614. image: {
  30615. source: "./media/characters/lee/maw.svg"
  30616. }
  30617. },
  30618. },
  30619. [
  30620. {
  30621. name: "Normal",
  30622. height: math.unit(7 + 10/12, "feet"),
  30623. default: true
  30624. },
  30625. ]
  30626. ))
  30627. characterMakers.push(() => makeCharacter(
  30628. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30629. {
  30630. front: {
  30631. height: math.unit(9, "feet"),
  30632. name: "Front",
  30633. image: {
  30634. source: "./media/characters/guti/front.svg",
  30635. extra: 4551/4355,
  30636. bottom: 123/4674
  30637. }
  30638. },
  30639. tongue: {
  30640. height: math.unit(1, "feet"),
  30641. name: "Tongue",
  30642. image: {
  30643. source: "./media/characters/guti/tongue.svg"
  30644. }
  30645. },
  30646. paw: {
  30647. height: math.unit(1.18, "feet"),
  30648. name: "Paw",
  30649. image: {
  30650. source: "./media/characters/guti/paw.svg"
  30651. }
  30652. },
  30653. },
  30654. [
  30655. {
  30656. name: "Normal",
  30657. height: math.unit(9, "feet"),
  30658. default: true
  30659. },
  30660. ]
  30661. ))
  30662. characterMakers.push(() => makeCharacter(
  30663. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30664. {
  30665. side: {
  30666. height: math.unit(5, "meters"),
  30667. name: "Side",
  30668. image: {
  30669. source: "./media/characters/vesper/side.svg",
  30670. extra: 1605/1518,
  30671. bottom: 0/1605
  30672. }
  30673. },
  30674. },
  30675. [
  30676. {
  30677. name: "Small",
  30678. height: math.unit(5, "meters")
  30679. },
  30680. {
  30681. name: "Sage",
  30682. height: math.unit(100, "meters"),
  30683. default: true
  30684. },
  30685. {
  30686. name: "Fun Size",
  30687. height: math.unit(600, "meters")
  30688. },
  30689. {
  30690. name: "Goddess",
  30691. height: math.unit(20000, "km")
  30692. },
  30693. {
  30694. name: "Maximum",
  30695. height: math.unit(5, "galaxies")
  30696. },
  30697. ]
  30698. ))
  30699. characterMakers.push(() => makeCharacter(
  30700. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30701. {
  30702. front: {
  30703. height: math.unit(6 + 3/12, "feet"),
  30704. weight: math.unit(190, "lb"),
  30705. name: "Front",
  30706. image: {
  30707. source: "./media/characters/gawain/front.svg",
  30708. extra: 2222/2139,
  30709. bottom: 90/2312
  30710. }
  30711. },
  30712. back: {
  30713. height: math.unit(6 + 3/12, "feet"),
  30714. weight: math.unit(190, "lb"),
  30715. name: "Back",
  30716. image: {
  30717. source: "./media/characters/gawain/back.svg",
  30718. extra: 2199/2111,
  30719. bottom: 73/2272
  30720. }
  30721. },
  30722. },
  30723. [
  30724. {
  30725. name: "Normal",
  30726. height: math.unit(6 + 3/12, "feet"),
  30727. default: true
  30728. },
  30729. ]
  30730. ))
  30731. characterMakers.push(() => makeCharacter(
  30732. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30733. {
  30734. side: {
  30735. height: math.unit(3.5, "meters"),
  30736. weight: math.unit(16000, "lb"),
  30737. name: "Side",
  30738. image: {
  30739. source: "./media/characters/dascalti/side.svg",
  30740. extra: 392/273,
  30741. bottom: 47/439
  30742. }
  30743. },
  30744. breath: {
  30745. height: math.unit(7.4, "feet"),
  30746. name: "Breath",
  30747. image: {
  30748. source: "./media/characters/dascalti/breath.svg"
  30749. }
  30750. },
  30751. fed: {
  30752. height: math.unit(3.6, "meters"),
  30753. weight: math.unit(16000, "lb"),
  30754. name: "Fed",
  30755. image: {
  30756. source: "./media/characters/dascalti/fed.svg",
  30757. extra: 1419/820,
  30758. bottom: 95/1514
  30759. }
  30760. },
  30761. },
  30762. [
  30763. {
  30764. name: "Normal",
  30765. height: math.unit(3.5, "meters"),
  30766. default: true
  30767. },
  30768. ]
  30769. ))
  30770. characterMakers.push(() => makeCharacter(
  30771. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30772. {
  30773. front: {
  30774. height: math.unit(3 + 5/12, "feet"),
  30775. name: "Front",
  30776. image: {
  30777. source: "./media/characters/mauve/front.svg",
  30778. extra: 1126/1033,
  30779. bottom: 65/1191
  30780. }
  30781. },
  30782. side: {
  30783. height: math.unit(3 + 5/12, "feet"),
  30784. name: "Side",
  30785. image: {
  30786. source: "./media/characters/mauve/side.svg",
  30787. extra: 1089/1001,
  30788. bottom: 29/1118
  30789. }
  30790. },
  30791. back: {
  30792. height: math.unit(3 + 5/12, "feet"),
  30793. name: "Back",
  30794. image: {
  30795. source: "./media/characters/mauve/back.svg",
  30796. extra: 1173/1053,
  30797. bottom: 109/1282
  30798. }
  30799. },
  30800. },
  30801. [
  30802. {
  30803. name: "Normal",
  30804. height: math.unit(3 + 5/12, "feet"),
  30805. default: true
  30806. },
  30807. ]
  30808. ))
  30809. characterMakers.push(() => makeCharacter(
  30810. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30811. {
  30812. front: {
  30813. height: math.unit(6 + 3/12, "feet"),
  30814. weight: math.unit(430, "lb"),
  30815. name: "Front",
  30816. image: {
  30817. source: "./media/characters/carlos/front.svg",
  30818. extra: 1964/1913,
  30819. bottom: 70/2034
  30820. }
  30821. },
  30822. },
  30823. [
  30824. {
  30825. name: "Normal",
  30826. height: math.unit(6 + 3/12, "feet"),
  30827. default: true
  30828. },
  30829. ]
  30830. ))
  30831. characterMakers.push(() => makeCharacter(
  30832. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30833. {
  30834. back: {
  30835. height: math.unit(5 + 10/12, "feet"),
  30836. weight: math.unit(200, "lb"),
  30837. name: "Back",
  30838. image: {
  30839. source: "./media/characters/jax/back.svg",
  30840. extra: 764/739,
  30841. bottom: 25/789
  30842. }
  30843. },
  30844. },
  30845. [
  30846. {
  30847. name: "Normal",
  30848. height: math.unit(5 + 10/12, "feet"),
  30849. default: true
  30850. },
  30851. ]
  30852. ))
  30853. characterMakers.push(() => makeCharacter(
  30854. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30855. {
  30856. front: {
  30857. height: math.unit(8, "feet"),
  30858. weight: math.unit(250, "lb"),
  30859. name: "Front",
  30860. image: {
  30861. source: "./media/characters/eikthynir/front.svg",
  30862. extra: 1332/1166,
  30863. bottom: 82/1414
  30864. }
  30865. },
  30866. back: {
  30867. height: math.unit(8, "feet"),
  30868. weight: math.unit(250, "lb"),
  30869. name: "Back",
  30870. image: {
  30871. source: "./media/characters/eikthynir/back.svg",
  30872. extra: 1342/1190,
  30873. bottom: 19/1361
  30874. }
  30875. },
  30876. dick: {
  30877. height: math.unit(2.35, "feet"),
  30878. name: "Dick",
  30879. image: {
  30880. source: "./media/characters/eikthynir/dick.svg"
  30881. }
  30882. },
  30883. },
  30884. [
  30885. {
  30886. name: "Normal",
  30887. height: math.unit(8, "feet"),
  30888. default: true
  30889. },
  30890. ]
  30891. ))
  30892. characterMakers.push(() => makeCharacter(
  30893. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30894. {
  30895. front: {
  30896. height: math.unit(99, "meters"),
  30897. weight: math.unit(13000, "tons"),
  30898. name: "Front",
  30899. image: {
  30900. source: "./media/characters/zlmos/front.svg",
  30901. extra: 2202/1992,
  30902. bottom: 315/2517
  30903. }
  30904. },
  30905. },
  30906. [
  30907. {
  30908. name: "Macro",
  30909. height: math.unit(99, "meters"),
  30910. default: true
  30911. },
  30912. ]
  30913. ))
  30914. characterMakers.push(() => makeCharacter(
  30915. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30916. {
  30917. front: {
  30918. height: math.unit(6 + 5/12, "feet"),
  30919. name: "Front",
  30920. image: {
  30921. source: "./media/characters/purri/front.svg",
  30922. extra: 1698/1610,
  30923. bottom: 32/1730
  30924. }
  30925. },
  30926. frontAlt: {
  30927. height: math.unit(6 + 5/12, "feet"),
  30928. name: "Front (Alt)",
  30929. image: {
  30930. source: "./media/characters/purri/front-alt.svg",
  30931. extra: 450/420,
  30932. bottom: 26/476
  30933. }
  30934. },
  30935. boots: {
  30936. height: math.unit(5.5, "feet"),
  30937. name: "Boots",
  30938. image: {
  30939. source: "./media/characters/purri/boots.svg",
  30940. extra: 905/853,
  30941. bottom: 18/923
  30942. }
  30943. },
  30944. lying: {
  30945. height: math.unit(2, "feet"),
  30946. name: "Lying",
  30947. image: {
  30948. source: "./media/characters/purri/lying.svg",
  30949. extra: 940/843,
  30950. bottom: 146/1086
  30951. }
  30952. },
  30953. devious: {
  30954. height: math.unit(1.77, "feet"),
  30955. name: "Devious",
  30956. image: {
  30957. source: "./media/characters/purri/devious.svg",
  30958. extra: 1440/1155,
  30959. bottom: 147/1587
  30960. }
  30961. },
  30962. bean: {
  30963. height: math.unit(1.94, "feet"),
  30964. name: "Bean",
  30965. image: {
  30966. source: "./media/characters/purri/bean.svg"
  30967. }
  30968. },
  30969. },
  30970. [
  30971. {
  30972. name: "Micro",
  30973. height: math.unit(1, "mm")
  30974. },
  30975. {
  30976. name: "Normal",
  30977. height: math.unit(6 + 5/12, "feet"),
  30978. default: true
  30979. },
  30980. {
  30981. name: "Macro :3c",
  30982. height: math.unit(2, "miles")
  30983. },
  30984. ]
  30985. ))
  30986. characterMakers.push(() => makeCharacter(
  30987. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30988. {
  30989. front: {
  30990. height: math.unit(6 + 2/12, "feet"),
  30991. weight: math.unit(250, "lb"),
  30992. name: "Front",
  30993. image: {
  30994. source: "./media/characters/moonlight/front.svg",
  30995. extra: 1044/908,
  30996. bottom: 56/1100
  30997. }
  30998. },
  30999. feral: {
  31000. height: math.unit(3 + 1/12, "feet"),
  31001. weight: math.unit(50, "kg"),
  31002. name: "Feral",
  31003. image: {
  31004. source: "./media/characters/moonlight/feral.svg",
  31005. extra: 3705/2791,
  31006. bottom: 145/3850
  31007. }
  31008. },
  31009. paw: {
  31010. height: math.unit(1, "feet"),
  31011. name: "Paw",
  31012. image: {
  31013. source: "./media/characters/moonlight/paw.svg"
  31014. }
  31015. },
  31016. paws: {
  31017. height: math.unit(0.98, "feet"),
  31018. name: "Paws",
  31019. image: {
  31020. source: "./media/characters/moonlight/paws.svg",
  31021. extra: 939/939,
  31022. bottom: 50/989
  31023. }
  31024. },
  31025. mouth: {
  31026. height: math.unit(0.48, "feet"),
  31027. name: "Mouth",
  31028. image: {
  31029. source: "./media/characters/moonlight/mouth.svg"
  31030. }
  31031. },
  31032. dick: {
  31033. height: math.unit(1.46, "feet"),
  31034. name: "Dick",
  31035. image: {
  31036. source: "./media/characters/moonlight/dick.svg"
  31037. }
  31038. },
  31039. },
  31040. [
  31041. {
  31042. name: "Normal",
  31043. height: math.unit(6 + 2/12, "feet"),
  31044. default: true
  31045. },
  31046. {
  31047. name: "Macro",
  31048. height: math.unit(300, "feet")
  31049. },
  31050. {
  31051. name: "Macro+",
  31052. height: math.unit(1, "mile")
  31053. },
  31054. {
  31055. name: "Mt. Moon",
  31056. height: math.unit(5, "miles")
  31057. },
  31058. {
  31059. name: "Megamacro",
  31060. height: math.unit(15, "miles")
  31061. },
  31062. ]
  31063. ))
  31064. characterMakers.push(() => makeCharacter(
  31065. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31066. {
  31067. back: {
  31068. height: math.unit(6, "feet"),
  31069. weight: math.unit(150, "lb"),
  31070. name: "Back",
  31071. image: {
  31072. source: "./media/characters/sylen/back.svg",
  31073. extra: 1335/1273,
  31074. bottom: 107/1442
  31075. }
  31076. },
  31077. },
  31078. [
  31079. {
  31080. name: "Normal",
  31081. height: math.unit(5 + 5/12, "feet")
  31082. },
  31083. {
  31084. name: "Megamacro",
  31085. height: math.unit(3, "miles"),
  31086. default: true
  31087. },
  31088. ]
  31089. ))
  31090. characterMakers.push(() => makeCharacter(
  31091. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31092. {
  31093. front: {
  31094. height: math.unit(6, "feet"),
  31095. weight: math.unit(190, "lb"),
  31096. name: "Front",
  31097. image: {
  31098. source: "./media/characters/huttser/front.svg",
  31099. extra: 1152/1058,
  31100. bottom: 23/1175
  31101. }
  31102. },
  31103. side: {
  31104. height: math.unit(6, "feet"),
  31105. weight: math.unit(190, "lb"),
  31106. name: "Side",
  31107. image: {
  31108. source: "./media/characters/huttser/side.svg",
  31109. extra: 1174/1065,
  31110. bottom: 18/1192
  31111. }
  31112. },
  31113. back: {
  31114. height: math.unit(6, "feet"),
  31115. weight: math.unit(190, "lb"),
  31116. name: "Back",
  31117. image: {
  31118. source: "./media/characters/huttser/back.svg",
  31119. extra: 1158/1056,
  31120. bottom: 12/1170
  31121. }
  31122. },
  31123. },
  31124. [
  31125. ]
  31126. ))
  31127. characterMakers.push(() => makeCharacter(
  31128. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31129. {
  31130. side: {
  31131. height: math.unit(12 + 9/12, "feet"),
  31132. weight: math.unit(15000, "lb"),
  31133. name: "Side",
  31134. image: {
  31135. source: "./media/characters/faan/side.svg",
  31136. extra: 2747/2697,
  31137. bottom: 0/2747
  31138. }
  31139. },
  31140. front: {
  31141. height: math.unit(12 + 9/12, "feet"),
  31142. weight: math.unit(15000, "lb"),
  31143. name: "Front",
  31144. image: {
  31145. source: "./media/characters/faan/front.svg",
  31146. extra: 607/571,
  31147. bottom: 24/631
  31148. }
  31149. },
  31150. head: {
  31151. height: math.unit(2.85, "feet"),
  31152. name: "Head",
  31153. image: {
  31154. source: "./media/characters/faan/head.svg"
  31155. }
  31156. },
  31157. headAlt: {
  31158. height: math.unit(3.13, "feet"),
  31159. name: "Head-alt",
  31160. image: {
  31161. source: "./media/characters/faan/head-alt.svg"
  31162. }
  31163. },
  31164. },
  31165. [
  31166. {
  31167. name: "Normal",
  31168. height: math.unit(12 + 9/12, "feet"),
  31169. default: true
  31170. },
  31171. ]
  31172. ))
  31173. characterMakers.push(() => makeCharacter(
  31174. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31175. {
  31176. front: {
  31177. height: math.unit(6, "feet"),
  31178. weight: math.unit(300, "lb"),
  31179. name: "Front",
  31180. image: {
  31181. source: "./media/characters/tanio/front.svg",
  31182. extra: 711/673,
  31183. bottom: 25/736
  31184. }
  31185. },
  31186. },
  31187. [
  31188. {
  31189. name: "Normal",
  31190. height: math.unit(6, "feet"),
  31191. default: true
  31192. },
  31193. ]
  31194. ))
  31195. characterMakers.push(() => makeCharacter(
  31196. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31197. {
  31198. front: {
  31199. height: math.unit(3, "inches"),
  31200. name: "Front",
  31201. image: {
  31202. source: "./media/characters/noboru/front.svg",
  31203. extra: 1039/932,
  31204. bottom: 18/1057
  31205. }
  31206. },
  31207. },
  31208. [
  31209. {
  31210. name: "Micro",
  31211. height: math.unit(3, "inches"),
  31212. default: true
  31213. },
  31214. ]
  31215. ))
  31216. characterMakers.push(() => makeCharacter(
  31217. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31218. {
  31219. front: {
  31220. height: math.unit(1.85, "meters"),
  31221. weight: math.unit(80, "kg"),
  31222. name: "Front",
  31223. image: {
  31224. source: "./media/characters/daniel-barrett/front.svg",
  31225. extra: 355/337,
  31226. bottom: 9/364
  31227. }
  31228. },
  31229. },
  31230. [
  31231. {
  31232. name: "Pico",
  31233. height: math.unit(0.0433, "mm")
  31234. },
  31235. {
  31236. name: "Nano",
  31237. height: math.unit(1.5, "mm")
  31238. },
  31239. {
  31240. name: "Micro",
  31241. height: math.unit(5.3, "cm"),
  31242. default: true
  31243. },
  31244. {
  31245. name: "Normal",
  31246. height: math.unit(1.85, "meters")
  31247. },
  31248. {
  31249. name: "Macro",
  31250. height: math.unit(64.7, "meters")
  31251. },
  31252. {
  31253. name: "Megamacro",
  31254. height: math.unit(2.26, "km")
  31255. },
  31256. {
  31257. name: "Gigamacro",
  31258. height: math.unit(79, "km")
  31259. },
  31260. {
  31261. name: "Teramacro",
  31262. height: math.unit(2765, "km")
  31263. },
  31264. {
  31265. name: "Petamacro",
  31266. height: math.unit(96678, "km")
  31267. },
  31268. ]
  31269. ))
  31270. characterMakers.push(() => makeCharacter(
  31271. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31272. {
  31273. front: {
  31274. height: math.unit(30, "meters"),
  31275. weight: math.unit(400, "tons"),
  31276. name: "Front",
  31277. image: {
  31278. source: "./media/characters/zeel/front.svg",
  31279. extra: 2599/2599,
  31280. bottom: 226/2825
  31281. }
  31282. },
  31283. },
  31284. [
  31285. {
  31286. name: "Macro",
  31287. height: math.unit(30, "meters"),
  31288. default: true
  31289. },
  31290. ]
  31291. ))
  31292. characterMakers.push(() => makeCharacter(
  31293. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31294. {
  31295. front: {
  31296. height: math.unit(6 + 7/12, "feet"),
  31297. weight: math.unit(210, "lb"),
  31298. name: "Front",
  31299. image: {
  31300. source: "./media/characters/tarn/front.svg",
  31301. extra: 3517/3220,
  31302. bottom: 91/3608
  31303. }
  31304. },
  31305. back: {
  31306. height: math.unit(6 + 7/12, "feet"),
  31307. weight: math.unit(210, "lb"),
  31308. name: "Back",
  31309. image: {
  31310. source: "./media/characters/tarn/back.svg",
  31311. extra: 3566/3241,
  31312. bottom: 34/3600
  31313. }
  31314. },
  31315. dick: {
  31316. height: math.unit(1.65, "feet"),
  31317. name: "Dick",
  31318. image: {
  31319. source: "./media/characters/tarn/dick.svg"
  31320. }
  31321. },
  31322. paw: {
  31323. height: math.unit(1.80, "feet"),
  31324. name: "Paw",
  31325. image: {
  31326. source: "./media/characters/tarn/paw.svg"
  31327. }
  31328. },
  31329. tongue: {
  31330. height: math.unit(0.97, "feet"),
  31331. name: "Tongue",
  31332. image: {
  31333. source: "./media/characters/tarn/tongue.svg"
  31334. }
  31335. },
  31336. },
  31337. [
  31338. {
  31339. name: "Micro",
  31340. height: math.unit(4, "inches")
  31341. },
  31342. {
  31343. name: "Normal",
  31344. height: math.unit(6 + 7/12, "feet"),
  31345. default: true
  31346. },
  31347. {
  31348. name: "Macro",
  31349. height: math.unit(300, "feet")
  31350. },
  31351. ]
  31352. ))
  31353. characterMakers.push(() => makeCharacter(
  31354. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31355. {
  31356. front: {
  31357. height: math.unit(5 + 7/12, "feet"),
  31358. weight: math.unit(80, "kg"),
  31359. name: "Front",
  31360. image: {
  31361. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31362. extra: 3023/2865,
  31363. bottom: 33/3056
  31364. }
  31365. },
  31366. back: {
  31367. height: math.unit(5 + 7/12, "feet"),
  31368. weight: math.unit(80, "kg"),
  31369. name: "Back",
  31370. image: {
  31371. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31372. extra: 3020/2886,
  31373. bottom: 30/3050
  31374. }
  31375. },
  31376. dick: {
  31377. height: math.unit(0.98, "feet"),
  31378. name: "Dick",
  31379. image: {
  31380. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31381. }
  31382. },
  31383. anatomy: {
  31384. height: math.unit(2.86, "feet"),
  31385. name: "Anatomy",
  31386. image: {
  31387. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31388. }
  31389. },
  31390. },
  31391. [
  31392. {
  31393. name: "Really Small",
  31394. height: math.unit(2, "inches")
  31395. },
  31396. {
  31397. name: "Micro",
  31398. height: math.unit(5.583, "inches")
  31399. },
  31400. {
  31401. name: "Normal",
  31402. height: math.unit(5 + 7/12, "feet"),
  31403. default: true
  31404. },
  31405. {
  31406. name: "Macro",
  31407. height: math.unit(67, "feet")
  31408. },
  31409. {
  31410. name: "Megamacro",
  31411. height: math.unit(134, "feet")
  31412. },
  31413. ]
  31414. ))
  31415. characterMakers.push(() => makeCharacter(
  31416. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31417. {
  31418. front: {
  31419. height: math.unit(9, "feet"),
  31420. weight: math.unit(120, "lb"),
  31421. name: "Front",
  31422. image: {
  31423. source: "./media/characters/sally/front.svg",
  31424. extra: 1506/1349,
  31425. bottom: 66/1572
  31426. }
  31427. },
  31428. },
  31429. [
  31430. {
  31431. name: "Normal",
  31432. height: math.unit(9, "feet"),
  31433. default: true
  31434. },
  31435. ]
  31436. ))
  31437. characterMakers.push(() => makeCharacter(
  31438. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31439. {
  31440. front: {
  31441. height: math.unit(8, "feet"),
  31442. weight: math.unit(900, "lb"),
  31443. name: "Front",
  31444. image: {
  31445. source: "./media/characters/owen/front.svg",
  31446. extra: 1761/1657,
  31447. bottom: 74/1835
  31448. }
  31449. },
  31450. side: {
  31451. height: math.unit(8, "feet"),
  31452. weight: math.unit(900, "lb"),
  31453. name: "Side",
  31454. image: {
  31455. source: "./media/characters/owen/side.svg",
  31456. extra: 1797/1734,
  31457. bottom: 30/1827
  31458. }
  31459. },
  31460. back: {
  31461. height: math.unit(8, "feet"),
  31462. weight: math.unit(900, "lb"),
  31463. name: "Back",
  31464. image: {
  31465. source: "./media/characters/owen/back.svg",
  31466. extra: 1796/1706,
  31467. bottom: 59/1855
  31468. }
  31469. },
  31470. maw: {
  31471. height: math.unit(1.76, "feet"),
  31472. name: "Maw",
  31473. image: {
  31474. source: "./media/characters/owen/maw.svg"
  31475. }
  31476. },
  31477. },
  31478. [
  31479. {
  31480. name: "Normal",
  31481. height: math.unit(8, "feet"),
  31482. default: true
  31483. },
  31484. ]
  31485. ))
  31486. characterMakers.push(() => makeCharacter(
  31487. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31488. {
  31489. front: {
  31490. height: math.unit(4, "feet"),
  31491. weight: math.unit(400, "lb"),
  31492. name: "Front",
  31493. image: {
  31494. source: "./media/characters/ryth/front.svg",
  31495. extra: 876/691,
  31496. bottom: 25/901
  31497. }
  31498. },
  31499. goia: {
  31500. height: math.unit(12, "feet"),
  31501. weight: math.unit(10800, "lb"),
  31502. name: "Goia",
  31503. image: {
  31504. source: "./media/characters/ryth/goia.svg",
  31505. extra: 3450/3198,
  31506. bottom: 61/3511
  31507. }
  31508. },
  31509. },
  31510. [
  31511. {
  31512. name: "Normal",
  31513. height: math.unit(4, "feet"),
  31514. default: true
  31515. },
  31516. ]
  31517. ))
  31518. characterMakers.push(() => makeCharacter(
  31519. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31520. {
  31521. front: {
  31522. height: math.unit(7, "feet"),
  31523. weight: math.unit(180, "lb"),
  31524. name: "Front",
  31525. image: {
  31526. source: "./media/characters/necrolance/front.svg",
  31527. extra: 1062/947,
  31528. bottom: 41/1103
  31529. }
  31530. },
  31531. back: {
  31532. height: math.unit(7, "feet"),
  31533. weight: math.unit(180, "lb"),
  31534. name: "Back",
  31535. image: {
  31536. source: "./media/characters/necrolance/back.svg",
  31537. extra: 1045/984,
  31538. bottom: 14/1059
  31539. }
  31540. },
  31541. wing: {
  31542. height: math.unit(2.67, "feet"),
  31543. name: "Wing",
  31544. image: {
  31545. source: "./media/characters/necrolance/wing.svg"
  31546. }
  31547. },
  31548. },
  31549. [
  31550. {
  31551. name: "Normal",
  31552. height: math.unit(7, "feet"),
  31553. default: true
  31554. },
  31555. ]
  31556. ))
  31557. characterMakers.push(() => makeCharacter(
  31558. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31559. {
  31560. front: {
  31561. height: math.unit(76, "meters"),
  31562. weight: math.unit(30000, "tons"),
  31563. name: "Front",
  31564. image: {
  31565. source: "./media/characters/tyler/front.svg",
  31566. extra: 1640/1640,
  31567. bottom: 114/1754
  31568. }
  31569. },
  31570. },
  31571. [
  31572. {
  31573. name: "Macro",
  31574. height: math.unit(76, "meters"),
  31575. default: true
  31576. },
  31577. ]
  31578. ))
  31579. characterMakers.push(() => makeCharacter(
  31580. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31581. {
  31582. front: {
  31583. height: math.unit(4 + 11/12, "feet"),
  31584. weight: math.unit(132, "lb"),
  31585. name: "Front",
  31586. image: {
  31587. source: "./media/characters/icey/front.svg",
  31588. extra: 2750/2550,
  31589. bottom: 33/2783
  31590. }
  31591. },
  31592. back: {
  31593. height: math.unit(4 + 11/12, "feet"),
  31594. weight: math.unit(132, "lb"),
  31595. name: "Back",
  31596. image: {
  31597. source: "./media/characters/icey/back.svg",
  31598. extra: 2624/2481,
  31599. bottom: 35/2659
  31600. }
  31601. },
  31602. },
  31603. [
  31604. {
  31605. name: "Normal",
  31606. height: math.unit(4 + 11/12, "feet"),
  31607. default: true
  31608. },
  31609. ]
  31610. ))
  31611. characterMakers.push(() => makeCharacter(
  31612. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31613. {
  31614. front: {
  31615. height: math.unit(100, "feet"),
  31616. weight: math.unit(0, "lb"),
  31617. name: "Front",
  31618. image: {
  31619. source: "./media/characters/smile/front.svg",
  31620. extra: 2983/2912,
  31621. bottom: 162/3145
  31622. }
  31623. },
  31624. back: {
  31625. height: math.unit(100, "feet"),
  31626. weight: math.unit(0, "lb"),
  31627. name: "Back",
  31628. image: {
  31629. source: "./media/characters/smile/back.svg",
  31630. extra: 3143/3031,
  31631. bottom: 91/3234
  31632. }
  31633. },
  31634. head: {
  31635. height: math.unit(26.3, "feet"),
  31636. weight: math.unit(0, "lb"),
  31637. name: "Head",
  31638. image: {
  31639. source: "./media/characters/smile/head.svg"
  31640. }
  31641. },
  31642. collar: {
  31643. height: math.unit(5.3, "feet"),
  31644. weight: math.unit(0, "lb"),
  31645. name: "Collar",
  31646. image: {
  31647. source: "./media/characters/smile/collar.svg"
  31648. }
  31649. },
  31650. },
  31651. [
  31652. {
  31653. name: "Macro",
  31654. height: math.unit(100, "feet"),
  31655. default: true
  31656. },
  31657. ]
  31658. ))
  31659. characterMakers.push(() => makeCharacter(
  31660. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31661. {
  31662. dragon: {
  31663. height: math.unit(26, "feet"),
  31664. weight: math.unit(36, "tons"),
  31665. name: "Dragon",
  31666. image: {
  31667. source: "./media/characters/arimphae/dragon.svg",
  31668. extra: 1574/983,
  31669. bottom: 357/1931
  31670. }
  31671. },
  31672. drake: {
  31673. height: math.unit(9, "feet"),
  31674. weight: math.unit(1.5, "tons"),
  31675. name: "Drake",
  31676. image: {
  31677. source: "./media/characters/arimphae/drake.svg",
  31678. extra: 1120/925,
  31679. bottom: 435/1555
  31680. }
  31681. },
  31682. },
  31683. [
  31684. {
  31685. name: "Small",
  31686. height: math.unit(26*5/9, "feet")
  31687. },
  31688. {
  31689. name: "Normal",
  31690. height: math.unit(26, "feet"),
  31691. default: true
  31692. },
  31693. ]
  31694. ))
  31695. characterMakers.push(() => makeCharacter(
  31696. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31697. {
  31698. front: {
  31699. height: math.unit(8 + 9/12, "feet"),
  31700. name: "Front",
  31701. image: {
  31702. source: "./media/characters/xander/front.svg",
  31703. extra: 848/673,
  31704. bottom: 62/910
  31705. }
  31706. },
  31707. },
  31708. [
  31709. {
  31710. name: "Normal",
  31711. height: math.unit(8 + 9/12, "feet"),
  31712. default: true
  31713. },
  31714. {
  31715. name: "Gaze Grabber",
  31716. height: math.unit(13 + 8/12, "feet")
  31717. },
  31718. {
  31719. name: "Jaw Dropper",
  31720. height: math.unit(27, "feet")
  31721. },
  31722. {
  31723. name: "Show Stopper",
  31724. height: math.unit(136, "feet")
  31725. },
  31726. {
  31727. name: "Superstar",
  31728. height: math.unit(1.9e6, "miles")
  31729. },
  31730. ]
  31731. ))
  31732. characterMakers.push(() => makeCharacter(
  31733. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31734. {
  31735. side: {
  31736. height: math.unit(2100, "feet"),
  31737. name: "Side",
  31738. image: {
  31739. source: "./media/characters/osiris/side.svg",
  31740. extra: 1105/939,
  31741. bottom: 167/1272
  31742. }
  31743. },
  31744. },
  31745. [
  31746. {
  31747. name: "Macro",
  31748. height: math.unit(2100, "feet"),
  31749. default: true
  31750. },
  31751. ]
  31752. ))
  31753. characterMakers.push(() => makeCharacter(
  31754. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31755. {
  31756. front: {
  31757. height: math.unit(6 + 8/12, "feet"),
  31758. weight: math.unit(225, "lb"),
  31759. name: "Front",
  31760. image: {
  31761. source: "./media/characters/rhys-londe/front.svg",
  31762. extra: 2258/2141,
  31763. bottom: 188/2446
  31764. }
  31765. },
  31766. back: {
  31767. height: math.unit(6 + 8/12, "feet"),
  31768. weight: math.unit(225, "lb"),
  31769. name: "Back",
  31770. image: {
  31771. source: "./media/characters/rhys-londe/back.svg",
  31772. extra: 2237/2137,
  31773. bottom: 63/2300
  31774. }
  31775. },
  31776. frontNsfw: {
  31777. height: math.unit(6 + 8/12, "feet"),
  31778. weight: math.unit(225, "lb"),
  31779. name: "Front (NSFW)",
  31780. image: {
  31781. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31782. extra: 2258/2141,
  31783. bottom: 188/2446
  31784. }
  31785. },
  31786. backNsfw: {
  31787. height: math.unit(6 + 8/12, "feet"),
  31788. weight: math.unit(225, "lb"),
  31789. name: "Back (NSFW)",
  31790. image: {
  31791. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31792. extra: 2237/2137,
  31793. bottom: 63/2300
  31794. }
  31795. },
  31796. dick: {
  31797. height: math.unit(30, "inches"),
  31798. name: "Dick",
  31799. image: {
  31800. source: "./media/characters/rhys-londe/dick.svg"
  31801. }
  31802. },
  31803. maw: {
  31804. height: math.unit(1.6, "feet"),
  31805. name: "Maw",
  31806. image: {
  31807. source: "./media/characters/rhys-londe/maw.svg"
  31808. }
  31809. },
  31810. },
  31811. [
  31812. {
  31813. name: "Normal",
  31814. height: math.unit(6 + 8/12, "feet"),
  31815. default: true
  31816. },
  31817. ]
  31818. ))
  31819. characterMakers.push(() => makeCharacter(
  31820. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31821. {
  31822. front: {
  31823. height: math.unit(3 + 10/12, "feet"),
  31824. weight: math.unit(90, "lb"),
  31825. name: "Front",
  31826. image: {
  31827. source: "./media/characters/taivas-ensim/front.svg",
  31828. extra: 1327/1216,
  31829. bottom: 96/1423
  31830. }
  31831. },
  31832. back: {
  31833. height: math.unit(3 + 10/12, "feet"),
  31834. weight: math.unit(90, "lb"),
  31835. name: "Back",
  31836. image: {
  31837. source: "./media/characters/taivas-ensim/back.svg",
  31838. extra: 1355/1247,
  31839. bottom: 11/1366
  31840. }
  31841. },
  31842. frontNsfw: {
  31843. height: math.unit(3 + 10/12, "feet"),
  31844. weight: math.unit(90, "lb"),
  31845. name: "Front (NSFW)",
  31846. image: {
  31847. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31848. extra: 1327/1216,
  31849. bottom: 96/1423
  31850. }
  31851. },
  31852. backNsfw: {
  31853. height: math.unit(3 + 10/12, "feet"),
  31854. weight: math.unit(90, "lb"),
  31855. name: "Back (NSFW)",
  31856. image: {
  31857. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31858. extra: 1355/1247,
  31859. bottom: 11/1366
  31860. }
  31861. },
  31862. },
  31863. [
  31864. {
  31865. name: "Normal",
  31866. height: math.unit(3 + 10/12, "feet"),
  31867. default: true
  31868. },
  31869. ]
  31870. ))
  31871. characterMakers.push(() => makeCharacter(
  31872. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31873. {
  31874. front: {
  31875. height: math.unit(9 + 6/12, "feet"),
  31876. weight: math.unit(940, "lb"),
  31877. name: "Front",
  31878. image: {
  31879. source: "./media/characters/byliss/front.svg",
  31880. extra: 1327/1290,
  31881. bottom: 82/1409
  31882. }
  31883. },
  31884. back: {
  31885. height: math.unit(9 + 6/12, "feet"),
  31886. weight: math.unit(940, "lb"),
  31887. name: "Back",
  31888. image: {
  31889. source: "./media/characters/byliss/back.svg",
  31890. extra: 1376/1349,
  31891. bottom: 9/1385
  31892. }
  31893. },
  31894. frontNsfw: {
  31895. height: math.unit(9 + 6/12, "feet"),
  31896. weight: math.unit(940, "lb"),
  31897. name: "Front (NSFW)",
  31898. image: {
  31899. source: "./media/characters/byliss/front-nsfw.svg",
  31900. extra: 1327/1290,
  31901. bottom: 82/1409
  31902. }
  31903. },
  31904. backNsfw: {
  31905. height: math.unit(9 + 6/12, "feet"),
  31906. weight: math.unit(940, "lb"),
  31907. name: "Back (NSFW)",
  31908. image: {
  31909. source: "./media/characters/byliss/back-nsfw.svg",
  31910. extra: 1376/1349,
  31911. bottom: 9/1385
  31912. }
  31913. },
  31914. },
  31915. [
  31916. {
  31917. name: "Normal",
  31918. height: math.unit(9 + 6/12, "feet"),
  31919. default: true
  31920. },
  31921. ]
  31922. ))
  31923. characterMakers.push(() => makeCharacter(
  31924. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31925. {
  31926. front: {
  31927. height: math.unit(5 + 2/12, "feet"),
  31928. weight: math.unit(200, "lb"),
  31929. name: "Front",
  31930. image: {
  31931. source: "./media/characters/noraly/front.svg",
  31932. extra: 4985/4773,
  31933. bottom: 150/5135
  31934. }
  31935. },
  31936. full: {
  31937. height: math.unit(5 + 2/12, "feet"),
  31938. weight: math.unit(164, "lb"),
  31939. name: "Full",
  31940. image: {
  31941. source: "./media/characters/noraly/full.svg",
  31942. extra: 1114/1059,
  31943. bottom: 35/1149
  31944. }
  31945. },
  31946. fuller: {
  31947. height: math.unit(5 + 2/12, "feet"),
  31948. weight: math.unit(230, "lb"),
  31949. name: "Fuller",
  31950. image: {
  31951. source: "./media/characters/noraly/fuller.svg",
  31952. extra: 1114/1059,
  31953. bottom: 35/1149
  31954. }
  31955. },
  31956. fullest: {
  31957. height: math.unit(5 + 2/12, "feet"),
  31958. weight: math.unit(300, "lb"),
  31959. name: "Fullest",
  31960. image: {
  31961. source: "./media/characters/noraly/fullest.svg",
  31962. extra: 1114/1059,
  31963. bottom: 35/1149
  31964. }
  31965. },
  31966. },
  31967. [
  31968. {
  31969. name: "Normal",
  31970. height: math.unit(5 + 2/12, "feet"),
  31971. default: true
  31972. },
  31973. ]
  31974. ))
  31975. characterMakers.push(() => makeCharacter(
  31976. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31977. {
  31978. front: {
  31979. height: math.unit(5 + 2/12, "feet"),
  31980. weight: math.unit(210, "lb"),
  31981. name: "Front",
  31982. image: {
  31983. source: "./media/characters/pera/front.svg",
  31984. extra: 1560/1531,
  31985. bottom: 165/1725
  31986. }
  31987. },
  31988. back: {
  31989. height: math.unit(5 + 2/12, "feet"),
  31990. weight: math.unit(210, "lb"),
  31991. name: "Back",
  31992. image: {
  31993. source: "./media/characters/pera/back.svg",
  31994. extra: 1523/1493,
  31995. bottom: 152/1675
  31996. }
  31997. },
  31998. dick: {
  31999. height: math.unit(2.4, "feet"),
  32000. name: "Dick",
  32001. image: {
  32002. source: "./media/characters/pera/dick.svg"
  32003. }
  32004. },
  32005. },
  32006. [
  32007. {
  32008. name: "Normal",
  32009. height: math.unit(5 + 2/12, "feet"),
  32010. default: true
  32011. },
  32012. ]
  32013. ))
  32014. characterMakers.push(() => makeCharacter(
  32015. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32016. {
  32017. front: {
  32018. height: math.unit(12, "feet"),
  32019. weight: math.unit(3200, "lb"),
  32020. name: "Front",
  32021. image: {
  32022. source: "./media/characters/julian/front.svg",
  32023. extra: 2962/2701,
  32024. bottom: 184/3146
  32025. }
  32026. },
  32027. maw: {
  32028. height: math.unit(5.35, "feet"),
  32029. name: "Maw",
  32030. image: {
  32031. source: "./media/characters/julian/maw.svg"
  32032. }
  32033. },
  32034. paw: {
  32035. height: math.unit(3.07, "feet"),
  32036. name: "Paw",
  32037. image: {
  32038. source: "./media/characters/julian/paw.svg"
  32039. }
  32040. },
  32041. },
  32042. [
  32043. {
  32044. name: "Default",
  32045. height: math.unit(12, "feet"),
  32046. default: true
  32047. },
  32048. {
  32049. name: "Big",
  32050. height: math.unit(50, "feet")
  32051. },
  32052. {
  32053. name: "Really Big",
  32054. height: math.unit(1, "mile")
  32055. },
  32056. {
  32057. name: "Extremely Big",
  32058. height: math.unit(100, "miles")
  32059. },
  32060. {
  32061. name: "Planet Hugger",
  32062. height: math.unit(200, "megameters")
  32063. },
  32064. {
  32065. name: "Unreasonably Big",
  32066. height: math.unit(1e300, "meters")
  32067. },
  32068. ]
  32069. ))
  32070. characterMakers.push(() => makeCharacter(
  32071. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32072. {
  32073. solgooleo: {
  32074. height: math.unit(4, "meters"),
  32075. weight: math.unit(6000*1.5, "kg"),
  32076. volume: math.unit(6000, "liters"),
  32077. name: "Solgooleo",
  32078. image: {
  32079. source: "./media/characters/pi/solgooleo.svg",
  32080. extra: 388/331,
  32081. bottom: 29/417
  32082. }
  32083. },
  32084. },
  32085. [
  32086. {
  32087. name: "Normal",
  32088. height: math.unit(4, "meters"),
  32089. default: true
  32090. },
  32091. ]
  32092. ))
  32093. characterMakers.push(() => makeCharacter(
  32094. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32095. {
  32096. front: {
  32097. height: math.unit(8 + 2/12, "feet"),
  32098. weight: math.unit(4, "tons"),
  32099. name: "Front",
  32100. image: {
  32101. source: "./media/characters/shaun/front.svg",
  32102. extra: 1550/1505,
  32103. bottom: 353/1903
  32104. }
  32105. },
  32106. },
  32107. [
  32108. {
  32109. name: "Lorg",
  32110. height: math.unit(8 + 2/12, "feet"),
  32111. default: true
  32112. },
  32113. ]
  32114. ))
  32115. characterMakers.push(() => makeCharacter(
  32116. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32117. {
  32118. front: {
  32119. height: math.unit(7, "feet"),
  32120. name: "Front",
  32121. image: {
  32122. source: "./media/characters/sini/front.svg",
  32123. extra: 726/678,
  32124. bottom: 35/761
  32125. }
  32126. },
  32127. back: {
  32128. height: math.unit(7, "feet"),
  32129. name: "Back",
  32130. image: {
  32131. source: "./media/characters/sini/back.svg",
  32132. extra: 743/701,
  32133. bottom: 12/755
  32134. }
  32135. },
  32136. mawAnthro: {
  32137. height: math.unit(2.14, "feet"),
  32138. name: "Maw (Anthro)",
  32139. image: {
  32140. source: "./media/characters/sini/maw-anthro.svg"
  32141. }
  32142. },
  32143. dick: {
  32144. height: math.unit(1.45, "feet"),
  32145. name: "Dick (Anthro)",
  32146. image: {
  32147. source: "./media/characters/sini/dick-anthro.svg"
  32148. }
  32149. },
  32150. feral: {
  32151. height: math.unit(13, "feet"),
  32152. name: "Feral",
  32153. image: {
  32154. source: "./media/characters/sini/feral.svg",
  32155. extra: 814/605,
  32156. bottom: 11/825
  32157. }
  32158. },
  32159. mawFeral: {
  32160. height: math.unit(4.6, "feet"),
  32161. name: "Maw-feral",
  32162. image: {
  32163. source: "./media/characters/sini/maw-feral.svg"
  32164. }
  32165. },
  32166. footFeral: {
  32167. height: math.unit(4.2, "feet"),
  32168. name: "Foot-feral",
  32169. image: {
  32170. source: "./media/characters/sini/foot-feral.svg"
  32171. }
  32172. },
  32173. },
  32174. [
  32175. {
  32176. name: "Normal",
  32177. height: math.unit(7, "feet"),
  32178. default: true
  32179. },
  32180. ]
  32181. ))
  32182. characterMakers.push(() => makeCharacter(
  32183. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32184. {
  32185. side: {
  32186. height: math.unit(13, "meters"),
  32187. weight: math.unit(9072, "kg"),
  32188. name: "Side",
  32189. image: {
  32190. source: "./media/characters/raylldo/side.svg",
  32191. extra: 403/344,
  32192. bottom: 42/445
  32193. }
  32194. },
  32195. leaping: {
  32196. height: math.unit(12.3, "meters"),
  32197. weight: math.unit(9072, "kg"),
  32198. name: "Leaping",
  32199. image: {
  32200. source: "./media/characters/raylldo/leaping.svg",
  32201. extra: 470/249,
  32202. bottom: 13/483
  32203. }
  32204. },
  32205. flying: {
  32206. height: math.unit(18, "meters"),
  32207. weight: math.unit(9072, "kg"),
  32208. name: "Flying",
  32209. image: {
  32210. source: "./media/characters/raylldo/flying.svg"
  32211. }
  32212. },
  32213. head: {
  32214. height: math.unit(5.85, "meters"),
  32215. name: "Head",
  32216. image: {
  32217. source: "./media/characters/raylldo/head.svg"
  32218. }
  32219. },
  32220. maw: {
  32221. height: math.unit(5.32, "meters"),
  32222. name: "Maw",
  32223. image: {
  32224. source: "./media/characters/raylldo/maw.svg"
  32225. }
  32226. },
  32227. eye: {
  32228. height: math.unit(0.54, "meters"),
  32229. name: "Eye",
  32230. image: {
  32231. source: "./media/characters/raylldo/eye.svg"
  32232. }
  32233. },
  32234. },
  32235. [
  32236. {
  32237. name: "Normal",
  32238. height: math.unit(13, "meters"),
  32239. default: true
  32240. },
  32241. ]
  32242. ))
  32243. characterMakers.push(() => makeCharacter(
  32244. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32245. {
  32246. anthroFront: {
  32247. height: math.unit(9, "feet"),
  32248. weight: math.unit(600, "lb"),
  32249. name: "Anthro (Front)",
  32250. image: {
  32251. source: "./media/characters/glint/anthro-front.svg",
  32252. extra: 1097/1018,
  32253. bottom: 28/1125
  32254. }
  32255. },
  32256. anthroBack: {
  32257. height: math.unit(9, "feet"),
  32258. weight: math.unit(600, "lb"),
  32259. name: "Anthro (Back)",
  32260. image: {
  32261. source: "./media/characters/glint/anthro-back.svg",
  32262. extra: 1154/997,
  32263. bottom: 36/1190
  32264. }
  32265. },
  32266. feral: {
  32267. height: math.unit(11, "feet"),
  32268. weight: math.unit(50000, "lb"),
  32269. name: "Feral",
  32270. image: {
  32271. source: "./media/characters/glint/feral.svg",
  32272. extra: 3035/1585,
  32273. bottom: 1169/4204
  32274. }
  32275. },
  32276. dickAnthro: {
  32277. height: math.unit(0.7, "meters"),
  32278. name: "Dick (Anthro)",
  32279. image: {
  32280. source: "./media/characters/glint/dick-anthro.svg"
  32281. }
  32282. },
  32283. dickFeral: {
  32284. height: math.unit(2.65, "meters"),
  32285. name: "Dick (Feral)",
  32286. image: {
  32287. source: "./media/characters/glint/dick-feral.svg"
  32288. }
  32289. },
  32290. slitHidden: {
  32291. height: math.unit(5.85, "meters"),
  32292. name: "Slit (Hidden)",
  32293. image: {
  32294. source: "./media/characters/glint/slit-hidden.svg"
  32295. }
  32296. },
  32297. slitErect: {
  32298. height: math.unit(5.85, "meters"),
  32299. name: "Slit (Erect)",
  32300. image: {
  32301. source: "./media/characters/glint/slit-erect.svg"
  32302. }
  32303. },
  32304. mawAnthro: {
  32305. height: math.unit(0.63, "meters"),
  32306. name: "Maw (Anthro)",
  32307. image: {
  32308. source: "./media/characters/glint/maw.svg"
  32309. }
  32310. },
  32311. mawFeral: {
  32312. height: math.unit(2.89, "meters"),
  32313. name: "Maw (Feral)",
  32314. image: {
  32315. source: "./media/characters/glint/maw.svg"
  32316. }
  32317. },
  32318. },
  32319. [
  32320. {
  32321. name: "Normal",
  32322. height: math.unit(9, "feet"),
  32323. default: true
  32324. },
  32325. ]
  32326. ))
  32327. characterMakers.push(() => makeCharacter(
  32328. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32329. {
  32330. side: {
  32331. height: math.unit(15, "feet"),
  32332. weight: math.unit(5000, "kg"),
  32333. name: "Side",
  32334. image: {
  32335. source: "./media/characters/kairne/side.svg",
  32336. extra: 979/811,
  32337. bottom: 13/992
  32338. }
  32339. },
  32340. front: {
  32341. height: math.unit(15, "feet"),
  32342. weight: math.unit(5000, "kg"),
  32343. name: "Front",
  32344. image: {
  32345. source: "./media/characters/kairne/front.svg",
  32346. extra: 908/814,
  32347. bottom: 26/934
  32348. }
  32349. },
  32350. sideNsfw: {
  32351. height: math.unit(15, "feet"),
  32352. weight: math.unit(5000, "kg"),
  32353. name: "Side (NSFW)",
  32354. image: {
  32355. source: "./media/characters/kairne/side-nsfw.svg",
  32356. extra: 979/811,
  32357. bottom: 13/992
  32358. }
  32359. },
  32360. frontNsfw: {
  32361. height: math.unit(15, "feet"),
  32362. weight: math.unit(5000, "kg"),
  32363. name: "Front (NSFW)",
  32364. image: {
  32365. source: "./media/characters/kairne/front-nsfw.svg",
  32366. extra: 908/814,
  32367. bottom: 26/934
  32368. }
  32369. },
  32370. dickCaged: {
  32371. height: math.unit(0.65, "meters"),
  32372. name: "Dick-caged",
  32373. image: {
  32374. source: "./media/characters/kairne/dick-caged.svg"
  32375. }
  32376. },
  32377. dick: {
  32378. height: math.unit(0.79, "meters"),
  32379. name: "Dick",
  32380. image: {
  32381. source: "./media/characters/kairne/dick.svg"
  32382. }
  32383. },
  32384. genitals: {
  32385. height: math.unit(1.29, "meters"),
  32386. name: "Genitals",
  32387. image: {
  32388. source: "./media/characters/kairne/genitals.svg"
  32389. }
  32390. },
  32391. maw: {
  32392. height: math.unit(1.73, "meters"),
  32393. name: "Maw",
  32394. image: {
  32395. source: "./media/characters/kairne/maw.svg"
  32396. }
  32397. },
  32398. },
  32399. [
  32400. {
  32401. name: "Normal",
  32402. height: math.unit(15, "feet"),
  32403. default: true
  32404. },
  32405. ]
  32406. ))
  32407. characterMakers.push(() => makeCharacter(
  32408. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32409. {
  32410. front: {
  32411. height: math.unit(5 + 8/12, "feet"),
  32412. weight: math.unit(139, "lb"),
  32413. name: "Front",
  32414. image: {
  32415. source: "./media/characters/biscuit-jackal/front.svg",
  32416. extra: 2106/1961,
  32417. bottom: 58/2164
  32418. }
  32419. },
  32420. back: {
  32421. height: math.unit(5 + 8/12, "feet"),
  32422. weight: math.unit(139, "lb"),
  32423. name: "Back",
  32424. image: {
  32425. source: "./media/characters/biscuit-jackal/back.svg",
  32426. extra: 2132/1976,
  32427. bottom: 57/2189
  32428. }
  32429. },
  32430. werejackal: {
  32431. height: math.unit(6 + 3/12, "feet"),
  32432. weight: math.unit(188, "lb"),
  32433. name: "Werejackal",
  32434. image: {
  32435. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32436. extra: 2373/2178,
  32437. bottom: 53/2426
  32438. }
  32439. },
  32440. },
  32441. [
  32442. {
  32443. name: "Normal",
  32444. height: math.unit(5 + 8/12, "feet"),
  32445. default: true
  32446. },
  32447. ]
  32448. ))
  32449. characterMakers.push(() => makeCharacter(
  32450. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32451. {
  32452. front: {
  32453. height: math.unit(140, "cm"),
  32454. weight: math.unit(45, "kg"),
  32455. name: "Front",
  32456. image: {
  32457. source: "./media/characters/tayra-white/front.svg",
  32458. extra: 2229/2192,
  32459. bottom: 75/2304
  32460. }
  32461. },
  32462. },
  32463. [
  32464. {
  32465. name: "Normal",
  32466. height: math.unit(140, "cm"),
  32467. default: true
  32468. },
  32469. ]
  32470. ))
  32471. characterMakers.push(() => makeCharacter(
  32472. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32473. {
  32474. front: {
  32475. height: math.unit(4 + 5/12, "feet"),
  32476. name: "Front",
  32477. image: {
  32478. source: "./media/characters/scoop/front.svg",
  32479. extra: 1257/1136,
  32480. bottom: 69/1326
  32481. }
  32482. },
  32483. back: {
  32484. height: math.unit(4 + 5/12, "feet"),
  32485. name: "Back",
  32486. image: {
  32487. source: "./media/characters/scoop/back.svg",
  32488. extra: 1321/1152,
  32489. bottom: 32/1353
  32490. }
  32491. },
  32492. maw: {
  32493. height: math.unit(0.68, "feet"),
  32494. name: "Maw",
  32495. image: {
  32496. source: "./media/characters/scoop/maw.svg"
  32497. }
  32498. },
  32499. },
  32500. [
  32501. {
  32502. name: "Really Small",
  32503. height: math.unit(1, "mm")
  32504. },
  32505. {
  32506. name: "Micro",
  32507. height: math.unit(1, "inch")
  32508. },
  32509. {
  32510. name: "Normal",
  32511. height: math.unit(4 + 5/12, "feet"),
  32512. default: true
  32513. },
  32514. {
  32515. name: "Macro",
  32516. height: math.unit(200, "feet")
  32517. },
  32518. {
  32519. name: "Megamacro",
  32520. height: math.unit(3240, "feet")
  32521. },
  32522. {
  32523. name: "Teramacro",
  32524. height: math.unit(2500, "miles")
  32525. },
  32526. ]
  32527. ))
  32528. characterMakers.push(() => makeCharacter(
  32529. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32530. {
  32531. front: {
  32532. height: math.unit(15 + 7/12, "feet"),
  32533. name: "Front",
  32534. image: {
  32535. source: "./media/characters/saphinara/front.svg",
  32536. extra: 604/546,
  32537. bottom: 19/623
  32538. }
  32539. },
  32540. side: {
  32541. height: math.unit(15 + 7/12, "feet"),
  32542. name: "Side",
  32543. image: {
  32544. source: "./media/characters/saphinara/side.svg",
  32545. extra: 605/547,
  32546. bottom: 6/611
  32547. }
  32548. },
  32549. back: {
  32550. height: math.unit(15 + 7/12, "feet"),
  32551. name: "Back",
  32552. image: {
  32553. source: "./media/characters/saphinara/back.svg",
  32554. extra: 591/531,
  32555. bottom: 13/604
  32556. }
  32557. },
  32558. frontTail: {
  32559. height: math.unit(15 + 7/12, "feet"),
  32560. name: "Front (Full Tail)",
  32561. image: {
  32562. source: "./media/characters/saphinara/front-tail.svg",
  32563. extra: 748/547,
  32564. bottom: 66/814
  32565. }
  32566. },
  32567. },
  32568. [
  32569. {
  32570. name: "Normal",
  32571. height: math.unit(15 + 7/12, "feet"),
  32572. default: true
  32573. },
  32574. {
  32575. name: "Angry",
  32576. height: math.unit(30 + 6/12, "feet")
  32577. },
  32578. {
  32579. name: "Enraged",
  32580. height: math.unit(102 + 1/12, "feet")
  32581. },
  32582. ]
  32583. ))
  32584. characterMakers.push(() => makeCharacter(
  32585. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32586. {
  32587. front: {
  32588. height: math.unit(6 + 8/12, "feet"),
  32589. weight: math.unit(300, "lb"),
  32590. name: "Front",
  32591. image: {
  32592. source: "./media/characters/jrain/front.svg",
  32593. extra: 3039/2865,
  32594. bottom: 399/3438
  32595. }
  32596. },
  32597. back: {
  32598. height: math.unit(6 + 8/12, "feet"),
  32599. weight: math.unit(300, "lb"),
  32600. name: "Back",
  32601. image: {
  32602. source: "./media/characters/jrain/back.svg",
  32603. extra: 3089/2938,
  32604. bottom: 172/3261
  32605. }
  32606. },
  32607. head: {
  32608. height: math.unit(2.14, "feet"),
  32609. name: "Head",
  32610. image: {
  32611. source: "./media/characters/jrain/head.svg"
  32612. }
  32613. },
  32614. maw: {
  32615. height: math.unit(1.77, "feet"),
  32616. name: "Maw",
  32617. image: {
  32618. source: "./media/characters/jrain/maw.svg"
  32619. }
  32620. },
  32621. leftHand: {
  32622. height: math.unit(1.1, "feet"),
  32623. name: "Left Hand",
  32624. image: {
  32625. source: "./media/characters/jrain/left-hand.svg"
  32626. }
  32627. },
  32628. rightHand: {
  32629. height: math.unit(1.1, "feet"),
  32630. name: "Right Hand",
  32631. image: {
  32632. source: "./media/characters/jrain/right-hand.svg"
  32633. }
  32634. },
  32635. eye: {
  32636. height: math.unit(0.35, "feet"),
  32637. name: "Eye",
  32638. image: {
  32639. source: "./media/characters/jrain/eye.svg"
  32640. }
  32641. },
  32642. },
  32643. [
  32644. {
  32645. name: "Normal",
  32646. height: math.unit(6 + 8/12, "feet"),
  32647. default: true
  32648. },
  32649. {
  32650. name: "Casually Large",
  32651. height: math.unit(25, "feet")
  32652. },
  32653. {
  32654. name: "Giant",
  32655. height: math.unit(100, "feet")
  32656. },
  32657. {
  32658. name: "Kaiju",
  32659. height: math.unit(300, "feet")
  32660. },
  32661. ]
  32662. ))
  32663. characterMakers.push(() => makeCharacter(
  32664. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32665. {
  32666. dragon: {
  32667. height: math.unit(5, "meters"),
  32668. name: "Dragon",
  32669. image: {
  32670. source: "./media/characters/sabrina/dragon.svg",
  32671. extra: 3670 / 2365,
  32672. bottom: 333 / 4003
  32673. }
  32674. },
  32675. gryphon: {
  32676. height: math.unit(3, "meters"),
  32677. name: "Gryphon",
  32678. image: {
  32679. source: "./media/characters/sabrina/gryphon.svg",
  32680. extra: 1576 / 945,
  32681. bottom: 71 / 1647
  32682. }
  32683. },
  32684. snake: {
  32685. height: math.unit(12, "meters"),
  32686. name: "Snake",
  32687. image: {
  32688. source: "./media/characters/sabrina/snake.svg",
  32689. extra: 1758 / 1320,
  32690. bottom: 186 / 1944
  32691. }
  32692. },
  32693. collar: {
  32694. height: math.unit(1.86, "meters"),
  32695. name: "Collar",
  32696. image: {
  32697. source: "./media/characters/sabrina/collar.svg"
  32698. }
  32699. },
  32700. eye: {
  32701. height: math.unit(0.53, "meters"),
  32702. name: "Eye",
  32703. image: {
  32704. source: "./media/characters/sabrina/eye.svg"
  32705. }
  32706. },
  32707. foot: {
  32708. height: math.unit(1.86, "meters"),
  32709. name: "Foot",
  32710. image: {
  32711. source: "./media/characters/sabrina/foot.svg"
  32712. }
  32713. },
  32714. hand: {
  32715. height: math.unit(1.32, "meters"),
  32716. name: "Hand",
  32717. image: {
  32718. source: "./media/characters/sabrina/hand.svg"
  32719. }
  32720. },
  32721. head: {
  32722. height: math.unit(2.44, "meters"),
  32723. name: "Head",
  32724. image: {
  32725. source: "./media/characters/sabrina/head.svg"
  32726. }
  32727. },
  32728. headAngry: {
  32729. height: math.unit(2.44, "meters"),
  32730. name: "Head (Angry))",
  32731. image: {
  32732. source: "./media/characters/sabrina/head-angry.svg"
  32733. }
  32734. },
  32735. maw: {
  32736. height: math.unit(1.65, "meters"),
  32737. name: "Maw",
  32738. image: {
  32739. source: "./media/characters/sabrina/maw.svg"
  32740. }
  32741. },
  32742. spikes: {
  32743. height: math.unit(1.69, "meters"),
  32744. name: "Spikes",
  32745. image: {
  32746. source: "./media/characters/sabrina/spikes.svg"
  32747. }
  32748. },
  32749. stomach: {
  32750. height: math.unit(1.15, "meters"),
  32751. name: "Stomach",
  32752. image: {
  32753. source: "./media/characters/sabrina/stomach.svg"
  32754. }
  32755. },
  32756. tongue: {
  32757. height: math.unit(1.27, "meters"),
  32758. name: "Tongue",
  32759. image: {
  32760. source: "./media/characters/sabrina/tongue.svg"
  32761. }
  32762. },
  32763. wingDorsal: {
  32764. height: math.unit(4.85, "meters"),
  32765. name: "Wing (Dorsal)",
  32766. image: {
  32767. source: "./media/characters/sabrina/wing-dorsal.svg"
  32768. }
  32769. },
  32770. wingVentral: {
  32771. height: math.unit(4.85, "meters"),
  32772. name: "Wing (Ventral)",
  32773. image: {
  32774. source: "./media/characters/sabrina/wing-ventral.svg"
  32775. }
  32776. },
  32777. },
  32778. [
  32779. {
  32780. name: "Normal",
  32781. height: math.unit(5, "meters"),
  32782. default: true
  32783. },
  32784. ]
  32785. ))
  32786. characterMakers.push(() => makeCharacter(
  32787. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32788. {
  32789. frontMaid: {
  32790. height: math.unit(5 + 5/12, "feet"),
  32791. weight: math.unit(130, "lb"),
  32792. name: "Front (Maid)",
  32793. image: {
  32794. source: "./media/characters/midnight-tales/front-maid.svg",
  32795. extra: 489/454,
  32796. bottom: 61/550
  32797. }
  32798. },
  32799. frontFormal: {
  32800. height: math.unit(5 + 5/12, "feet"),
  32801. weight: math.unit(130, "lb"),
  32802. name: "Front (Formal)",
  32803. image: {
  32804. source: "./media/characters/midnight-tales/front-formal.svg",
  32805. extra: 489/454,
  32806. bottom: 61/550
  32807. }
  32808. },
  32809. back: {
  32810. height: math.unit(5 + 5/12, "feet"),
  32811. weight: math.unit(130, "lb"),
  32812. name: "Back",
  32813. image: {
  32814. source: "./media/characters/midnight-tales/back.svg",
  32815. extra: 498/456,
  32816. bottom: 33/531
  32817. }
  32818. },
  32819. frontBeast: {
  32820. height: math.unit(40, "feet"),
  32821. weight: math.unit(64000, "lb"),
  32822. name: "Front (Beast)",
  32823. image: {
  32824. source: "./media/characters/midnight-tales/front-beast.svg",
  32825. extra: 927/860,
  32826. bottom: 53/980
  32827. }
  32828. },
  32829. backBeast: {
  32830. height: math.unit(40, "feet"),
  32831. weight: math.unit(64000, "lb"),
  32832. name: "Back (Beast)",
  32833. image: {
  32834. source: "./media/characters/midnight-tales/back-beast.svg",
  32835. extra: 929/855,
  32836. bottom: 16/945
  32837. }
  32838. },
  32839. footBeast: {
  32840. height: math.unit(6.7, "feet"),
  32841. name: "Foot (Beast)",
  32842. image: {
  32843. source: "./media/characters/midnight-tales/foot-beast.svg"
  32844. }
  32845. },
  32846. headBeast: {
  32847. height: math.unit(8, "feet"),
  32848. name: "Head (Beast)",
  32849. image: {
  32850. source: "./media/characters/midnight-tales/head-beast.svg"
  32851. }
  32852. },
  32853. },
  32854. [
  32855. {
  32856. name: "Normal",
  32857. height: math.unit(5 + 5 / 12, "feet"),
  32858. default: true
  32859. },
  32860. {
  32861. name: "Macro",
  32862. height: math.unit(25, "feet")
  32863. },
  32864. ]
  32865. ))
  32866. characterMakers.push(() => makeCharacter(
  32867. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32868. {
  32869. front: {
  32870. height: math.unit(5 + 10/12, "feet"),
  32871. name: "Front",
  32872. image: {
  32873. source: "./media/characters/argon/front.svg",
  32874. extra: 2009/1935,
  32875. bottom: 118/2127
  32876. }
  32877. },
  32878. back: {
  32879. height: math.unit(5 + 10/12, "feet"),
  32880. name: "Back",
  32881. image: {
  32882. source: "./media/characters/argon/back.svg",
  32883. extra: 2047/1992,
  32884. bottom: 20/2067
  32885. }
  32886. },
  32887. frontDressed: {
  32888. height: math.unit(5 + 10/12, "feet"),
  32889. name: "Front (Dressed)",
  32890. image: {
  32891. source: "./media/characters/argon/front-dressed.svg",
  32892. extra: 2009/1935,
  32893. bottom: 118/2127
  32894. }
  32895. },
  32896. },
  32897. [
  32898. {
  32899. name: "Normal",
  32900. height: math.unit(5 + 10/12, "feet"),
  32901. default: true
  32902. },
  32903. ]
  32904. ))
  32905. characterMakers.push(() => makeCharacter(
  32906. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32907. {
  32908. front: {
  32909. height: math.unit(8 + 6/12, "feet"),
  32910. weight: math.unit(1150, "lb"),
  32911. name: "Front",
  32912. image: {
  32913. source: "./media/characters/kichi/front.svg",
  32914. extra: 1267/1164,
  32915. bottom: 61/1328
  32916. }
  32917. },
  32918. back: {
  32919. height: math.unit(8 + 6/12, "feet"),
  32920. weight: math.unit(1150, "lb"),
  32921. name: "Back",
  32922. image: {
  32923. source: "./media/characters/kichi/back.svg",
  32924. extra: 1273/1166,
  32925. bottom: 33/1306
  32926. }
  32927. },
  32928. },
  32929. [
  32930. {
  32931. name: "Normal",
  32932. height: math.unit(8 + 6/12, "feet"),
  32933. default: true
  32934. },
  32935. ]
  32936. ))
  32937. characterMakers.push(() => makeCharacter(
  32938. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32939. {
  32940. front: {
  32941. height: math.unit(6, "feet"),
  32942. weight: math.unit(210, "lb"),
  32943. name: "Front",
  32944. image: {
  32945. source: "./media/characters/manetel-greyscale/front.svg",
  32946. extra: 350/312,
  32947. bottom: 8/358
  32948. }
  32949. },
  32950. },
  32951. [
  32952. {
  32953. name: "Micro",
  32954. height: math.unit(2, "inches")
  32955. },
  32956. {
  32957. name: "Normal",
  32958. height: math.unit(6, "feet"),
  32959. default: true
  32960. },
  32961. {
  32962. name: "Minimacro",
  32963. height: math.unit(17, "feet")
  32964. },
  32965. {
  32966. name: "Macro",
  32967. height: math.unit(117, "feet")
  32968. },
  32969. ]
  32970. ))
  32971. characterMakers.push(() => makeCharacter(
  32972. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32973. {
  32974. side: {
  32975. height: math.unit(5 + 1/12, "feet"),
  32976. weight: math.unit(418, "lb"),
  32977. name: "Side",
  32978. image: {
  32979. source: "./media/characters/softpurr/side.svg",
  32980. extra: 1993/1945,
  32981. bottom: 134/2127
  32982. }
  32983. },
  32984. front: {
  32985. height: math.unit(5 + 1/12, "feet"),
  32986. weight: math.unit(418, "lb"),
  32987. name: "Front",
  32988. image: {
  32989. source: "./media/characters/softpurr/front.svg",
  32990. extra: 1950/1856,
  32991. bottom: 174/2124
  32992. }
  32993. },
  32994. paw: {
  32995. height: math.unit(1, "feet"),
  32996. name: "Paw",
  32997. image: {
  32998. source: "./media/characters/softpurr/paw.svg"
  32999. }
  33000. },
  33001. },
  33002. [
  33003. {
  33004. name: "Normal",
  33005. height: math.unit(5 + 1/12, "feet"),
  33006. default: true
  33007. },
  33008. ]
  33009. ))
  33010. characterMakers.push(() => makeCharacter(
  33011. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33012. {
  33013. front: {
  33014. height: math.unit(260, "meters"),
  33015. name: "Front",
  33016. image: {
  33017. source: "./media/characters/anahita/front.svg",
  33018. extra: 665/635,
  33019. bottom: 89/754
  33020. }
  33021. },
  33022. },
  33023. [
  33024. {
  33025. name: "Macro",
  33026. height: math.unit(260, "meters"),
  33027. default: true
  33028. },
  33029. ]
  33030. ))
  33031. characterMakers.push(() => makeCharacter(
  33032. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33033. {
  33034. front: {
  33035. height: math.unit(4 + 10/12, "feet"),
  33036. weight: math.unit(160, "lb"),
  33037. name: "Front",
  33038. image: {
  33039. source: "./media/characters/chip-mouse/front.svg",
  33040. extra: 3528/3408,
  33041. bottom: 0/3528
  33042. }
  33043. },
  33044. frontNsfw: {
  33045. height: math.unit(4 + 10/12, "feet"),
  33046. weight: math.unit(160, "lb"),
  33047. name: "Front (NSFW)",
  33048. image: {
  33049. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33050. extra: 3528/3408,
  33051. bottom: 0/3528
  33052. }
  33053. },
  33054. },
  33055. [
  33056. {
  33057. name: "Normal",
  33058. height: math.unit(4 + 10/12, "feet"),
  33059. default: true
  33060. },
  33061. ]
  33062. ))
  33063. characterMakers.push(() => makeCharacter(
  33064. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33065. {
  33066. side: {
  33067. height: math.unit(10, "feet"),
  33068. weight: math.unit(14000, "lb"),
  33069. name: "Side",
  33070. image: {
  33071. source: "./media/characters/kremm/side.svg",
  33072. extra: 1390/1053,
  33073. bottom: 90/1480
  33074. }
  33075. },
  33076. gut: {
  33077. height: math.unit(5.8, "feet"),
  33078. name: "Gut",
  33079. image: {
  33080. source: "./media/characters/kremm/gut.svg"
  33081. }
  33082. },
  33083. ass: {
  33084. height: math.unit(6.1, "feet"),
  33085. name: "Ass",
  33086. image: {
  33087. source: "./media/characters/kremm/ass.svg"
  33088. }
  33089. },
  33090. jaws: {
  33091. height: math.unit(2.2, "feet"),
  33092. name: "Jaws",
  33093. image: {
  33094. source: "./media/characters/kremm/jaws.svg"
  33095. }
  33096. },
  33097. dick: {
  33098. height: math.unit(4.26, "feet"),
  33099. name: "Dick",
  33100. image: {
  33101. source: "./media/characters/kremm/dick.svg"
  33102. }
  33103. },
  33104. },
  33105. [
  33106. {
  33107. name: "Normal",
  33108. height: math.unit(10, "feet"),
  33109. default: true
  33110. },
  33111. ]
  33112. ))
  33113. characterMakers.push(() => makeCharacter(
  33114. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33115. {
  33116. front: {
  33117. height: math.unit(30, "stories"),
  33118. name: "Front",
  33119. image: {
  33120. source: "./media/characters/kai/front.svg",
  33121. extra: 1892/1718,
  33122. bottom: 162/2054
  33123. }
  33124. },
  33125. },
  33126. [
  33127. {
  33128. name: "Macro",
  33129. height: math.unit(30, "stories"),
  33130. default: true
  33131. },
  33132. ]
  33133. ))
  33134. characterMakers.push(() => makeCharacter(
  33135. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33136. {
  33137. front: {
  33138. height: math.unit(6 + 4/12, "feet"),
  33139. weight: math.unit(145, "lb"),
  33140. name: "Front",
  33141. image: {
  33142. source: "./media/characters/sykes/front.svg",
  33143. extra: 1321 / 1187,
  33144. bottom: 66 / 1387
  33145. }
  33146. },
  33147. back: {
  33148. height: math.unit(6 + 4/12, "feet"),
  33149. weight: math.unit(145, "lb"),
  33150. name: "Back",
  33151. image: {
  33152. source: "./media/characters/sykes/back.svg",
  33153. extra: 1326/1181,
  33154. bottom: 31/1357
  33155. }
  33156. },
  33157. handBack: {
  33158. height: math.unit(0.9, "feet"),
  33159. name: "Hand (Back)",
  33160. image: {
  33161. source: "./media/characters/sykes/hand-back.svg"
  33162. }
  33163. },
  33164. handFront: {
  33165. height: math.unit(0.839, "feet"),
  33166. name: "Hand (Front)",
  33167. image: {
  33168. source: "./media/characters/sykes/hand-front.svg"
  33169. }
  33170. },
  33171. leftFoot: {
  33172. height: math.unit(1.2, "feet"),
  33173. name: "Foot (Left)",
  33174. image: {
  33175. source: "./media/characters/sykes/foot-left.svg"
  33176. }
  33177. },
  33178. rightFoot: {
  33179. height: math.unit(1.2, "feet"),
  33180. name: "Foot (Right)",
  33181. image: {
  33182. source: "./media/characters/sykes/foot-right.svg"
  33183. }
  33184. },
  33185. maw: {
  33186. height: math.unit(1.93, "feet"),
  33187. name: "Maw",
  33188. image: {
  33189. source: "./media/characters/sykes/maw.svg"
  33190. }
  33191. },
  33192. teeth: {
  33193. height: math.unit(0.51, "feet"),
  33194. name: "Teeth",
  33195. image: {
  33196. source: "./media/characters/sykes/teeth.svg"
  33197. }
  33198. },
  33199. tongue: {
  33200. height: math.unit(2.13, "feet"),
  33201. name: "Tongue",
  33202. image: {
  33203. source: "./media/characters/sykes/tongue.svg"
  33204. }
  33205. },
  33206. uvula: {
  33207. height: math.unit(0.16, "feet"),
  33208. name: "Uvula",
  33209. image: {
  33210. source: "./media/characters/sykes/uvula.svg"
  33211. }
  33212. },
  33213. collar: {
  33214. height: math.unit(0.287, "feet"),
  33215. name: "Collar",
  33216. image: {
  33217. source: "./media/characters/sykes/collar.svg"
  33218. }
  33219. },
  33220. },
  33221. [
  33222. {
  33223. name: "Shrunken",
  33224. height: math.unit(5, "inches")
  33225. },
  33226. {
  33227. name: "Normal",
  33228. height: math.unit(6 + 4 / 12, "feet"),
  33229. default: true
  33230. },
  33231. {
  33232. name: "Big",
  33233. height: math.unit(15, "feet")
  33234. },
  33235. ]
  33236. ))
  33237. characterMakers.push(() => makeCharacter(
  33238. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33239. {
  33240. front: {
  33241. height: math.unit(5 + 8/12, "feet"),
  33242. weight: math.unit(190, "lb"),
  33243. name: "Front",
  33244. image: {
  33245. source: "./media/characters/oven-otter/front.svg",
  33246. extra: 1809/1740,
  33247. bottom: 181/1990
  33248. }
  33249. },
  33250. back: {
  33251. height: math.unit(5 + 8/12, "feet"),
  33252. weight: math.unit(190, "lb"),
  33253. name: "Back",
  33254. image: {
  33255. source: "./media/characters/oven-otter/back.svg",
  33256. extra: 1709/1635,
  33257. bottom: 118/1827
  33258. }
  33259. },
  33260. hand: {
  33261. height: math.unit(1.07, "feet"),
  33262. name: "Hand",
  33263. image: {
  33264. source: "./media/characters/oven-otter/hand.svg"
  33265. }
  33266. },
  33267. beans: {
  33268. height: math.unit(1.74, "feet"),
  33269. name: "Beans",
  33270. image: {
  33271. source: "./media/characters/oven-otter/beans.svg"
  33272. }
  33273. },
  33274. },
  33275. [
  33276. {
  33277. name: "Micro",
  33278. height: math.unit(0.5, "inches")
  33279. },
  33280. {
  33281. name: "Normal",
  33282. height: math.unit(5 + 8/12, "feet"),
  33283. default: true
  33284. },
  33285. {
  33286. name: "Macro",
  33287. height: math.unit(250, "feet")
  33288. },
  33289. {
  33290. name: "Really High",
  33291. height: math.unit(420, "feet")
  33292. },
  33293. ]
  33294. ))
  33295. characterMakers.push(() => makeCharacter(
  33296. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33297. {
  33298. front: {
  33299. height: math.unit(5, "meters"),
  33300. weight: math.unit(292000000000000, "kg"),
  33301. name: "Front",
  33302. image: {
  33303. source: "./media/characters/devourer/front.svg",
  33304. extra: 1800/1733,
  33305. bottom: 211/2011
  33306. }
  33307. },
  33308. maw: {
  33309. height: math.unit(1.1, "meter"),
  33310. name: "Maw",
  33311. image: {
  33312. source: "./media/characters/devourer/maw.svg"
  33313. }
  33314. },
  33315. },
  33316. [
  33317. {
  33318. name: "Small",
  33319. height: math.unit(3, "meters")
  33320. },
  33321. {
  33322. name: "Large",
  33323. height: math.unit(5, "meters"),
  33324. default: true
  33325. },
  33326. ]
  33327. ))
  33328. characterMakers.push(() => makeCharacter(
  33329. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33330. {
  33331. front: {
  33332. height: math.unit(6, "feet"),
  33333. weight: math.unit(400, "lb"),
  33334. name: "Front",
  33335. image: {
  33336. source: "./media/characters/ellarby/front.svg",
  33337. extra: 1909/1763,
  33338. bottom: 80/1989
  33339. }
  33340. },
  33341. back: {
  33342. height: math.unit(6, "feet"),
  33343. weight: math.unit(400, "lb"),
  33344. name: "Back",
  33345. image: {
  33346. source: "./media/characters/ellarby/back.svg",
  33347. extra: 1914/1784,
  33348. bottom: 172/2086
  33349. }
  33350. },
  33351. },
  33352. [
  33353. {
  33354. name: "Mischief",
  33355. height: math.unit(18, "inches")
  33356. },
  33357. {
  33358. name: "Trouble",
  33359. height: math.unit(12, "feet")
  33360. },
  33361. {
  33362. name: "Havoc",
  33363. height: math.unit(200, "feet"),
  33364. default: true
  33365. },
  33366. {
  33367. name: "Pandemonium",
  33368. height: math.unit(1, "mile")
  33369. },
  33370. {
  33371. name: "Catastrophe",
  33372. height: math.unit(100, "miles")
  33373. },
  33374. ]
  33375. ))
  33376. characterMakers.push(() => makeCharacter(
  33377. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33378. {
  33379. front: {
  33380. height: math.unit(4.7, "meters"),
  33381. weight: math.unit(6500, "kg"),
  33382. name: "Front",
  33383. image: {
  33384. source: "./media/characters/vex/front.svg",
  33385. extra: 1288/1140,
  33386. bottom: 100/1388
  33387. }
  33388. },
  33389. },
  33390. [
  33391. {
  33392. name: "Normal",
  33393. height: math.unit(4.7, "meters"),
  33394. default: true
  33395. },
  33396. ]
  33397. ))
  33398. characterMakers.push(() => makeCharacter(
  33399. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33400. {
  33401. normal: {
  33402. height: math.unit(6, "feet"),
  33403. weight: math.unit(350, "lb"),
  33404. name: "Normal",
  33405. image: {
  33406. source: "./media/characters/teshy/normal.svg",
  33407. extra: 1795/1735,
  33408. bottom: 16/1811
  33409. }
  33410. },
  33411. monsterFront: {
  33412. height: math.unit(12, "feet"),
  33413. weight: math.unit(4700, "lb"),
  33414. name: "Monster (Front)",
  33415. image: {
  33416. source: "./media/characters/teshy/monster-front.svg",
  33417. extra: 2042/2034,
  33418. bottom: 128/2170
  33419. }
  33420. },
  33421. monsterSide: {
  33422. height: math.unit(12, "feet"),
  33423. weight: math.unit(4700, "lb"),
  33424. name: "Monster (Side)",
  33425. image: {
  33426. source: "./media/characters/teshy/monster-side.svg",
  33427. extra: 2067/2056,
  33428. bottom: 70/2137
  33429. }
  33430. },
  33431. monsterBack: {
  33432. height: math.unit(12, "feet"),
  33433. weight: math.unit(4700, "lb"),
  33434. name: "Monster (Back)",
  33435. image: {
  33436. source: "./media/characters/teshy/monster-back.svg",
  33437. extra: 1921/1914,
  33438. bottom: 171/2092
  33439. }
  33440. },
  33441. },
  33442. [
  33443. {
  33444. name: "Normal",
  33445. height: math.unit(6, "feet"),
  33446. default: true
  33447. },
  33448. ]
  33449. ))
  33450. characterMakers.push(() => makeCharacter(
  33451. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33452. {
  33453. front: {
  33454. height: math.unit(6, "feet"),
  33455. name: "Front",
  33456. image: {
  33457. source: "./media/characters/ramey/front.svg",
  33458. extra: 790/787,
  33459. bottom: 27/817
  33460. }
  33461. },
  33462. },
  33463. [
  33464. {
  33465. name: "Normal",
  33466. height: math.unit(6, "feet"),
  33467. default: true
  33468. },
  33469. ]
  33470. ))
  33471. characterMakers.push(() => makeCharacter(
  33472. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33473. {
  33474. front: {
  33475. height: math.unit(5 + 5/12, "feet"),
  33476. weight: math.unit(120, "lb"),
  33477. name: "Front",
  33478. image: {
  33479. source: "./media/characters/phirae/front.svg",
  33480. extra: 2491/2436,
  33481. bottom: 38/2529
  33482. }
  33483. },
  33484. },
  33485. [
  33486. {
  33487. name: "Normal",
  33488. height: math.unit(5 + 5/12, "feet"),
  33489. default: true
  33490. },
  33491. ]
  33492. ))
  33493. characterMakers.push(() => makeCharacter(
  33494. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33495. {
  33496. front: {
  33497. height: math.unit(6, "feet"),
  33498. weight: math.unit(150, "lb"),
  33499. name: "Front",
  33500. image: {
  33501. source: "./media/characters/stagglas/front.svg",
  33502. extra: 962/882,
  33503. bottom: 53/1015
  33504. }
  33505. },
  33506. },
  33507. [
  33508. {
  33509. name: "Normal",
  33510. height: math.unit(5 + 3/12, "feet"),
  33511. default: true
  33512. },
  33513. ]
  33514. ))
  33515. characterMakers.push(() => makeCharacter(
  33516. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33517. {
  33518. front: {
  33519. height: math.unit(5 + 4/12, "feet"),
  33520. weight: math.unit(145, "lb"),
  33521. name: "Front",
  33522. image: {
  33523. source: "./media/characters/starra/front.svg",
  33524. extra: 1790/1691,
  33525. bottom: 91/1881
  33526. }
  33527. },
  33528. },
  33529. [
  33530. {
  33531. name: "Normal",
  33532. height: math.unit(5 + 4/12, "feet"),
  33533. default: true
  33534. },
  33535. ]
  33536. ))
  33537. characterMakers.push(() => makeCharacter(
  33538. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33539. {
  33540. front: {
  33541. height: math.unit(2.2, "meters"),
  33542. name: "Front",
  33543. image: {
  33544. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33545. extra: 1194/1005,
  33546. bottom: 25/1219
  33547. }
  33548. },
  33549. },
  33550. [
  33551. {
  33552. name: "Normal",
  33553. height: math.unit(2.2, "meters"),
  33554. default: true
  33555. },
  33556. ]
  33557. ))
  33558. characterMakers.push(() => makeCharacter(
  33559. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33560. {
  33561. side: {
  33562. height: math.unit(8 + 2/12, "feet"),
  33563. weight: math.unit(1240, "lb"),
  33564. name: "Side",
  33565. image: {
  33566. source: "./media/characters/mika-valentine/side.svg",
  33567. extra: 2670/2501,
  33568. bottom: 250/2920
  33569. }
  33570. },
  33571. },
  33572. [
  33573. {
  33574. name: "Normal",
  33575. height: math.unit(8 + 2/12, "feet"),
  33576. default: true
  33577. },
  33578. ]
  33579. ))
  33580. characterMakers.push(() => makeCharacter(
  33581. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33582. {
  33583. front: {
  33584. height: math.unit(7 + 2/12, "feet"),
  33585. name: "Front",
  33586. image: {
  33587. source: "./media/characters/xoltol/front.svg",
  33588. extra: 2212/2124,
  33589. bottom: 84/2296
  33590. }
  33591. },
  33592. side: {
  33593. height: math.unit(7 + 2/12, "feet"),
  33594. name: "Side",
  33595. image: {
  33596. source: "./media/characters/xoltol/side.svg",
  33597. extra: 2273/2197,
  33598. bottom: 26/2299
  33599. }
  33600. },
  33601. hand: {
  33602. height: math.unit(2.5, "feet"),
  33603. name: "Hand",
  33604. image: {
  33605. source: "./media/characters/xoltol/hand.svg"
  33606. }
  33607. },
  33608. },
  33609. [
  33610. {
  33611. name: "Small-ish",
  33612. height: math.unit(5 + 11/12, "feet")
  33613. },
  33614. {
  33615. name: "Normal",
  33616. height: math.unit(7 + 2/12, "feet")
  33617. },
  33618. {
  33619. name: "\"Macro\"",
  33620. height: math.unit(14 + 9/12, "feet"),
  33621. default: true
  33622. },
  33623. {
  33624. name: "Alternate Height",
  33625. height: math.unit(20, "feet")
  33626. },
  33627. {
  33628. name: "Actually Macro",
  33629. height: math.unit(100, "feet")
  33630. },
  33631. ]
  33632. ))
  33633. characterMakers.push(() => makeCharacter(
  33634. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33635. {
  33636. front: {
  33637. height: math.unit(5 + 2/12, "feet"),
  33638. name: "Front",
  33639. image: {
  33640. source: "./media/characters/kotetsu-redwood/front.svg",
  33641. extra: 1053/942,
  33642. bottom: 60/1113
  33643. }
  33644. },
  33645. },
  33646. [
  33647. {
  33648. name: "Normal",
  33649. height: math.unit(5 + 2/12, "feet"),
  33650. default: true
  33651. },
  33652. ]
  33653. ))
  33654. characterMakers.push(() => makeCharacter(
  33655. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33656. {
  33657. front: {
  33658. height: math.unit(2.4, "meters"),
  33659. weight: math.unit(125, "kg"),
  33660. name: "Front",
  33661. image: {
  33662. source: "./media/characters/lilith/front.svg",
  33663. extra: 1590/1513,
  33664. bottom: 203/1793
  33665. }
  33666. },
  33667. },
  33668. [
  33669. {
  33670. name: "Humanoid",
  33671. height: math.unit(2.4, "meters")
  33672. },
  33673. {
  33674. name: "Normal",
  33675. height: math.unit(6, "meters"),
  33676. default: true
  33677. },
  33678. {
  33679. name: "Largest",
  33680. height: math.unit(55, "meters")
  33681. },
  33682. ]
  33683. ))
  33684. characterMakers.push(() => makeCharacter(
  33685. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33686. {
  33687. front: {
  33688. height: math.unit(8 + 4/12, "feet"),
  33689. weight: math.unit(535, "lb"),
  33690. name: "Front",
  33691. image: {
  33692. source: "./media/characters/beh'kah-bolger/front.svg",
  33693. extra: 1660/1603,
  33694. bottom: 37/1697
  33695. }
  33696. },
  33697. },
  33698. [
  33699. {
  33700. name: "Normal",
  33701. height: math.unit(8 + 4/12, "feet"),
  33702. default: true
  33703. },
  33704. {
  33705. name: "Kaiju",
  33706. height: math.unit(250, "feet")
  33707. },
  33708. {
  33709. name: "Still Growing",
  33710. height: math.unit(10, "miles")
  33711. },
  33712. {
  33713. name: "Continental",
  33714. height: math.unit(5000, "miles")
  33715. },
  33716. {
  33717. name: "Final Form",
  33718. height: math.unit(2500000, "miles")
  33719. },
  33720. ]
  33721. ))
  33722. characterMakers.push(() => makeCharacter(
  33723. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33724. {
  33725. front: {
  33726. height: math.unit(7 + 2/12, "feet"),
  33727. weight: math.unit(230, "kg"),
  33728. name: "Front",
  33729. image: {
  33730. source: "./media/characters/tatyana-milewska/front.svg",
  33731. extra: 1199/1150,
  33732. bottom: 86/1285
  33733. }
  33734. },
  33735. },
  33736. [
  33737. {
  33738. name: "Normal",
  33739. height: math.unit(7 + 2/12, "feet"),
  33740. default: true
  33741. },
  33742. {
  33743. name: "Big",
  33744. height: math.unit(12, "feet")
  33745. },
  33746. {
  33747. name: "Minimacro",
  33748. height: math.unit(20, "feet")
  33749. },
  33750. {
  33751. name: "Macro",
  33752. height: math.unit(120, "feet")
  33753. },
  33754. ]
  33755. ))
  33756. characterMakers.push(() => makeCharacter(
  33757. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33758. {
  33759. front: {
  33760. height: math.unit(7 + 8/12, "feet"),
  33761. weight: math.unit(152, "kg"),
  33762. name: "Front",
  33763. image: {
  33764. source: "./media/characters/helen-arri/front.svg",
  33765. extra: 440/423,
  33766. bottom: 14/454
  33767. }
  33768. },
  33769. back: {
  33770. height: math.unit(7 + 8/12, "feet"),
  33771. weight: math.unit(152, "kg"),
  33772. name: "Back",
  33773. image: {
  33774. source: "./media/characters/helen-arri/back.svg",
  33775. extra: 443/426,
  33776. bottom: 8/451
  33777. }
  33778. },
  33779. },
  33780. [
  33781. {
  33782. name: "Normal",
  33783. height: math.unit(7 + 8/12, "feet"),
  33784. default: true
  33785. },
  33786. {
  33787. name: "Big",
  33788. height: math.unit(14, "feet")
  33789. },
  33790. {
  33791. name: "Minimacro",
  33792. height: math.unit(24, "feet")
  33793. },
  33794. {
  33795. name: "Macro",
  33796. height: math.unit(140, "feet")
  33797. },
  33798. ]
  33799. ))
  33800. characterMakers.push(() => makeCharacter(
  33801. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33802. {
  33803. front: {
  33804. height: math.unit(6, "meters"),
  33805. name: "Front",
  33806. image: {
  33807. source: "./media/characters/ehanu-rehu/front.svg",
  33808. extra: 1800/1800,
  33809. bottom: 59/1859
  33810. }
  33811. },
  33812. },
  33813. [
  33814. {
  33815. name: "Normal",
  33816. height: math.unit(6, "meters"),
  33817. default: true
  33818. },
  33819. ]
  33820. ))
  33821. characterMakers.push(() => makeCharacter(
  33822. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33823. {
  33824. front: {
  33825. height: math.unit(7 + 3/12, "feet"),
  33826. name: "Front",
  33827. image: {
  33828. source: "./media/characters/renholder/front.svg",
  33829. extra: 3096/2960,
  33830. bottom: 250/3346
  33831. }
  33832. },
  33833. },
  33834. [
  33835. {
  33836. name: "Normal Bat",
  33837. height: math.unit(7 + 3/12, "feet"),
  33838. default: true
  33839. },
  33840. {
  33841. name: "Slightly Tall Bat",
  33842. height: math.unit(100, "feet")
  33843. },
  33844. {
  33845. name: "Big Bat",
  33846. height: math.unit(1000, "feet")
  33847. },
  33848. {
  33849. name: "City-Sized Bat",
  33850. height: math.unit(200000, "feet")
  33851. },
  33852. {
  33853. name: "Bigger Bat",
  33854. height: math.unit(10000, "miles")
  33855. },
  33856. {
  33857. name: "Solar Sized Bat",
  33858. height: math.unit(100, "AU")
  33859. },
  33860. {
  33861. name: "Galactic Bat",
  33862. height: math.unit(200000, "lightyears")
  33863. },
  33864. {
  33865. name: "Universally Known Bat",
  33866. height: math.unit(1, "universe")
  33867. },
  33868. ]
  33869. ))
  33870. characterMakers.push(() => makeCharacter(
  33871. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33872. {
  33873. front: {
  33874. height: math.unit(6 + 11/12, "feet"),
  33875. weight: math.unit(250, "lb"),
  33876. name: "Front",
  33877. image: {
  33878. source: "./media/characters/cookiecat/front.svg",
  33879. extra: 893/827,
  33880. bottom: 14/907
  33881. }
  33882. },
  33883. },
  33884. [
  33885. {
  33886. name: "Micro",
  33887. height: math.unit(3, "inches")
  33888. },
  33889. {
  33890. name: "Normal",
  33891. height: math.unit(6 + 11/12, "feet"),
  33892. default: true
  33893. },
  33894. {
  33895. name: "Macro",
  33896. height: math.unit(100, "feet")
  33897. },
  33898. {
  33899. name: "Macro+",
  33900. height: math.unit(404, "feet")
  33901. },
  33902. {
  33903. name: "Megamacro",
  33904. height: math.unit(165, "miles")
  33905. },
  33906. {
  33907. name: "Planetary",
  33908. height: math.unit(4600, "miles")
  33909. },
  33910. ]
  33911. ))
  33912. characterMakers.push(() => makeCharacter(
  33913. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33914. {
  33915. front: {
  33916. height: math.unit(10 + 3/12, "feet"),
  33917. weight: math.unit(1500, "lb"),
  33918. name: "Front",
  33919. image: {
  33920. source: "./media/characters/tux-kusanagi/front.svg",
  33921. extra: 944/840,
  33922. bottom: 39/983
  33923. }
  33924. },
  33925. back: {
  33926. height: math.unit(10 + 3/12, "feet"),
  33927. weight: math.unit(1500, "lb"),
  33928. name: "Back",
  33929. image: {
  33930. source: "./media/characters/tux-kusanagi/back.svg",
  33931. extra: 941/842,
  33932. bottom: 28/969
  33933. }
  33934. },
  33935. rump: {
  33936. height: math.unit(5.25, "feet"),
  33937. name: "Rump",
  33938. image: {
  33939. source: "./media/characters/tux-kusanagi/rump.svg"
  33940. }
  33941. },
  33942. beak: {
  33943. height: math.unit(1.54, "feet"),
  33944. name: "Beak",
  33945. image: {
  33946. source: "./media/characters/tux-kusanagi/beak.svg"
  33947. }
  33948. },
  33949. },
  33950. [
  33951. {
  33952. name: "Normal",
  33953. height: math.unit(10 + 3/12, "feet"),
  33954. default: true
  33955. },
  33956. ]
  33957. ))
  33958. characterMakers.push(() => makeCharacter(
  33959. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  33960. {
  33961. front: {
  33962. height: math.unit(58, "feet"),
  33963. weight: math.unit(200, "tons"),
  33964. name: "Front",
  33965. image: {
  33966. source: "./media/characters/uzarmazari/front.svg",
  33967. extra: 1575/1455,
  33968. bottom: 152/1727
  33969. }
  33970. },
  33971. back: {
  33972. height: math.unit(58, "feet"),
  33973. weight: math.unit(200, "tons"),
  33974. name: "Back",
  33975. image: {
  33976. source: "./media/characters/uzarmazari/back.svg",
  33977. extra: 1585/1510,
  33978. bottom: 157/1742
  33979. }
  33980. },
  33981. head: {
  33982. height: math.unit(26, "feet"),
  33983. name: "Head",
  33984. image: {
  33985. source: "./media/characters/uzarmazari/head.svg"
  33986. }
  33987. },
  33988. },
  33989. [
  33990. {
  33991. name: "Normal",
  33992. height: math.unit(58, "feet"),
  33993. default: true
  33994. },
  33995. ]
  33996. ))
  33997. characterMakers.push(() => makeCharacter(
  33998. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  33999. {
  34000. side: {
  34001. height: math.unit(15, "feet"),
  34002. name: "Side",
  34003. image: {
  34004. source: "./media/characters/akitu/side.svg",
  34005. extra: 1421/1321,
  34006. bottom: 157/1578
  34007. }
  34008. },
  34009. front: {
  34010. height: math.unit(15, "feet"),
  34011. name: "Front",
  34012. image: {
  34013. source: "./media/characters/akitu/front.svg",
  34014. extra: 1435/1326,
  34015. bottom: 232/1667
  34016. }
  34017. },
  34018. },
  34019. [
  34020. {
  34021. name: "Normal",
  34022. height: math.unit(15, "feet"),
  34023. default: true
  34024. },
  34025. ]
  34026. ))
  34027. characterMakers.push(() => makeCharacter(
  34028. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34029. {
  34030. front: {
  34031. height: math.unit(10 + 8/12, "feet"),
  34032. name: "Front",
  34033. image: {
  34034. source: "./media/characters/azalie-croixland/front.svg",
  34035. extra: 1972/1856,
  34036. bottom: 31/2003
  34037. }
  34038. },
  34039. },
  34040. [
  34041. {
  34042. name: "Original Height",
  34043. height: math.unit(5 + 4/12, "feet")
  34044. },
  34045. {
  34046. name: "Normal Height",
  34047. height: math.unit(10 + 8/12, "feet"),
  34048. default: true
  34049. },
  34050. ]
  34051. ))
  34052. characterMakers.push(() => makeCharacter(
  34053. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34054. {
  34055. side: {
  34056. height: math.unit(7 + 1/12, "feet"),
  34057. weight: math.unit(245, "lb"),
  34058. name: "Side",
  34059. image: {
  34060. source: "./media/characters/kavus-kazian/side.svg",
  34061. extra: 349/342,
  34062. bottom: 15/364
  34063. }
  34064. },
  34065. },
  34066. [
  34067. {
  34068. name: "Normal",
  34069. height: math.unit(7 + 1/12, "feet"),
  34070. default: true
  34071. },
  34072. ]
  34073. ))
  34074. characterMakers.push(() => makeCharacter(
  34075. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34076. {
  34077. normal: {
  34078. height: math.unit(5 + 11/12, "feet"),
  34079. name: "Normal",
  34080. image: {
  34081. source: "./media/characters/moonlight-rose/normal.svg",
  34082. extra: 1979/1835,
  34083. bottom: 14/1993
  34084. }
  34085. },
  34086. demon: {
  34087. height: math.unit(5, "km"),
  34088. name: "Demon",
  34089. image: {
  34090. source: "./media/characters/moonlight-rose/demon.svg",
  34091. extra: 986/916,
  34092. bottom: 28/1014
  34093. }
  34094. },
  34095. },
  34096. [
  34097. {
  34098. name: "\"Natural\" height",
  34099. height: math.unit(5 + 11/12, "feet")
  34100. },
  34101. {
  34102. name: "Comfortable Size",
  34103. height: math.unit(40, "meters")
  34104. },
  34105. {
  34106. name: "Common Size",
  34107. height: math.unit(50, "km"),
  34108. default: true
  34109. },
  34110. {
  34111. name: "Demonic",
  34112. height: math.unit(1.24415e+21, "meters")
  34113. },
  34114. ]
  34115. ))
  34116. characterMakers.push(() => makeCharacter(
  34117. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34118. {
  34119. front: {
  34120. height: math.unit(16, "feet"),
  34121. weight: math.unit(610, "kg"),
  34122. name: "Front",
  34123. image: {
  34124. source: "./media/characters/huckle/front.svg",
  34125. extra: 1731/1625,
  34126. bottom: 33/1764
  34127. }
  34128. },
  34129. back: {
  34130. height: math.unit(16, "feet"),
  34131. weight: math.unit(610, "kg"),
  34132. name: "Back",
  34133. image: {
  34134. source: "./media/characters/huckle/back.svg",
  34135. extra: 1738/1651,
  34136. bottom: 37/1775
  34137. }
  34138. },
  34139. laughing: {
  34140. height: math.unit(3.75, "feet"),
  34141. name: "Laughing",
  34142. image: {
  34143. source: "./media/characters/huckle/laughing.svg"
  34144. }
  34145. },
  34146. angry: {
  34147. height: math.unit(4.15, "feet"),
  34148. name: "Angry",
  34149. image: {
  34150. source: "./media/characters/huckle/angry.svg"
  34151. }
  34152. },
  34153. },
  34154. [
  34155. {
  34156. name: "Normal",
  34157. height: math.unit(16, "feet"),
  34158. default: true
  34159. },
  34160. {
  34161. name: "Mini Macro",
  34162. height: math.unit(463, "feet")
  34163. },
  34164. {
  34165. name: "Macro",
  34166. height: math.unit(1680, "meters")
  34167. },
  34168. {
  34169. name: "Mega Macro",
  34170. height: math.unit(175, "km")
  34171. },
  34172. {
  34173. name: "Terra Macro",
  34174. height: math.unit(32, "gigameters")
  34175. },
  34176. {
  34177. name: "Multiverse+",
  34178. height: math.unit(2.56e23, "yottameters")
  34179. },
  34180. ]
  34181. ))
  34182. characterMakers.push(() => makeCharacter(
  34183. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34184. {
  34185. front: {
  34186. height: math.unit(6 + 9/12, "feet"),
  34187. weight: math.unit(280, "lb"),
  34188. name: "Front",
  34189. image: {
  34190. source: "./media/characters/candy/front.svg",
  34191. extra: 234/217,
  34192. bottom: 11/245
  34193. }
  34194. },
  34195. },
  34196. [
  34197. {
  34198. name: "Really Small",
  34199. height: math.unit(0.1, "nm")
  34200. },
  34201. {
  34202. name: "Micro",
  34203. height: math.unit(2, "inches")
  34204. },
  34205. {
  34206. name: "Normal",
  34207. height: math.unit(6 + 9/12, "feet"),
  34208. default: true
  34209. },
  34210. {
  34211. name: "Small Macro",
  34212. height: math.unit(69, "feet")
  34213. },
  34214. {
  34215. name: "Macro",
  34216. height: math.unit(160, "feet")
  34217. },
  34218. {
  34219. name: "Megamacro",
  34220. height: math.unit(22000, "miles")
  34221. },
  34222. {
  34223. name: "Gigamacro",
  34224. height: math.unit(50000, "miles")
  34225. },
  34226. ]
  34227. ))
  34228. characterMakers.push(() => makeCharacter(
  34229. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34230. {
  34231. front: {
  34232. height: math.unit(4, "feet"),
  34233. weight: math.unit(90, "lb"),
  34234. name: "Front",
  34235. image: {
  34236. source: "./media/characters/joey-mcdonald/front.svg",
  34237. extra: 1059/852,
  34238. bottom: 33/1092
  34239. }
  34240. },
  34241. back: {
  34242. height: math.unit(4, "feet"),
  34243. weight: math.unit(90, "lb"),
  34244. name: "Back",
  34245. image: {
  34246. source: "./media/characters/joey-mcdonald/back.svg",
  34247. extra: 1077/879,
  34248. bottom: 5/1082
  34249. }
  34250. },
  34251. },
  34252. [
  34253. {
  34254. name: "Normal",
  34255. height: math.unit(4, "feet"),
  34256. default: true
  34257. },
  34258. ]
  34259. ))
  34260. characterMakers.push(() => makeCharacter(
  34261. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34262. {
  34263. front: {
  34264. height: math.unit(12 + 6/12, "feet"),
  34265. name: "Front",
  34266. image: {
  34267. source: "./media/characters/kass-lockheed/front.svg",
  34268. extra: 354/343,
  34269. bottom: 9/363
  34270. }
  34271. },
  34272. back: {
  34273. height: math.unit(12 + 6/12, "feet"),
  34274. name: "Back",
  34275. image: {
  34276. source: "./media/characters/kass-lockheed/back.svg",
  34277. extra: 364/352,
  34278. bottom: 3/367
  34279. }
  34280. },
  34281. dick: {
  34282. height: math.unit(3.12, "feet"),
  34283. name: "Dick",
  34284. image: {
  34285. source: "./media/characters/kass-lockheed/dick.svg"
  34286. }
  34287. },
  34288. head: {
  34289. height: math.unit(2.6, "feet"),
  34290. name: "Head",
  34291. image: {
  34292. source: "./media/characters/kass-lockheed/head.svg"
  34293. }
  34294. },
  34295. bleh: {
  34296. height: math.unit(2.85, "feet"),
  34297. name: "Bleh",
  34298. image: {
  34299. source: "./media/characters/kass-lockheed/bleh.svg"
  34300. }
  34301. },
  34302. smug: {
  34303. height: math.unit(2.85, "feet"),
  34304. name: "Smug",
  34305. image: {
  34306. source: "./media/characters/kass-lockheed/smug.svg"
  34307. }
  34308. },
  34309. },
  34310. [
  34311. {
  34312. name: "Normal",
  34313. height: math.unit(12 + 6/12, "feet"),
  34314. default: true
  34315. },
  34316. ]
  34317. ))
  34318. characterMakers.push(() => makeCharacter(
  34319. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34320. {
  34321. front: {
  34322. height: math.unit(6 + 2/12, "feet"),
  34323. name: "Front",
  34324. image: {
  34325. source: "./media/characters/taylor/front.svg",
  34326. extra: 639/495,
  34327. bottom: 12/651
  34328. }
  34329. },
  34330. },
  34331. [
  34332. {
  34333. name: "Normal",
  34334. height: math.unit(6 + 2/12, "feet"),
  34335. default: true
  34336. },
  34337. {
  34338. name: "Big",
  34339. height: math.unit(15, "feet")
  34340. },
  34341. {
  34342. name: "Lorg",
  34343. height: math.unit(80, "feet")
  34344. },
  34345. {
  34346. name: "Too Lorg",
  34347. height: math.unit(120, "feet")
  34348. },
  34349. ]
  34350. ))
  34351. characterMakers.push(() => makeCharacter(
  34352. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34353. {
  34354. front: {
  34355. height: math.unit(15, "feet"),
  34356. name: "Front",
  34357. image: {
  34358. source: "./media/characters/kaizer/front.svg",
  34359. extra: 1612/1436,
  34360. bottom: 43/1655
  34361. }
  34362. },
  34363. },
  34364. [
  34365. {
  34366. name: "Normal",
  34367. height: math.unit(15, "feet"),
  34368. default: true
  34369. },
  34370. ]
  34371. ))
  34372. characterMakers.push(() => makeCharacter(
  34373. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34374. {
  34375. front: {
  34376. height: math.unit(2, "feet"),
  34377. weight: math.unit(30, "lb"),
  34378. name: "Front",
  34379. image: {
  34380. source: "./media/characters/sandy/front.svg",
  34381. extra: 1439/1307,
  34382. bottom: 194/1633
  34383. }
  34384. },
  34385. },
  34386. [
  34387. {
  34388. name: "Normal",
  34389. height: math.unit(2, "feet"),
  34390. default: true
  34391. },
  34392. ]
  34393. ))
  34394. characterMakers.push(() => makeCharacter(
  34395. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34396. {
  34397. front: {
  34398. height: math.unit(3, "feet"),
  34399. name: "Front",
  34400. image: {
  34401. source: "./media/characters/mellvi/front.svg",
  34402. extra: 1831/1630,
  34403. bottom: 58/1889
  34404. }
  34405. },
  34406. },
  34407. [
  34408. {
  34409. name: "Normal",
  34410. height: math.unit(3, "feet"),
  34411. default: true
  34412. },
  34413. ]
  34414. ))
  34415. characterMakers.push(() => makeCharacter(
  34416. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34417. {
  34418. front: {
  34419. height: math.unit(5 + 11/12, "feet"),
  34420. weight: math.unit(200, "lb"),
  34421. name: "Front",
  34422. image: {
  34423. source: "./media/characters/shirou/front.svg",
  34424. extra: 2491/2383,
  34425. bottom: 189/2680
  34426. }
  34427. },
  34428. back: {
  34429. height: math.unit(5 + 11/12, "feet"),
  34430. weight: math.unit(200, "lb"),
  34431. name: "Back",
  34432. image: {
  34433. source: "./media/characters/shirou/back.svg",
  34434. extra: 2554/2450,
  34435. bottom: 76/2630
  34436. }
  34437. },
  34438. },
  34439. [
  34440. {
  34441. name: "Normal",
  34442. height: math.unit(5 + 11/12, "feet"),
  34443. default: true
  34444. },
  34445. ]
  34446. ))
  34447. characterMakers.push(() => makeCharacter(
  34448. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34449. {
  34450. front: {
  34451. height: math.unit(6 + 3/12, "feet"),
  34452. weight: math.unit(177, "lb"),
  34453. name: "Front",
  34454. image: {
  34455. source: "./media/characters/noryu/front.svg",
  34456. extra: 973/885,
  34457. bottom: 10/983
  34458. }
  34459. },
  34460. },
  34461. [
  34462. {
  34463. name: "Normal",
  34464. height: math.unit(6 + 3/12, "feet"),
  34465. default: true
  34466. },
  34467. ]
  34468. ))
  34469. characterMakers.push(() => makeCharacter(
  34470. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34471. {
  34472. front: {
  34473. height: math.unit(5 + 6/12, "feet"),
  34474. weight: math.unit(170, "lb"),
  34475. name: "Front",
  34476. image: {
  34477. source: "./media/characters/mevolas-rubenido/front.svg",
  34478. extra: 2109/1901,
  34479. bottom: 96/2205
  34480. }
  34481. },
  34482. },
  34483. [
  34484. {
  34485. name: "Normal",
  34486. height: math.unit(5 + 6/12, "feet"),
  34487. default: true
  34488. },
  34489. ]
  34490. ))
  34491. characterMakers.push(() => makeCharacter(
  34492. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34493. {
  34494. front: {
  34495. height: math.unit(100, "feet"),
  34496. name: "Front",
  34497. image: {
  34498. source: "./media/characters/dee/front.svg",
  34499. extra: 2153/2036,
  34500. bottom: 59/2212
  34501. }
  34502. },
  34503. back: {
  34504. height: math.unit(100, "feet"),
  34505. name: "Back",
  34506. image: {
  34507. source: "./media/characters/dee/back.svg",
  34508. extra: 2183/2058,
  34509. bottom: 75/2258
  34510. }
  34511. },
  34512. foot: {
  34513. height: math.unit(19.43, "feet"),
  34514. name: "Foot",
  34515. image: {
  34516. source: "./media/characters/dee/foot.svg"
  34517. }
  34518. },
  34519. hoof: {
  34520. height: math.unit(20.6, "feet"),
  34521. name: "Hoof",
  34522. image: {
  34523. source: "./media/characters/dee/hoof.svg"
  34524. }
  34525. },
  34526. },
  34527. [
  34528. {
  34529. name: "Macro",
  34530. height: math.unit(100, "feet"),
  34531. default: true
  34532. },
  34533. ]
  34534. ))
  34535. characterMakers.push(() => makeCharacter(
  34536. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34537. {
  34538. front: {
  34539. height: math.unit(5 + 6/12, "feet"),
  34540. name: "Front",
  34541. image: {
  34542. source: "./media/characters/teh/front.svg",
  34543. extra: 1002/847,
  34544. bottom: 62/1064
  34545. }
  34546. },
  34547. },
  34548. [
  34549. {
  34550. name: "Normal",
  34551. height: math.unit(5 + 6/12, "feet"),
  34552. default: true
  34553. },
  34554. ]
  34555. ))
  34556. characterMakers.push(() => makeCharacter(
  34557. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34558. {
  34559. side: {
  34560. height: math.unit(6 + 1/12, "feet"),
  34561. weight: math.unit(204, "lb"),
  34562. name: "Side",
  34563. image: {
  34564. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34565. extra: 974/775,
  34566. bottom: 169/1143
  34567. }
  34568. },
  34569. sitting: {
  34570. height: math.unit(6 + 2/12, "feet"),
  34571. weight: math.unit(204, "lb"),
  34572. name: "Sitting",
  34573. image: {
  34574. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34575. extra: 1175/964,
  34576. bottom: 378/1553
  34577. }
  34578. },
  34579. },
  34580. [
  34581. {
  34582. name: "Normal",
  34583. height: math.unit(6 + 1/12, "feet"),
  34584. default: true
  34585. },
  34586. ]
  34587. ))
  34588. characterMakers.push(() => makeCharacter(
  34589. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34590. {
  34591. front: {
  34592. height: math.unit(6, "inches"),
  34593. name: "Front",
  34594. image: {
  34595. source: "./media/characters/tululi/front.svg",
  34596. extra: 1997/1876,
  34597. bottom: 20/2017
  34598. }
  34599. },
  34600. },
  34601. [
  34602. {
  34603. name: "Normal",
  34604. height: math.unit(6, "inches"),
  34605. default: true
  34606. },
  34607. ]
  34608. ))
  34609. characterMakers.push(() => makeCharacter(
  34610. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34611. {
  34612. front: {
  34613. height: math.unit(4 + 1/12, "feet"),
  34614. name: "Front",
  34615. image: {
  34616. source: "./media/characters/star/front.svg",
  34617. extra: 1493/1189,
  34618. bottom: 48/1541
  34619. }
  34620. },
  34621. },
  34622. [
  34623. {
  34624. name: "Normal",
  34625. height: math.unit(4 + 1/12, "feet"),
  34626. default: true
  34627. },
  34628. ]
  34629. ))
  34630. characterMakers.push(() => makeCharacter(
  34631. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34632. {
  34633. front: {
  34634. height: math.unit(6 + 3/12, "feet"),
  34635. name: "Front",
  34636. image: {
  34637. source: "./media/characters/comet/front.svg",
  34638. extra: 1681/1462,
  34639. bottom: 26/1707
  34640. }
  34641. },
  34642. },
  34643. [
  34644. {
  34645. name: "Normal",
  34646. height: math.unit(6 + 3/12, "feet"),
  34647. default: true
  34648. },
  34649. ]
  34650. ))
  34651. characterMakers.push(() => makeCharacter(
  34652. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34653. {
  34654. front: {
  34655. height: math.unit(950, "feet"),
  34656. name: "Front",
  34657. image: {
  34658. source: "./media/characters/vortex/front.svg",
  34659. extra: 1497/1434,
  34660. bottom: 56/1553
  34661. }
  34662. },
  34663. maw: {
  34664. height: math.unit(285, "feet"),
  34665. name: "Maw",
  34666. image: {
  34667. source: "./media/characters/vortex/maw.svg"
  34668. }
  34669. },
  34670. },
  34671. [
  34672. {
  34673. name: "Macro",
  34674. height: math.unit(950, "feet"),
  34675. default: true
  34676. },
  34677. ]
  34678. ))
  34679. characterMakers.push(() => makeCharacter(
  34680. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34681. {
  34682. front: {
  34683. height: math.unit(600, "feet"),
  34684. weight: math.unit(0.02, "grams"),
  34685. name: "Front",
  34686. image: {
  34687. source: "./media/characters/doodle/front.svg",
  34688. extra: 1578/1413,
  34689. bottom: 37/1615
  34690. }
  34691. },
  34692. },
  34693. [
  34694. {
  34695. name: "Macro",
  34696. height: math.unit(600, "feet"),
  34697. default: true
  34698. },
  34699. ]
  34700. ))
  34701. characterMakers.push(() => makeCharacter(
  34702. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34703. {
  34704. front: {
  34705. height: math.unit(6 + 6/12, "feet"),
  34706. name: "Front",
  34707. image: {
  34708. source: "./media/characters/jai/front.svg",
  34709. extra: 1645/1534,
  34710. bottom: 115/1760
  34711. }
  34712. },
  34713. },
  34714. [
  34715. {
  34716. name: "Normal",
  34717. height: math.unit(6 + 6/12, "feet"),
  34718. default: true
  34719. },
  34720. ]
  34721. ))
  34722. characterMakers.push(() => makeCharacter(
  34723. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34724. {
  34725. front: {
  34726. height: math.unit(6 + 8/12, "feet"),
  34727. name: "Front",
  34728. image: {
  34729. source: "./media/characters/pixel/front.svg",
  34730. extra: 1900/1735,
  34731. bottom: 63/1963
  34732. }
  34733. },
  34734. },
  34735. [
  34736. {
  34737. name: "Normal",
  34738. height: math.unit(6 + 8/12, "feet"),
  34739. default: true
  34740. },
  34741. ]
  34742. ))
  34743. characterMakers.push(() => makeCharacter(
  34744. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34745. {
  34746. front: {
  34747. height: math.unit(4 + 11/12, "feet"),
  34748. weight: math.unit(111, "lb"),
  34749. name: "Front",
  34750. image: {
  34751. source: "./media/characters/rhett/front.svg",
  34752. extra: 1682/1586,
  34753. bottom: 92/1774
  34754. }
  34755. },
  34756. },
  34757. [
  34758. {
  34759. name: "Mini",
  34760. height: math.unit(1 + 1/12, "feet")
  34761. },
  34762. {
  34763. name: "Normal",
  34764. height: math.unit(4 + 11/12, "feet"),
  34765. default: true
  34766. },
  34767. ]
  34768. ))
  34769. characterMakers.push(() => makeCharacter(
  34770. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34771. {
  34772. front: {
  34773. height: math.unit(3 + 3/12, "feet"),
  34774. name: "Front",
  34775. image: {
  34776. source: "./media/characters/penny/front.svg",
  34777. extra: 1406/1311,
  34778. bottom: 26/1432
  34779. }
  34780. },
  34781. },
  34782. [
  34783. {
  34784. name: "Normal",
  34785. height: math.unit(3 + 3/12, "feet"),
  34786. default: true
  34787. },
  34788. ]
  34789. ))
  34790. characterMakers.push(() => makeCharacter(
  34791. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34792. {
  34793. front: {
  34794. height: math.unit(4 + 11/12, "feet"),
  34795. name: "Front",
  34796. image: {
  34797. source: "./media/characters/monty/front.svg",
  34798. extra: 1479/1209,
  34799. bottom: 0/1479
  34800. }
  34801. },
  34802. },
  34803. [
  34804. {
  34805. name: "Normal",
  34806. height: math.unit(4 + 11/12, "feet"),
  34807. default: true
  34808. },
  34809. ]
  34810. ))
  34811. characterMakers.push(() => makeCharacter(
  34812. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34813. {
  34814. front: {
  34815. height: math.unit(8 + 4/12, "feet"),
  34816. name: "Front",
  34817. image: {
  34818. source: "./media/characters/sterling/front.svg",
  34819. extra: 1420/1236,
  34820. bottom: 27/1447
  34821. }
  34822. },
  34823. },
  34824. [
  34825. {
  34826. name: "Normal",
  34827. height: math.unit(8 + 4/12, "feet"),
  34828. default: true
  34829. },
  34830. ]
  34831. ))
  34832. characterMakers.push(() => makeCharacter(
  34833. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34834. {
  34835. front: {
  34836. height: math.unit(15, "feet"),
  34837. name: "Front",
  34838. image: {
  34839. source: "./media/characters/marble/front.svg",
  34840. extra: 973/937,
  34841. bottom: 32/1005
  34842. }
  34843. },
  34844. },
  34845. [
  34846. {
  34847. name: "Normal",
  34848. height: math.unit(15, "feet"),
  34849. default: true
  34850. },
  34851. ]
  34852. ))
  34853. characterMakers.push(() => makeCharacter(
  34854. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34855. {
  34856. front: {
  34857. height: math.unit(3, "inches"),
  34858. name: "Front",
  34859. image: {
  34860. source: "./media/characters/powder/front.svg",
  34861. extra: 1504/1334,
  34862. bottom: 518/2022
  34863. }
  34864. },
  34865. },
  34866. [
  34867. {
  34868. name: "Normal",
  34869. height: math.unit(3, "inches"),
  34870. default: true
  34871. },
  34872. ]
  34873. ))
  34874. characterMakers.push(() => makeCharacter(
  34875. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  34876. {
  34877. front: {
  34878. height: math.unit(4 + 5/12, "feet"),
  34879. name: "Front",
  34880. image: {
  34881. source: "./media/characters/joey-raccoon/front.svg",
  34882. extra: 1273/1197,
  34883. bottom: 0/1273
  34884. }
  34885. },
  34886. },
  34887. [
  34888. {
  34889. name: "Normal",
  34890. height: math.unit(4 + 5/12, "feet"),
  34891. default: true
  34892. },
  34893. ]
  34894. ))
  34895. characterMakers.push(() => makeCharacter(
  34896. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  34897. {
  34898. front: {
  34899. height: math.unit(8 + 4/12, "feet"),
  34900. name: "Front",
  34901. image: {
  34902. source: "./media/characters/vick/front.svg",
  34903. extra: 2187/2118,
  34904. bottom: 47/2234
  34905. }
  34906. },
  34907. },
  34908. [
  34909. {
  34910. name: "Normal",
  34911. height: math.unit(8 + 4/12, "feet"),
  34912. default: true
  34913. },
  34914. ]
  34915. ))
  34916. characterMakers.push(() => makeCharacter(
  34917. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  34918. {
  34919. front: {
  34920. height: math.unit(5 + 5/12, "feet"),
  34921. name: "Front",
  34922. image: {
  34923. source: "./media/characters/mitsy/front.svg",
  34924. extra: 1842/1695,
  34925. bottom: 0/1842
  34926. }
  34927. },
  34928. },
  34929. [
  34930. {
  34931. name: "Normal",
  34932. height: math.unit(5 + 5/12, "feet"),
  34933. default: true
  34934. },
  34935. ]
  34936. ))
  34937. characterMakers.push(() => makeCharacter(
  34938. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  34939. {
  34940. front: {
  34941. height: math.unit(6 + 3/12, "feet"),
  34942. name: "Front",
  34943. image: {
  34944. source: "./media/characters/silvy/front.svg",
  34945. extra: 1995/1836,
  34946. bottom: 225/2220
  34947. }
  34948. },
  34949. },
  34950. [
  34951. {
  34952. name: "Normal",
  34953. height: math.unit(6 + 3/12, "feet"),
  34954. default: true
  34955. },
  34956. ]
  34957. ))
  34958. characterMakers.push(() => makeCharacter(
  34959. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  34960. {
  34961. front: {
  34962. height: math.unit(3 + 8/12, "feet"),
  34963. name: "Front",
  34964. image: {
  34965. source: "./media/characters/rodney/front.svg",
  34966. extra: 1956/1747,
  34967. bottom: 31/1987
  34968. }
  34969. },
  34970. frontDressed: {
  34971. height: math.unit(2.9, "feet"),
  34972. name: "Front (Dressed)",
  34973. image: {
  34974. source: "./media/characters/rodney/front-dressed.svg",
  34975. extra: 1382/1241,
  34976. bottom: 385/1767
  34977. }
  34978. },
  34979. },
  34980. [
  34981. {
  34982. name: "Normal",
  34983. height: math.unit(3 + 8/12, "feet"),
  34984. default: true
  34985. },
  34986. ]
  34987. ))
  34988. characterMakers.push(() => makeCharacter(
  34989. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  34990. {
  34991. front: {
  34992. height: math.unit(5 + 9/12, "feet"),
  34993. weight: math.unit(194, "lbs"),
  34994. name: "Front",
  34995. image: {
  34996. source: "./media/characters/zakail-sudekai/front.svg",
  34997. extra: 2696/2533,
  34998. bottom: 248/2944
  34999. }
  35000. },
  35001. maw: {
  35002. height: math.unit(1.35, "feet"),
  35003. name: "Maw",
  35004. image: {
  35005. source: "./media/characters/zakail-sudekai/maw.svg"
  35006. }
  35007. },
  35008. },
  35009. [
  35010. {
  35011. name: "Normal",
  35012. height: math.unit(5 + 9/12, "feet"),
  35013. default: true
  35014. },
  35015. ]
  35016. ))
  35017. characterMakers.push(() => makeCharacter(
  35018. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35019. {
  35020. front: {
  35021. height: math.unit(8 + 4/12, "feet"),
  35022. weight: math.unit(1200, "lb"),
  35023. name: "Front",
  35024. image: {
  35025. source: "./media/characters/eleanor/front.svg",
  35026. extra: 1226/1192,
  35027. bottom: 52/1278
  35028. }
  35029. },
  35030. back: {
  35031. height: math.unit(8 + 4/12, "feet"),
  35032. weight: math.unit(1200, "lb"),
  35033. name: "Back",
  35034. image: {
  35035. source: "./media/characters/eleanor/back.svg",
  35036. extra: 1242/1184,
  35037. bottom: 60/1302
  35038. }
  35039. },
  35040. head: {
  35041. height: math.unit(2.62, "feet"),
  35042. name: "Head",
  35043. image: {
  35044. source: "./media/characters/eleanor/head.svg"
  35045. }
  35046. },
  35047. },
  35048. [
  35049. {
  35050. name: "Normal",
  35051. height: math.unit(8 + 4/12, "feet"),
  35052. default: true
  35053. },
  35054. ]
  35055. ))
  35056. characterMakers.push(() => makeCharacter(
  35057. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35058. {
  35059. front: {
  35060. height: math.unit(8 + 4/12, "feet"),
  35061. weight: math.unit(750, "lb"),
  35062. name: "Front",
  35063. image: {
  35064. source: "./media/characters/tanya/front.svg",
  35065. extra: 1749/1615,
  35066. bottom: 33/1782
  35067. }
  35068. },
  35069. },
  35070. [
  35071. {
  35072. name: "Normal",
  35073. height: math.unit(8 + 4/12, "feet"),
  35074. default: true
  35075. },
  35076. ]
  35077. ))
  35078. characterMakers.push(() => makeCharacter(
  35079. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35080. {
  35081. front: {
  35082. height: math.unit(5, "feet"),
  35083. weight: math.unit(225, "lb"),
  35084. name: "Front",
  35085. image: {
  35086. source: "./media/characters/cindy/front.svg",
  35087. extra: 1320/1250,
  35088. bottom: 42/1362
  35089. }
  35090. },
  35091. frontDressed: {
  35092. height: math.unit(5, "feet"),
  35093. weight: math.unit(225, "lb"),
  35094. name: "Front (Dressed)",
  35095. image: {
  35096. source: "./media/characters/cindy/front-dressed.svg",
  35097. extra: 1320/1250,
  35098. bottom: 42/1362
  35099. }
  35100. },
  35101. back: {
  35102. height: math.unit(5, "feet"),
  35103. weight: math.unit(225, "lb"),
  35104. name: "Back",
  35105. image: {
  35106. source: "./media/characters/cindy/back.svg",
  35107. extra: 1384/1346,
  35108. bottom: 14/1398
  35109. }
  35110. },
  35111. },
  35112. [
  35113. {
  35114. name: "Normal",
  35115. height: math.unit(5, "feet"),
  35116. default: true
  35117. },
  35118. ]
  35119. ))
  35120. characterMakers.push(() => makeCharacter(
  35121. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35122. {
  35123. front: {
  35124. height: math.unit(6 + 9/12, "feet"),
  35125. weight: math.unit(440, "lb"),
  35126. name: "Front",
  35127. image: {
  35128. source: "./media/characters/wilbur-owen/front.svg",
  35129. extra: 1575/1448,
  35130. bottom: 72/1647
  35131. }
  35132. },
  35133. back: {
  35134. height: math.unit(6 + 9/12, "feet"),
  35135. weight: math.unit(440, "lb"),
  35136. name: "Back",
  35137. image: {
  35138. source: "./media/characters/wilbur-owen/back.svg",
  35139. extra: 1578/1445,
  35140. bottom: 36/1614
  35141. }
  35142. },
  35143. },
  35144. [
  35145. {
  35146. name: "Normal",
  35147. height: math.unit(6 + 9/12, "feet"),
  35148. default: true
  35149. },
  35150. ]
  35151. ))
  35152. characterMakers.push(() => makeCharacter(
  35153. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35154. {
  35155. front: {
  35156. height: math.unit(6 + 5/12, "feet"),
  35157. weight: math.unit(650, "lb"),
  35158. name: "Front",
  35159. image: {
  35160. source: "./media/characters/keegan/front.svg",
  35161. extra: 2387/2198,
  35162. bottom: 33/2420
  35163. }
  35164. },
  35165. side: {
  35166. height: math.unit(6 + 5/12, "feet"),
  35167. weight: math.unit(650, "lb"),
  35168. name: "Side",
  35169. image: {
  35170. source: "./media/characters/keegan/side.svg",
  35171. extra: 2390/2202,
  35172. bottom: 47/2437
  35173. }
  35174. },
  35175. back: {
  35176. height: math.unit(6 + 5/12, "feet"),
  35177. weight: math.unit(650, "lb"),
  35178. name: "Back",
  35179. image: {
  35180. source: "./media/characters/keegan/back.svg",
  35181. extra: 2418/2268,
  35182. bottom: 15/2433
  35183. }
  35184. },
  35185. frontSfw: {
  35186. height: math.unit(6 + 5/12, "feet"),
  35187. weight: math.unit(650, "lb"),
  35188. name: "Front (SFW)",
  35189. image: {
  35190. source: "./media/characters/keegan/front-sfw.svg",
  35191. extra: 2387/2198,
  35192. bottom: 33/2420
  35193. }
  35194. },
  35195. beans: {
  35196. height: math.unit(1.85, "feet"),
  35197. name: "Beans",
  35198. image: {
  35199. source: "./media/characters/keegan/beans.svg"
  35200. }
  35201. },
  35202. },
  35203. [
  35204. {
  35205. name: "Normal",
  35206. height: math.unit(6 + 5/12, "feet"),
  35207. default: true
  35208. },
  35209. ]
  35210. ))
  35211. characterMakers.push(() => makeCharacter(
  35212. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35213. {
  35214. front: {
  35215. height: math.unit(9, "feet"),
  35216. name: "Front",
  35217. image: {
  35218. source: "./media/characters/colton/front.svg",
  35219. extra: 1589/1326,
  35220. bottom: 139/1728
  35221. }
  35222. },
  35223. },
  35224. [
  35225. {
  35226. name: "Normal",
  35227. height: math.unit(9, "feet"),
  35228. default: true
  35229. },
  35230. ]
  35231. ))
  35232. characterMakers.push(() => makeCharacter(
  35233. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35234. {
  35235. front: {
  35236. height: math.unit(2 + 9/12, "feet"),
  35237. name: "Front",
  35238. image: {
  35239. source: "./media/characters/bora/front.svg",
  35240. extra: 1265/1250,
  35241. bottom: 24/1289
  35242. }
  35243. },
  35244. },
  35245. [
  35246. {
  35247. name: "Normal",
  35248. height: math.unit(2 + 9/12, "feet"),
  35249. default: true
  35250. },
  35251. ]
  35252. ))
  35253. characterMakers.push(() => makeCharacter(
  35254. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35255. {
  35256. front: {
  35257. height: math.unit(8, "feet"),
  35258. name: "Front",
  35259. image: {
  35260. source: "./media/characters/myu-myu/front.svg",
  35261. extra: 1949/1857,
  35262. bottom: 90/2039
  35263. }
  35264. },
  35265. },
  35266. [
  35267. {
  35268. name: "Normal",
  35269. height: math.unit(8, "feet"),
  35270. default: true
  35271. },
  35272. {
  35273. name: "Big",
  35274. height: math.unit(15, "feet")
  35275. },
  35276. {
  35277. name: "BIG",
  35278. height: math.unit(25, "feet")
  35279. },
  35280. ]
  35281. ))
  35282. characterMakers.push(() => makeCharacter(
  35283. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35284. {
  35285. side: {
  35286. height: math.unit(7 + 5/12, "feet"),
  35287. weight: math.unit(2800, "lb"),
  35288. name: "Side",
  35289. image: {
  35290. source: "./media/characters/haloren/side.svg",
  35291. extra: 1793/409,
  35292. bottom: 59/1852
  35293. }
  35294. },
  35295. frontPaw: {
  35296. height: math.unit(2.36, "feet"),
  35297. name: "Front paw",
  35298. image: {
  35299. source: "./media/characters/haloren/front-paw.svg"
  35300. }
  35301. },
  35302. hindPaw: {
  35303. height: math.unit(3.18, "feet"),
  35304. name: "Hind paw",
  35305. image: {
  35306. source: "./media/characters/haloren/hind-paw.svg"
  35307. }
  35308. },
  35309. maw: {
  35310. height: math.unit(5.05, "feet"),
  35311. name: "Maw",
  35312. image: {
  35313. source: "./media/characters/haloren/maw.svg"
  35314. }
  35315. },
  35316. dick: {
  35317. height: math.unit(2.90, "feet"),
  35318. name: "Dick",
  35319. image: {
  35320. source: "./media/characters/haloren/dick.svg"
  35321. }
  35322. },
  35323. },
  35324. [
  35325. {
  35326. name: "Normal",
  35327. height: math.unit(7 + 5/12, "feet"),
  35328. default: true
  35329. },
  35330. {
  35331. name: "Enhanced",
  35332. height: math.unit(14 + 3/12, "feet")
  35333. },
  35334. ]
  35335. ))
  35336. characterMakers.push(() => makeCharacter(
  35337. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35338. {
  35339. front: {
  35340. height: math.unit(171, "cm"),
  35341. name: "Front",
  35342. image: {
  35343. source: "./media/characters/kimmy/front.svg",
  35344. extra: 1491/1435,
  35345. bottom: 53/1544
  35346. }
  35347. },
  35348. },
  35349. [
  35350. {
  35351. name: "Small",
  35352. height: math.unit(9, "cm")
  35353. },
  35354. {
  35355. name: "Normal",
  35356. height: math.unit(171, "cm"),
  35357. default: true
  35358. },
  35359. ]
  35360. ))
  35361. characterMakers.push(() => makeCharacter(
  35362. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35363. {
  35364. front: {
  35365. height: math.unit(8, "feet"),
  35366. weight: math.unit(300, "lb"),
  35367. name: "Front",
  35368. image: {
  35369. source: "./media/characters/galeboomer/front.svg",
  35370. extra: 4651/4415,
  35371. bottom: 162/4813
  35372. }
  35373. },
  35374. back: {
  35375. height: math.unit(8, "feet"),
  35376. weight: math.unit(300, "lb"),
  35377. name: "Back",
  35378. image: {
  35379. source: "./media/characters/galeboomer/back.svg",
  35380. extra: 4544/4314,
  35381. bottom: 16/4560
  35382. }
  35383. },
  35384. frontAlt: {
  35385. height: math.unit(8, "feet"),
  35386. weight: math.unit(300, "lb"),
  35387. name: "Front (Alt)",
  35388. image: {
  35389. source: "./media/characters/galeboomer/front-alt.svg",
  35390. extra: 4458/4228,
  35391. bottom: 68/4526
  35392. }
  35393. },
  35394. maw: {
  35395. height: math.unit(1.2, "feet"),
  35396. name: "Maw",
  35397. image: {
  35398. source: "./media/characters/galeboomer/maw.svg"
  35399. }
  35400. },
  35401. },
  35402. [
  35403. {
  35404. name: "Normal",
  35405. height: math.unit(8, "feet"),
  35406. default: true
  35407. },
  35408. ]
  35409. ))
  35410. characterMakers.push(() => makeCharacter(
  35411. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35412. {
  35413. front: {
  35414. height: math.unit(5 + 9/12, "feet"),
  35415. weight: math.unit(120, "lb"),
  35416. name: "Front",
  35417. image: {
  35418. source: "./media/characters/chyr/front.svg",
  35419. extra: 1323/1254,
  35420. bottom: 63/1386
  35421. }
  35422. },
  35423. back: {
  35424. height: math.unit(5 + 9/12, "feet"),
  35425. weight: math.unit(120, "lb"),
  35426. name: "Back",
  35427. image: {
  35428. source: "./media/characters/chyr/back.svg",
  35429. extra: 1323/1252,
  35430. bottom: 48/1371
  35431. }
  35432. },
  35433. },
  35434. [
  35435. {
  35436. name: "Normal",
  35437. height: math.unit(5 + 9/12, "feet"),
  35438. default: true
  35439. },
  35440. ]
  35441. ))
  35442. characterMakers.push(() => makeCharacter(
  35443. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35444. {
  35445. front: {
  35446. height: math.unit(7, "feet"),
  35447. weight: math.unit(310, "lb"),
  35448. name: "Front",
  35449. image: {
  35450. source: "./media/characters/solarus/front.svg",
  35451. extra: 2415/2021,
  35452. bottom: 103/2518
  35453. }
  35454. },
  35455. back: {
  35456. height: math.unit(7, "feet"),
  35457. weight: math.unit(310, "lb"),
  35458. name: "Back",
  35459. image: {
  35460. source: "./media/characters/solarus/back.svg",
  35461. extra: 2463/2089,
  35462. bottom: 79/2542
  35463. }
  35464. },
  35465. },
  35466. [
  35467. {
  35468. name: "Normal",
  35469. height: math.unit(7, "feet"),
  35470. default: true
  35471. },
  35472. ]
  35473. ))
  35474. characterMakers.push(() => makeCharacter(
  35475. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35476. {
  35477. front: {
  35478. height: math.unit(16, "feet"),
  35479. name: "Front",
  35480. image: {
  35481. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35482. extra: 1844/1780,
  35483. bottom: 58/1902
  35484. }
  35485. },
  35486. },
  35487. [
  35488. {
  35489. name: "Normal",
  35490. height: math.unit(16, "feet"),
  35491. default: true
  35492. },
  35493. ]
  35494. ))
  35495. characterMakers.push(() => makeCharacter(
  35496. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35497. {
  35498. front: {
  35499. height: math.unit(11 + 6/12, "feet"),
  35500. weight: math.unit(1366, "lb"),
  35501. name: "Front",
  35502. image: {
  35503. source: "./media/characters/lexor/front.svg",
  35504. extra: 1560/1481,
  35505. bottom: 211/1771
  35506. }
  35507. },
  35508. back: {
  35509. height: math.unit(11 + 6/12, "feet"),
  35510. weight: math.unit(1366, "lb"),
  35511. name: "Back",
  35512. image: {
  35513. source: "./media/characters/lexor/back.svg",
  35514. extra: 1614/1533,
  35515. bottom: 76/1690
  35516. }
  35517. },
  35518. maw: {
  35519. height: math.unit(3, "feet"),
  35520. name: "Maw",
  35521. image: {
  35522. source: "./media/characters/lexor/maw.svg"
  35523. }
  35524. },
  35525. dick: {
  35526. height: math.unit(2.59, "feet"),
  35527. name: "Dick",
  35528. image: {
  35529. source: "./media/characters/lexor/dick.svg"
  35530. }
  35531. },
  35532. },
  35533. [
  35534. {
  35535. name: "Normal",
  35536. height: math.unit(11 + 6/12, "feet"),
  35537. default: true
  35538. },
  35539. ]
  35540. ))
  35541. characterMakers.push(() => makeCharacter(
  35542. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35543. {
  35544. front: {
  35545. height: math.unit(5 + 8/12, "feet"),
  35546. name: "Front",
  35547. image: {
  35548. source: "./media/characters/magnum/front.svg",
  35549. extra: 942/855,
  35550. bottom: 26/968
  35551. }
  35552. },
  35553. },
  35554. [
  35555. {
  35556. name: "Normal",
  35557. height: math.unit(5 + 8/12, "feet"),
  35558. default: true
  35559. },
  35560. ]
  35561. ))
  35562. characterMakers.push(() => makeCharacter(
  35563. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35564. {
  35565. front: {
  35566. height: math.unit(18 + 4/12, "feet"),
  35567. weight: math.unit(1500, "kg"),
  35568. name: "Front",
  35569. image: {
  35570. source: "./media/characters/solas-sharpsman/front.svg",
  35571. extra: 1698/1589,
  35572. bottom: 0/1698
  35573. }
  35574. },
  35575. },
  35576. [
  35577. {
  35578. name: "Normal",
  35579. height: math.unit(18 + 4/12, "feet"),
  35580. default: true
  35581. },
  35582. ]
  35583. ))
  35584. characterMakers.push(() => makeCharacter(
  35585. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35586. {
  35587. front: {
  35588. height: math.unit(5 + 5/12, "feet"),
  35589. weight: math.unit(180, "lb"),
  35590. name: "Front",
  35591. image: {
  35592. source: "./media/characters/october/front.svg",
  35593. extra: 1800/1650,
  35594. bottom: 0/1800
  35595. }
  35596. },
  35597. frontNsfw: {
  35598. height: math.unit(5 + 5/12, "feet"),
  35599. weight: math.unit(180, "lb"),
  35600. name: "Front (NSFW)",
  35601. image: {
  35602. source: "./media/characters/october/front-nsfw.svg",
  35603. extra: 1392/1307,
  35604. bottom: 42/1434
  35605. }
  35606. },
  35607. },
  35608. [
  35609. {
  35610. name: "Normal",
  35611. height: math.unit(5 + 5/12, "feet"),
  35612. default: true
  35613. },
  35614. ]
  35615. ))
  35616. characterMakers.push(() => makeCharacter(
  35617. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35618. {
  35619. front: {
  35620. height: math.unit(8 + 6/12, "feet"),
  35621. name: "Front",
  35622. image: {
  35623. source: "./media/characters/essynkardi/front.svg",
  35624. extra: 1914/1846,
  35625. bottom: 22/1936
  35626. }
  35627. },
  35628. },
  35629. [
  35630. {
  35631. name: "Normal",
  35632. height: math.unit(8 + 6/12, "feet"),
  35633. default: true
  35634. },
  35635. ]
  35636. ))
  35637. characterMakers.push(() => makeCharacter(
  35638. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35639. {
  35640. front: {
  35641. height: math.unit(6 + 6/12, "feet"),
  35642. weight: math.unit(7, "lb"),
  35643. name: "Front",
  35644. image: {
  35645. source: "./media/characters/icky/front.svg",
  35646. extra: 813/782,
  35647. bottom: 66/879
  35648. }
  35649. },
  35650. back: {
  35651. height: math.unit(6 + 6/12, "feet"),
  35652. weight: math.unit(7, "lb"),
  35653. name: "Back",
  35654. image: {
  35655. source: "./media/characters/icky/back.svg",
  35656. extra: 754/735,
  35657. bottom: 56/810
  35658. }
  35659. },
  35660. },
  35661. [
  35662. {
  35663. name: "Normal",
  35664. height: math.unit(6 + 6/12, "feet"),
  35665. default: true
  35666. },
  35667. ]
  35668. ))
  35669. characterMakers.push(() => makeCharacter(
  35670. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35671. {
  35672. front: {
  35673. height: math.unit(15, "feet"),
  35674. name: "Front",
  35675. image: {
  35676. source: "./media/characters/rojas/front.svg",
  35677. extra: 1462/1408,
  35678. bottom: 95/1557
  35679. }
  35680. },
  35681. back: {
  35682. height: math.unit(15, "feet"),
  35683. name: "Back",
  35684. image: {
  35685. source: "./media/characters/rojas/back.svg",
  35686. extra: 1023/954,
  35687. bottom: 28/1051
  35688. }
  35689. },
  35690. },
  35691. [
  35692. {
  35693. name: "Normal",
  35694. height: math.unit(15, "feet"),
  35695. default: true
  35696. },
  35697. ]
  35698. ))
  35699. characterMakers.push(() => makeCharacter(
  35700. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35701. {
  35702. frontHuman: {
  35703. height: math.unit(5 + 7/12, "feet"),
  35704. name: "Front (Human)",
  35705. image: {
  35706. source: "./media/characters/alek-dryagan/front-human.svg",
  35707. extra: 1687/1667,
  35708. bottom: 69/1756
  35709. }
  35710. },
  35711. backHuman: {
  35712. height: math.unit(5 + 7/12, "feet"),
  35713. name: "Back (Human)",
  35714. image: {
  35715. source: "./media/characters/alek-dryagan/back-human.svg",
  35716. extra: 1670/1649,
  35717. bottom: 65/1735
  35718. }
  35719. },
  35720. frontDemi: {
  35721. height: math.unit(65, "feet"),
  35722. name: "Front (Demi)",
  35723. image: {
  35724. source: "./media/characters/alek-dryagan/front-demi.svg",
  35725. extra: 1669/1642,
  35726. bottom: 49/1718
  35727. }
  35728. },
  35729. backDemi: {
  35730. height: math.unit(65, "feet"),
  35731. name: "Back (Demi)",
  35732. image: {
  35733. source: "./media/characters/alek-dryagan/back-demi.svg",
  35734. extra: 1658/1637,
  35735. bottom: 40/1698
  35736. }
  35737. },
  35738. mawHuman: {
  35739. height: math.unit(0.3, "feet"),
  35740. name: "Maw (Human)",
  35741. image: {
  35742. source: "./media/characters/alek-dryagan/maw-human.svg"
  35743. }
  35744. },
  35745. mawDemi: {
  35746. height: math.unit(3.8, "feet"),
  35747. name: "Maw (Demi)",
  35748. image: {
  35749. source: "./media/characters/alek-dryagan/maw-demi.svg"
  35750. }
  35751. },
  35752. },
  35753. [
  35754. {
  35755. name: "Normal",
  35756. height: math.unit(5 + 7/12, "feet"),
  35757. default: true
  35758. },
  35759. ]
  35760. ))
  35761. characterMakers.push(() => makeCharacter(
  35762. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  35763. {
  35764. frontHuman: {
  35765. height: math.unit(5 + 2/12, "feet"),
  35766. name: "Front (Human)",
  35767. image: {
  35768. source: "./media/characters/gen/front-human.svg",
  35769. extra: 1627/1538,
  35770. bottom: 71/1698
  35771. }
  35772. },
  35773. backHuman: {
  35774. height: math.unit(5 + 2/12, "feet"),
  35775. name: "Back (Human)",
  35776. image: {
  35777. source: "./media/characters/gen/back-human.svg",
  35778. extra: 1638/1548,
  35779. bottom: 69/1707
  35780. }
  35781. },
  35782. frontDemi: {
  35783. height: math.unit(5 + 2/12, "feet"),
  35784. name: "Front (Demi)",
  35785. image: {
  35786. source: "./media/characters/gen/front-demi.svg",
  35787. extra: 1627/1538,
  35788. bottom: 71/1698
  35789. }
  35790. },
  35791. backDemi: {
  35792. height: math.unit(5 + 2/12, "feet"),
  35793. name: "Back (Demi)",
  35794. image: {
  35795. source: "./media/characters/gen/back-demi.svg",
  35796. extra: 1638/1548,
  35797. bottom: 69/1707
  35798. }
  35799. },
  35800. },
  35801. [
  35802. {
  35803. name: "Normal",
  35804. height: math.unit(5 + 2/12, "feet"),
  35805. default: true
  35806. },
  35807. ]
  35808. ))
  35809. characterMakers.push(() => makeCharacter(
  35810. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  35811. {
  35812. frontImp: {
  35813. height: math.unit(1 + 11/12, "feet"),
  35814. name: "Front (Imp)",
  35815. image: {
  35816. source: "./media/characters/max-kobold/front-imp.svg",
  35817. extra: 1238/1134,
  35818. bottom: 81/1319
  35819. }
  35820. },
  35821. backImp: {
  35822. height: math.unit(1 + 11/12, "feet"),
  35823. name: "Back (Imp)",
  35824. image: {
  35825. source: "./media/characters/max-kobold/back-imp.svg",
  35826. extra: 1334/1175,
  35827. bottom: 34/1368
  35828. }
  35829. },
  35830. frontDemi: {
  35831. height: math.unit(5 + 9/12, "feet"),
  35832. name: "Front (Demi)",
  35833. image: {
  35834. source: "./media/characters/max-kobold/front-demi.svg",
  35835. extra: 1715/1685,
  35836. bottom: 54/1769
  35837. }
  35838. },
  35839. backDemi: {
  35840. height: math.unit(5 + 9/12, "feet"),
  35841. name: "Back (Demi)",
  35842. image: {
  35843. source: "./media/characters/max-kobold/back-demi.svg",
  35844. extra: 1752/1729,
  35845. bottom: 41/1793
  35846. }
  35847. },
  35848. handImp: {
  35849. height: math.unit(0.45, "feet"),
  35850. name: "Hand (Imp)",
  35851. image: {
  35852. source: "./media/characters/max-kobold/hand.svg"
  35853. }
  35854. },
  35855. pawImp: {
  35856. height: math.unit(0.46, "feet"),
  35857. name: "Paw (Imp)",
  35858. image: {
  35859. source: "./media/characters/max-kobold/paw.svg"
  35860. }
  35861. },
  35862. handDemi: {
  35863. height: math.unit(0.80, "feet"),
  35864. name: "Hand (Demi)",
  35865. image: {
  35866. source: "./media/characters/max-kobold/hand.svg"
  35867. }
  35868. },
  35869. pawDemi: {
  35870. height: math.unit(1.1, "feet"),
  35871. name: "Paw (Demi)",
  35872. image: {
  35873. source: "./media/characters/max-kobold/paw.svg"
  35874. }
  35875. },
  35876. headImp: {
  35877. height: math.unit(1.33, "feet"),
  35878. name: "Head (Imp)",
  35879. image: {
  35880. source: "./media/characters/max-kobold/head-imp.svg"
  35881. }
  35882. },
  35883. mawImp: {
  35884. height: math.unit(0.75, "feet"),
  35885. name: "Maw (Imp)",
  35886. image: {
  35887. source: "./media/characters/max-kobold/maw-imp.svg"
  35888. }
  35889. },
  35890. mawDemi: {
  35891. height: math.unit(0.42, "feet"),
  35892. name: "Maw (Demi)",
  35893. image: {
  35894. source: "./media/characters/max-kobold/maw-demi.svg"
  35895. }
  35896. },
  35897. },
  35898. [
  35899. {
  35900. name: "Normal",
  35901. height: math.unit(1 + 11/12, "feet"),
  35902. default: true
  35903. },
  35904. ]
  35905. ))
  35906. characterMakers.push(() => makeCharacter(
  35907. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  35908. {
  35909. front: {
  35910. height: math.unit(7 + 5/12, "feet"),
  35911. name: "Front",
  35912. image: {
  35913. source: "./media/characters/carbon/front.svg",
  35914. extra: 1754/1689,
  35915. bottom: 65/1819
  35916. }
  35917. },
  35918. back: {
  35919. height: math.unit(7 + 5/12, "feet"),
  35920. name: "Back",
  35921. image: {
  35922. source: "./media/characters/carbon/back.svg",
  35923. extra: 1762/1695,
  35924. bottom: 24/1786
  35925. }
  35926. },
  35927. frontGigantamax: {
  35928. height: math.unit(150, "feet"),
  35929. name: "Front (Gigantamax)",
  35930. image: {
  35931. source: "./media/characters/carbon/front-gigantamax.svg",
  35932. extra: 1826/1669,
  35933. bottom: 59/1885
  35934. }
  35935. },
  35936. backGigantamax: {
  35937. height: math.unit(150, "feet"),
  35938. name: "Back (Gigantamax)",
  35939. image: {
  35940. source: "./media/characters/carbon/back-gigantamax.svg",
  35941. extra: 1796/1653,
  35942. bottom: 53/1849
  35943. }
  35944. },
  35945. maw: {
  35946. height: math.unit(0.48, "feet"),
  35947. name: "Maw",
  35948. image: {
  35949. source: "./media/characters/carbon/maw.svg"
  35950. }
  35951. },
  35952. mawGigantamax: {
  35953. height: math.unit(7.5, "feet"),
  35954. name: "Maw (Gigantamax)",
  35955. image: {
  35956. source: "./media/characters/carbon/maw-gigantamax.svg"
  35957. }
  35958. },
  35959. },
  35960. [
  35961. {
  35962. name: "Normal",
  35963. height: math.unit(7 + 5/12, "feet"),
  35964. default: true
  35965. },
  35966. ]
  35967. ))
  35968. characterMakers.push(() => makeCharacter(
  35969. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  35970. {
  35971. front: {
  35972. height: math.unit(6, "feet"),
  35973. name: "Front",
  35974. image: {
  35975. source: "./media/characters/maverick/front.svg",
  35976. extra: 1672/1661,
  35977. bottom: 85/1757
  35978. }
  35979. },
  35980. back: {
  35981. height: math.unit(6, "feet"),
  35982. name: "Back",
  35983. image: {
  35984. source: "./media/characters/maverick/back.svg",
  35985. extra: 1642/1631,
  35986. bottom: 38/1680
  35987. }
  35988. },
  35989. },
  35990. [
  35991. {
  35992. name: "Normal",
  35993. height: math.unit(6, "feet"),
  35994. default: true
  35995. },
  35996. ]
  35997. ))
  35998. characterMakers.push(() => makeCharacter(
  35999. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36000. {
  36001. front: {
  36002. height: math.unit(15, "feet"),
  36003. weight: math.unit(615, "lb"),
  36004. name: "Front",
  36005. image: {
  36006. source: "./media/characters/grockle/front.svg",
  36007. extra: 1535/1427,
  36008. bottom: 56/1591
  36009. }
  36010. },
  36011. },
  36012. [
  36013. {
  36014. name: "Normal",
  36015. height: math.unit(15, "feet"),
  36016. default: true
  36017. },
  36018. {
  36019. name: "Large",
  36020. height: math.unit(150, "feet")
  36021. },
  36022. {
  36023. name: "Macro",
  36024. height: math.unit(1876, "feet")
  36025. },
  36026. {
  36027. name: "Mega Macro",
  36028. height: math.unit(121940, "feet")
  36029. },
  36030. {
  36031. name: "Giga Macro",
  36032. height: math.unit(750, "km")
  36033. },
  36034. {
  36035. name: "Tera Macro",
  36036. height: math.unit(750000, "km")
  36037. },
  36038. {
  36039. name: "Galactic",
  36040. height: math.unit(1.4e5, "km")
  36041. },
  36042. {
  36043. name: "Godlike",
  36044. height: math.unit(9.8e280, "galaxies")
  36045. },
  36046. ]
  36047. ))
  36048. characterMakers.push(() => makeCharacter(
  36049. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36050. {
  36051. front: {
  36052. height: math.unit(11, "meters"),
  36053. weight: math.unit(20, "tonnes"),
  36054. name: "Front",
  36055. image: {
  36056. source: "./media/characters/alistair/front.svg",
  36057. extra: 1265/1009,
  36058. bottom: 93/1358
  36059. }
  36060. },
  36061. },
  36062. [
  36063. {
  36064. name: "Normal",
  36065. height: math.unit(11, "meters"),
  36066. default: true
  36067. },
  36068. ]
  36069. ))
  36070. characterMakers.push(() => makeCharacter(
  36071. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36072. {
  36073. front: {
  36074. height: math.unit(5 + 8/12, "feet"),
  36075. name: "Front",
  36076. image: {
  36077. source: "./media/characters/haruka/front.svg",
  36078. extra: 2012/1952,
  36079. bottom: 0/2012
  36080. }
  36081. },
  36082. },
  36083. [
  36084. {
  36085. name: "Normal",
  36086. height: math.unit(5 + 8/12, "feet"),
  36087. default: true
  36088. },
  36089. ]
  36090. ))
  36091. characterMakers.push(() => makeCharacter(
  36092. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36093. {
  36094. back: {
  36095. height: math.unit(9, "feet"),
  36096. name: "Back",
  36097. image: {
  36098. source: "./media/characters/vivian-sylveon/back.svg",
  36099. extra: 1853/1714,
  36100. bottom: 0/1853
  36101. }
  36102. },
  36103. },
  36104. [
  36105. {
  36106. name: "Normal",
  36107. height: math.unit(9, "feet"),
  36108. default: true
  36109. },
  36110. {
  36111. name: "Macro",
  36112. height: math.unit(500, "feet")
  36113. },
  36114. {
  36115. name: "Megamacro",
  36116. height: math.unit(600, "miles")
  36117. },
  36118. {
  36119. name: "Gigamacro",
  36120. height: math.unit(30000, "miles")
  36121. },
  36122. ]
  36123. ))
  36124. characterMakers.push(() => makeCharacter(
  36125. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36126. {
  36127. anthro: {
  36128. height: math.unit(5 + 10/12, "feet"),
  36129. weight: math.unit(100, "lb"),
  36130. name: "Anthro",
  36131. image: {
  36132. source: "./media/characters/daiki/anthro.svg",
  36133. extra: 1115/1027,
  36134. bottom: 69/1184
  36135. }
  36136. },
  36137. feral: {
  36138. height: math.unit(200, "feet"),
  36139. name: "Feral",
  36140. image: {
  36141. source: "./media/characters/daiki/feral.svg",
  36142. extra: 1256/313,
  36143. bottom: 39/1295
  36144. }
  36145. },
  36146. feralHead: {
  36147. height: math.unit(171, "feet"),
  36148. name: "Feral Head",
  36149. image: {
  36150. source: "./media/characters/daiki/feral-head.svg"
  36151. }
  36152. },
  36153. },
  36154. [
  36155. {
  36156. name: "Normal",
  36157. height: math.unit(5 + 10/12, "feet"),
  36158. default: true
  36159. },
  36160. ]
  36161. ))
  36162. characterMakers.push(() => makeCharacter(
  36163. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36164. {
  36165. fullyEquippedFront: {
  36166. height: math.unit(3 + 1/12, "feet"),
  36167. weight: math.unit(24, "lb"),
  36168. name: "Fully Equipped (Front)",
  36169. image: {
  36170. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36171. extra: 687/605,
  36172. bottom: 18/705
  36173. }
  36174. },
  36175. fullyEquippedBack: {
  36176. height: math.unit(3 + 1/12, "feet"),
  36177. weight: math.unit(24, "lb"),
  36178. name: "Fully Equipped (Back)",
  36179. image: {
  36180. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36181. extra: 689/590,
  36182. bottom: 18/707
  36183. }
  36184. },
  36185. dailyWear: {
  36186. height: math.unit(3 + 1/12, "feet"),
  36187. weight: math.unit(24, "lb"),
  36188. name: "Daily Wear",
  36189. image: {
  36190. source: "./media/characters/tea-spot/daily-wear.svg",
  36191. extra: 701/620,
  36192. bottom: 21/722
  36193. }
  36194. },
  36195. maidWork: {
  36196. height: math.unit(3 + 1/12, "feet"),
  36197. weight: math.unit(24, "lb"),
  36198. name: "Maid Work",
  36199. image: {
  36200. source: "./media/characters/tea-spot/maid-work.svg",
  36201. extra: 693/609,
  36202. bottom: 15/708
  36203. }
  36204. },
  36205. },
  36206. [
  36207. {
  36208. name: "Normal",
  36209. height: math.unit(3 + 1/12, "feet"),
  36210. default: true
  36211. },
  36212. ]
  36213. ))
  36214. characterMakers.push(() => makeCharacter(
  36215. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36216. {
  36217. front: {
  36218. height: math.unit(175, "cm"),
  36219. weight: math.unit(75, "kg"),
  36220. name: "Front",
  36221. image: {
  36222. source: "./media/characters/chee/front.svg",
  36223. extra: 1796/1740,
  36224. bottom: 40/1836
  36225. }
  36226. },
  36227. },
  36228. [
  36229. {
  36230. name: "Micro-Micro",
  36231. height: math.unit(1, "nm")
  36232. },
  36233. {
  36234. name: "Micro-erst",
  36235. height: math.unit(1, "micrometer")
  36236. },
  36237. {
  36238. name: "Micro-er",
  36239. height: math.unit(1, "cm")
  36240. },
  36241. {
  36242. name: "Normal",
  36243. height: math.unit(175, "cm"),
  36244. default: true
  36245. },
  36246. {
  36247. name: "Macro",
  36248. height: math.unit(100, "m")
  36249. },
  36250. {
  36251. name: "Macro-er",
  36252. height: math.unit(1, "km")
  36253. },
  36254. {
  36255. name: "Macro-erst",
  36256. height: math.unit(10, "km")
  36257. },
  36258. {
  36259. name: "Macro-Macro",
  36260. height: math.unit(100, "km")
  36261. },
  36262. ]
  36263. ))
  36264. characterMakers.push(() => makeCharacter(
  36265. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36266. {
  36267. front: {
  36268. height: math.unit(11 + 9/12, "feet"),
  36269. weight: math.unit(935, "lb"),
  36270. name: "Front",
  36271. image: {
  36272. source: "./media/characters/kingsley/front.svg",
  36273. extra: 1803/1674,
  36274. bottom: 127/1930
  36275. }
  36276. },
  36277. frontNude: {
  36278. height: math.unit(11 + 9/12, "feet"),
  36279. weight: math.unit(935, "lb"),
  36280. name: "Front (Nude)",
  36281. image: {
  36282. source: "./media/characters/kingsley/front-nude.svg",
  36283. extra: 1803/1674,
  36284. bottom: 127/1930
  36285. }
  36286. },
  36287. },
  36288. [
  36289. {
  36290. name: "Normal",
  36291. height: math.unit(11 + 9/12, "feet"),
  36292. default: true
  36293. },
  36294. ]
  36295. ))
  36296. characterMakers.push(() => makeCharacter(
  36297. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36298. {
  36299. side: {
  36300. height: math.unit(9, "feet"),
  36301. name: "Side",
  36302. image: {
  36303. source: "./media/characters/rymel/side.svg",
  36304. extra: 792/469,
  36305. bottom: 121/913
  36306. }
  36307. },
  36308. maw: {
  36309. height: math.unit(2.4, "meters"),
  36310. name: "Maw",
  36311. image: {
  36312. source: "./media/characters/rymel/maw.svg"
  36313. }
  36314. },
  36315. },
  36316. [
  36317. {
  36318. name: "House Drake",
  36319. height: math.unit(2, "feet")
  36320. },
  36321. {
  36322. name: "Reduced",
  36323. height: math.unit(4.5, "feet")
  36324. },
  36325. {
  36326. name: "Normal",
  36327. height: math.unit(9, "feet"),
  36328. default: true
  36329. },
  36330. ]
  36331. ))
  36332. characterMakers.push(() => makeCharacter(
  36333. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36334. {
  36335. front: {
  36336. height: math.unit(1.74, "meters"),
  36337. weight: math.unit(55, "kg"),
  36338. name: "Front",
  36339. image: {
  36340. source: "./media/characters/rubus/front.svg",
  36341. extra: 1894/1742,
  36342. bottom: 44/1938
  36343. }
  36344. },
  36345. },
  36346. [
  36347. {
  36348. name: "Normal",
  36349. height: math.unit(1.74, "meters"),
  36350. default: true
  36351. },
  36352. ]
  36353. ))
  36354. characterMakers.push(() => makeCharacter(
  36355. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36356. {
  36357. front: {
  36358. height: math.unit(5 + 2/12, "feet"),
  36359. weight: math.unit(112, "lb"),
  36360. name: "Front",
  36361. image: {
  36362. source: "./media/characters/cassie-kingston/front.svg",
  36363. extra: 1438/1390,
  36364. bottom: 47/1485
  36365. }
  36366. },
  36367. },
  36368. [
  36369. {
  36370. name: "Normal",
  36371. height: math.unit(5 + 2/12, "feet"),
  36372. default: true
  36373. },
  36374. {
  36375. name: "Macro",
  36376. height: math.unit(128, "feet")
  36377. },
  36378. {
  36379. name: "Megamacro",
  36380. height: math.unit(2.56, "miles")
  36381. },
  36382. ]
  36383. ))
  36384. characterMakers.push(() => makeCharacter(
  36385. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36386. {
  36387. front: {
  36388. height: math.unit(7, "feet"),
  36389. name: "Front",
  36390. image: {
  36391. source: "./media/characters/fox/front.svg",
  36392. extra: 1798/1703,
  36393. bottom: 55/1853
  36394. }
  36395. },
  36396. back: {
  36397. height: math.unit(7, "feet"),
  36398. name: "Back",
  36399. image: {
  36400. source: "./media/characters/fox/back.svg",
  36401. extra: 1748/1649,
  36402. bottom: 32/1780
  36403. }
  36404. },
  36405. head: {
  36406. height: math.unit(1.95, "feet"),
  36407. name: "Head",
  36408. image: {
  36409. source: "./media/characters/fox/head.svg"
  36410. }
  36411. },
  36412. dick: {
  36413. height: math.unit(1.33, "feet"),
  36414. name: "Dick",
  36415. image: {
  36416. source: "./media/characters/fox/dick.svg"
  36417. }
  36418. },
  36419. foot: {
  36420. height: math.unit(1, "feet"),
  36421. name: "Foot",
  36422. image: {
  36423. source: "./media/characters/fox/foot.svg"
  36424. }
  36425. },
  36426. paw: {
  36427. height: math.unit(0.92, "feet"),
  36428. name: "Paw",
  36429. image: {
  36430. source: "./media/characters/fox/paw.svg"
  36431. }
  36432. },
  36433. },
  36434. [
  36435. {
  36436. name: "Small",
  36437. height: math.unit(3, "inches")
  36438. },
  36439. {
  36440. name: "\"Realistic\"",
  36441. height: math.unit(7, "feet")
  36442. },
  36443. {
  36444. name: "Normal",
  36445. height: math.unit(150, "feet"),
  36446. default: true
  36447. },
  36448. {
  36449. name: "BIG",
  36450. height: math.unit(1200, "feet")
  36451. },
  36452. {
  36453. name: "👀",
  36454. height: math.unit(5, "miles")
  36455. },
  36456. {
  36457. name: "👀👀👀",
  36458. height: math.unit(64, "miles")
  36459. },
  36460. ]
  36461. ))
  36462. characterMakers.push(() => makeCharacter(
  36463. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36464. {
  36465. front: {
  36466. height: math.unit(625, "feet"),
  36467. name: "Front",
  36468. image: {
  36469. source: "./media/characters/asonja-rossa/front.svg",
  36470. extra: 1833/1686,
  36471. bottom: 24/1857
  36472. }
  36473. },
  36474. back: {
  36475. height: math.unit(625, "feet"),
  36476. name: "Back",
  36477. image: {
  36478. source: "./media/characters/asonja-rossa/back.svg",
  36479. extra: 1852/1753,
  36480. bottom: 26/1878
  36481. }
  36482. },
  36483. },
  36484. [
  36485. {
  36486. name: "Macro",
  36487. height: math.unit(625, "feet"),
  36488. default: true
  36489. },
  36490. ]
  36491. ))
  36492. characterMakers.push(() => makeCharacter(
  36493. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36494. {
  36495. side: {
  36496. height: math.unit(6, "feet"),
  36497. weight: math.unit(150, "lb"),
  36498. name: "Side",
  36499. image: {
  36500. source: "./media/characters/rezukii/side.svg",
  36501. extra: 979/542,
  36502. bottom: 87/1066
  36503. }
  36504. },
  36505. },
  36506. [
  36507. {
  36508. name: "Tiny",
  36509. height: math.unit(2, "feet")
  36510. },
  36511. {
  36512. name: "Smol",
  36513. height: math.unit(4, "feet")
  36514. },
  36515. {
  36516. name: "Normal",
  36517. height: math.unit(8, "feet"),
  36518. default: true
  36519. },
  36520. {
  36521. name: "Big",
  36522. height: math.unit(12, "feet")
  36523. },
  36524. {
  36525. name: "Macro",
  36526. height: math.unit(30, "feet")
  36527. },
  36528. ]
  36529. ))
  36530. characterMakers.push(() => makeCharacter(
  36531. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36532. {
  36533. front: {
  36534. height: math.unit(14, "feet"),
  36535. weight: math.unit(9.5, "tonnes"),
  36536. name: "Front",
  36537. image: {
  36538. source: "./media/characters/dawnheart/front.svg",
  36539. extra: 2792/2675,
  36540. bottom: 64/2856
  36541. }
  36542. },
  36543. },
  36544. [
  36545. {
  36546. name: "Normal",
  36547. height: math.unit(14, "feet"),
  36548. default: true
  36549. },
  36550. ]
  36551. ))
  36552. characterMakers.push(() => makeCharacter(
  36553. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36554. {
  36555. front: {
  36556. height: math.unit(1.7, "m"),
  36557. name: "Front",
  36558. image: {
  36559. source: "./media/characters/gladi/front.svg",
  36560. extra: 1460/1362,
  36561. bottom: 19/1479
  36562. }
  36563. },
  36564. back: {
  36565. height: math.unit(1.7, "m"),
  36566. name: "Back",
  36567. image: {
  36568. source: "./media/characters/gladi/back.svg",
  36569. extra: 1459/1357,
  36570. bottom: 12/1471
  36571. }
  36572. },
  36573. feral: {
  36574. height: math.unit(2.05, "m"),
  36575. name: "Feral",
  36576. image: {
  36577. source: "./media/characters/gladi/feral.svg",
  36578. extra: 821/557,
  36579. bottom: 91/912
  36580. }
  36581. },
  36582. },
  36583. [
  36584. {
  36585. name: "Shortest",
  36586. height: math.unit(70, "cm")
  36587. },
  36588. {
  36589. name: "Normal",
  36590. height: math.unit(1.7, "m")
  36591. },
  36592. {
  36593. name: "Macro",
  36594. height: math.unit(10, "m"),
  36595. default: true
  36596. },
  36597. {
  36598. name: "Tallest",
  36599. height: math.unit(200, "m")
  36600. },
  36601. ]
  36602. ))
  36603. characterMakers.push(() => makeCharacter(
  36604. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36605. {
  36606. front: {
  36607. height: math.unit(5 + 7/12, "feet"),
  36608. weight: math.unit(92, "kg"),
  36609. name: "Front",
  36610. image: {
  36611. source: "./media/characters/erdno/front.svg",
  36612. extra: 1954/1889,
  36613. bottom: 22/1976
  36614. }
  36615. },
  36616. },
  36617. [
  36618. {
  36619. name: "Normal",
  36620. height: math.unit(5 + 7/12, "feet"),
  36621. default: true
  36622. },
  36623. ]
  36624. ))
  36625. characterMakers.push(() => makeCharacter(
  36626. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  36627. {
  36628. front: {
  36629. height: math.unit(5 + 10/12, "feet"),
  36630. weight: math.unit(150, "lb"),
  36631. name: "Front",
  36632. image: {
  36633. source: "./media/characters/jamie/front.svg",
  36634. extra: 1908/1768,
  36635. bottom: 19/1927
  36636. }
  36637. },
  36638. },
  36639. [
  36640. {
  36641. name: "Minimum",
  36642. height: math.unit(2, "cm")
  36643. },
  36644. {
  36645. name: "Micro",
  36646. height: math.unit(3, "inches")
  36647. },
  36648. {
  36649. name: "Normal",
  36650. height: math.unit(5 + 10/12, "feet"),
  36651. default: true
  36652. },
  36653. {
  36654. name: "Macro",
  36655. height: math.unit(150, "feet")
  36656. },
  36657. {
  36658. name: "Megamacro",
  36659. height: math.unit(10000, "m")
  36660. },
  36661. ]
  36662. ))
  36663. characterMakers.push(() => makeCharacter(
  36664. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  36665. {
  36666. front: {
  36667. height: math.unit(2, "meters"),
  36668. weight: math.unit(100, "kg"),
  36669. name: "Front",
  36670. image: {
  36671. source: "./media/characters/shiron/front.svg",
  36672. extra: 2103/1985,
  36673. bottom: 98/2201
  36674. }
  36675. },
  36676. back: {
  36677. height: math.unit(2, "meters"),
  36678. weight: math.unit(100, "kg"),
  36679. name: "Back",
  36680. image: {
  36681. source: "./media/characters/shiron/back.svg",
  36682. extra: 2110/2015,
  36683. bottom: 89/2199
  36684. }
  36685. },
  36686. hand: {
  36687. height: math.unit(0.96, "feet"),
  36688. name: "Hand",
  36689. image: {
  36690. source: "./media/characters/shiron/hand.svg"
  36691. }
  36692. },
  36693. foot: {
  36694. height: math.unit(1.464, "feet"),
  36695. name: "Foot",
  36696. image: {
  36697. source: "./media/characters/shiron/foot.svg"
  36698. }
  36699. },
  36700. },
  36701. [
  36702. {
  36703. name: "Normal",
  36704. height: math.unit(2, "meters")
  36705. },
  36706. {
  36707. name: "Macro",
  36708. height: math.unit(500, "meters"),
  36709. default: true
  36710. },
  36711. {
  36712. name: "Megamacro",
  36713. height: math.unit(20, "km")
  36714. },
  36715. ]
  36716. ))
  36717. characterMakers.push(() => makeCharacter(
  36718. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  36719. {
  36720. front: {
  36721. height: math.unit(6, "feet"),
  36722. name: "Front",
  36723. image: {
  36724. source: "./media/characters/sam/front.svg",
  36725. extra: 849/826,
  36726. bottom: 19/868
  36727. }
  36728. },
  36729. },
  36730. [
  36731. {
  36732. name: "Normal",
  36733. height: math.unit(6, "feet"),
  36734. default: true
  36735. },
  36736. ]
  36737. ))
  36738. characterMakers.push(() => makeCharacter(
  36739. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  36740. {
  36741. front: {
  36742. height: math.unit(8 + 4/12, "feet"),
  36743. weight: math.unit(122, "kg"),
  36744. name: "Front",
  36745. image: {
  36746. source: "./media/characters/namori-kurogawa/front.svg",
  36747. extra: 1894/1576,
  36748. bottom: 34/1928
  36749. }
  36750. },
  36751. },
  36752. [
  36753. {
  36754. name: "Normal",
  36755. height: math.unit(8 + 4/12, "feet"),
  36756. default: true
  36757. },
  36758. ]
  36759. ))
  36760. characterMakers.push(() => makeCharacter(
  36761. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  36762. {
  36763. front: {
  36764. height: math.unit(9, "feet"),
  36765. weight: math.unit(621, "lb"),
  36766. name: "Front",
  36767. image: {
  36768. source: "./media/characters/unmru/front.svg",
  36769. extra: 1853/1747,
  36770. bottom: 73/1926
  36771. }
  36772. },
  36773. side: {
  36774. height: math.unit(9, "feet"),
  36775. weight: math.unit(621, "lb"),
  36776. name: "Side",
  36777. image: {
  36778. source: "./media/characters/unmru/side.svg",
  36779. extra: 1781/1671,
  36780. bottom: 127/1908
  36781. }
  36782. },
  36783. back: {
  36784. height: math.unit(9, "feet"),
  36785. weight: math.unit(621, "lb"),
  36786. name: "Back",
  36787. image: {
  36788. source: "./media/characters/unmru/back.svg",
  36789. extra: 1894/1765,
  36790. bottom: 75/1969
  36791. }
  36792. },
  36793. dick: {
  36794. height: math.unit(3, "feet"),
  36795. weight: math.unit(35, "lb"),
  36796. name: "Dick",
  36797. image: {
  36798. source: "./media/characters/unmru/dick.svg"
  36799. }
  36800. },
  36801. },
  36802. [
  36803. {
  36804. name: "Normal",
  36805. height: math.unit(9, "feet")
  36806. },
  36807. {
  36808. name: "Natural",
  36809. height: math.unit(27, "feet"),
  36810. default: true
  36811. },
  36812. {
  36813. name: "Giant",
  36814. height: math.unit(90, "feet")
  36815. },
  36816. {
  36817. name: "Kaiju",
  36818. height: math.unit(270, "feet")
  36819. },
  36820. {
  36821. name: "Macro",
  36822. height: math.unit(900, "feet")
  36823. },
  36824. {
  36825. name: "Macro+",
  36826. height: math.unit(2700, "feet")
  36827. },
  36828. {
  36829. name: "Megamacro",
  36830. height: math.unit(9000, "feet")
  36831. },
  36832. {
  36833. name: "City-Crushing",
  36834. height: math.unit(27000, "feet")
  36835. },
  36836. {
  36837. name: "Mountain-Mashing",
  36838. height: math.unit(90000, "feet")
  36839. },
  36840. {
  36841. name: "Earth-Eclipsing",
  36842. height: math.unit(2.7e8, "feet")
  36843. },
  36844. {
  36845. name: "Sol-Swallowing",
  36846. height: math.unit(9e10, "feet")
  36847. },
  36848. {
  36849. name: "Majoris-Munching",
  36850. height: math.unit(2.7e13, "feet")
  36851. },
  36852. ]
  36853. ))
  36854. //characters
  36855. function makeCharacters() {
  36856. const results = [];
  36857. characterMakers.forEach(character => {
  36858. results.push(character());
  36859. });
  36860. return results;
  36861. }