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

42030 行
1.0 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "feliform"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "feliform"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf", "werebeast"]
  569. },
  570. "werebeast": {
  571. name: "Werebeast",
  572. parents: ["monster"]
  573. },
  574. "meerkat": {
  575. name: "Meerkat",
  576. parents: ["mammal"]
  577. },
  578. "human": {
  579. name: "Human",
  580. parents: ["mammal"]
  581. },
  582. "geth": {
  583. name: "Geth",
  584. parents: ["android"]
  585. },
  586. "husky": {
  587. name: "Husky",
  588. parents: ["dog"]
  589. },
  590. "long-eared-bat": {
  591. name: "Long Eared Bat",
  592. parents: ["bat"]
  593. },
  594. "lizard": {
  595. name: "Lizard",
  596. parents: ["reptile"]
  597. },
  598. "salamander": {
  599. name: "Salamander",
  600. parents: ["lizard"]
  601. },
  602. "chameleon": {
  603. name: "Chameleon",
  604. parents: ["lizard"]
  605. },
  606. "gecko": {
  607. name: "Gecko",
  608. parents: ["lizard"]
  609. },
  610. "kobold": {
  611. name: "Kobold",
  612. parents: ["reptile"]
  613. },
  614. "charizard": {
  615. name: "Charizard",
  616. parents: ["pokemon"]
  617. },
  618. "lugia": {
  619. name: "Lugia",
  620. parents: ["pokemon"]
  621. },
  622. "cerberus": {
  623. name: "Cerberus",
  624. parents: ["dog"]
  625. },
  626. "tyrantrum": {
  627. name: "Tyrantrum",
  628. parents: ["pokemon"]
  629. },
  630. "lemur": {
  631. name: "Lemur",
  632. parents: ["mammal"]
  633. },
  634. "kelpie": {
  635. name: "Kelpie",
  636. parents: ["horse", "monster"]
  637. },
  638. "labrador": {
  639. name: "Labrador",
  640. parents: ["dog"]
  641. },
  642. "sylveon": {
  643. name: "Sylveon",
  644. parents: ["eeveelution"]
  645. },
  646. "eeveelution": {
  647. name: "Eeveelution",
  648. parents: ["pokemon"]
  649. },
  650. "polar-bear": {
  651. name: "Polar Bear",
  652. parents: ["bear"]
  653. },
  654. "bear": {
  655. name: "Bear",
  656. parents: ["mammal"]
  657. },
  658. "absol": {
  659. name: "Absol",
  660. parents: ["pokemon"]
  661. },
  662. "wolver": {
  663. name: "Wolver",
  664. parents: ["mammal"]
  665. },
  666. "rottweiler": {
  667. name: "Rottweiler",
  668. parents: ["dog"]
  669. },
  670. "zebra": {
  671. name: "Zebra",
  672. parents: ["horse"]
  673. },
  674. "yoshi": {
  675. name: "Yoshi",
  676. parents: ["lizard"]
  677. },
  678. "lynx": {
  679. name: "Lynx",
  680. parents: ["cat"]
  681. },
  682. "unknown": {
  683. name: "Unknown",
  684. parents: []
  685. },
  686. "thylacine": {
  687. name: "Thylacine",
  688. parents: ["mammal"]
  689. },
  690. "gabumon": {
  691. name: "Gabumon",
  692. parents: ["digimon"]
  693. },
  694. "border-collie": {
  695. name: "Border Collie",
  696. parents: ["dog"]
  697. },
  698. "imp": {
  699. name: "Imp",
  700. parents: ["demon"]
  701. },
  702. "kangaroo": {
  703. name: "Kangaroo",
  704. parents: ["marsupial"]
  705. },
  706. "renamon": {
  707. name: "Renamon",
  708. parents: ["digimon"]
  709. },
  710. "candy-orca-dragon": {
  711. name: "Candy Orca Dragon",
  712. parents: ["fish", "dragon", "candy"]
  713. },
  714. "sabertooth-tiger": {
  715. name: "Sabertooth Tiger",
  716. parents: ["cat"]
  717. },
  718. "espurr": {
  719. name: "Espurr",
  720. parents: ["pokemon"]
  721. },
  722. "otter": {
  723. name: "Otter",
  724. parents: ["mustelid"]
  725. },
  726. "elemental": {
  727. name: "Elemental",
  728. parents: ["mammal"]
  729. },
  730. "mew": {
  731. name: "Mew",
  732. parents: ["pokemon"]
  733. },
  734. "goodra": {
  735. name: "Goodra",
  736. parents: ["pokemon"]
  737. },
  738. "fairy": {
  739. name: "Fairy",
  740. parents: ["magical"]
  741. },
  742. "typhlosion": {
  743. name: "Typhlosion",
  744. parents: ["pokemon"]
  745. },
  746. "magical": {
  747. name: "Magical",
  748. parents: []
  749. },
  750. "xenomorph": {
  751. name: "Xenomorph",
  752. parents: ["monster", "alien"]
  753. },
  754. "charr": {
  755. name: "Charr",
  756. parents: ["cat"]
  757. },
  758. "siberian-husky": {
  759. name: "Siberian Husky",
  760. parents: ["husky"]
  761. },
  762. "alligator": {
  763. name: "Alligator",
  764. parents: ["reptile"]
  765. },
  766. "bernese-mountain-dog": {
  767. name: "Bernese Mountain Dog",
  768. parents: ["dog"]
  769. },
  770. "reshiram": {
  771. name: "Reshiram",
  772. parents: ["pokemon"]
  773. },
  774. "grizzly-bear": {
  775. name: "Grizzly Bear",
  776. parents: ["bear"]
  777. },
  778. "water-monitor": {
  779. name: "Water Monitor",
  780. parents: ["lizard"]
  781. },
  782. "banchofossa": {
  783. name: "Banchofossa",
  784. parents: ["mammal"]
  785. },
  786. "kirin": {
  787. name: "Kirin",
  788. parents: ["monster"]
  789. },
  790. "quilava": {
  791. name: "Quilava",
  792. parents: ["pokemon"]
  793. },
  794. "seviper": {
  795. name: "Seviper",
  796. parents: ["pokemon"]
  797. },
  798. "flying-fox": {
  799. name: "Flying Fox",
  800. parents: ["bat"]
  801. },
  802. "keynain": {
  803. name: "Keynain",
  804. parents: ["avian"]
  805. },
  806. "lucario": {
  807. name: "Lucario",
  808. parents: ["pokemon"]
  809. },
  810. "siamese-cat": {
  811. name: "Siamese Cat",
  812. parents: ["cat"]
  813. },
  814. "spider": {
  815. name: "Spider",
  816. parents: ["insect"]
  817. },
  818. "samurott": {
  819. name: "Samurott",
  820. parents: ["pokemon"]
  821. },
  822. "megalodon": {
  823. name: "Megalodon",
  824. parents: ["shark"]
  825. },
  826. "unicorn": {
  827. name: "Unicorn",
  828. parents: ["horse"]
  829. },
  830. "greninja": {
  831. name: "Greninja",
  832. parents: ["pokemon"]
  833. },
  834. "water-dragon": {
  835. name: "Water Dragon",
  836. parents: ["dragon"]
  837. },
  838. "cross-fox": {
  839. name: "Cross Fox",
  840. parents: ["fox"]
  841. },
  842. "synth": {
  843. name: "Synth",
  844. parents: ["machine"]
  845. },
  846. "construct": {
  847. name: "Construct",
  848. parents: []
  849. },
  850. "mexican-wolf": {
  851. name: "Mexican Wolf",
  852. parents: ["wolf"]
  853. },
  854. "leopard": {
  855. name: "Leopard",
  856. parents: ["cat"]
  857. },
  858. "pig": {
  859. name: "Pig",
  860. parents: ["mammal"]
  861. },
  862. "ampharos": {
  863. name: "Ampharos",
  864. parents: ["pokemon"]
  865. },
  866. "orca": {
  867. name: "Orca",
  868. parents: ["fish"]
  869. },
  870. "lycanroc": {
  871. name: "Lycanroc",
  872. parents: ["pokemon"]
  873. },
  874. "surkanu": {
  875. name: "Surkanu",
  876. parents: ["monster"]
  877. },
  878. "seal": {
  879. name: "Seal",
  880. parents: ["mammal"]
  881. },
  882. "keldeo": {
  883. name: "Keldeo",
  884. parents: ["pokemon"]
  885. },
  886. "great-dane": {
  887. name: "Great Dane",
  888. parents: ["dog"]
  889. },
  890. "black-backed-jackal": {
  891. name: "Black Backed Jackal",
  892. parents: ["jackal"]
  893. },
  894. "sheep": {
  895. name: "Sheep",
  896. parents: ["mammal"]
  897. },
  898. "leopard-seal": {
  899. name: "Leopard Seal",
  900. parents: ["seal"]
  901. },
  902. "zoroark": {
  903. name: "Zoroark",
  904. parents: ["pokemon"]
  905. },
  906. "maned-wolf": {
  907. name: "Maned Wolf",
  908. parents: ["canine"]
  909. },
  910. "dracha": {
  911. name: "Dracha",
  912. parents: ["dragon"]
  913. },
  914. "wolxi": {
  915. name: "Wolxi",
  916. parents: ["mammal", "alien"]
  917. },
  918. "dratini": {
  919. name: "Dratini",
  920. parents: ["pokemon", "dragon"]
  921. },
  922. "skaven": {
  923. name: "Skaven",
  924. parents: ["rat"]
  925. },
  926. "mongoose": {
  927. name: "Mongoose",
  928. parents: ["mammal"]
  929. },
  930. "lopunny": {
  931. name: "Lopunny",
  932. parents: ["pokemon", "rabbit"]
  933. },
  934. "feraligatr": {
  935. name: "Feraligatr",
  936. parents: ["pokemon", "alligator"]
  937. },
  938. "houndoom": {
  939. name: "Houndoom",
  940. parents: ["pokemon", "dog"]
  941. },
  942. "protogen": {
  943. name: "Protogen",
  944. parents: ["machine"]
  945. },
  946. "saint-bernard": {
  947. name: "Saint Bernard",
  948. parents: ["dog"]
  949. },
  950. "crow": {
  951. name: "Crow",
  952. parents: ["corvid"]
  953. },
  954. "delphox": {
  955. name: "Delphox",
  956. parents: ["pokemon", "fox"]
  957. },
  958. "moose": {
  959. name: "Moose",
  960. parents: ["mammal"]
  961. },
  962. "joraxian": {
  963. name: "Joraxian",
  964. parents: ["monster", "canine", "demon"]
  965. },
  966. "nimbat": {
  967. name: "Nimbat",
  968. parents: ["mammal"]
  969. },
  970. "aardwolf": {
  971. name: "Aardwolf",
  972. parents: ["canine"]
  973. },
  974. "fluudrani": {
  975. name: "Fluudrani",
  976. parents: ["animal"]
  977. },
  978. "arcanine": {
  979. name: "Arcanine",
  980. parents: ["pokemon", "dog"]
  981. },
  982. "inteleon": {
  983. name: "Inteleon",
  984. parents: ["pokemon", "fish"]
  985. },
  986. "ninetales": {
  987. name: "Ninetales",
  988. parents: ["pokemon", "kitsune"]
  989. },
  990. "tigrex": {
  991. name: "Tigrex",
  992. parents: ["tiger"]
  993. },
  994. "zorua": {
  995. name: "Zorua",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "vulpix": {
  999. name: "Vulpix",
  1000. parents: ["pokemon", "fox"]
  1001. },
  1002. "barghest": {
  1003. name: "Barghest",
  1004. parents: ["monster"]
  1005. },
  1006. "gray-wolf": {
  1007. name: "Gray Wolf",
  1008. parents: ["wolf"]
  1009. },
  1010. "ruppells-fox": {
  1011. name: "Rüppell's Fox",
  1012. parents: ["fox"]
  1013. },
  1014. "bull-terrier": {
  1015. name: "Bull Terrier",
  1016. parents: ["dog"]
  1017. },
  1018. "european-honey-buzzard": {
  1019. name: "European Honey Buzzard",
  1020. parents: ["avian"]
  1021. },
  1022. "t-rex": {
  1023. name: "Tyrannosaurus Rex",
  1024. parents: ["dinosaur"]
  1025. },
  1026. "mactarian": {
  1027. name: "Mactarian",
  1028. parents: ["shark", "monster"]
  1029. },
  1030. "mewtwo-y": {
  1031. name: "Mewtwo Y",
  1032. parents: ["mewtwo"]
  1033. },
  1034. "mewtwo": {
  1035. name: "Mewtwo",
  1036. parents: ["pokemon"]
  1037. },
  1038. "mew": {
  1039. name: "Mew",
  1040. parents: ["pokemon"]
  1041. },
  1042. "eevee": {
  1043. name: "Eevee",
  1044. parents: ["eeveelution"]
  1045. },
  1046. "mienshao": {
  1047. name: "Mienshao",
  1048. parents: ["pokemon"]
  1049. },
  1050. "sugar-glider": {
  1051. name: "Sugar Glider",
  1052. parents: ["opossum"]
  1053. },
  1054. "spectral-bat": {
  1055. name: "Spectral Bat",
  1056. parents: ["bat"]
  1057. },
  1058. "scolipede": {
  1059. name: "Scolipede",
  1060. parents: ["pokemon", "insect"]
  1061. },
  1062. "jackalope": {
  1063. name: "Jackalope",
  1064. parents: ["rabbit", "antelope"]
  1065. },
  1066. "caracal": {
  1067. name: "Caracal",
  1068. parents: ["cat"]
  1069. },
  1070. "stoat": {
  1071. name: "Stoat",
  1072. parents: ["mammal"]
  1073. },
  1074. "african-golden-cat": {
  1075. name: "African Golden Cat",
  1076. parents: ["cat"]
  1077. },
  1078. "gigantosaurus": {
  1079. name: "Gigantosaurus",
  1080. parents: ["dinosaur"]
  1081. },
  1082. "zorgoia": {
  1083. name: "Zorgoia",
  1084. parents: ["mammal"]
  1085. },
  1086. "monitor-lizard": {
  1087. name: "Monitor Lizard",
  1088. parents: ["lizard"]
  1089. },
  1090. "ziralkia": {
  1091. name: "Ziralkia",
  1092. parents: ["mammal"]
  1093. },
  1094. "kiiasi": {
  1095. name: "Kiiasi",
  1096. parents: ["animal"]
  1097. },
  1098. "synx": {
  1099. name: "Synx",
  1100. parents: ["monster"]
  1101. },
  1102. "panther": {
  1103. name: "Panther",
  1104. parents: ["cat"]
  1105. },
  1106. "azumarill": {
  1107. name: "Azumarill",
  1108. parents: ["pokemon"]
  1109. },
  1110. "river-snaptail": {
  1111. name: "River Snaptail",
  1112. parents: ["otter", "crocodile"]
  1113. },
  1114. "great-blue-heron": {
  1115. name: "Great Blue Heron",
  1116. parents: ["avian"]
  1117. },
  1118. "smeargle": {
  1119. name: "Smeargle",
  1120. parents: ["pokemon"]
  1121. },
  1122. "vendeilen": {
  1123. name: "Vendeilen",
  1124. parents: ["monster"]
  1125. },
  1126. "ventura": {
  1127. name: "Ventura",
  1128. parents: ["canine"]
  1129. },
  1130. "clouded-leopard": {
  1131. name: "Clouded Leopard",
  1132. parents: ["leopard"]
  1133. },
  1134. "argonian": {
  1135. name: "Argonian",
  1136. parents: ["lizard"]
  1137. },
  1138. "salazzle": {
  1139. name: "Salazzle",
  1140. parents: ["pokemon", "lizard"]
  1141. },
  1142. "je-stoff-drachen": {
  1143. name: "Je-Stoff Drachen",
  1144. parents: ["dragon"]
  1145. },
  1146. "finnish-spitz-dog": {
  1147. name: "Finnish Spitz Dog",
  1148. parents: ["dog"]
  1149. },
  1150. "gray-fox": {
  1151. name: "Gray Fox",
  1152. parents: ["fox"]
  1153. },
  1154. "opossum": {
  1155. name: "opossum",
  1156. parents: ["mammal"]
  1157. },
  1158. "antelope": {
  1159. name: "Antelope",
  1160. parents: ["mammal"]
  1161. },
  1162. "weavile": {
  1163. name: "Weavile",
  1164. parents: ["pokemon"]
  1165. },
  1166. "pikachu": {
  1167. name: "Pikachu",
  1168. parents: ["pokemon", "mouse"]
  1169. },
  1170. "grovyle": {
  1171. name: "Grovyle",
  1172. parents: ["pokemon", "plant"]
  1173. },
  1174. "sthara": {
  1175. name: "Sthara",
  1176. parents: ["snow-leopard", "reptile"]
  1177. },
  1178. "star-warrior": {
  1179. name: "Star Warrior",
  1180. parents: ["magical"]
  1181. },
  1182. "dragonoid": {
  1183. name: "Dragonoid",
  1184. parents: ["dragon"]
  1185. },
  1186. "suicune": {
  1187. name: "Suicune",
  1188. parents: ["pokemon"]
  1189. },
  1190. "vole": {
  1191. name: "Vole",
  1192. parents: ["mammal"]
  1193. },
  1194. "blaziken": {
  1195. name: "Blaziken",
  1196. parents: ["pokemon", "avian"]
  1197. },
  1198. "buizel": {
  1199. name: "Buizel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "floatzel": {
  1203. name: "Floatzel",
  1204. parents: ["pokemon", "fish"]
  1205. },
  1206. "umok": {
  1207. name: "Umok",
  1208. parents: ["avian"]
  1209. },
  1210. "sea-monster": {
  1211. name: "Sea Monster",
  1212. parents: ["monster", "fish"]
  1213. },
  1214. "egyptian-vulture": {
  1215. name: "Egyptian Vulture",
  1216. parents: ["avian"]
  1217. },
  1218. "doberman": {
  1219. name: "Doberman",
  1220. parents: ["dog"]
  1221. },
  1222. "zangoose": {
  1223. name: "Zangoose",
  1224. parents: ["pokemon", "mongoose"]
  1225. },
  1226. "mongoose": {
  1227. name: "Mongoose",
  1228. parents: ["mammal"]
  1229. },
  1230. "wickerbeast": {
  1231. name: "Wickerbeast",
  1232. parents: ["monster"]
  1233. },
  1234. "zenari": {
  1235. name: "Zenari",
  1236. parents: ["lizard"]
  1237. },
  1238. "plant": {
  1239. name: "Plant",
  1240. parents: []
  1241. },
  1242. "raskatox": {
  1243. name: "Raskatox",
  1244. parents: ["raccoon", "skunk", "cat", "fox"]
  1245. },
  1246. "mikromare": {
  1247. name: "mikromare",
  1248. parents: ["alien"]
  1249. },
  1250. "alien": {
  1251. name: "Alien",
  1252. parents: ["animal"]
  1253. },
  1254. "deity": {
  1255. name: "Deity",
  1256. parents: []
  1257. },
  1258. "skarlan": {
  1259. name: "Skarlan",
  1260. parents: ["slug", "dragon"]
  1261. },
  1262. "slug": {
  1263. name: "Slug",
  1264. parents: ["mollusk"]
  1265. },
  1266. "mollusk": {
  1267. name: "Mollusk",
  1268. parents: ["animal"]
  1269. },
  1270. "chimera": {
  1271. name: "Chimera",
  1272. parents: ["monster"]
  1273. },
  1274. "gestalt": {
  1275. name: "Gestalt",
  1276. parents: ["construct"]
  1277. },
  1278. "mimic": {
  1279. name: "Mimic",
  1280. parents: ["monster"]
  1281. },
  1282. "calico-rat": {
  1283. name: "Calico Rat",
  1284. parents: ["rat"]
  1285. },
  1286. "panda": {
  1287. name: "Panda",
  1288. parents: ["mammal"]
  1289. },
  1290. "oni": {
  1291. name: "Oni",
  1292. parents: ["monster"]
  1293. },
  1294. "pegasus": {
  1295. name: "Pegasus",
  1296. parents: ["horse"]
  1297. },
  1298. "vulpera": {
  1299. name: "Vulpera",
  1300. parents: ["fennec-fox"]
  1301. },
  1302. "ceratosaurus": {
  1303. name: "Ceratosaurus",
  1304. parents: ["dinosaur"]
  1305. },
  1306. "nykur": {
  1307. name: "Nykur",
  1308. parents: ["horse", "monster"]
  1309. },
  1310. "giraffe": {
  1311. name: "Giraffe",
  1312. parents: ["mammal"]
  1313. },
  1314. "tauren": {
  1315. name: "Tauren",
  1316. parents: ["cow"]
  1317. },
  1318. "draconi": {
  1319. name: "Draconi",
  1320. parents: ["alien", "cat", "cyborg"]
  1321. },
  1322. "dire-wolf": {
  1323. name: "Dire Wolf",
  1324. parents: ["wolf"]
  1325. },
  1326. "ferromorph": {
  1327. name: "Ferromorph",
  1328. parents: ["construct"]
  1329. },
  1330. "meowth": {
  1331. name: "Meowth",
  1332. parents: ["cat", "pokemon"]
  1333. },
  1334. "pavodragon": {
  1335. name: "Pavodragon",
  1336. parents: ["dragon"]
  1337. },
  1338. "aaltranae": {
  1339. name: "Aaltranae",
  1340. parents: ["dragon"]
  1341. },
  1342. "cyborg": {
  1343. name: "Cyborg",
  1344. parents: ["machine"]
  1345. },
  1346. "draptor": {
  1347. name: "Draptor",
  1348. parents: ["dragon"]
  1349. },
  1350. "candy": {
  1351. name: "Candy",
  1352. parents: []
  1353. },
  1354. "drenath": {
  1355. name: "Drenath",
  1356. parents: ["dragon", "snake", "rabbit"]
  1357. },
  1358. "coyju": {
  1359. name: "Coyju",
  1360. parents: ["coyote", "kaiju"]
  1361. },
  1362. "kaiju": {
  1363. name: "Kaiju",
  1364. parents: ["monster"]
  1365. },
  1366. "nickit": {
  1367. name: "Nickit",
  1368. parents: ["pokemon", "cat"]
  1369. },
  1370. "lopunny": {
  1371. name: "Lopunny",
  1372. parents: ["pokemon", "rabbit"]
  1373. },
  1374. "korean-jindo-dog": {
  1375. name: "Korean Jindo Dog",
  1376. parents: ["dog"]
  1377. },
  1378. "naga": {
  1379. name: "Naga",
  1380. parents: ["snake", "monster"]
  1381. },
  1382. "undead": {
  1383. name: "Undead",
  1384. parents: ["monster"]
  1385. },
  1386. "whale": {
  1387. name: "Whale",
  1388. parents: ["fish"]
  1389. },
  1390. "gelato-bee": {
  1391. name: "Gelato Bee",
  1392. parents: ["bee"]
  1393. },
  1394. "bee": {
  1395. name: "Bee",
  1396. parents: ["insect"]
  1397. },
  1398. "gardevoir": {
  1399. name: "Gardevoir",
  1400. parents: ["pokemon"]
  1401. },
  1402. "ant": {
  1403. name: "Ant",
  1404. parents: ["insect"]
  1405. },
  1406. "frog": {
  1407. name: "Frog",
  1408. parents: ["amphibian"]
  1409. },
  1410. "amphibian": {
  1411. name: "Amphibian",
  1412. parents: ["animal"]
  1413. },
  1414. "pangolin": {
  1415. name: "Pangolin",
  1416. parents: ["mammal"]
  1417. },
  1418. "uragi'viidorn": {
  1419. name: "Uragi'viidorn",
  1420. parents: ["avian", "bear"]
  1421. },
  1422. "gryphdelphais": {
  1423. name: "Gryphdelphais",
  1424. parents: ["dolphin", "gryphon"]
  1425. },
  1426. "plush": {
  1427. name: "Plush",
  1428. parents: ["construct"]
  1429. },
  1430. "draiger": {
  1431. name: "Draiger",
  1432. parents: ["dragon","tiger"]
  1433. },
  1434. "foxsky": {
  1435. name: "Foxsky",
  1436. parents: ["fox", "husky"]
  1437. },
  1438. "umbreon": {
  1439. name: "Umbreon",
  1440. parents: ["eeveelution"]
  1441. },
  1442. "slime-dragon": {
  1443. name: "Slime Dragon",
  1444. parents: ["dragon"]
  1445. },
  1446. "enderman": {
  1447. name: "Enderman",
  1448. parents: ["monster"]
  1449. },
  1450. "gremlin": {
  1451. name: "Gremlin",
  1452. parents: ["monster"]
  1453. },
  1454. "dragonsune": {
  1455. name: "Dragonsune",
  1456. parents: ["dragon", "kitsune"]
  1457. },
  1458. "ghost": {
  1459. name: "Ghost",
  1460. parents: ["supernatural"]
  1461. },
  1462. "false-vampire-bat": {
  1463. name: "False Vampire Bat",
  1464. parents: ["bat"]
  1465. },
  1466. "succubus": {
  1467. name: "Succubus",
  1468. parents: ["demon"]
  1469. },
  1470. "mia": {
  1471. name: "Mia",
  1472. parents: ["canine"]
  1473. },
  1474. "rainbow": {
  1475. name: "Rainbow",
  1476. parents: ["monster"]
  1477. },
  1478. "solgaleo": {
  1479. name: "Solgaleo",
  1480. parents: ["pokemon"]
  1481. },
  1482. "lucent-nargacuga": {
  1483. name: "Lucent Nargacuga",
  1484. parents: ["monster-hunter"]
  1485. },
  1486. "monster-hunter": {
  1487. name: "Monster Hunter",
  1488. parents: ["monster"]
  1489. },
  1490. "leviathan": {
  1491. "name": "Leviathan",
  1492. "url": "sea-monster"
  1493. },
  1494. "bull": {
  1495. name: "Bull",
  1496. parents: ["mammal"]
  1497. },
  1498. "tanuki": {
  1499. name: "Tanuki",
  1500. parents: ["monster"]
  1501. },
  1502. "chakat": {
  1503. name: "Chakat",
  1504. parents: ["cat"]
  1505. },
  1506. "hydra": {
  1507. name: "Hydra",
  1508. parents: ["monster"]
  1509. },
  1510. "zigzagoon": {
  1511. name: "Zigzagoon",
  1512. parents: ["raccoon", "pokemon"]
  1513. },
  1514. "vulture": {
  1515. name: "Vulture",
  1516. parents: ["avian"]
  1517. },
  1518. "eastern-dragon": {
  1519. name: "Eastern Dragon",
  1520. parents: ["dragon"]
  1521. },
  1522. "gryffon": {
  1523. name: "Gryffon",
  1524. parents: ["phoenix", "red-panda"]
  1525. },
  1526. "amtsvane": {
  1527. name: "Amtsvane",
  1528. parents: ["reptile"]
  1529. },
  1530. "kigavi": {
  1531. name: "Kigavi",
  1532. parents: ["avian"]
  1533. },
  1534. "turian": {
  1535. name: "Turian",
  1536. parents: ["avian"]
  1537. },
  1538. "zeraora": {
  1539. name: "Zeraora",
  1540. parents: ["pokemon"]
  1541. },
  1542. "sandshrew": {
  1543. name: "Sandshrew",
  1544. parents: ["pokemon", "pangolin"]
  1545. },
  1546. "valais-blacknose-sheep": {
  1547. name: "Valais Blacknose Sheep",
  1548. parents: ["sheep"]
  1549. },
  1550. "novaleit": {
  1551. name: "Novaleit",
  1552. parents: ["mammal"]
  1553. },
  1554. "dunnoh": {
  1555. name: "Dunnoh",
  1556. parents: ["mammal"]
  1557. },
  1558. "lunaral-dragon": {
  1559. name: "Lunaral Dragon",
  1560. parents: ["dragon"]
  1561. },
  1562. "arctic-wolf": {
  1563. name: "Arctic Wolf",
  1564. parents: ["wolf"]
  1565. },
  1566. "donkey": {
  1567. name: "Donkey",
  1568. parents: ["horse"]
  1569. },
  1570. "chinchilla": {
  1571. name: "Chinchilla",
  1572. parents: ["rodent"]
  1573. },
  1574. "felkin": {
  1575. name: "Felkin",
  1576. parents: ["dragon"]
  1577. },
  1578. "tykeriel": {
  1579. name: "Tykeriel",
  1580. parents: ["avian"]
  1581. },
  1582. "folf": {
  1583. name: "Folf",
  1584. parents: ["fox", "wolf"]
  1585. },
  1586. "pooltoy": {
  1587. name: "Pooltoy",
  1588. parents: ["construct"]
  1589. },
  1590. "demi": {
  1591. name: "Demi",
  1592. parents: ["human"]
  1593. },
  1594. "stegosaurus": {
  1595. name: "Stegosaurus",
  1596. parents: ["dinosaur"]
  1597. },
  1598. "computer-virus": {
  1599. name: "Computer Virus",
  1600. parents: ["program"]
  1601. },
  1602. "program": {
  1603. name: "Program",
  1604. parents: ["construct"]
  1605. },
  1606. "space-springhare": {
  1607. name: "Space Springhare",
  1608. parents: ["rabbit"]
  1609. },
  1610. "river-drake": {
  1611. name: "River Drake",
  1612. parents: ["dragon"]
  1613. },
  1614. "djinn": {
  1615. "name": "Djinn",
  1616. "url": "supernatural"
  1617. },
  1618. "supernatural": {
  1619. name: "Supernatural",
  1620. parents: ["monster"]
  1621. },
  1622. "grasshopper-mouse": {
  1623. name: "Grasshopper Mouse",
  1624. parents: ["mouse"]
  1625. },
  1626. "somali-cat": {
  1627. name: "Somali Cat",
  1628. parents: ["cat"]
  1629. },
  1630. "minccino": {
  1631. name: "Minccino",
  1632. parents: ["pokemon", "chinchilla"]
  1633. },
  1634. "pine-marten": {
  1635. name: "Pine Marten",
  1636. parents: ["marten"]
  1637. },
  1638. "marten": {
  1639. name: "Marten",
  1640. parents: ["mustelid"]
  1641. },
  1642. "mustelid": {
  1643. name: "Mustelid",
  1644. parents: ["mammal"]
  1645. },
  1646. "caribou": {
  1647. name: "Caribou",
  1648. parents: ["deer"]
  1649. },
  1650. "gnoll": {
  1651. name: "Gnoll",
  1652. parents: ["hyena", "monster"]
  1653. },
  1654. "peacekeeper": {
  1655. name: "Peacekeeper",
  1656. parents: ["human"]
  1657. },
  1658. "river-otter": {
  1659. name: "River Otter",
  1660. parents: ["otter"]
  1661. },
  1662. "dhole": {
  1663. name: "Dhole",
  1664. parents: ["canine"]
  1665. },
  1666. "springbok": {
  1667. name: "Springbok",
  1668. parents: ["antelope"]
  1669. },
  1670. "marsupial": {
  1671. name: "Marsupial",
  1672. parents: ["mammal"]
  1673. },
  1674. "townsend-big-eared-bat": {
  1675. name: "Townsend Big-eared Bat",
  1676. parents: ["bat"]
  1677. },
  1678. "squirrel": {
  1679. name: "Squirrel",
  1680. parents: ["rodent"]
  1681. },
  1682. "magpie": {
  1683. name: "Magpie",
  1684. parents: ["corvid"]
  1685. },
  1686. "civet": {
  1687. name: "Civet",
  1688. parents: ["feliform"]
  1689. },
  1690. "feliform": {
  1691. name: "Feliform",
  1692. parents: ["mammal"]
  1693. },
  1694. "tiefling": {
  1695. name: "Tiefling",
  1696. parents: ["devil"]
  1697. },
  1698. "devil": {
  1699. name: "Devil",
  1700. parents: ["supernatural"]
  1701. },
  1702. "sika-deer": {
  1703. name: "Sika Deer",
  1704. parents: ["deer"]
  1705. },
  1706. "vaporeon": {
  1707. name: "Vaporeon",
  1708. parents: ["eeveelution"]
  1709. },
  1710. "leafeon": {
  1711. name: "Leafeon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "jolteon": {
  1715. name: "Jolteon",
  1716. parents: ["eeveelution"]
  1717. },
  1718. "spireborn": {
  1719. name: "Spireborn",
  1720. parents: ["zorgoia"]
  1721. },
  1722. "vampire": {
  1723. name: "Vampire",
  1724. parents: ["monster"]
  1725. },
  1726. "extraplanar": {
  1727. name: "Extraplanar",
  1728. parents: []
  1729. },
  1730. }
  1731. //species
  1732. function getSpeciesInfo(speciesList) {
  1733. let result = new Set();
  1734. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1735. result.add(entry)
  1736. });
  1737. return Array.from(result);
  1738. };
  1739. function getSpeciesInfoHelper(species) {
  1740. if (!speciesData[species]) {
  1741. console.warn(species + " doesn't exist");
  1742. return [];
  1743. }
  1744. if (speciesData[species].parents) {
  1745. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1746. } else {
  1747. return [species];
  1748. }
  1749. }
  1750. characterMakers.push(() => makeCharacter(
  1751. {
  1752. name: "Fen",
  1753. species: ["crux"],
  1754. description: {
  1755. title: "Bio",
  1756. text: "Very furry. Sheds on everything."
  1757. },
  1758. tags: [
  1759. "anthro",
  1760. "goo"
  1761. ]
  1762. },
  1763. {
  1764. back: {
  1765. height: math.unit(2.2428, "meter"),
  1766. weight: math.unit(124.738, "kg"),
  1767. name: "Back",
  1768. image: {
  1769. source: "./media/characters/fen/back.svg",
  1770. },
  1771. info: {
  1772. description: {
  1773. mode: "append",
  1774. text: "\n\nHe is not currently looking at you."
  1775. }
  1776. }
  1777. },
  1778. full: {
  1779. height: math.unit(1.34, "meter"),
  1780. weight: math.unit(225, "kg"),
  1781. name: "Full",
  1782. image: {
  1783. source: "./media/characters/fen/full.svg"
  1784. },
  1785. info: {
  1786. description: {
  1787. mode: "append",
  1788. text: "\n\nMunch."
  1789. }
  1790. }
  1791. },
  1792. kneeling: {
  1793. height: math.unit(5.4, "feet"),
  1794. weight: math.unit(124.738, "kg"),
  1795. name: "Kneeling",
  1796. image: {
  1797. source: "./media/characters/fen/kneeling.svg",
  1798. extra: 563 / 507
  1799. }
  1800. },
  1801. goo: {
  1802. height: math.unit(2.8, "feet"),
  1803. weight: math.unit(125, "kg"),
  1804. capacity: math.unit(1, "people"),
  1805. name: "Goo",
  1806. image: {
  1807. source: "./media/characters/fen/goo.svg",
  1808. bottom: 116 / 613
  1809. }
  1810. },
  1811. lounging: {
  1812. height: math.unit(6.5, "feet"),
  1813. weight: math.unit(125, "kg"),
  1814. name: "Lounging",
  1815. image: {
  1816. source: "./media/characters/fen/lounging.svg"
  1817. }
  1818. },
  1819. },
  1820. [
  1821. {
  1822. name: "Normal",
  1823. height: math.unit(2.2428, "meter")
  1824. },
  1825. {
  1826. name: "Big",
  1827. height: math.unit(12, "feet")
  1828. },
  1829. {
  1830. name: "Minimacro",
  1831. height: math.unit(40, "feet"),
  1832. default: true,
  1833. info: {
  1834. description: {
  1835. mode: "append",
  1836. text: "\n\nTOO DAMN BIG"
  1837. }
  1838. }
  1839. },
  1840. {
  1841. name: "Macro",
  1842. height: math.unit(100, "feet"),
  1843. info: {
  1844. description: {
  1845. mode: "append",
  1846. text: "\n\nTOO DAMN BIG"
  1847. }
  1848. }
  1849. },
  1850. {
  1851. name: "Macro+",
  1852. height: math.unit(300, "feet")
  1853. },
  1854. {
  1855. name: "Megamacro",
  1856. height: math.unit(2, "miles")
  1857. }
  1858. ]
  1859. ))
  1860. characterMakers.push(() => makeCharacter(
  1861. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1862. {
  1863. front: {
  1864. height: math.unit(183, "cm"),
  1865. weight: math.unit(80, "kg"),
  1866. name: "Front",
  1867. image: {
  1868. source: "./media/characters/sofia-fluttertail/front.svg",
  1869. bottom: 0.01,
  1870. extra: 2154 / 2081
  1871. }
  1872. },
  1873. frontAlt: {
  1874. height: math.unit(183, "cm"),
  1875. weight: math.unit(80, "kg"),
  1876. name: "Front (alt)",
  1877. image: {
  1878. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1879. }
  1880. },
  1881. back: {
  1882. height: math.unit(183, "cm"),
  1883. weight: math.unit(80, "kg"),
  1884. name: "Back",
  1885. image: {
  1886. source: "./media/characters/sofia-fluttertail/back.svg"
  1887. }
  1888. },
  1889. kneeling: {
  1890. height: math.unit(125, "cm"),
  1891. weight: math.unit(80, "kg"),
  1892. name: "Kneeling",
  1893. image: {
  1894. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1895. extra: 1033 / 977,
  1896. bottom: 23.7 / 1057
  1897. }
  1898. },
  1899. maw: {
  1900. height: math.unit(183 / 5, "cm"),
  1901. name: "Maw",
  1902. image: {
  1903. source: "./media/characters/sofia-fluttertail/maw.svg"
  1904. }
  1905. },
  1906. mawcloseup: {
  1907. height: math.unit(183 / 5 * 0.41, "cm"),
  1908. name: "Maw (Closeup)",
  1909. image: {
  1910. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1911. }
  1912. },
  1913. paws: {
  1914. height: math.unit(1.17, "feet"),
  1915. name: "Paws",
  1916. image: {
  1917. source: "./media/characters/sofia-fluttertail/paws.svg",
  1918. extra: 851 / 851,
  1919. bottom: 17 / 868
  1920. }
  1921. },
  1922. },
  1923. [
  1924. {
  1925. name: "Normal",
  1926. height: math.unit(1.83, "meter")
  1927. },
  1928. {
  1929. name: "Size Thief",
  1930. height: math.unit(18, "feet")
  1931. },
  1932. {
  1933. name: "50 Foot Collie",
  1934. height: math.unit(50, "feet")
  1935. },
  1936. {
  1937. name: "Macro",
  1938. height: math.unit(96, "feet"),
  1939. default: true
  1940. },
  1941. {
  1942. name: "Megamerger",
  1943. height: math.unit(650, "feet")
  1944. },
  1945. ]
  1946. ))
  1947. characterMakers.push(() => makeCharacter(
  1948. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1949. {
  1950. front: {
  1951. height: math.unit(7, "feet"),
  1952. weight: math.unit(100, "kg"),
  1953. name: "Front",
  1954. image: {
  1955. source: "./media/characters/march/front.svg",
  1956. extra: 1992/1851,
  1957. bottom: 39/2031
  1958. }
  1959. },
  1960. foot: {
  1961. height: math.unit(0.9, "feet"),
  1962. name: "Foot",
  1963. image: {
  1964. source: "./media/characters/march/foot.svg"
  1965. }
  1966. },
  1967. },
  1968. [
  1969. {
  1970. name: "Normal",
  1971. height: math.unit(7.9, "feet")
  1972. },
  1973. {
  1974. name: "Macro",
  1975. height: math.unit(220, "meters")
  1976. },
  1977. {
  1978. name: "Megamacro",
  1979. height: math.unit(2.98, "km"),
  1980. default: true
  1981. },
  1982. {
  1983. name: "Gigamacro",
  1984. height: math.unit(15963, "km")
  1985. },
  1986. {
  1987. name: "Teramacro",
  1988. height: math.unit(2980000000, "km")
  1989. },
  1990. {
  1991. name: "Examacro",
  1992. height: math.unit(250, "parsecs")
  1993. },
  1994. ]
  1995. ))
  1996. characterMakers.push(() => makeCharacter(
  1997. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1998. {
  1999. front: {
  2000. height: math.unit(6, "feet"),
  2001. weight: math.unit(60, "kg"),
  2002. name: "Front",
  2003. image: {
  2004. source: "./media/characters/noir/front.svg",
  2005. extra: 1,
  2006. bottom: 0.032
  2007. }
  2008. },
  2009. },
  2010. [
  2011. {
  2012. name: "Normal",
  2013. height: math.unit(6.6, "feet")
  2014. },
  2015. {
  2016. name: "Macro",
  2017. height: math.unit(500, "feet")
  2018. },
  2019. {
  2020. name: "Megamacro",
  2021. height: math.unit(2.5, "km"),
  2022. default: true
  2023. },
  2024. {
  2025. name: "Gigamacro",
  2026. height: math.unit(22500, "km")
  2027. },
  2028. {
  2029. name: "Teramacro",
  2030. height: math.unit(2500000000, "km")
  2031. },
  2032. {
  2033. name: "Examacro",
  2034. height: math.unit(200, "parsecs")
  2035. },
  2036. ]
  2037. ))
  2038. characterMakers.push(() => makeCharacter(
  2039. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2040. {
  2041. front: {
  2042. height: math.unit(7, "feet"),
  2043. weight: math.unit(100, "kg"),
  2044. name: "Front",
  2045. image: {
  2046. source: "./media/characters/okuri/front.svg",
  2047. extra: 1,
  2048. bottom: 0.037
  2049. }
  2050. },
  2051. back: {
  2052. height: math.unit(7, "feet"),
  2053. weight: math.unit(100, "kg"),
  2054. name: "Back",
  2055. image: {
  2056. source: "./media/characters/okuri/back.svg",
  2057. extra: 1,
  2058. bottom: 0.007
  2059. }
  2060. },
  2061. },
  2062. [
  2063. {
  2064. name: "Megamacro",
  2065. height: math.unit(100, "miles"),
  2066. default: true
  2067. },
  2068. ]
  2069. ))
  2070. characterMakers.push(() => makeCharacter(
  2071. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2072. {
  2073. front: {
  2074. height: math.unit(7, "feet"),
  2075. weight: math.unit(100, "kg"),
  2076. name: "Front",
  2077. image: {
  2078. source: "./media/characters/manny/front.svg",
  2079. extra: 1,
  2080. bottom: 0.06
  2081. }
  2082. },
  2083. back: {
  2084. height: math.unit(7, "feet"),
  2085. weight: math.unit(100, "kg"),
  2086. name: "Back",
  2087. image: {
  2088. source: "./media/characters/manny/back.svg",
  2089. extra: 1,
  2090. bottom: 0.014
  2091. }
  2092. },
  2093. },
  2094. [
  2095. {
  2096. name: "Normal",
  2097. height: math.unit(7, "feet"),
  2098. },
  2099. {
  2100. name: "Macro",
  2101. height: math.unit(78, "feet"),
  2102. default: true
  2103. },
  2104. {
  2105. name: "Macro+",
  2106. height: math.unit(300, "meters")
  2107. },
  2108. {
  2109. name: "Macro++",
  2110. height: math.unit(2400, "meters")
  2111. },
  2112. {
  2113. name: "Megamacro",
  2114. height: math.unit(5167, "meters")
  2115. },
  2116. {
  2117. name: "Gigamacro",
  2118. height: math.unit(41769, "miles")
  2119. },
  2120. ]
  2121. ))
  2122. characterMakers.push(() => makeCharacter(
  2123. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2124. {
  2125. front: {
  2126. height: math.unit(7, "feet"),
  2127. weight: math.unit(100, "kg"),
  2128. name: "Front",
  2129. image: {
  2130. source: "./media/characters/adake/front-1.svg"
  2131. }
  2132. },
  2133. frontAlt: {
  2134. height: math.unit(7, "feet"),
  2135. weight: math.unit(100, "kg"),
  2136. name: "Front (Alt)",
  2137. image: {
  2138. source: "./media/characters/adake/front-2.svg",
  2139. extra: 1,
  2140. bottom: 0.01
  2141. }
  2142. },
  2143. back: {
  2144. height: math.unit(7, "feet"),
  2145. weight: math.unit(100, "kg"),
  2146. name: "Back",
  2147. image: {
  2148. source: "./media/characters/adake/back.svg",
  2149. }
  2150. },
  2151. kneel: {
  2152. height: math.unit(5.385, "feet"),
  2153. weight: math.unit(100, "kg"),
  2154. name: "Kneeling",
  2155. image: {
  2156. source: "./media/characters/adake/kneel.svg",
  2157. bottom: 0.052
  2158. }
  2159. },
  2160. },
  2161. [
  2162. {
  2163. name: "Normal",
  2164. height: math.unit(7, "feet"),
  2165. },
  2166. {
  2167. name: "Macro",
  2168. height: math.unit(78, "feet"),
  2169. default: true
  2170. },
  2171. {
  2172. name: "Macro+",
  2173. height: math.unit(300, "meters")
  2174. },
  2175. {
  2176. name: "Macro++",
  2177. height: math.unit(2400, "meters")
  2178. },
  2179. {
  2180. name: "Megamacro",
  2181. height: math.unit(5167, "meters")
  2182. },
  2183. {
  2184. name: "Gigamacro",
  2185. height: math.unit(41769, "miles")
  2186. },
  2187. ]
  2188. ))
  2189. characterMakers.push(() => makeCharacter(
  2190. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2191. {
  2192. front: {
  2193. height: math.unit(1.65, "meters"),
  2194. weight: math.unit(50, "kg"),
  2195. name: "Front",
  2196. image: {
  2197. source: "./media/characters/elijah/front.svg",
  2198. extra: 858 / 830,
  2199. bottom: 95.5 / 953.8559
  2200. }
  2201. },
  2202. back: {
  2203. height: math.unit(1.65, "meters"),
  2204. weight: math.unit(50, "kg"),
  2205. name: "Back",
  2206. image: {
  2207. source: "./media/characters/elijah/back.svg",
  2208. extra: 895 / 850,
  2209. bottom: 5.3 / 897.956
  2210. }
  2211. },
  2212. frontNsfw: {
  2213. height: math.unit(1.65, "meters"),
  2214. weight: math.unit(50, "kg"),
  2215. name: "Front (NSFW)",
  2216. image: {
  2217. source: "./media/characters/elijah/front-nsfw.svg",
  2218. extra: 858 / 830,
  2219. bottom: 95.5 / 953.8559
  2220. }
  2221. },
  2222. backNsfw: {
  2223. height: math.unit(1.65, "meters"),
  2224. weight: math.unit(50, "kg"),
  2225. name: "Back (NSFW)",
  2226. image: {
  2227. source: "./media/characters/elijah/back-nsfw.svg",
  2228. extra: 895 / 850,
  2229. bottom: 5.3 / 897.956
  2230. }
  2231. },
  2232. dick: {
  2233. height: math.unit(1, "feet"),
  2234. name: "Dick",
  2235. image: {
  2236. source: "./media/characters/elijah/dick.svg"
  2237. }
  2238. },
  2239. beakOpen: {
  2240. height: math.unit(1.25, "feet"),
  2241. name: "Beak (Open)",
  2242. image: {
  2243. source: "./media/characters/elijah/beak-open.svg"
  2244. }
  2245. },
  2246. beakShut: {
  2247. height: math.unit(1.25, "feet"),
  2248. name: "Beak (Shut)",
  2249. image: {
  2250. source: "./media/characters/elijah/beak-shut.svg"
  2251. }
  2252. },
  2253. footFlexing: {
  2254. height: math.unit(1.61, "feet"),
  2255. name: "Foot (Flexing)",
  2256. image: {
  2257. source: "./media/characters/elijah/foot-flexing.svg"
  2258. }
  2259. },
  2260. footStepping: {
  2261. height: math.unit(1.44, "feet"),
  2262. name: "Foot (Stepping)",
  2263. image: {
  2264. source: "./media/characters/elijah/foot-stepping.svg"
  2265. }
  2266. },
  2267. plantigradeLeg: {
  2268. height: math.unit(2.34, "feet"),
  2269. name: "Plantigrade Leg",
  2270. image: {
  2271. source: "./media/characters/elijah/plantigrade-leg.svg"
  2272. }
  2273. },
  2274. plantigradeFootLeft: {
  2275. height: math.unit(0.9, "feet"),
  2276. name: "Plantigrade Foot (Left)",
  2277. image: {
  2278. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2279. }
  2280. },
  2281. plantigradeFootRight: {
  2282. height: math.unit(0.9, "feet"),
  2283. name: "Plantigrade Foot (Right)",
  2284. image: {
  2285. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2286. }
  2287. },
  2288. },
  2289. [
  2290. {
  2291. name: "Normal",
  2292. height: math.unit(1.65, "meters")
  2293. },
  2294. {
  2295. name: "Macro",
  2296. height: math.unit(55, "meters"),
  2297. default: true
  2298. },
  2299. {
  2300. name: "Macro+",
  2301. height: math.unit(105, "meters")
  2302. },
  2303. ]
  2304. ))
  2305. characterMakers.push(() => makeCharacter(
  2306. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2307. {
  2308. front: {
  2309. height: math.unit(11, "feet"),
  2310. weight: math.unit(320, "kg"),
  2311. name: "Front",
  2312. image: {
  2313. source: "./media/characters/rai/front.svg",
  2314. extra: 1802/1696,
  2315. bottom: 68/1870
  2316. }
  2317. },
  2318. frontDressed: {
  2319. height: math.unit(11, "feet"),
  2320. weight: math.unit(320, "kg"),
  2321. name: "Front (Dressed)",
  2322. image: {
  2323. source: "./media/characters/rai/front-dressed.svg",
  2324. extra: 1802/1696,
  2325. bottom: 68/1870
  2326. }
  2327. },
  2328. side: {
  2329. height: math.unit(11, "feet"),
  2330. weight: math.unit(320, "kg"),
  2331. name: "Side",
  2332. image: {
  2333. source: "./media/characters/rai/side.svg",
  2334. extra: 1789/1710,
  2335. bottom: 115/1904
  2336. }
  2337. },
  2338. back: {
  2339. height: math.unit(11, "feet"),
  2340. weight: math.unit(320, "kg"),
  2341. name: "Back",
  2342. image: {
  2343. source: "./media/characters/rai/back.svg",
  2344. extra: 1770/1707,
  2345. bottom: 28/1798
  2346. }
  2347. },
  2348. feral: {
  2349. height: math.unit(11, "feet"),
  2350. weight: math.unit(640, "kg"),
  2351. name: "Feral",
  2352. image: {
  2353. source: "./media/characters/rai/feral.svg",
  2354. extra: 1035/642,
  2355. bottom: 86/1121
  2356. }
  2357. },
  2358. dragon: {
  2359. height: math.unit(23, "feet"),
  2360. weight: math.unit(50000, "lb"),
  2361. name: "Dragon",
  2362. image: {
  2363. source: "./media/characters/rai/dragon.svg",
  2364. extra: 2498 / 2030,
  2365. bottom: 85.2 / 2584
  2366. }
  2367. },
  2368. maw: {
  2369. height: math.unit(6 / 3.81416, "feet"),
  2370. name: "Maw",
  2371. image: {
  2372. source: "./media/characters/rai/maw.svg"
  2373. }
  2374. },
  2375. },
  2376. [
  2377. {
  2378. name: "Normal",
  2379. height: math.unit(11, "feet")
  2380. },
  2381. {
  2382. name: "Macro",
  2383. height: math.unit(302, "feet"),
  2384. default: true
  2385. },
  2386. ]
  2387. ))
  2388. characterMakers.push(() => makeCharacter(
  2389. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2390. {
  2391. frontDressed: {
  2392. height: math.unit(216, "feet"),
  2393. weight: math.unit(7000000, "lb"),
  2394. name: "Front (Dressed)",
  2395. image: {
  2396. source: "./media/characters/jazzy/front-dressed.svg",
  2397. extra: 2738 / 2651,
  2398. bottom: 41.8 / 2786
  2399. }
  2400. },
  2401. backDressed: {
  2402. height: math.unit(216, "feet"),
  2403. weight: math.unit(7000000, "lb"),
  2404. name: "Back (Dressed)",
  2405. image: {
  2406. source: "./media/characters/jazzy/back-dressed.svg",
  2407. extra: 2775 / 2673,
  2408. bottom: 36.8 / 2817
  2409. }
  2410. },
  2411. front: {
  2412. height: math.unit(216, "feet"),
  2413. weight: math.unit(7000000, "lb"),
  2414. name: "Front",
  2415. image: {
  2416. source: "./media/characters/jazzy/front.svg",
  2417. extra: 2738 / 2651,
  2418. bottom: 41.8 / 2786
  2419. }
  2420. },
  2421. back: {
  2422. height: math.unit(216, "feet"),
  2423. weight: math.unit(7000000, "lb"),
  2424. name: "Back",
  2425. image: {
  2426. source: "./media/characters/jazzy/back.svg",
  2427. extra: 2775 / 2673,
  2428. bottom: 36.8 / 2817
  2429. }
  2430. },
  2431. maw: {
  2432. height: math.unit(20, "feet"),
  2433. name: "Maw",
  2434. image: {
  2435. source: "./media/characters/jazzy/maw.svg"
  2436. }
  2437. },
  2438. paws: {
  2439. height: math.unit(27.5, "feet"),
  2440. name: "Paws",
  2441. image: {
  2442. source: "./media/characters/jazzy/paws.svg"
  2443. }
  2444. },
  2445. eye: {
  2446. height: math.unit(4.4, "feet"),
  2447. name: "Eye",
  2448. image: {
  2449. source: "./media/characters/jazzy/eye.svg"
  2450. }
  2451. },
  2452. droneOffense: {
  2453. height: math.unit(9.5, "inches"),
  2454. name: "Drone (Offense)",
  2455. image: {
  2456. source: "./media/characters/jazzy/drone-offense.svg"
  2457. }
  2458. },
  2459. droneRecon: {
  2460. height: math.unit(9.5, "inches"),
  2461. name: "Drone (Recon)",
  2462. image: {
  2463. source: "./media/characters/jazzy/drone-recon.svg"
  2464. }
  2465. },
  2466. droneDefense: {
  2467. height: math.unit(9.5, "inches"),
  2468. name: "Drone (Defense)",
  2469. image: {
  2470. source: "./media/characters/jazzy/drone-defense.svg"
  2471. }
  2472. },
  2473. },
  2474. [
  2475. {
  2476. name: "Macro",
  2477. height: math.unit(216, "feet"),
  2478. default: true
  2479. },
  2480. ]
  2481. ))
  2482. characterMakers.push(() => makeCharacter(
  2483. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2484. {
  2485. front: {
  2486. height: math.unit(9 + 6/12, "feet"),
  2487. weight: math.unit(700, "lb"),
  2488. name: "Front",
  2489. image: {
  2490. source: "./media/characters/flamm/front.svg",
  2491. extra: 1751/1632,
  2492. bottom: 46/1797
  2493. }
  2494. },
  2495. buff: {
  2496. height: math.unit(9 + 6/12, "feet"),
  2497. weight: math.unit(950, "lb"),
  2498. name: "Buff",
  2499. image: {
  2500. source: "./media/characters/flamm/buff.svg",
  2501. extra: 3018/2874,
  2502. bottom: 221/3239
  2503. }
  2504. },
  2505. },
  2506. [
  2507. {
  2508. name: "Normal",
  2509. height: math.unit(9.5, "feet")
  2510. },
  2511. {
  2512. name: "Macro",
  2513. height: math.unit(200, "feet"),
  2514. default: true
  2515. },
  2516. ]
  2517. ))
  2518. characterMakers.push(() => makeCharacter(
  2519. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2520. {
  2521. front: {
  2522. height: math.unit(5 + 3/12, "feet"),
  2523. weight: math.unit(60, "kg"),
  2524. name: "Front",
  2525. image: {
  2526. source: "./media/characters/zephiro/front.svg",
  2527. extra: 2309 / 2162,
  2528. bottom: 0.069
  2529. }
  2530. },
  2531. side: {
  2532. height: math.unit(5 + 3/12, "feet"),
  2533. weight: math.unit(60, "kg"),
  2534. name: "Side",
  2535. image: {
  2536. source: "./media/characters/zephiro/side.svg",
  2537. extra: 2403 / 2279,
  2538. bottom: 0.015
  2539. }
  2540. },
  2541. back: {
  2542. height: math.unit(5 + 3/12, "feet"),
  2543. weight: math.unit(60, "kg"),
  2544. name: "Back",
  2545. image: {
  2546. source: "./media/characters/zephiro/back.svg",
  2547. extra: 2373 / 2244,
  2548. bottom: 0.013
  2549. }
  2550. },
  2551. hand: {
  2552. height: math.unit(0.68, "feet"),
  2553. name: "Hand",
  2554. image: {
  2555. source: "./media/characters/zephiro/hand.svg"
  2556. }
  2557. },
  2558. paw: {
  2559. height: math.unit(1, "feet"),
  2560. name: "Paw",
  2561. image: {
  2562. source: "./media/characters/zephiro/paw.svg"
  2563. }
  2564. },
  2565. beans: {
  2566. height: math.unit(0.93, "feet"),
  2567. name: "Beans",
  2568. image: {
  2569. source: "./media/characters/zephiro/beans.svg"
  2570. }
  2571. },
  2572. },
  2573. [
  2574. {
  2575. name: "Micro",
  2576. height: math.unit(3, "inches")
  2577. },
  2578. {
  2579. name: "Normal",
  2580. height: math.unit(5 + 3 / 12, "feet"),
  2581. default: true
  2582. },
  2583. {
  2584. name: "Macro",
  2585. height: math.unit(118, "feet")
  2586. },
  2587. ]
  2588. ))
  2589. characterMakers.push(() => makeCharacter(
  2590. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2591. {
  2592. front: {
  2593. height: math.unit(5, "feet"),
  2594. weight: math.unit(90, "kg"),
  2595. name: "Front",
  2596. image: {
  2597. source: "./media/characters/fory/front.svg",
  2598. extra: 2862 / 2674,
  2599. bottom: 180 / 3043.8
  2600. }
  2601. },
  2602. back: {
  2603. height: math.unit(5, "feet"),
  2604. weight: math.unit(90, "kg"),
  2605. name: "Back",
  2606. image: {
  2607. source: "./media/characters/fory/back.svg",
  2608. extra: 2962 / 2791,
  2609. bottom: 106 / 3071.8
  2610. }
  2611. },
  2612. foot: {
  2613. height: math.unit(2.14, "feet"),
  2614. name: "Foot",
  2615. image: {
  2616. source: "./media/characters/fory/foot.svg"
  2617. }
  2618. },
  2619. },
  2620. [
  2621. {
  2622. name: "Normal",
  2623. height: math.unit(5, "feet")
  2624. },
  2625. {
  2626. name: "Macro",
  2627. height: math.unit(50, "feet"),
  2628. default: true
  2629. },
  2630. {
  2631. name: "Megamacro",
  2632. height: math.unit(10, "miles")
  2633. },
  2634. {
  2635. name: "Gigamacro",
  2636. height: math.unit(5, "earths")
  2637. },
  2638. ]
  2639. ))
  2640. characterMakers.push(() => makeCharacter(
  2641. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2642. {
  2643. front: {
  2644. height: math.unit(7, "feet"),
  2645. weight: math.unit(90, "kg"),
  2646. name: "Front",
  2647. image: {
  2648. source: "./media/characters/kurrikage/front.svg",
  2649. extra: 1,
  2650. bottom: 0.035
  2651. }
  2652. },
  2653. back: {
  2654. height: math.unit(7, "feet"),
  2655. weight: math.unit(90, "lb"),
  2656. name: "Back",
  2657. image: {
  2658. source: "./media/characters/kurrikage/back.svg"
  2659. }
  2660. },
  2661. paw: {
  2662. height: math.unit(1.5, "feet"),
  2663. name: "Paw",
  2664. image: {
  2665. source: "./media/characters/kurrikage/paw.svg"
  2666. }
  2667. },
  2668. staff: {
  2669. height: math.unit(6.7, "feet"),
  2670. name: "Staff",
  2671. image: {
  2672. source: "./media/characters/kurrikage/staff.svg"
  2673. }
  2674. },
  2675. peek: {
  2676. height: math.unit(1.05, "feet"),
  2677. name: "Peeking",
  2678. image: {
  2679. source: "./media/characters/kurrikage/peek.svg",
  2680. bottom: 0.08
  2681. }
  2682. },
  2683. },
  2684. [
  2685. {
  2686. name: "Normal",
  2687. height: math.unit(12, "feet"),
  2688. default: true
  2689. },
  2690. {
  2691. name: "Big",
  2692. height: math.unit(20, "feet")
  2693. },
  2694. {
  2695. name: "Macro",
  2696. height: math.unit(500, "feet")
  2697. },
  2698. {
  2699. name: "Megamacro",
  2700. height: math.unit(20, "miles")
  2701. },
  2702. ]
  2703. ))
  2704. characterMakers.push(() => makeCharacter(
  2705. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2706. {
  2707. front: {
  2708. height: math.unit(6, "feet"),
  2709. weight: math.unit(75, "kg"),
  2710. name: "Front",
  2711. image: {
  2712. source: "./media/characters/shingo/front.svg",
  2713. extra: 706/681,
  2714. bottom: 11/717
  2715. }
  2716. },
  2717. frontAlt: {
  2718. height: math.unit(6, "feet"),
  2719. weight: math.unit(75, "kg"),
  2720. name: "Front (Alt)",
  2721. image: {
  2722. source: "./media/characters/shingo/front-alt.svg",
  2723. extra: 3511 / 3338,
  2724. bottom: 0.005
  2725. }
  2726. },
  2727. paw: {
  2728. height: math.unit(1, "feet"),
  2729. name: "Paw",
  2730. image: {
  2731. source: "./media/characters/shingo/paw.svg"
  2732. }
  2733. },
  2734. },
  2735. [
  2736. {
  2737. name: "Micro",
  2738. height: math.unit(4, "inches")
  2739. },
  2740. {
  2741. name: "Normal",
  2742. height: math.unit(6, "feet"),
  2743. default: true
  2744. },
  2745. {
  2746. name: "Macro",
  2747. height: math.unit(108, "feet")
  2748. },
  2749. {
  2750. name: "Macro+",
  2751. height: math.unit(1500, "feet")
  2752. },
  2753. ]
  2754. ))
  2755. characterMakers.push(() => makeCharacter(
  2756. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2757. {
  2758. side: {
  2759. height: math.unit(6, "feet"),
  2760. weight: math.unit(75, "kg"),
  2761. name: "Side",
  2762. image: {
  2763. source: "./media/characters/aigey/side.svg"
  2764. }
  2765. },
  2766. },
  2767. [
  2768. {
  2769. name: "Macro",
  2770. height: math.unit(200, "feet"),
  2771. default: true
  2772. },
  2773. {
  2774. name: "Megamacro",
  2775. height: math.unit(100, "miles")
  2776. },
  2777. ]
  2778. )
  2779. )
  2780. characterMakers.push(() => makeCharacter(
  2781. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2782. {
  2783. front: {
  2784. height: math.unit(5 + 5 / 12, "feet"),
  2785. weight: math.unit(75, "kg"),
  2786. name: "Front",
  2787. image: {
  2788. source: "./media/characters/natasha/front.svg",
  2789. extra: 859 / 824,
  2790. bottom: 23 / 879.6
  2791. }
  2792. },
  2793. frontNsfw: {
  2794. height: math.unit(5 + 5 / 12, "feet"),
  2795. weight: math.unit(75, "kg"),
  2796. name: "Front (NSFW)",
  2797. image: {
  2798. source: "./media/characters/natasha/front-nsfw.svg",
  2799. extra: 859 / 824,
  2800. bottom: 23 / 879.6
  2801. }
  2802. },
  2803. frontErect: {
  2804. height: math.unit(5 + 5 / 12, "feet"),
  2805. weight: math.unit(75, "kg"),
  2806. name: "Front (Erect)",
  2807. image: {
  2808. source: "./media/characters/natasha/front-erect.svg",
  2809. extra: 859 / 824,
  2810. bottom: 23 / 879.6
  2811. }
  2812. },
  2813. back: {
  2814. height: math.unit(5 + 5 / 12, "feet"),
  2815. weight: math.unit(75, "kg"),
  2816. name: "Back",
  2817. image: {
  2818. source: "./media/characters/natasha/back.svg",
  2819. extra: 887.9 / 852.6,
  2820. bottom: 9.7 / 896.4
  2821. }
  2822. },
  2823. backAlt: {
  2824. height: math.unit(5 + 5 / 12, "feet"),
  2825. weight: math.unit(75, "kg"),
  2826. name: "Back (Alt)",
  2827. image: {
  2828. source: "./media/characters/natasha/back-alt.svg",
  2829. extra: 1236.7 / 1192,
  2830. bottom: 22.3 / 1258.2
  2831. }
  2832. },
  2833. dick: {
  2834. height: math.unit(1.772, "feet"),
  2835. name: "Dick",
  2836. image: {
  2837. source: "./media/characters/natasha/dick.svg"
  2838. }
  2839. },
  2840. paw: {
  2841. height: math.unit(0.250, "meters"),
  2842. name: "Paw",
  2843. image: {
  2844. source: "./media/characters/natasha/paw.svg"
  2845. }
  2846. },
  2847. },
  2848. [
  2849. {
  2850. name: "Normal",
  2851. height: math.unit(5 + 5 / 12, "feet")
  2852. },
  2853. {
  2854. name: "Large",
  2855. height: math.unit(12, "feet")
  2856. },
  2857. {
  2858. name: "Macro",
  2859. height: math.unit(100, "feet"),
  2860. default: true
  2861. },
  2862. {
  2863. name: "Macro+",
  2864. height: math.unit(260, "feet")
  2865. },
  2866. {
  2867. name: "Macro++",
  2868. height: math.unit(1, "mile")
  2869. },
  2870. ]
  2871. ))
  2872. characterMakers.push(() => makeCharacter(
  2873. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2874. {
  2875. front: {
  2876. height: math.unit(6, "feet"),
  2877. weight: math.unit(75, "kg"),
  2878. name: "Front",
  2879. image: {
  2880. source: "./media/characters/malik/front.svg"
  2881. }
  2882. },
  2883. side: {
  2884. height: math.unit(6, "feet"),
  2885. weight: math.unit(75, "kg"),
  2886. name: "Side",
  2887. image: {
  2888. source: "./media/characters/malik/side.svg",
  2889. extra: 1.1539
  2890. }
  2891. },
  2892. back: {
  2893. height: math.unit(6, "feet"),
  2894. weight: math.unit(75, "kg"),
  2895. name: "Back",
  2896. image: {
  2897. source: "./media/characters/malik/back.svg"
  2898. }
  2899. },
  2900. },
  2901. [
  2902. {
  2903. name: "Macro",
  2904. height: math.unit(156, "feet"),
  2905. default: true
  2906. },
  2907. {
  2908. name: "Macro+",
  2909. height: math.unit(1188, "feet")
  2910. },
  2911. ]
  2912. ))
  2913. characterMakers.push(() => makeCharacter(
  2914. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2915. {
  2916. front: {
  2917. height: math.unit(6, "feet"),
  2918. weight: math.unit(75, "kg"),
  2919. name: "Front",
  2920. image: {
  2921. source: "./media/characters/sefer/front.svg",
  2922. extra: 848 / 659,
  2923. bottom: 28.3 / 876.442
  2924. }
  2925. },
  2926. back: {
  2927. height: math.unit(6, "feet"),
  2928. weight: math.unit(75, "kg"),
  2929. name: "Back",
  2930. image: {
  2931. source: "./media/characters/sefer/back.svg",
  2932. extra: 864 / 695,
  2933. bottom: 10 / 871
  2934. }
  2935. },
  2936. frontDressed: {
  2937. height: math.unit(6, "feet"),
  2938. weight: math.unit(75, "kg"),
  2939. name: "Front (Dressed)",
  2940. image: {
  2941. source: "./media/characters/sefer/front-dressed.svg",
  2942. extra: 839 / 653,
  2943. bottom: 37.6 / 878
  2944. }
  2945. },
  2946. },
  2947. [
  2948. {
  2949. name: "Normal",
  2950. height: math.unit(6, "feet"),
  2951. default: true
  2952. },
  2953. ]
  2954. ))
  2955. characterMakers.push(() => makeCharacter(
  2956. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2957. {
  2958. body: {
  2959. height: math.unit(2.2428, "meter"),
  2960. weight: math.unit(124.738, "kg"),
  2961. name: "Body",
  2962. image: {
  2963. extra: 1225 / 1050,
  2964. source: "./media/characters/north/front.svg"
  2965. }
  2966. }
  2967. },
  2968. [
  2969. {
  2970. name: "Micro",
  2971. height: math.unit(4, "inches")
  2972. },
  2973. {
  2974. name: "Macro",
  2975. height: math.unit(63, "meters")
  2976. },
  2977. {
  2978. name: "Megamacro",
  2979. height: math.unit(101, "miles"),
  2980. default: true
  2981. }
  2982. ]
  2983. ))
  2984. characterMakers.push(() => makeCharacter(
  2985. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2986. {
  2987. angled: {
  2988. height: math.unit(4, "meter"),
  2989. weight: math.unit(150, "kg"),
  2990. name: "Angled",
  2991. image: {
  2992. source: "./media/characters/talan/angled-sfw.svg",
  2993. bottom: 29 / 3734
  2994. }
  2995. },
  2996. angledNsfw: {
  2997. height: math.unit(4, "meter"),
  2998. weight: math.unit(150, "kg"),
  2999. name: "Angled (NSFW)",
  3000. image: {
  3001. source: "./media/characters/talan/angled-nsfw.svg",
  3002. bottom: 29 / 3734
  3003. }
  3004. },
  3005. frontNsfw: {
  3006. height: math.unit(4, "meter"),
  3007. weight: math.unit(150, "kg"),
  3008. name: "Front (NSFW)",
  3009. image: {
  3010. source: "./media/characters/talan/front-nsfw.svg",
  3011. bottom: 29 / 3734
  3012. }
  3013. },
  3014. sideNsfw: {
  3015. height: math.unit(4, "meter"),
  3016. weight: math.unit(150, "kg"),
  3017. name: "Side (NSFW)",
  3018. image: {
  3019. source: "./media/characters/talan/side-nsfw.svg",
  3020. bottom: 29 / 3734
  3021. }
  3022. },
  3023. back: {
  3024. height: math.unit(4, "meter"),
  3025. weight: math.unit(150, "kg"),
  3026. name: "Back",
  3027. image: {
  3028. source: "./media/characters/talan/back.svg"
  3029. }
  3030. },
  3031. dickBottom: {
  3032. height: math.unit(0.621, "meter"),
  3033. name: "Dick (Bottom)",
  3034. image: {
  3035. source: "./media/characters/talan/dick-bottom.svg"
  3036. }
  3037. },
  3038. dickTop: {
  3039. height: math.unit(0.621, "meter"),
  3040. name: "Dick (Top)",
  3041. image: {
  3042. source: "./media/characters/talan/dick-top.svg"
  3043. }
  3044. },
  3045. dickSide: {
  3046. height: math.unit(0.305, "meter"),
  3047. name: "Dick (Side)",
  3048. image: {
  3049. source: "./media/characters/talan/dick-side.svg"
  3050. }
  3051. },
  3052. dickFront: {
  3053. height: math.unit(0.305, "meter"),
  3054. name: "Dick (Front)",
  3055. image: {
  3056. source: "./media/characters/talan/dick-front.svg"
  3057. }
  3058. },
  3059. },
  3060. [
  3061. {
  3062. name: "Normal",
  3063. height: math.unit(4, "meters")
  3064. },
  3065. {
  3066. name: "Macro",
  3067. height: math.unit(100, "meters")
  3068. },
  3069. {
  3070. name: "Megamacro",
  3071. height: math.unit(2, "miles"),
  3072. default: true
  3073. },
  3074. {
  3075. name: "Gigamacro",
  3076. height: math.unit(5000, "miles")
  3077. },
  3078. {
  3079. name: "Teramacro",
  3080. height: math.unit(100, "parsecs")
  3081. }
  3082. ]
  3083. ))
  3084. characterMakers.push(() => makeCharacter(
  3085. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3086. {
  3087. front: {
  3088. height: math.unit(2, "meter"),
  3089. weight: math.unit(90, "kg"),
  3090. name: "Front",
  3091. image: {
  3092. source: "./media/characters/gael'rathus/front.svg"
  3093. }
  3094. },
  3095. frontAlt: {
  3096. height: math.unit(2, "meter"),
  3097. weight: math.unit(90, "kg"),
  3098. name: "Front (alt)",
  3099. image: {
  3100. source: "./media/characters/gael'rathus/front-alt.svg"
  3101. }
  3102. },
  3103. frontAlt2: {
  3104. height: math.unit(2, "meter"),
  3105. weight: math.unit(90, "kg"),
  3106. name: "Front (alt 2)",
  3107. image: {
  3108. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3109. }
  3110. }
  3111. },
  3112. [
  3113. {
  3114. name: "Normal",
  3115. height: math.unit(9, "feet"),
  3116. default: true
  3117. },
  3118. {
  3119. name: "Large",
  3120. height: math.unit(25, "feet")
  3121. },
  3122. {
  3123. name: "Macro",
  3124. height: math.unit(0.25, "miles")
  3125. },
  3126. {
  3127. name: "Megamacro",
  3128. height: math.unit(10, "miles")
  3129. }
  3130. ]
  3131. ))
  3132. characterMakers.push(() => makeCharacter(
  3133. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3134. {
  3135. side: {
  3136. height: math.unit(2, "meter"),
  3137. weight: math.unit(140, "kg"),
  3138. name: "Side",
  3139. image: {
  3140. source: "./media/characters/sosha/side.svg",
  3141. bottom: 0.042
  3142. }
  3143. },
  3144. },
  3145. [
  3146. {
  3147. name: "Normal",
  3148. height: math.unit(12, "feet"),
  3149. default: true
  3150. }
  3151. ]
  3152. ))
  3153. characterMakers.push(() => makeCharacter(
  3154. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3155. {
  3156. side: {
  3157. height: math.unit(5 + 5 / 12, "feet"),
  3158. weight: math.unit(170, "kg"),
  3159. name: "Side",
  3160. image: {
  3161. source: "./media/characters/runnola/side.svg",
  3162. extra: 741 / 448,
  3163. bottom: 0.05
  3164. }
  3165. },
  3166. },
  3167. [
  3168. {
  3169. name: "Small",
  3170. height: math.unit(3, "feet")
  3171. },
  3172. {
  3173. name: "Normal",
  3174. height: math.unit(5 + 5 / 12, "feet"),
  3175. default: true
  3176. },
  3177. {
  3178. name: "Big",
  3179. height: math.unit(10, "feet")
  3180. },
  3181. ]
  3182. ))
  3183. characterMakers.push(() => makeCharacter(
  3184. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3185. {
  3186. front: {
  3187. height: math.unit(2, "meter"),
  3188. weight: math.unit(50, "kg"),
  3189. name: "Front",
  3190. image: {
  3191. source: "./media/characters/kurribird/front.svg",
  3192. bottom: 0.015
  3193. }
  3194. },
  3195. frontAlt: {
  3196. height: math.unit(1.5, "meter"),
  3197. weight: math.unit(50, "kg"),
  3198. name: "Front (Alt)",
  3199. image: {
  3200. source: "./media/characters/kurribird/front-alt.svg",
  3201. extra: 1.45
  3202. }
  3203. },
  3204. },
  3205. [
  3206. {
  3207. name: "Normal",
  3208. height: math.unit(7, "feet")
  3209. },
  3210. {
  3211. name: "Big",
  3212. height: math.unit(12, "feet"),
  3213. default: true
  3214. },
  3215. {
  3216. name: "Macro",
  3217. height: math.unit(1500, "feet")
  3218. },
  3219. {
  3220. name: "Megamacro",
  3221. height: math.unit(2, "miles")
  3222. }
  3223. ]
  3224. ))
  3225. characterMakers.push(() => makeCharacter(
  3226. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3227. {
  3228. front: {
  3229. height: math.unit(2, "meter"),
  3230. weight: math.unit(80, "kg"),
  3231. name: "Front",
  3232. image: {
  3233. source: "./media/characters/elbial/front.svg",
  3234. extra: 1643 / 1556,
  3235. bottom: 60.2 / 1696
  3236. }
  3237. },
  3238. side: {
  3239. height: math.unit(2, "meter"),
  3240. weight: math.unit(80, "kg"),
  3241. name: "Side",
  3242. image: {
  3243. source: "./media/characters/elbial/side.svg",
  3244. extra: 1630 / 1565,
  3245. bottom: 71.5 / 1697
  3246. }
  3247. },
  3248. back: {
  3249. height: math.unit(2, "meter"),
  3250. weight: math.unit(80, "kg"),
  3251. name: "Back",
  3252. image: {
  3253. source: "./media/characters/elbial/back.svg",
  3254. extra: 1668 / 1595,
  3255. bottom: 5.6 / 1672
  3256. }
  3257. },
  3258. frontDressed: {
  3259. height: math.unit(2, "meter"),
  3260. weight: math.unit(80, "kg"),
  3261. name: "Front (Dressed)",
  3262. image: {
  3263. source: "./media/characters/elbial/front-dressed.svg",
  3264. extra: 1653 / 1584,
  3265. bottom: 57 / 1708
  3266. }
  3267. },
  3268. genitals: {
  3269. height: math.unit(2 / 3.367, "meter"),
  3270. name: "Genitals",
  3271. image: {
  3272. source: "./media/characters/elbial/genitals.svg"
  3273. }
  3274. },
  3275. },
  3276. [
  3277. {
  3278. name: "Large",
  3279. height: math.unit(100, "feet")
  3280. },
  3281. {
  3282. name: "Macro",
  3283. height: math.unit(500, "feet"),
  3284. default: true
  3285. },
  3286. {
  3287. name: "Megamacro",
  3288. height: math.unit(10, "miles")
  3289. },
  3290. {
  3291. name: "Gigamacro",
  3292. height: math.unit(25000, "miles")
  3293. },
  3294. {
  3295. name: "Full-Size",
  3296. height: math.unit(8000000, "gigaparsecs")
  3297. }
  3298. ]
  3299. ))
  3300. characterMakers.push(() => makeCharacter(
  3301. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3302. {
  3303. front: {
  3304. height: math.unit(2, "meter"),
  3305. weight: math.unit(60, "kg"),
  3306. name: "Front",
  3307. image: {
  3308. source: "./media/characters/noah/front.svg"
  3309. }
  3310. },
  3311. talons: {
  3312. height: math.unit(0.315, "meter"),
  3313. name: "Talons",
  3314. image: {
  3315. source: "./media/characters/noah/talons.svg"
  3316. }
  3317. }
  3318. },
  3319. [
  3320. {
  3321. name: "Large",
  3322. height: math.unit(50, "feet")
  3323. },
  3324. {
  3325. name: "Macro",
  3326. height: math.unit(750, "feet"),
  3327. default: true
  3328. },
  3329. {
  3330. name: "Megamacro",
  3331. height: math.unit(50, "miles")
  3332. },
  3333. {
  3334. name: "Gigamacro",
  3335. height: math.unit(100000, "miles")
  3336. },
  3337. {
  3338. name: "Full-Size",
  3339. height: math.unit(3000000000, "miles")
  3340. }
  3341. ]
  3342. ))
  3343. characterMakers.push(() => makeCharacter(
  3344. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3345. {
  3346. front: {
  3347. height: math.unit(2, "meter"),
  3348. weight: math.unit(80, "kg"),
  3349. name: "Front",
  3350. image: {
  3351. source: "./media/characters/natalya/front.svg"
  3352. }
  3353. },
  3354. back: {
  3355. height: math.unit(2, "meter"),
  3356. weight: math.unit(80, "kg"),
  3357. name: "Back",
  3358. image: {
  3359. source: "./media/characters/natalya/back.svg"
  3360. }
  3361. }
  3362. },
  3363. [
  3364. {
  3365. name: "Normal",
  3366. height: math.unit(150, "feet"),
  3367. default: true
  3368. },
  3369. {
  3370. name: "Megamacro",
  3371. height: math.unit(5, "miles")
  3372. },
  3373. {
  3374. name: "Full-Size",
  3375. height: math.unit(600, "kiloparsecs")
  3376. }
  3377. ]
  3378. ))
  3379. characterMakers.push(() => makeCharacter(
  3380. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3381. {
  3382. front: {
  3383. height: math.unit(2, "meter"),
  3384. weight: math.unit(50, "kg"),
  3385. name: "Front",
  3386. image: {
  3387. source: "./media/characters/erestrebah/front.svg",
  3388. extra: 208 / 193,
  3389. bottom: 0.055
  3390. }
  3391. },
  3392. back: {
  3393. height: math.unit(2, "meter"),
  3394. weight: math.unit(50, "kg"),
  3395. name: "Back",
  3396. image: {
  3397. source: "./media/characters/erestrebah/back.svg",
  3398. extra: 1.3
  3399. }
  3400. }
  3401. },
  3402. [
  3403. {
  3404. name: "Normal",
  3405. height: math.unit(10, "feet")
  3406. },
  3407. {
  3408. name: "Large",
  3409. height: math.unit(50, "feet"),
  3410. default: true
  3411. },
  3412. {
  3413. name: "Macro",
  3414. height: math.unit(300, "feet")
  3415. },
  3416. {
  3417. name: "Macro+",
  3418. height: math.unit(750, "feet")
  3419. },
  3420. {
  3421. name: "Megamacro",
  3422. height: math.unit(3, "miles")
  3423. }
  3424. ]
  3425. ))
  3426. characterMakers.push(() => makeCharacter(
  3427. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3428. {
  3429. front: {
  3430. height: math.unit(2, "meter"),
  3431. weight: math.unit(80, "kg"),
  3432. name: "Front",
  3433. image: {
  3434. source: "./media/characters/jennifer/front.svg",
  3435. bottom: 0.11,
  3436. extra: 1.16
  3437. }
  3438. },
  3439. frontAlt: {
  3440. height: math.unit(2, "meter"),
  3441. weight: math.unit(80, "kg"),
  3442. name: "Front (Alt)",
  3443. image: {
  3444. source: "./media/characters/jennifer/front-alt.svg"
  3445. }
  3446. }
  3447. },
  3448. [
  3449. {
  3450. name: "Canon Height",
  3451. height: math.unit(120, "feet"),
  3452. default: true
  3453. },
  3454. {
  3455. name: "Macro+",
  3456. height: math.unit(300, "feet")
  3457. },
  3458. {
  3459. name: "Megamacro",
  3460. height: math.unit(20000, "feet")
  3461. }
  3462. ]
  3463. ))
  3464. characterMakers.push(() => makeCharacter(
  3465. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3466. {
  3467. front: {
  3468. height: math.unit(2, "meter"),
  3469. weight: math.unit(50, "kg"),
  3470. name: "Front",
  3471. image: {
  3472. source: "./media/characters/kalista/front.svg",
  3473. extra: 1947 / 1700,
  3474. bottom: 76.6 / 1412.98
  3475. }
  3476. },
  3477. back: {
  3478. height: math.unit(2, "meter"),
  3479. weight: math.unit(50, "kg"),
  3480. name: "Back",
  3481. image: {
  3482. source: "./media/characters/kalista/back.svg",
  3483. extra: 1366 / 1156,
  3484. bottom: 33.9 / 1362.78
  3485. }
  3486. }
  3487. },
  3488. [
  3489. {
  3490. name: "Uncomfortably Small",
  3491. height: math.unit(10, "feet")
  3492. },
  3493. {
  3494. name: "Small",
  3495. height: math.unit(30, "feet")
  3496. },
  3497. {
  3498. name: "Macro",
  3499. height: math.unit(100, "feet"),
  3500. default: true
  3501. },
  3502. {
  3503. name: "Macro+",
  3504. height: math.unit(2000, "feet")
  3505. },
  3506. {
  3507. name: "True Form",
  3508. height: math.unit(8924, "miles")
  3509. }
  3510. ]
  3511. ))
  3512. characterMakers.push(() => makeCharacter(
  3513. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3514. {
  3515. front: {
  3516. height: math.unit(2, "meter"),
  3517. weight: math.unit(120, "kg"),
  3518. name: "Front",
  3519. image: {
  3520. source: "./media/characters/ggv/front.svg"
  3521. }
  3522. },
  3523. side: {
  3524. height: math.unit(2, "meter"),
  3525. weight: math.unit(120, "kg"),
  3526. name: "Side",
  3527. image: {
  3528. source: "./media/characters/ggv/side.svg"
  3529. }
  3530. }
  3531. },
  3532. [
  3533. {
  3534. name: "Extremely Puny",
  3535. height: math.unit(9 + 5 / 12, "feet")
  3536. },
  3537. {
  3538. name: "Horribly Small",
  3539. height: math.unit(47.7, "miles"),
  3540. default: true
  3541. },
  3542. {
  3543. name: "Reasonably Sized",
  3544. height: math.unit(25000, "parsecs")
  3545. },
  3546. {
  3547. name: "Slightly Uncompressed",
  3548. height: math.unit(7.77e31, "parsecs")
  3549. },
  3550. {
  3551. name: "Omniversal",
  3552. height: math.unit(1e300, "meters")
  3553. },
  3554. ]
  3555. ))
  3556. characterMakers.push(() => makeCharacter(
  3557. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3558. {
  3559. front: {
  3560. height: math.unit(2, "meter"),
  3561. weight: math.unit(75, "lb"),
  3562. name: "Front",
  3563. image: {
  3564. source: "./media/characters/napalm/front.svg"
  3565. }
  3566. },
  3567. back: {
  3568. height: math.unit(2, "meter"),
  3569. weight: math.unit(75, "lb"),
  3570. name: "Back",
  3571. image: {
  3572. source: "./media/characters/napalm/back.svg"
  3573. }
  3574. }
  3575. },
  3576. [
  3577. {
  3578. name: "Standard",
  3579. height: math.unit(55, "feet"),
  3580. default: true
  3581. }
  3582. ]
  3583. ))
  3584. characterMakers.push(() => makeCharacter(
  3585. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3586. {
  3587. front: {
  3588. height: math.unit(7 + 5 / 6, "feet"),
  3589. weight: math.unit(325, "lb"),
  3590. name: "Front",
  3591. image: {
  3592. source: "./media/characters/asana/front.svg",
  3593. extra: 1133 / 1060,
  3594. bottom: 15.2 / 1148.6
  3595. }
  3596. },
  3597. back: {
  3598. height: math.unit(7 + 5 / 6, "feet"),
  3599. weight: math.unit(325, "lb"),
  3600. name: "Back",
  3601. image: {
  3602. source: "./media/characters/asana/back.svg",
  3603. extra: 1114 / 1043,
  3604. bottom: 5 / 1120
  3605. }
  3606. },
  3607. dressedDark: {
  3608. height: math.unit(7 + 5 / 6, "feet"),
  3609. weight: math.unit(325, "lb"),
  3610. name: "Dressed (Dark)",
  3611. image: {
  3612. source: "./media/characters/asana/dressed-dark.svg",
  3613. extra: 1133 / 1060,
  3614. bottom: 15.2 / 1148.6
  3615. }
  3616. },
  3617. dressedLight: {
  3618. height: math.unit(7 + 5 / 6, "feet"),
  3619. weight: math.unit(325, "lb"),
  3620. name: "Dressed (Light)",
  3621. image: {
  3622. source: "./media/characters/asana/dressed-light.svg",
  3623. extra: 1133 / 1060,
  3624. bottom: 15.2 / 1148.6
  3625. }
  3626. },
  3627. },
  3628. [
  3629. {
  3630. name: "Standard",
  3631. height: math.unit(7 + 5 / 6, "feet"),
  3632. default: true
  3633. },
  3634. {
  3635. name: "Large",
  3636. height: math.unit(10, "meters")
  3637. },
  3638. {
  3639. name: "Macro",
  3640. height: math.unit(2500, "meters")
  3641. },
  3642. {
  3643. name: "Megamacro",
  3644. height: math.unit(5e6, "meters")
  3645. },
  3646. {
  3647. name: "Examacro",
  3648. height: math.unit(5e12, "lightyears")
  3649. },
  3650. {
  3651. name: "Max Size",
  3652. height: math.unit(1e31, "lightyears")
  3653. }
  3654. ]
  3655. ))
  3656. characterMakers.push(() => makeCharacter(
  3657. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3658. {
  3659. front: {
  3660. height: math.unit(2, "meter"),
  3661. weight: math.unit(60, "kg"),
  3662. name: "Front",
  3663. image: {
  3664. source: "./media/characters/ebony/front.svg",
  3665. bottom: 0.03,
  3666. extra: 1045 / 810 + 0.03
  3667. }
  3668. },
  3669. side: {
  3670. height: math.unit(2, "meter"),
  3671. weight: math.unit(60, "kg"),
  3672. name: "Side",
  3673. image: {
  3674. source: "./media/characters/ebony/side.svg",
  3675. bottom: 0.03,
  3676. extra: 1045 / 810 + 0.03
  3677. }
  3678. },
  3679. back: {
  3680. height: math.unit(2, "meter"),
  3681. weight: math.unit(60, "kg"),
  3682. name: "Back",
  3683. image: {
  3684. source: "./media/characters/ebony/back.svg",
  3685. bottom: 0.01,
  3686. extra: 1045 / 810 + 0.01
  3687. }
  3688. },
  3689. },
  3690. [
  3691. // TODO check why I did this lol
  3692. {
  3693. name: "Standard",
  3694. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3695. default: true
  3696. },
  3697. {
  3698. name: "Macro",
  3699. height: math.unit(200, "feet")
  3700. },
  3701. {
  3702. name: "Gigamacro",
  3703. height: math.unit(13000, "km")
  3704. }
  3705. ]
  3706. ))
  3707. characterMakers.push(() => makeCharacter(
  3708. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3709. {
  3710. front: {
  3711. height: math.unit(6, "feet"),
  3712. weight: math.unit(175, "lb"),
  3713. name: "Front",
  3714. image: {
  3715. source: "./media/characters/mountain/front.svg",
  3716. extra: 972 / 955,
  3717. bottom: 64 / 1036.6
  3718. }
  3719. },
  3720. back: {
  3721. height: math.unit(6, "feet"),
  3722. weight: math.unit(175, "lb"),
  3723. name: "Back",
  3724. image: {
  3725. source: "./media/characters/mountain/back.svg",
  3726. extra: 970 / 950,
  3727. bottom: 28.25 / 999
  3728. }
  3729. },
  3730. },
  3731. [
  3732. {
  3733. name: "Large",
  3734. height: math.unit(20, "meters")
  3735. },
  3736. {
  3737. name: "Macro",
  3738. height: math.unit(300, "meters")
  3739. },
  3740. {
  3741. name: "Gigamacro",
  3742. height: math.unit(10000, "km"),
  3743. default: true
  3744. },
  3745. {
  3746. name: "Examacro",
  3747. height: math.unit(10e9, "lightyears")
  3748. }
  3749. ]
  3750. ))
  3751. characterMakers.push(() => makeCharacter(
  3752. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3753. {
  3754. front: {
  3755. height: math.unit(8, "feet"),
  3756. weight: math.unit(500, "lb"),
  3757. name: "Front",
  3758. image: {
  3759. source: "./media/characters/rick/front.svg"
  3760. }
  3761. }
  3762. },
  3763. [
  3764. {
  3765. name: "Normal",
  3766. height: math.unit(8, "feet"),
  3767. default: true
  3768. },
  3769. {
  3770. name: "Macro",
  3771. height: math.unit(5, "km")
  3772. }
  3773. ]
  3774. ))
  3775. characterMakers.push(() => makeCharacter(
  3776. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3777. {
  3778. front: {
  3779. height: math.unit(8, "feet"),
  3780. weight: math.unit(120, "lb"),
  3781. name: "Front",
  3782. image: {
  3783. source: "./media/characters/ona/front.svg"
  3784. }
  3785. },
  3786. frontAlt: {
  3787. height: math.unit(8, "feet"),
  3788. weight: math.unit(120, "lb"),
  3789. name: "Front (Alt)",
  3790. image: {
  3791. source: "./media/characters/ona/front-alt.svg"
  3792. }
  3793. },
  3794. back: {
  3795. height: math.unit(8, "feet"),
  3796. weight: math.unit(120, "lb"),
  3797. name: "Back",
  3798. image: {
  3799. source: "./media/characters/ona/back.svg"
  3800. }
  3801. },
  3802. foot: {
  3803. height: math.unit(1.1, "feet"),
  3804. name: "Foot",
  3805. image: {
  3806. source: "./media/characters/ona/foot.svg"
  3807. }
  3808. }
  3809. },
  3810. [
  3811. {
  3812. name: "Megamacro",
  3813. height: math.unit(70, "km"),
  3814. default: true
  3815. },
  3816. {
  3817. name: "Gigamacro",
  3818. height: math.unit(681818, "miles")
  3819. },
  3820. {
  3821. name: "Examacro",
  3822. height: math.unit(3800000, "lightyears")
  3823. },
  3824. ]
  3825. ))
  3826. characterMakers.push(() => makeCharacter(
  3827. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3828. {
  3829. front: {
  3830. height: math.unit(12, "feet"),
  3831. weight: math.unit(3000, "lb"),
  3832. name: "Front",
  3833. image: {
  3834. source: "./media/characters/mech/front.svg",
  3835. extra: 2900 / 2770,
  3836. bottom: 110 / 3010
  3837. }
  3838. },
  3839. back: {
  3840. height: math.unit(12, "feet"),
  3841. weight: math.unit(3000, "lb"),
  3842. name: "Back",
  3843. image: {
  3844. source: "./media/characters/mech/back.svg",
  3845. extra: 3011 / 2890,
  3846. bottom: 94 / 3105
  3847. }
  3848. },
  3849. maw: {
  3850. height: math.unit(3.07, "feet"),
  3851. name: "Maw",
  3852. image: {
  3853. source: "./media/characters/mech/maw.svg"
  3854. }
  3855. },
  3856. head: {
  3857. height: math.unit(2.82, "feet"),
  3858. name: "Head",
  3859. image: {
  3860. source: "./media/characters/mech/head.svg"
  3861. }
  3862. },
  3863. dick: {
  3864. height: math.unit(1.43, "feet"),
  3865. name: "Dick",
  3866. image: {
  3867. source: "./media/characters/mech/dick.svg"
  3868. }
  3869. },
  3870. },
  3871. [
  3872. {
  3873. name: "Normal",
  3874. height: math.unit(12, "feet")
  3875. },
  3876. {
  3877. name: "Macro",
  3878. height: math.unit(300, "feet"),
  3879. default: true
  3880. },
  3881. {
  3882. name: "Macro+",
  3883. height: math.unit(1500, "feet")
  3884. },
  3885. ]
  3886. ))
  3887. characterMakers.push(() => makeCharacter(
  3888. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3889. {
  3890. front: {
  3891. height: math.unit(1.3, "meter"),
  3892. weight: math.unit(30, "kg"),
  3893. name: "Front",
  3894. image: {
  3895. source: "./media/characters/gregory/front.svg",
  3896. }
  3897. }
  3898. },
  3899. [
  3900. {
  3901. name: "Normal",
  3902. height: math.unit(1.3, "meter"),
  3903. default: true
  3904. },
  3905. {
  3906. name: "Macro",
  3907. height: math.unit(20, "meter")
  3908. }
  3909. ]
  3910. ))
  3911. characterMakers.push(() => makeCharacter(
  3912. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3913. {
  3914. front: {
  3915. height: math.unit(2.8, "meter"),
  3916. weight: math.unit(200, "kg"),
  3917. name: "Front",
  3918. image: {
  3919. source: "./media/characters/elory/front.svg",
  3920. }
  3921. }
  3922. },
  3923. [
  3924. {
  3925. name: "Normal",
  3926. height: math.unit(2.8, "meter"),
  3927. default: true
  3928. },
  3929. {
  3930. name: "Macro",
  3931. height: math.unit(38, "meter")
  3932. }
  3933. ]
  3934. ))
  3935. characterMakers.push(() => makeCharacter(
  3936. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3937. {
  3938. front: {
  3939. height: math.unit(470, "feet"),
  3940. weight: math.unit(924, "tons"),
  3941. name: "Front",
  3942. image: {
  3943. source: "./media/characters/angelpatamon/front.svg",
  3944. }
  3945. }
  3946. },
  3947. [
  3948. {
  3949. name: "Normal",
  3950. height: math.unit(470, "feet"),
  3951. default: true
  3952. },
  3953. {
  3954. name: "Deity Size I",
  3955. height: math.unit(28651.2, "km")
  3956. },
  3957. {
  3958. name: "Deity Size II",
  3959. height: math.unit(171907.2, "km")
  3960. }
  3961. ]
  3962. ))
  3963. characterMakers.push(() => makeCharacter(
  3964. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3965. {
  3966. side: {
  3967. height: math.unit(7.2, "meter"),
  3968. weight: math.unit(8.2, "tons"),
  3969. name: "Side",
  3970. image: {
  3971. source: "./media/characters/cryae/side.svg",
  3972. extra: 3500 / 1500
  3973. }
  3974. }
  3975. },
  3976. [
  3977. {
  3978. name: "Normal",
  3979. height: math.unit(7.2, "meter"),
  3980. default: true
  3981. }
  3982. ]
  3983. ))
  3984. characterMakers.push(() => makeCharacter(
  3985. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3986. {
  3987. front: {
  3988. height: math.unit(6, "feet"),
  3989. weight: math.unit(175, "lb"),
  3990. name: "Front",
  3991. image: {
  3992. source: "./media/characters/xera/front.svg",
  3993. extra: 2377 / 1972,
  3994. bottom: 75.5 / 2452
  3995. }
  3996. },
  3997. side: {
  3998. height: math.unit(6, "feet"),
  3999. weight: math.unit(175, "lb"),
  4000. name: "Side",
  4001. image: {
  4002. source: "./media/characters/xera/side.svg",
  4003. extra: 2345 / 2019,
  4004. bottom: 39.7 / 2384
  4005. }
  4006. },
  4007. back: {
  4008. height: math.unit(6, "feet"),
  4009. weight: math.unit(175, "lb"),
  4010. name: "Back",
  4011. image: {
  4012. source: "./media/characters/xera/back.svg",
  4013. extra: 2095 / 1984,
  4014. bottom: 67 / 2166
  4015. }
  4016. },
  4017. },
  4018. [
  4019. {
  4020. name: "Small",
  4021. height: math.unit(10, "feet")
  4022. },
  4023. {
  4024. name: "Macro",
  4025. height: math.unit(500, "meters"),
  4026. default: true
  4027. },
  4028. {
  4029. name: "Macro+",
  4030. height: math.unit(10, "km")
  4031. },
  4032. {
  4033. name: "Gigamacro",
  4034. height: math.unit(25000, "km")
  4035. },
  4036. {
  4037. name: "Teramacro",
  4038. height: math.unit(3e6, "km")
  4039. }
  4040. ]
  4041. ))
  4042. characterMakers.push(() => makeCharacter(
  4043. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4044. {
  4045. front: {
  4046. height: math.unit(6, "feet"),
  4047. weight: math.unit(175, "lb"),
  4048. name: "Front",
  4049. image: {
  4050. source: "./media/characters/nebula/front.svg",
  4051. extra: 2566 / 2362,
  4052. bottom: 81 / 2644
  4053. }
  4054. }
  4055. },
  4056. [
  4057. {
  4058. name: "Small",
  4059. height: math.unit(4.5, "meters")
  4060. },
  4061. {
  4062. name: "Macro",
  4063. height: math.unit(1500, "meters"),
  4064. default: true
  4065. },
  4066. {
  4067. name: "Megamacro",
  4068. height: math.unit(150, "km")
  4069. },
  4070. {
  4071. name: "Gigamacro",
  4072. height: math.unit(27000, "km")
  4073. }
  4074. ]
  4075. ))
  4076. characterMakers.push(() => makeCharacter(
  4077. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4078. {
  4079. front: {
  4080. height: math.unit(6, "feet"),
  4081. weight: math.unit(225, "lb"),
  4082. name: "Front",
  4083. image: {
  4084. source: "./media/characters/abysgar/front.svg"
  4085. }
  4086. }
  4087. },
  4088. [
  4089. {
  4090. name: "Small",
  4091. height: math.unit(4.5, "meters")
  4092. },
  4093. {
  4094. name: "Macro",
  4095. height: math.unit(1250, "meters"),
  4096. default: true
  4097. },
  4098. {
  4099. name: "Megamacro",
  4100. height: math.unit(125, "km")
  4101. },
  4102. {
  4103. name: "Gigamacro",
  4104. height: math.unit(26000, "km")
  4105. }
  4106. ]
  4107. ))
  4108. characterMakers.push(() => makeCharacter(
  4109. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4110. {
  4111. front: {
  4112. height: math.unit(6, "feet"),
  4113. weight: math.unit(180, "lb"),
  4114. name: "Front",
  4115. image: {
  4116. source: "./media/characters/yakuz/front.svg"
  4117. }
  4118. }
  4119. },
  4120. [
  4121. {
  4122. name: "Small",
  4123. height: math.unit(5, "meters")
  4124. },
  4125. {
  4126. name: "Macro",
  4127. height: math.unit(1500, "meters"),
  4128. default: true
  4129. },
  4130. {
  4131. name: "Megamacro",
  4132. height: math.unit(200, "km")
  4133. },
  4134. {
  4135. name: "Gigamacro",
  4136. height: math.unit(100000, "km")
  4137. }
  4138. ]
  4139. ))
  4140. characterMakers.push(() => makeCharacter(
  4141. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4142. {
  4143. front: {
  4144. height: math.unit(6, "feet"),
  4145. weight: math.unit(175, "lb"),
  4146. name: "Front",
  4147. image: {
  4148. source: "./media/characters/mirova/front.svg",
  4149. extra: 3334 / 3071,
  4150. bottom: 42 / 3375.6
  4151. }
  4152. }
  4153. },
  4154. [
  4155. {
  4156. name: "Small",
  4157. height: math.unit(5, "meters")
  4158. },
  4159. {
  4160. name: "Macro",
  4161. height: math.unit(900, "meters"),
  4162. default: true
  4163. },
  4164. {
  4165. name: "Megamacro",
  4166. height: math.unit(135, "km")
  4167. },
  4168. {
  4169. name: "Gigamacro",
  4170. height: math.unit(20000, "km")
  4171. }
  4172. ]
  4173. ))
  4174. characterMakers.push(() => makeCharacter(
  4175. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4176. {
  4177. side: {
  4178. height: math.unit(28.35, "feet"),
  4179. weight: math.unit(99.75, "tons"),
  4180. name: "Side",
  4181. image: {
  4182. source: "./media/characters/asana-mech/side.svg",
  4183. extra: 923 / 699,
  4184. bottom: 50 / 975
  4185. }
  4186. },
  4187. chaingun: {
  4188. height: math.unit(7, "feet"),
  4189. weight: math.unit(2400, "lb"),
  4190. name: "Chaingun",
  4191. image: {
  4192. source: "./media/characters/asana-mech/chaingun.svg"
  4193. }
  4194. },
  4195. laser: {
  4196. height: math.unit(7.12, "feet"),
  4197. weight: math.unit(2000, "lb"),
  4198. name: "Laser",
  4199. image: {
  4200. source: "./media/characters/asana-mech/laser.svg"
  4201. }
  4202. },
  4203. },
  4204. [
  4205. {
  4206. name: "Normal",
  4207. height: math.unit(28.35, "feet"),
  4208. default: true
  4209. },
  4210. {
  4211. name: "Macro",
  4212. height: math.unit(2500, "feet")
  4213. },
  4214. {
  4215. name: "Megamacro",
  4216. height: math.unit(25, "miles")
  4217. },
  4218. {
  4219. name: "Examacro",
  4220. height: math.unit(6e8, "lightyears")
  4221. },
  4222. ]
  4223. ))
  4224. characterMakers.push(() => makeCharacter(
  4225. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4226. {
  4227. front: {
  4228. height: math.unit(5, "meters"),
  4229. weight: math.unit(1000, "kg"),
  4230. name: "Front",
  4231. image: {
  4232. source: "./media/characters/asche/front.svg",
  4233. extra: 1258 / 1190,
  4234. bottom: 47 / 1305
  4235. }
  4236. },
  4237. frontUnderwear: {
  4238. height: math.unit(5, "meters"),
  4239. weight: math.unit(1000, "kg"),
  4240. name: "Front (Underwear)",
  4241. image: {
  4242. source: "./media/characters/asche/front-underwear.svg",
  4243. extra: 1258 / 1190,
  4244. bottom: 47 / 1305
  4245. }
  4246. },
  4247. frontDressed: {
  4248. height: math.unit(5, "meters"),
  4249. weight: math.unit(1000, "kg"),
  4250. name: "Front (Dressed)",
  4251. image: {
  4252. source: "./media/characters/asche/front-dressed.svg",
  4253. extra: 1258 / 1190,
  4254. bottom: 47 / 1305
  4255. }
  4256. },
  4257. frontArmor: {
  4258. height: math.unit(5, "meters"),
  4259. weight: math.unit(1000, "kg"),
  4260. name: "Front (Armored)",
  4261. image: {
  4262. source: "./media/characters/asche/front-armored.svg",
  4263. extra: 1374 / 1308,
  4264. bottom: 23 / 1397
  4265. }
  4266. },
  4267. mp724: {
  4268. height: math.unit(0.96, "meters"),
  4269. weight: math.unit(38, "kg"),
  4270. name: "H&K MP724",
  4271. image: {
  4272. source: "./media/characters/asche/h&k-mp724.svg"
  4273. }
  4274. },
  4275. side: {
  4276. height: math.unit(5, "meters"),
  4277. weight: math.unit(1000, "kg"),
  4278. name: "Side",
  4279. image: {
  4280. source: "./media/characters/asche/side.svg",
  4281. extra: 1717 / 1609,
  4282. bottom: 0.005
  4283. }
  4284. },
  4285. back: {
  4286. height: math.unit(5, "meters"),
  4287. weight: math.unit(1000, "kg"),
  4288. name: "Back",
  4289. image: {
  4290. source: "./media/characters/asche/back.svg",
  4291. extra: 1570 / 1501
  4292. }
  4293. },
  4294. },
  4295. [
  4296. {
  4297. name: "DEFCON 5",
  4298. height: math.unit(5, "meters")
  4299. },
  4300. {
  4301. name: "DEFCON 4",
  4302. height: math.unit(500, "meters"),
  4303. default: true
  4304. },
  4305. {
  4306. name: "DEFCON 3",
  4307. height: math.unit(5, "km")
  4308. },
  4309. {
  4310. name: "DEFCON 2",
  4311. height: math.unit(500, "km")
  4312. },
  4313. {
  4314. name: "DEFCON 1",
  4315. height: math.unit(500000, "km")
  4316. },
  4317. {
  4318. name: "DEFCON 0",
  4319. height: math.unit(3, "gigaparsecs")
  4320. },
  4321. ]
  4322. ))
  4323. characterMakers.push(() => makeCharacter(
  4324. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4325. {
  4326. front: {
  4327. height: math.unit(2, "meters"),
  4328. weight: math.unit(76, "kg"),
  4329. name: "Front",
  4330. image: {
  4331. source: "./media/characters/gale/front.svg"
  4332. }
  4333. },
  4334. frontAlt1: {
  4335. height: math.unit(2, "meters"),
  4336. weight: math.unit(76, "kg"),
  4337. name: "Front (Alt 1)",
  4338. image: {
  4339. source: "./media/characters/gale/front-alt-1.svg"
  4340. }
  4341. },
  4342. frontAlt2: {
  4343. height: math.unit(2, "meters"),
  4344. weight: math.unit(76, "kg"),
  4345. name: "Front (Alt 2)",
  4346. image: {
  4347. source: "./media/characters/gale/front-alt-2.svg"
  4348. }
  4349. },
  4350. },
  4351. [
  4352. {
  4353. name: "Normal",
  4354. height: math.unit(7, "feet")
  4355. },
  4356. {
  4357. name: "Macro",
  4358. height: math.unit(150, "feet"),
  4359. default: true
  4360. },
  4361. {
  4362. name: "Macro+",
  4363. height: math.unit(300, "feet")
  4364. },
  4365. ]
  4366. ))
  4367. characterMakers.push(() => makeCharacter(
  4368. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4369. {
  4370. front: {
  4371. height: math.unit(2, "meters"),
  4372. weight: math.unit(76, "kg"),
  4373. name: "Front",
  4374. image: {
  4375. source: "./media/characters/draylen/front.svg"
  4376. }
  4377. }
  4378. },
  4379. [
  4380. {
  4381. name: "Macro",
  4382. height: math.unit(150, "feet"),
  4383. default: true
  4384. }
  4385. ]
  4386. ))
  4387. characterMakers.push(() => makeCharacter(
  4388. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4389. {
  4390. front: {
  4391. height: math.unit(7 + 9 / 12, "feet"),
  4392. weight: math.unit(379, "lbs"),
  4393. name: "Front",
  4394. image: {
  4395. source: "./media/characters/chez/front.svg"
  4396. }
  4397. },
  4398. side: {
  4399. height: math.unit(7 + 9 / 12, "feet"),
  4400. weight: math.unit(379, "lbs"),
  4401. name: "Side",
  4402. image: {
  4403. source: "./media/characters/chez/side.svg"
  4404. }
  4405. }
  4406. },
  4407. [
  4408. {
  4409. name: "Normal",
  4410. height: math.unit(7 + 9 / 12, "feet"),
  4411. default: true
  4412. },
  4413. {
  4414. name: "God King",
  4415. height: math.unit(9750000, "meters")
  4416. }
  4417. ]
  4418. ))
  4419. characterMakers.push(() => makeCharacter(
  4420. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4421. {
  4422. front: {
  4423. height: math.unit(6, "feet"),
  4424. weight: math.unit(275, "lbs"),
  4425. name: "Front",
  4426. image: {
  4427. source: "./media/characters/kaylum/front.svg",
  4428. bottom: 0.01,
  4429. extra: 1166 / 1031
  4430. }
  4431. },
  4432. frontWingless: {
  4433. height: math.unit(6, "feet"),
  4434. weight: math.unit(275, "lbs"),
  4435. name: "Front (Wingless)",
  4436. image: {
  4437. source: "./media/characters/kaylum/front-wingless.svg",
  4438. bottom: 0.01,
  4439. extra: 1117 / 1031
  4440. }
  4441. }
  4442. },
  4443. [
  4444. {
  4445. name: "Normal",
  4446. height: math.unit(3.05, "meters")
  4447. },
  4448. {
  4449. name: "Master",
  4450. height: math.unit(5.5, "meters")
  4451. },
  4452. {
  4453. name: "Rampage",
  4454. height: math.unit(19, "meters")
  4455. },
  4456. {
  4457. name: "Macro Lite",
  4458. height: math.unit(37, "meters")
  4459. },
  4460. {
  4461. name: "Hyper Predator",
  4462. height: math.unit(61, "meters")
  4463. },
  4464. {
  4465. name: "Macro",
  4466. height: math.unit(138, "meters"),
  4467. default: true
  4468. }
  4469. ]
  4470. ))
  4471. characterMakers.push(() => makeCharacter(
  4472. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4473. {
  4474. front: {
  4475. height: math.unit(6, "feet"),
  4476. weight: math.unit(150, "lbs"),
  4477. name: "Front",
  4478. image: {
  4479. source: "./media/characters/geta/front.svg"
  4480. }
  4481. }
  4482. },
  4483. [
  4484. {
  4485. name: "Micro",
  4486. height: math.unit(3, "inches"),
  4487. default: true
  4488. },
  4489. {
  4490. name: "Normal",
  4491. height: math.unit(5 + 5 / 12, "feet")
  4492. }
  4493. ]
  4494. ))
  4495. characterMakers.push(() => makeCharacter(
  4496. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4497. {
  4498. front: {
  4499. height: math.unit(6, "feet"),
  4500. weight: math.unit(300, "lbs"),
  4501. name: "Front",
  4502. image: {
  4503. source: "./media/characters/tyrnn/front.svg"
  4504. }
  4505. }
  4506. },
  4507. [
  4508. {
  4509. name: "Main Height",
  4510. height: math.unit(355, "feet"),
  4511. default: true
  4512. },
  4513. {
  4514. name: "Fave. Height",
  4515. height: math.unit(2400, "feet")
  4516. }
  4517. ]
  4518. ))
  4519. characterMakers.push(() => makeCharacter(
  4520. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4521. {
  4522. front: {
  4523. height: math.unit(6, "feet"),
  4524. weight: math.unit(300, "lbs"),
  4525. name: "Front",
  4526. image: {
  4527. source: "./media/characters/appledectomy/front.svg"
  4528. }
  4529. }
  4530. },
  4531. [
  4532. {
  4533. name: "Macro",
  4534. height: math.unit(2500, "feet")
  4535. },
  4536. {
  4537. name: "Megamacro",
  4538. height: math.unit(50, "miles"),
  4539. default: true
  4540. },
  4541. {
  4542. name: "Gigamacro",
  4543. height: math.unit(5000, "miles")
  4544. },
  4545. {
  4546. name: "Teramacro",
  4547. height: math.unit(250000, "miles")
  4548. },
  4549. ]
  4550. ))
  4551. characterMakers.push(() => makeCharacter(
  4552. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4553. {
  4554. front: {
  4555. height: math.unit(6, "feet"),
  4556. weight: math.unit(200, "lbs"),
  4557. name: "Front",
  4558. image: {
  4559. source: "./media/characters/vulpes/front.svg",
  4560. extra: 573 / 543,
  4561. bottom: 0.033
  4562. }
  4563. },
  4564. side: {
  4565. height: math.unit(6, "feet"),
  4566. weight: math.unit(200, "lbs"),
  4567. name: "Side",
  4568. image: {
  4569. source: "./media/characters/vulpes/side.svg",
  4570. extra: 577 / 549,
  4571. bottom: 11 / 588
  4572. }
  4573. },
  4574. back: {
  4575. height: math.unit(6, "feet"),
  4576. weight: math.unit(200, "lbs"),
  4577. name: "Back",
  4578. image: {
  4579. source: "./media/characters/vulpes/back.svg",
  4580. extra: 573 / 549,
  4581. bottom: 20 / 593
  4582. }
  4583. },
  4584. feet: {
  4585. height: math.unit(1.276, "feet"),
  4586. name: "Feet",
  4587. image: {
  4588. source: "./media/characters/vulpes/feet.svg"
  4589. }
  4590. },
  4591. maw: {
  4592. height: math.unit(1.18, "feet"),
  4593. name: "Maw",
  4594. image: {
  4595. source: "./media/characters/vulpes/maw.svg"
  4596. }
  4597. },
  4598. },
  4599. [
  4600. {
  4601. name: "Micro",
  4602. height: math.unit(2, "inches")
  4603. },
  4604. {
  4605. name: "Normal",
  4606. height: math.unit(6.3, "feet")
  4607. },
  4608. {
  4609. name: "Macro",
  4610. height: math.unit(850, "feet")
  4611. },
  4612. {
  4613. name: "Megamacro",
  4614. height: math.unit(7500, "feet"),
  4615. default: true
  4616. },
  4617. {
  4618. name: "Gigamacro",
  4619. height: math.unit(570000, "miles")
  4620. }
  4621. ]
  4622. ))
  4623. characterMakers.push(() => makeCharacter(
  4624. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4625. {
  4626. front: {
  4627. height: math.unit(6, "feet"),
  4628. weight: math.unit(210, "lbs"),
  4629. name: "Front",
  4630. image: {
  4631. source: "./media/characters/rain-fallen/front.svg"
  4632. }
  4633. },
  4634. side: {
  4635. height: math.unit(6, "feet"),
  4636. weight: math.unit(210, "lbs"),
  4637. name: "Side",
  4638. image: {
  4639. source: "./media/characters/rain-fallen/side.svg"
  4640. }
  4641. },
  4642. back: {
  4643. height: math.unit(6, "feet"),
  4644. weight: math.unit(210, "lbs"),
  4645. name: "Back",
  4646. image: {
  4647. source: "./media/characters/rain-fallen/back.svg"
  4648. }
  4649. },
  4650. feral: {
  4651. height: math.unit(9, "feet"),
  4652. weight: math.unit(700, "lbs"),
  4653. name: "Feral",
  4654. image: {
  4655. source: "./media/characters/rain-fallen/feral.svg"
  4656. }
  4657. },
  4658. },
  4659. [
  4660. {
  4661. name: "Meddling with Mortals",
  4662. height: math.unit(8 + 8/12, "feet")
  4663. },
  4664. {
  4665. name: "Normal",
  4666. height: math.unit(5, "meter")
  4667. },
  4668. {
  4669. name: "Macro",
  4670. height: math.unit(150, "meter"),
  4671. default: true
  4672. },
  4673. {
  4674. name: "Megamacro",
  4675. height: math.unit(278e6, "meter")
  4676. },
  4677. {
  4678. name: "Gigamacro",
  4679. height: math.unit(2e9, "meter")
  4680. },
  4681. {
  4682. name: "Teramacro",
  4683. height: math.unit(8e12, "meter")
  4684. },
  4685. {
  4686. name: "Devourer",
  4687. height: math.unit(14, "zettameters")
  4688. },
  4689. {
  4690. name: "Scarlet King",
  4691. height: math.unit(18, "yottameters")
  4692. },
  4693. {
  4694. name: "Void",
  4695. height: math.unit(1e88, "yottameters")
  4696. }
  4697. ]
  4698. ))
  4699. characterMakers.push(() => makeCharacter(
  4700. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4701. {
  4702. standing: {
  4703. height: math.unit(6, "feet"),
  4704. weight: math.unit(180, "lbs"),
  4705. name: "Standing",
  4706. image: {
  4707. source: "./media/characters/zaakira/standing.svg",
  4708. extra: 1599/1504,
  4709. bottom: 39/1638
  4710. }
  4711. },
  4712. laying: {
  4713. height: math.unit(3, "feet"),
  4714. weight: math.unit(180, "lbs"),
  4715. name: "Laying",
  4716. image: {
  4717. source: "./media/characters/zaakira/laying.svg"
  4718. }
  4719. },
  4720. },
  4721. [
  4722. {
  4723. name: "Normal",
  4724. height: math.unit(12, "feet")
  4725. },
  4726. {
  4727. name: "Macro",
  4728. height: math.unit(279, "feet"),
  4729. default: true
  4730. }
  4731. ]
  4732. ))
  4733. characterMakers.push(() => makeCharacter(
  4734. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4735. {
  4736. femSfw: {
  4737. height: math.unit(8, "feet"),
  4738. weight: math.unit(350, "lb"),
  4739. name: "Fem",
  4740. image: {
  4741. source: "./media/characters/sigvald/fem-sfw.svg",
  4742. extra: 182 / 164,
  4743. bottom: 8.7 / 190.5
  4744. }
  4745. },
  4746. femNsfw: {
  4747. height: math.unit(8, "feet"),
  4748. weight: math.unit(350, "lb"),
  4749. name: "Fem (NSFW)",
  4750. image: {
  4751. source: "./media/characters/sigvald/fem-nsfw.svg",
  4752. extra: 182 / 164,
  4753. bottom: 8.7 / 190.5
  4754. }
  4755. },
  4756. maleNsfw: {
  4757. height: math.unit(8, "feet"),
  4758. weight: math.unit(350, "lb"),
  4759. name: "Male (NSFW)",
  4760. image: {
  4761. source: "./media/characters/sigvald/male-nsfw.svg",
  4762. extra: 182 / 164,
  4763. bottom: 8.7 / 190.5
  4764. }
  4765. },
  4766. hermNsfw: {
  4767. height: math.unit(8, "feet"),
  4768. weight: math.unit(350, "lb"),
  4769. name: "Herm (NSFW)",
  4770. image: {
  4771. source: "./media/characters/sigvald/herm-nsfw.svg",
  4772. extra: 182 / 164,
  4773. bottom: 8.7 / 190.5
  4774. }
  4775. },
  4776. dick: {
  4777. height: math.unit(2.36, "feet"),
  4778. name: "Dick",
  4779. image: {
  4780. source: "./media/characters/sigvald/dick.svg"
  4781. }
  4782. },
  4783. eye: {
  4784. height: math.unit(0.31, "feet"),
  4785. name: "Eye",
  4786. image: {
  4787. source: "./media/characters/sigvald/eye.svg"
  4788. }
  4789. },
  4790. mouth: {
  4791. height: math.unit(0.92, "feet"),
  4792. name: "Mouth",
  4793. image: {
  4794. source: "./media/characters/sigvald/mouth.svg"
  4795. }
  4796. },
  4797. paws: {
  4798. height: math.unit(2.2, "feet"),
  4799. name: "Paws",
  4800. image: {
  4801. source: "./media/characters/sigvald/paws.svg"
  4802. }
  4803. }
  4804. },
  4805. [
  4806. {
  4807. name: "Normal",
  4808. height: math.unit(8, "feet")
  4809. },
  4810. {
  4811. name: "Large",
  4812. height: math.unit(12, "feet")
  4813. },
  4814. {
  4815. name: "Larger",
  4816. height: math.unit(20, "feet")
  4817. },
  4818. {
  4819. name: "Macro",
  4820. height: math.unit(150, "feet")
  4821. },
  4822. {
  4823. name: "Macro+",
  4824. height: math.unit(200, "feet"),
  4825. default: true
  4826. },
  4827. ]
  4828. ))
  4829. characterMakers.push(() => makeCharacter(
  4830. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4831. {
  4832. side: {
  4833. height: math.unit(12, "feet"),
  4834. weight: math.unit(2000, "kg"),
  4835. name: "Side",
  4836. image: {
  4837. source: "./media/characters/scott/side.svg",
  4838. extra: 754 / 724,
  4839. bottom: 0.069
  4840. }
  4841. },
  4842. upright: {
  4843. height: math.unit(12, "feet"),
  4844. weight: math.unit(2000, "kg"),
  4845. name: "Upright",
  4846. image: {
  4847. source: "./media/characters/scott/upright.svg",
  4848. extra: 3881 / 3722,
  4849. bottom: 0.05
  4850. }
  4851. },
  4852. },
  4853. [
  4854. {
  4855. name: "Normal",
  4856. height: math.unit(12, "feet"),
  4857. default: true
  4858. },
  4859. ]
  4860. ))
  4861. characterMakers.push(() => makeCharacter(
  4862. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4863. {
  4864. side: {
  4865. height: math.unit(8, "meters"),
  4866. weight: math.unit(84755, "lbs"),
  4867. name: "Side",
  4868. image: {
  4869. source: "./media/characters/tobias/side.svg",
  4870. extra: 1474 / 1096,
  4871. bottom: 38.9 / 1513.1235
  4872. }
  4873. },
  4874. },
  4875. [
  4876. {
  4877. name: "Normal",
  4878. height: math.unit(8, "meters"),
  4879. default: true
  4880. },
  4881. ]
  4882. ))
  4883. characterMakers.push(() => makeCharacter(
  4884. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4885. {
  4886. front: {
  4887. height: math.unit(5.5, "feet"),
  4888. weight: math.unit(400, "lbs"),
  4889. name: "Front",
  4890. image: {
  4891. source: "./media/characters/kieran/front.svg",
  4892. extra: 2694 / 2364,
  4893. bottom: 217 / 2908
  4894. }
  4895. },
  4896. side: {
  4897. height: math.unit(5.5, "feet"),
  4898. weight: math.unit(400, "lbs"),
  4899. name: "Side",
  4900. image: {
  4901. source: "./media/characters/kieran/side.svg",
  4902. extra: 875 / 777,
  4903. bottom: 84.6 / 959
  4904. }
  4905. },
  4906. },
  4907. [
  4908. {
  4909. name: "Normal",
  4910. height: math.unit(5.5, "feet"),
  4911. default: true
  4912. },
  4913. ]
  4914. ))
  4915. characterMakers.push(() => makeCharacter(
  4916. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4917. {
  4918. side: {
  4919. height: math.unit(2, "meters"),
  4920. weight: math.unit(70, "kg"),
  4921. name: "Side",
  4922. image: {
  4923. source: "./media/characters/sanya/side.svg",
  4924. bottom: 0.02,
  4925. extra: 1.02
  4926. }
  4927. },
  4928. },
  4929. [
  4930. {
  4931. name: "Small",
  4932. height: math.unit(2, "meters")
  4933. },
  4934. {
  4935. name: "Normal",
  4936. height: math.unit(3, "meters")
  4937. },
  4938. {
  4939. name: "Macro",
  4940. height: math.unit(16, "meters"),
  4941. default: true
  4942. },
  4943. ]
  4944. ))
  4945. characterMakers.push(() => makeCharacter(
  4946. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4947. {
  4948. front: {
  4949. height: math.unit(2, "meters"),
  4950. weight: math.unit(120, "kg"),
  4951. name: "Front",
  4952. image: {
  4953. source: "./media/characters/miranda/front.svg",
  4954. extra: 195 / 185,
  4955. bottom: 10.9 / 206.5
  4956. }
  4957. },
  4958. back: {
  4959. height: math.unit(2, "meters"),
  4960. weight: math.unit(120, "kg"),
  4961. name: "Back",
  4962. image: {
  4963. source: "./media/characters/miranda/back.svg",
  4964. extra: 201 / 193,
  4965. bottom: 2.3 / 203.7
  4966. }
  4967. },
  4968. },
  4969. [
  4970. {
  4971. name: "Normal",
  4972. height: math.unit(10, "feet"),
  4973. default: true
  4974. }
  4975. ]
  4976. ))
  4977. characterMakers.push(() => makeCharacter(
  4978. { name: "James", species: ["deer"], tags: ["anthro"] },
  4979. {
  4980. side: {
  4981. height: math.unit(2, "meters"),
  4982. weight: math.unit(100, "kg"),
  4983. name: "Front",
  4984. image: {
  4985. source: "./media/characters/james/front.svg",
  4986. extra: 10 / 8.5
  4987. }
  4988. },
  4989. },
  4990. [
  4991. {
  4992. name: "Normal",
  4993. height: math.unit(8.5, "feet"),
  4994. default: true
  4995. }
  4996. ]
  4997. ))
  4998. characterMakers.push(() => makeCharacter(
  4999. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5000. {
  5001. side: {
  5002. height: math.unit(9.5, "feet"),
  5003. weight: math.unit(2500, "lbs"),
  5004. name: "Side",
  5005. image: {
  5006. source: "./media/characters/heather/side.svg"
  5007. }
  5008. },
  5009. },
  5010. [
  5011. {
  5012. name: "Normal",
  5013. height: math.unit(9.5, "feet"),
  5014. default: true
  5015. }
  5016. ]
  5017. ))
  5018. characterMakers.push(() => makeCharacter(
  5019. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5020. {
  5021. side: {
  5022. height: math.unit(6.5, "feet"),
  5023. weight: math.unit(400, "lbs"),
  5024. name: "Side",
  5025. image: {
  5026. source: "./media/characters/lukas/side.svg",
  5027. extra: 7.25 / 6.5
  5028. }
  5029. },
  5030. },
  5031. [
  5032. {
  5033. name: "Normal",
  5034. height: math.unit(6.5, "feet"),
  5035. default: true
  5036. }
  5037. ]
  5038. ))
  5039. characterMakers.push(() => makeCharacter(
  5040. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5041. {
  5042. side: {
  5043. height: math.unit(5, "feet"),
  5044. weight: math.unit(3000, "lbs"),
  5045. name: "Side",
  5046. image: {
  5047. source: "./media/characters/louise/side.svg"
  5048. }
  5049. },
  5050. },
  5051. [
  5052. {
  5053. name: "Normal",
  5054. height: math.unit(5, "feet"),
  5055. default: true
  5056. }
  5057. ]
  5058. ))
  5059. characterMakers.push(() => makeCharacter(
  5060. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5061. {
  5062. side: {
  5063. height: math.unit(6, "feet"),
  5064. weight: math.unit(150, "lbs"),
  5065. name: "Side",
  5066. image: {
  5067. source: "./media/characters/ramona/side.svg"
  5068. }
  5069. },
  5070. },
  5071. [
  5072. {
  5073. name: "Normal",
  5074. height: math.unit(5.3, "meters"),
  5075. default: true
  5076. },
  5077. {
  5078. name: "Macro",
  5079. height: math.unit(20, "stories")
  5080. },
  5081. {
  5082. name: "Macro+",
  5083. height: math.unit(50, "stories")
  5084. },
  5085. ]
  5086. ))
  5087. characterMakers.push(() => makeCharacter(
  5088. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5089. {
  5090. standing: {
  5091. height: math.unit(5.75, "feet"),
  5092. weight: math.unit(160, "lbs"),
  5093. name: "Standing",
  5094. image: {
  5095. source: "./media/characters/deerpuff/standing.svg",
  5096. extra: 682 / 624
  5097. }
  5098. },
  5099. sitting: {
  5100. height: math.unit(5.75 / 1.79, "feet"),
  5101. weight: math.unit(160, "lbs"),
  5102. name: "Sitting",
  5103. image: {
  5104. source: "./media/characters/deerpuff/sitting.svg",
  5105. bottom: 44 / 400,
  5106. extra: 1
  5107. }
  5108. },
  5109. taurLaying: {
  5110. height: math.unit(6, "feet"),
  5111. weight: math.unit(400, "lbs"),
  5112. name: "Taur (Laying)",
  5113. image: {
  5114. source: "./media/characters/deerpuff/taur-laying.svg"
  5115. }
  5116. },
  5117. },
  5118. [
  5119. {
  5120. name: "Puffball",
  5121. height: math.unit(6, "inches")
  5122. },
  5123. {
  5124. name: "Normalpuff",
  5125. height: math.unit(5.75, "feet")
  5126. },
  5127. {
  5128. name: "Macropuff",
  5129. height: math.unit(1500, "feet"),
  5130. default: true
  5131. },
  5132. {
  5133. name: "Megapuff",
  5134. height: math.unit(500, "miles")
  5135. },
  5136. {
  5137. name: "Gigapuff",
  5138. height: math.unit(250000, "miles")
  5139. },
  5140. {
  5141. name: "Omegapuff",
  5142. height: math.unit(1000, "lightyears")
  5143. },
  5144. ]
  5145. ))
  5146. characterMakers.push(() => makeCharacter(
  5147. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5148. {
  5149. stomping: {
  5150. height: math.unit(6, "feet"),
  5151. weight: math.unit(170, "lbs"),
  5152. name: "Stomping",
  5153. image: {
  5154. source: "./media/characters/vivian/stomping.svg"
  5155. }
  5156. },
  5157. sitting: {
  5158. height: math.unit(6 / 1.75, "feet"),
  5159. weight: math.unit(170, "lbs"),
  5160. name: "Sitting",
  5161. image: {
  5162. source: "./media/characters/vivian/sitting.svg",
  5163. bottom: 1 / 6.4,
  5164. extra: 1,
  5165. }
  5166. },
  5167. },
  5168. [
  5169. {
  5170. name: "Normal",
  5171. height: math.unit(7, "feet"),
  5172. default: true
  5173. },
  5174. {
  5175. name: "Macro",
  5176. height: math.unit(10, "stories")
  5177. },
  5178. {
  5179. name: "Macro+",
  5180. height: math.unit(30, "stories")
  5181. },
  5182. {
  5183. name: "Megamacro",
  5184. height: math.unit(10, "miles")
  5185. },
  5186. {
  5187. name: "Megamacro+",
  5188. height: math.unit(2750000, "meters")
  5189. },
  5190. ]
  5191. ))
  5192. characterMakers.push(() => makeCharacter(
  5193. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5194. {
  5195. front: {
  5196. height: math.unit(6, "feet"),
  5197. weight: math.unit(160, "lbs"),
  5198. name: "Front",
  5199. image: {
  5200. source: "./media/characters/prince/front.svg",
  5201. extra: 3400 / 3000
  5202. }
  5203. },
  5204. jumping: {
  5205. height: math.unit(6, "feet"),
  5206. weight: math.unit(160, "lbs"),
  5207. name: "Jumping",
  5208. image: {
  5209. source: "./media/characters/prince/jump.svg",
  5210. extra: 2555 / 2134
  5211. }
  5212. },
  5213. },
  5214. [
  5215. {
  5216. name: "Normal",
  5217. height: math.unit(7.75, "feet"),
  5218. default: true
  5219. },
  5220. {
  5221. name: "Not cute",
  5222. height: math.unit(17, "feet")
  5223. },
  5224. {
  5225. name: "I said NOT",
  5226. height: math.unit(91, "feet")
  5227. },
  5228. {
  5229. name: "Please stop",
  5230. height: math.unit(560, "feet")
  5231. },
  5232. {
  5233. name: "What have you done",
  5234. height: math.unit(2200, "feet")
  5235. },
  5236. {
  5237. name: "Deer God",
  5238. height: math.unit(3.6, "miles")
  5239. },
  5240. ]
  5241. ))
  5242. characterMakers.push(() => makeCharacter(
  5243. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5244. {
  5245. standing: {
  5246. height: math.unit(6, "feet"),
  5247. weight: math.unit(300, "lbs"),
  5248. name: "Standing",
  5249. image: {
  5250. source: "./media/characters/psymon/standing.svg",
  5251. extra: 1888 / 1810,
  5252. bottom: 0.05
  5253. }
  5254. },
  5255. slithering: {
  5256. height: math.unit(6, "feet"),
  5257. weight: math.unit(300, "lbs"),
  5258. name: "Slithering",
  5259. image: {
  5260. source: "./media/characters/psymon/slithering.svg",
  5261. extra: 1330 / 1224
  5262. }
  5263. },
  5264. slitheringAlt: {
  5265. height: math.unit(6, "feet"),
  5266. weight: math.unit(300, "lbs"),
  5267. name: "Slithering (Alt)",
  5268. image: {
  5269. source: "./media/characters/psymon/slithering-alt.svg",
  5270. extra: 1330 / 1224
  5271. }
  5272. },
  5273. },
  5274. [
  5275. {
  5276. name: "Normal",
  5277. height: math.unit(11.25, "feet"),
  5278. default: true
  5279. },
  5280. {
  5281. name: "Large",
  5282. height: math.unit(27, "feet")
  5283. },
  5284. {
  5285. name: "Giant",
  5286. height: math.unit(87, "feet")
  5287. },
  5288. {
  5289. name: "Macro",
  5290. height: math.unit(365, "feet")
  5291. },
  5292. {
  5293. name: "Megamacro",
  5294. height: math.unit(3, "miles")
  5295. },
  5296. {
  5297. name: "World Serpent",
  5298. height: math.unit(8000, "miles")
  5299. },
  5300. ]
  5301. ))
  5302. characterMakers.push(() => makeCharacter(
  5303. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5304. {
  5305. front: {
  5306. height: math.unit(6, "feet"),
  5307. weight: math.unit(180, "lbs"),
  5308. name: "Front",
  5309. image: {
  5310. source: "./media/characters/daimos/front.svg",
  5311. extra: 4160 / 3897,
  5312. bottom: 0.021
  5313. }
  5314. }
  5315. },
  5316. [
  5317. {
  5318. name: "Normal",
  5319. height: math.unit(8, "feet"),
  5320. default: true
  5321. },
  5322. {
  5323. name: "Big Dog",
  5324. height: math.unit(22, "feet")
  5325. },
  5326. {
  5327. name: "Macro",
  5328. height: math.unit(127, "feet")
  5329. },
  5330. {
  5331. name: "Megamacro",
  5332. height: math.unit(3600, "feet")
  5333. },
  5334. ]
  5335. ))
  5336. characterMakers.push(() => makeCharacter(
  5337. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5338. {
  5339. side: {
  5340. height: math.unit(6, "feet"),
  5341. weight: math.unit(180, "lbs"),
  5342. name: "Side",
  5343. image: {
  5344. source: "./media/characters/blake/side.svg",
  5345. extra: 1212 / 1120,
  5346. bottom: 0.05
  5347. }
  5348. },
  5349. crouched: {
  5350. height: math.unit(6 * 0.57, "feet"),
  5351. weight: math.unit(180, "lbs"),
  5352. name: "Crouched",
  5353. image: {
  5354. source: "./media/characters/blake/crouched.svg",
  5355. extra: 840 / 587,
  5356. bottom: 0.04
  5357. }
  5358. },
  5359. bent: {
  5360. height: math.unit(6 * 0.75, "feet"),
  5361. weight: math.unit(180, "lbs"),
  5362. name: "Bent",
  5363. image: {
  5364. source: "./media/characters/blake/bent.svg",
  5365. extra: 592 / 544,
  5366. bottom: 0.035
  5367. }
  5368. },
  5369. },
  5370. [
  5371. {
  5372. name: "Normal",
  5373. height: math.unit(8 + 1 / 6, "feet"),
  5374. default: true
  5375. },
  5376. {
  5377. name: "Big Backside",
  5378. height: math.unit(37, "feet")
  5379. },
  5380. {
  5381. name: "Subway Shredder",
  5382. height: math.unit(72, "feet")
  5383. },
  5384. {
  5385. name: "City Carver",
  5386. height: math.unit(1675, "feet")
  5387. },
  5388. {
  5389. name: "Tectonic Tweaker",
  5390. height: math.unit(2300, "miles")
  5391. },
  5392. ]
  5393. ))
  5394. characterMakers.push(() => makeCharacter(
  5395. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5396. {
  5397. front: {
  5398. height: math.unit(6, "feet"),
  5399. weight: math.unit(180, "lbs"),
  5400. name: "Front",
  5401. image: {
  5402. source: "./media/characters/guisetto/front.svg",
  5403. extra: 856 / 817,
  5404. bottom: 0.06
  5405. }
  5406. },
  5407. airborne: {
  5408. height: math.unit(6, "feet"),
  5409. weight: math.unit(180, "lbs"),
  5410. name: "Airborne",
  5411. image: {
  5412. source: "./media/characters/guisetto/airborne.svg",
  5413. extra: 584 / 525
  5414. }
  5415. },
  5416. },
  5417. [
  5418. {
  5419. name: "Normal",
  5420. height: math.unit(10 + 11 / 12, "feet"),
  5421. default: true
  5422. },
  5423. {
  5424. name: "Large",
  5425. height: math.unit(35, "feet")
  5426. },
  5427. {
  5428. name: "Macro",
  5429. height: math.unit(475, "feet")
  5430. },
  5431. ]
  5432. ))
  5433. characterMakers.push(() => makeCharacter(
  5434. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5435. {
  5436. front: {
  5437. height: math.unit(6, "feet"),
  5438. weight: math.unit(180, "lbs"),
  5439. name: "Front",
  5440. image: {
  5441. source: "./media/characters/luxor/front.svg",
  5442. extra: 2940 / 2152
  5443. }
  5444. },
  5445. back: {
  5446. height: math.unit(6, "feet"),
  5447. weight: math.unit(180, "lbs"),
  5448. name: "Back",
  5449. image: {
  5450. source: "./media/characters/luxor/back.svg",
  5451. extra: 1083 / 960
  5452. }
  5453. },
  5454. },
  5455. [
  5456. {
  5457. name: "Normal",
  5458. height: math.unit(5 + 5 / 6, "feet"),
  5459. default: true
  5460. },
  5461. {
  5462. name: "Lamp",
  5463. height: math.unit(50, "feet")
  5464. },
  5465. {
  5466. name: "Lämp",
  5467. height: math.unit(300, "feet")
  5468. },
  5469. {
  5470. name: "The sun is a lamp",
  5471. height: math.unit(250000, "miles")
  5472. },
  5473. ]
  5474. ))
  5475. characterMakers.push(() => makeCharacter(
  5476. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5477. {
  5478. front: {
  5479. height: math.unit(6, "feet"),
  5480. weight: math.unit(50, "lbs"),
  5481. name: "Front",
  5482. image: {
  5483. source: "./media/characters/huoyan/front.svg"
  5484. }
  5485. },
  5486. side: {
  5487. height: math.unit(6, "feet"),
  5488. weight: math.unit(180, "lbs"),
  5489. name: "Side",
  5490. image: {
  5491. source: "./media/characters/huoyan/side.svg"
  5492. }
  5493. },
  5494. },
  5495. [
  5496. {
  5497. name: "Chef",
  5498. height: math.unit(9, "feet")
  5499. },
  5500. {
  5501. name: "Normal",
  5502. height: math.unit(65, "feet"),
  5503. default: true
  5504. },
  5505. {
  5506. name: "Macro",
  5507. height: math.unit(780, "feet")
  5508. },
  5509. {
  5510. name: "Flaming Mountain",
  5511. height: math.unit(4.8, "miles")
  5512. },
  5513. {
  5514. name: "Celestial",
  5515. height: math.unit(765000, "miles")
  5516. },
  5517. ]
  5518. ))
  5519. characterMakers.push(() => makeCharacter(
  5520. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5521. {
  5522. front: {
  5523. height: math.unit(5 + 3 / 4, "feet"),
  5524. weight: math.unit(120, "lbs"),
  5525. name: "Front",
  5526. image: {
  5527. source: "./media/characters/tails/front.svg"
  5528. }
  5529. }
  5530. },
  5531. [
  5532. {
  5533. name: "Normal",
  5534. height: math.unit(5 + 3 / 4, "feet"),
  5535. default: true
  5536. }
  5537. ]
  5538. ))
  5539. characterMakers.push(() => makeCharacter(
  5540. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5541. {
  5542. front: {
  5543. height: math.unit(4, "feet"),
  5544. weight: math.unit(50, "lbs"),
  5545. name: "Front",
  5546. image: {
  5547. source: "./media/characters/rainy/front.svg"
  5548. }
  5549. }
  5550. },
  5551. [
  5552. {
  5553. name: "Macro",
  5554. height: math.unit(800, "feet"),
  5555. default: true
  5556. }
  5557. ]
  5558. ))
  5559. characterMakers.push(() => makeCharacter(
  5560. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5561. {
  5562. front: {
  5563. height: math.unit(6, "feet"),
  5564. weight: math.unit(150, "lbs"),
  5565. name: "Front",
  5566. image: {
  5567. source: "./media/characters/rainier/front.svg"
  5568. }
  5569. }
  5570. },
  5571. [
  5572. {
  5573. name: "Micro",
  5574. height: math.unit(2, "mm"),
  5575. default: true
  5576. }
  5577. ]
  5578. ))
  5579. characterMakers.push(() => makeCharacter(
  5580. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5581. {
  5582. front: {
  5583. height: math.unit(8 + 4/12, "feet"),
  5584. name: "Front",
  5585. image: {
  5586. source: "./media/characters/andy-renard/front.svg",
  5587. extra: 1839/1726,
  5588. bottom: 134/1973
  5589. }
  5590. },
  5591. back: {
  5592. height: math.unit(8 + 4/12, "feet"),
  5593. name: "Back",
  5594. image: {
  5595. source: "./media/characters/andy-renard/back.svg",
  5596. extra: 1838/1710,
  5597. bottom: 105/1943
  5598. }
  5599. },
  5600. },
  5601. [
  5602. {
  5603. name: "Tall",
  5604. height: math.unit(8 + 4/12, "feet")
  5605. },
  5606. {
  5607. name: "Mini Macro",
  5608. height: math.unit(15, "feet"),
  5609. default: true
  5610. },
  5611. {
  5612. name: "Macro",
  5613. height: math.unit(100, "feet")
  5614. },
  5615. {
  5616. name: "Mega Macro",
  5617. height: math.unit(1000, "feet")
  5618. },
  5619. {
  5620. name: "Giga Macro",
  5621. height: math.unit(10, "miles")
  5622. },
  5623. {
  5624. name: "God Macro",
  5625. height: math.unit(1, "multiverse")
  5626. },
  5627. ]
  5628. ))
  5629. characterMakers.push(() => makeCharacter(
  5630. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5631. {
  5632. front: {
  5633. height: math.unit(6, "feet"),
  5634. weight: math.unit(210, "lbs"),
  5635. name: "Front",
  5636. image: {
  5637. source: "./media/characters/cimmaron/front-sfw.svg",
  5638. extra: 701 / 676,
  5639. bottom: 0.046
  5640. }
  5641. },
  5642. back: {
  5643. height: math.unit(6, "feet"),
  5644. weight: math.unit(210, "lbs"),
  5645. name: "Back",
  5646. image: {
  5647. source: "./media/characters/cimmaron/back-sfw.svg",
  5648. extra: 701 / 676,
  5649. bottom: 0.046
  5650. }
  5651. },
  5652. frontNsfw: {
  5653. height: math.unit(6, "feet"),
  5654. weight: math.unit(210, "lbs"),
  5655. name: "Front (NSFW)",
  5656. image: {
  5657. source: "./media/characters/cimmaron/front-nsfw.svg",
  5658. extra: 701 / 676,
  5659. bottom: 0.046
  5660. }
  5661. },
  5662. backNsfw: {
  5663. height: math.unit(6, "feet"),
  5664. weight: math.unit(210, "lbs"),
  5665. name: "Back (NSFW)",
  5666. image: {
  5667. source: "./media/characters/cimmaron/back-nsfw.svg",
  5668. extra: 701 / 676,
  5669. bottom: 0.046
  5670. }
  5671. },
  5672. dick: {
  5673. height: math.unit(1.714, "feet"),
  5674. name: "Dick",
  5675. image: {
  5676. source: "./media/characters/cimmaron/dick.svg"
  5677. }
  5678. },
  5679. },
  5680. [
  5681. {
  5682. name: "Normal",
  5683. height: math.unit(6, "feet"),
  5684. default: true
  5685. },
  5686. {
  5687. name: "Macro Mayor",
  5688. height: math.unit(350, "meters")
  5689. },
  5690. ]
  5691. ))
  5692. characterMakers.push(() => makeCharacter(
  5693. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5694. {
  5695. front: {
  5696. height: math.unit(6, "feet"),
  5697. weight: math.unit(200, "lbs"),
  5698. name: "Front",
  5699. image: {
  5700. source: "./media/characters/akari/front.svg",
  5701. extra: 962 / 901,
  5702. bottom: 0.04
  5703. }
  5704. }
  5705. },
  5706. [
  5707. {
  5708. name: "Micro",
  5709. height: math.unit(5, "inches"),
  5710. default: true
  5711. },
  5712. {
  5713. name: "Normal",
  5714. height: math.unit(7, "feet")
  5715. },
  5716. ]
  5717. ))
  5718. characterMakers.push(() => makeCharacter(
  5719. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5720. {
  5721. front: {
  5722. height: math.unit(6, "feet"),
  5723. weight: math.unit(140, "lbs"),
  5724. name: "Front",
  5725. image: {
  5726. source: "./media/characters/cynosura/front.svg",
  5727. extra: 896 / 847
  5728. }
  5729. },
  5730. back: {
  5731. height: math.unit(6, "feet"),
  5732. weight: math.unit(140, "lbs"),
  5733. name: "Back",
  5734. image: {
  5735. source: "./media/characters/cynosura/back.svg",
  5736. extra: 1365 / 1250
  5737. }
  5738. },
  5739. },
  5740. [
  5741. {
  5742. name: "Micro",
  5743. height: math.unit(4, "inches")
  5744. },
  5745. {
  5746. name: "Normal",
  5747. height: math.unit(5.75, "feet"),
  5748. default: true
  5749. },
  5750. {
  5751. name: "Tall",
  5752. height: math.unit(10, "feet")
  5753. },
  5754. {
  5755. name: "Big",
  5756. height: math.unit(20, "feet")
  5757. },
  5758. {
  5759. name: "Macro",
  5760. height: math.unit(50, "feet")
  5761. },
  5762. ]
  5763. ))
  5764. characterMakers.push(() => makeCharacter(
  5765. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5766. {
  5767. front: {
  5768. height: math.unit(13 + 2/12, "feet"),
  5769. weight: math.unit(800, "kg"),
  5770. name: "Front",
  5771. image: {
  5772. source: "./media/characters/gin/front.svg",
  5773. extra: 1312/1191,
  5774. bottom: 45/1357
  5775. }
  5776. },
  5777. mouth: {
  5778. height: math.unit(2.39 * 1.8, "feet"),
  5779. name: "Mouth",
  5780. image: {
  5781. source: "./media/characters/gin/mouth.svg"
  5782. }
  5783. },
  5784. hand: {
  5785. height: math.unit(1.57 * 2.19, "feet"),
  5786. name: "Hand",
  5787. image: {
  5788. source: "./media/characters/gin/hand.svg"
  5789. }
  5790. },
  5791. foot: {
  5792. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5793. name: "Foot",
  5794. image: {
  5795. source: "./media/characters/gin/foot.svg"
  5796. }
  5797. },
  5798. sole: {
  5799. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5800. name: "Sole",
  5801. image: {
  5802. source: "./media/characters/gin/sole.svg"
  5803. }
  5804. },
  5805. },
  5806. [
  5807. {
  5808. name: "Very Small",
  5809. height: math.unit(13 + 2 / 12, "feet")
  5810. },
  5811. {
  5812. name: "Micro",
  5813. height: math.unit(600, "miles")
  5814. },
  5815. {
  5816. name: "Regular",
  5817. height: math.unit(20, "earths"),
  5818. default: true
  5819. },
  5820. {
  5821. name: "Macro",
  5822. height: math.unit(2.2, "solarradii")
  5823. },
  5824. {
  5825. name: "Teramacro",
  5826. height: math.unit(1.2, "galaxies")
  5827. },
  5828. {
  5829. name: "Omegamacro",
  5830. height: math.unit(200, "universes")
  5831. },
  5832. ]
  5833. ))
  5834. characterMakers.push(() => makeCharacter(
  5835. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5836. {
  5837. front: {
  5838. height: math.unit(6 + 1 / 6, "feet"),
  5839. weight: math.unit(178, "lbs"),
  5840. name: "Front",
  5841. image: {
  5842. source: "./media/characters/guy/front.svg"
  5843. }
  5844. }
  5845. },
  5846. [
  5847. {
  5848. name: "Normal",
  5849. height: math.unit(6 + 1 / 6, "feet"),
  5850. default: true
  5851. },
  5852. {
  5853. name: "Large",
  5854. height: math.unit(25 + 7 / 12, "feet")
  5855. },
  5856. {
  5857. name: "Macro",
  5858. height: math.unit(60 + 9 / 12, "feet")
  5859. },
  5860. {
  5861. name: "Macro+",
  5862. height: math.unit(246, "feet")
  5863. },
  5864. {
  5865. name: "Macro++",
  5866. height: math.unit(878, "feet")
  5867. }
  5868. ]
  5869. ))
  5870. characterMakers.push(() => makeCharacter(
  5871. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5872. {
  5873. front: {
  5874. height: math.unit(9, "feet"),
  5875. weight: math.unit(800, "lbs"),
  5876. name: "Front",
  5877. image: {
  5878. source: "./media/characters/tiberius/front.svg",
  5879. extra: 2295 / 2071
  5880. }
  5881. },
  5882. back: {
  5883. height: math.unit(9, "feet"),
  5884. weight: math.unit(800, "lbs"),
  5885. name: "Back",
  5886. image: {
  5887. source: "./media/characters/tiberius/back.svg",
  5888. extra: 2373 / 2160
  5889. }
  5890. },
  5891. },
  5892. [
  5893. {
  5894. name: "Normal",
  5895. height: math.unit(9, "feet"),
  5896. default: true
  5897. }
  5898. ]
  5899. ))
  5900. characterMakers.push(() => makeCharacter(
  5901. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5902. {
  5903. front: {
  5904. height: math.unit(6, "feet"),
  5905. weight: math.unit(600, "lbs"),
  5906. name: "Front",
  5907. image: {
  5908. source: "./media/characters/surgo/front.svg",
  5909. extra: 3591 / 2227
  5910. }
  5911. },
  5912. back: {
  5913. height: math.unit(6, "feet"),
  5914. weight: math.unit(600, "lbs"),
  5915. name: "Back",
  5916. image: {
  5917. source: "./media/characters/surgo/back.svg",
  5918. extra: 3557 / 2228
  5919. }
  5920. },
  5921. laying: {
  5922. height: math.unit(6 * 0.85, "feet"),
  5923. weight: math.unit(600, "lbs"),
  5924. name: "Laying",
  5925. image: {
  5926. source: "./media/characters/surgo/laying.svg"
  5927. }
  5928. },
  5929. },
  5930. [
  5931. {
  5932. name: "Normal",
  5933. height: math.unit(6, "feet"),
  5934. default: true
  5935. }
  5936. ]
  5937. ))
  5938. characterMakers.push(() => makeCharacter(
  5939. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5940. {
  5941. side: {
  5942. height: math.unit(6, "feet"),
  5943. weight: math.unit(150, "lbs"),
  5944. name: "Side",
  5945. image: {
  5946. source: "./media/characters/cibus/side.svg",
  5947. extra: 800 / 400
  5948. }
  5949. },
  5950. },
  5951. [
  5952. {
  5953. name: "Normal",
  5954. height: math.unit(6, "feet"),
  5955. default: true
  5956. }
  5957. ]
  5958. ))
  5959. characterMakers.push(() => makeCharacter(
  5960. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5961. {
  5962. front: {
  5963. height: math.unit(6, "feet"),
  5964. weight: math.unit(240, "lbs"),
  5965. name: "Front",
  5966. image: {
  5967. source: "./media/characters/nibbles/front.svg"
  5968. }
  5969. },
  5970. side: {
  5971. height: math.unit(6, "feet"),
  5972. weight: math.unit(240, "lbs"),
  5973. name: "Side",
  5974. image: {
  5975. source: "./media/characters/nibbles/side.svg"
  5976. }
  5977. },
  5978. },
  5979. [
  5980. {
  5981. name: "Normal",
  5982. height: math.unit(9, "feet"),
  5983. default: true
  5984. }
  5985. ]
  5986. ))
  5987. characterMakers.push(() => makeCharacter(
  5988. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5989. {
  5990. side: {
  5991. height: math.unit(5 + 1 / 6, "feet"),
  5992. weight: math.unit(130, "lbs"),
  5993. name: "Side",
  5994. image: {
  5995. source: "./media/characters/rikky/side.svg",
  5996. extra: 851 / 801
  5997. }
  5998. },
  5999. },
  6000. [
  6001. {
  6002. name: "Normal",
  6003. height: math.unit(5 + 1 / 6, "feet")
  6004. },
  6005. {
  6006. name: "Macro",
  6007. height: math.unit(152, "feet"),
  6008. default: true
  6009. },
  6010. {
  6011. name: "Megamacro",
  6012. height: math.unit(7, "miles")
  6013. }
  6014. ]
  6015. ))
  6016. characterMakers.push(() => makeCharacter(
  6017. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6018. {
  6019. side: {
  6020. height: math.unit(370, "cm"),
  6021. weight: math.unit(350, "lbs"),
  6022. name: "Side",
  6023. image: {
  6024. source: "./media/characters/malfressa/side.svg"
  6025. }
  6026. },
  6027. walking: {
  6028. height: math.unit(370, "cm"),
  6029. weight: math.unit(350, "lbs"),
  6030. name: "Walking",
  6031. image: {
  6032. source: "./media/characters/malfressa/walking.svg"
  6033. }
  6034. },
  6035. feral: {
  6036. height: math.unit(2500, "cm"),
  6037. weight: math.unit(100000, "lbs"),
  6038. name: "Feral",
  6039. image: {
  6040. source: "./media/characters/malfressa/feral.svg",
  6041. extra: 2108 / 837,
  6042. bottom: 0.02
  6043. }
  6044. },
  6045. },
  6046. [
  6047. {
  6048. name: "Normal",
  6049. height: math.unit(370, "cm")
  6050. },
  6051. {
  6052. name: "Macro",
  6053. height: math.unit(300, "meters"),
  6054. default: true
  6055. }
  6056. ]
  6057. ))
  6058. characterMakers.push(() => makeCharacter(
  6059. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6060. {
  6061. front: {
  6062. height: math.unit(6, "feet"),
  6063. weight: math.unit(60, "kg"),
  6064. name: "Front",
  6065. image: {
  6066. source: "./media/characters/jaro/front.svg"
  6067. }
  6068. },
  6069. back: {
  6070. height: math.unit(6, "feet"),
  6071. weight: math.unit(60, "kg"),
  6072. name: "Back",
  6073. image: {
  6074. source: "./media/characters/jaro/back.svg"
  6075. }
  6076. },
  6077. },
  6078. [
  6079. {
  6080. name: "Micro",
  6081. height: math.unit(7, "inches")
  6082. },
  6083. {
  6084. name: "Normal",
  6085. height: math.unit(5.5, "feet"),
  6086. default: true
  6087. },
  6088. {
  6089. name: "Minimacro",
  6090. height: math.unit(20, "feet")
  6091. },
  6092. {
  6093. name: "Macro",
  6094. height: math.unit(200, "meters")
  6095. }
  6096. ]
  6097. ))
  6098. characterMakers.push(() => makeCharacter(
  6099. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6100. {
  6101. front: {
  6102. height: math.unit(6, "feet"),
  6103. weight: math.unit(195, "lb"),
  6104. name: "Front",
  6105. image: {
  6106. source: "./media/characters/rogue/front.svg"
  6107. }
  6108. },
  6109. },
  6110. [
  6111. {
  6112. name: "Macro",
  6113. height: math.unit(90, "feet"),
  6114. default: true
  6115. },
  6116. ]
  6117. ))
  6118. characterMakers.push(() => makeCharacter(
  6119. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6120. {
  6121. front: {
  6122. height: math.unit(5 + 8 / 12, "feet"),
  6123. weight: math.unit(140, "lb"),
  6124. name: "Front",
  6125. image: {
  6126. source: "./media/characters/piper/front.svg",
  6127. extra: 3948/3655,
  6128. bottom: 0/3948
  6129. }
  6130. },
  6131. },
  6132. [
  6133. {
  6134. name: "Micro",
  6135. height: math.unit(2, "inches")
  6136. },
  6137. {
  6138. name: "Normal",
  6139. height: math.unit(5 + 8 / 12, "feet")
  6140. },
  6141. {
  6142. name: "Macro",
  6143. height: math.unit(250, "feet"),
  6144. default: true
  6145. },
  6146. {
  6147. name: "Megamacro",
  6148. height: math.unit(7, "miles")
  6149. },
  6150. ]
  6151. ))
  6152. characterMakers.push(() => makeCharacter(
  6153. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6154. {
  6155. front: {
  6156. height: math.unit(6, "feet"),
  6157. weight: math.unit(220, "lb"),
  6158. name: "Front",
  6159. image: {
  6160. source: "./media/characters/gemini/front.svg"
  6161. }
  6162. },
  6163. back: {
  6164. height: math.unit(6, "feet"),
  6165. weight: math.unit(220, "lb"),
  6166. name: "Back",
  6167. image: {
  6168. source: "./media/characters/gemini/back.svg"
  6169. }
  6170. },
  6171. kneeling: {
  6172. height: math.unit(6 / 1.5, "feet"),
  6173. weight: math.unit(220, "lb"),
  6174. name: "Kneeling",
  6175. image: {
  6176. source: "./media/characters/gemini/kneeling.svg",
  6177. bottom: 0.02
  6178. }
  6179. },
  6180. },
  6181. [
  6182. {
  6183. name: "Macro",
  6184. height: math.unit(300, "meters"),
  6185. default: true
  6186. },
  6187. {
  6188. name: "Megamacro",
  6189. height: math.unit(6900, "meters")
  6190. },
  6191. ]
  6192. ))
  6193. characterMakers.push(() => makeCharacter(
  6194. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6195. {
  6196. anthro: {
  6197. height: math.unit(2.35, "meters"),
  6198. weight: math.unit(73, "kg"),
  6199. name: "Anthro",
  6200. image: {
  6201. source: "./media/characters/alicia/anthro.svg",
  6202. extra: 2571 / 2385,
  6203. bottom: 75 / 2648
  6204. }
  6205. },
  6206. paw: {
  6207. height: math.unit(1.32, "feet"),
  6208. name: "Paw",
  6209. image: {
  6210. source: "./media/characters/alicia/paw.svg"
  6211. }
  6212. },
  6213. feral: {
  6214. height: math.unit(1.69, "meters"),
  6215. weight: math.unit(73, "kg"),
  6216. name: "Feral",
  6217. image: {
  6218. source: "./media/characters/alicia/feral.svg",
  6219. extra: 2123 / 1715,
  6220. bottom: 222 / 2349
  6221. }
  6222. },
  6223. },
  6224. [
  6225. {
  6226. name: "Normal",
  6227. height: math.unit(2.35, "meters")
  6228. },
  6229. {
  6230. name: "Macro",
  6231. height: math.unit(60, "meters"),
  6232. default: true
  6233. },
  6234. {
  6235. name: "Megamacro",
  6236. height: math.unit(10000, "kilometers")
  6237. },
  6238. ]
  6239. ))
  6240. characterMakers.push(() => makeCharacter(
  6241. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6242. {
  6243. front: {
  6244. height: math.unit(7, "feet"),
  6245. weight: math.unit(250, "lbs"),
  6246. name: "Front",
  6247. image: {
  6248. source: "./media/characters/archy/front.svg"
  6249. }
  6250. }
  6251. },
  6252. [
  6253. {
  6254. name: "Micro",
  6255. height: math.unit(1, "inch")
  6256. },
  6257. {
  6258. name: "Shorty",
  6259. height: math.unit(5, "feet")
  6260. },
  6261. {
  6262. name: "Normal",
  6263. height: math.unit(7, "feet")
  6264. },
  6265. {
  6266. name: "Macro",
  6267. height: math.unit(600, "meters"),
  6268. default: true
  6269. },
  6270. {
  6271. name: "Megamacro",
  6272. height: math.unit(1, "mile")
  6273. },
  6274. ]
  6275. ))
  6276. characterMakers.push(() => makeCharacter(
  6277. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6278. {
  6279. front: {
  6280. height: math.unit(1.65, "meters"),
  6281. weight: math.unit(74, "kg"),
  6282. name: "Front",
  6283. image: {
  6284. source: "./media/characters/berri/front.svg",
  6285. extra: 857 / 837,
  6286. bottom: 18 / 877
  6287. }
  6288. },
  6289. bum: {
  6290. height: math.unit(1.46, "feet"),
  6291. name: "Bum",
  6292. image: {
  6293. source: "./media/characters/berri/bum.svg"
  6294. }
  6295. },
  6296. mouth: {
  6297. height: math.unit(0.44, "feet"),
  6298. name: "Mouth",
  6299. image: {
  6300. source: "./media/characters/berri/mouth.svg"
  6301. }
  6302. },
  6303. paw: {
  6304. height: math.unit(0.826, "feet"),
  6305. name: "Paw",
  6306. image: {
  6307. source: "./media/characters/berri/paw.svg"
  6308. }
  6309. },
  6310. },
  6311. [
  6312. {
  6313. name: "Normal",
  6314. height: math.unit(1.65, "meters")
  6315. },
  6316. {
  6317. name: "Macro",
  6318. height: math.unit(60, "m"),
  6319. default: true
  6320. },
  6321. {
  6322. name: "Megamacro",
  6323. height: math.unit(9.213, "km")
  6324. },
  6325. {
  6326. name: "Planet Eater",
  6327. height: math.unit(489, "megameters")
  6328. },
  6329. {
  6330. name: "Teramacro",
  6331. height: math.unit(2471635000000, "meters")
  6332. },
  6333. {
  6334. name: "Examacro",
  6335. height: math.unit(8.0624e+26, "meters")
  6336. }
  6337. ]
  6338. ))
  6339. characterMakers.push(() => makeCharacter(
  6340. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6341. {
  6342. front: {
  6343. height: math.unit(1.72, "meters"),
  6344. weight: math.unit(68, "kg"),
  6345. name: "Front",
  6346. image: {
  6347. source: "./media/characters/lexi/front.svg"
  6348. }
  6349. }
  6350. },
  6351. [
  6352. {
  6353. name: "Very Smol",
  6354. height: math.unit(10, "mm")
  6355. },
  6356. {
  6357. name: "Micro",
  6358. height: math.unit(6.8, "cm"),
  6359. default: true
  6360. },
  6361. {
  6362. name: "Normal",
  6363. height: math.unit(1.72, "m")
  6364. }
  6365. ]
  6366. ))
  6367. characterMakers.push(() => makeCharacter(
  6368. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6369. {
  6370. front: {
  6371. height: math.unit(1.69, "meters"),
  6372. weight: math.unit(68, "kg"),
  6373. name: "Front",
  6374. image: {
  6375. source: "./media/characters/martin/front.svg",
  6376. extra: 596 / 581
  6377. }
  6378. }
  6379. },
  6380. [
  6381. {
  6382. name: "Micro",
  6383. height: math.unit(6.85, "cm"),
  6384. default: true
  6385. },
  6386. {
  6387. name: "Normal",
  6388. height: math.unit(1.69, "m")
  6389. }
  6390. ]
  6391. ))
  6392. characterMakers.push(() => makeCharacter(
  6393. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6394. {
  6395. front: {
  6396. height: math.unit(1.69, "meters"),
  6397. weight: math.unit(68, "kg"),
  6398. name: "Front",
  6399. image: {
  6400. source: "./media/characters/juno/front.svg"
  6401. }
  6402. }
  6403. },
  6404. [
  6405. {
  6406. name: "Micro",
  6407. height: math.unit(7, "cm")
  6408. },
  6409. {
  6410. name: "Normal",
  6411. height: math.unit(1.89, "m")
  6412. },
  6413. {
  6414. name: "Macro",
  6415. height: math.unit(353, "meters"),
  6416. default: true
  6417. }
  6418. ]
  6419. ))
  6420. characterMakers.push(() => makeCharacter(
  6421. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6422. {
  6423. front: {
  6424. height: math.unit(1.93, "meters"),
  6425. weight: math.unit(83, "kg"),
  6426. name: "Front",
  6427. image: {
  6428. source: "./media/characters/samantha/front.svg"
  6429. }
  6430. },
  6431. frontClothed: {
  6432. height: math.unit(1.93, "meters"),
  6433. weight: math.unit(83, "kg"),
  6434. name: "Front (Clothed)",
  6435. image: {
  6436. source: "./media/characters/samantha/front-clothed.svg"
  6437. }
  6438. },
  6439. back: {
  6440. height: math.unit(1.93, "meters"),
  6441. weight: math.unit(83, "kg"),
  6442. name: "Back",
  6443. image: {
  6444. source: "./media/characters/samantha/back.svg"
  6445. }
  6446. },
  6447. },
  6448. [
  6449. {
  6450. name: "Normal",
  6451. height: math.unit(1.93, "m")
  6452. },
  6453. {
  6454. name: "Macro",
  6455. height: math.unit(74, "meters"),
  6456. default: true
  6457. },
  6458. {
  6459. name: "Macro+",
  6460. height: math.unit(223, "meters"),
  6461. },
  6462. {
  6463. name: "Megamacro",
  6464. height: math.unit(8381, "meters"),
  6465. },
  6466. {
  6467. name: "Megamacro+",
  6468. height: math.unit(12000, "kilometers")
  6469. },
  6470. ]
  6471. ))
  6472. characterMakers.push(() => makeCharacter(
  6473. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6474. {
  6475. front: {
  6476. height: math.unit(1.92, "meters"),
  6477. weight: math.unit(80, "kg"),
  6478. name: "Front",
  6479. image: {
  6480. source: "./media/characters/dr-clay/front.svg"
  6481. }
  6482. },
  6483. frontClothed: {
  6484. height: math.unit(1.92, "meters"),
  6485. weight: math.unit(80, "kg"),
  6486. name: "Front (Clothed)",
  6487. image: {
  6488. source: "./media/characters/dr-clay/front-clothed.svg"
  6489. }
  6490. }
  6491. },
  6492. [
  6493. {
  6494. name: "Normal",
  6495. height: math.unit(1.92, "m")
  6496. },
  6497. {
  6498. name: "Macro",
  6499. height: math.unit(214, "meters"),
  6500. default: true
  6501. },
  6502. {
  6503. name: "Macro+",
  6504. height: math.unit(12.237, "meters"),
  6505. },
  6506. {
  6507. name: "Megamacro",
  6508. height: math.unit(557, "megameters"),
  6509. },
  6510. {
  6511. name: "Unimaginable",
  6512. height: math.unit(120e9, "lightyears")
  6513. },
  6514. ]
  6515. ))
  6516. characterMakers.push(() => makeCharacter(
  6517. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6518. {
  6519. front: {
  6520. height: math.unit(2, "meters"),
  6521. weight: math.unit(80, "kg"),
  6522. name: "Front",
  6523. image: {
  6524. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6525. }
  6526. }
  6527. },
  6528. [
  6529. {
  6530. name: "Teramacro",
  6531. height: math.unit(500000, "lightyears"),
  6532. default: true
  6533. },
  6534. ]
  6535. ))
  6536. characterMakers.push(() => makeCharacter(
  6537. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6538. {
  6539. crux: {
  6540. height: math.unit(2, "meters"),
  6541. weight: math.unit(150, "kg"),
  6542. name: "Crux",
  6543. image: {
  6544. source: "./media/characters/vemus/crux.svg",
  6545. extra: 1074/936,
  6546. bottom: 23/1097
  6547. }
  6548. },
  6549. skunkTanuki: {
  6550. height: math.unit(2, "meters"),
  6551. weight: math.unit(150, "kg"),
  6552. name: "Skunk-Tanuki",
  6553. image: {
  6554. source: "./media/characters/vemus/skunk-tanuki.svg",
  6555. extra: 926/893,
  6556. bottom: 20/946
  6557. }
  6558. },
  6559. },
  6560. [
  6561. {
  6562. name: "Normal",
  6563. height: math.unit(3.75, "meters"),
  6564. default: true
  6565. },
  6566. {
  6567. name: "Big",
  6568. height: math.unit(8, "meters")
  6569. },
  6570. {
  6571. name: "Macro",
  6572. height: math.unit(100, "meters")
  6573. },
  6574. {
  6575. name: "Macro+",
  6576. height: math.unit(1500, "meters")
  6577. },
  6578. {
  6579. name: "Stellar",
  6580. height: math.unit(14e8, "meters")
  6581. },
  6582. ]
  6583. ))
  6584. characterMakers.push(() => makeCharacter(
  6585. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6586. {
  6587. front: {
  6588. height: math.unit(2, "meters"),
  6589. weight: math.unit(70, "kg"),
  6590. name: "Front",
  6591. image: {
  6592. source: "./media/characters/beherit/front.svg",
  6593. extra: 1408 / 1242
  6594. }
  6595. }
  6596. },
  6597. [
  6598. {
  6599. name: "Normal",
  6600. height: math.unit(6, "feet")
  6601. },
  6602. {
  6603. name: "Lorg",
  6604. height: math.unit(25, "feet"),
  6605. default: true
  6606. },
  6607. {
  6608. name: "Lorger",
  6609. height: math.unit(75, "feet")
  6610. },
  6611. {
  6612. name: "Macro",
  6613. height: math.unit(200, "meters")
  6614. },
  6615. ]
  6616. ))
  6617. characterMakers.push(() => makeCharacter(
  6618. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6619. {
  6620. front: {
  6621. height: math.unit(2, "meters"),
  6622. weight: math.unit(150, "kg"),
  6623. name: "Front",
  6624. image: {
  6625. source: "./media/characters/everett/front.svg",
  6626. extra: 2038 / 1737,
  6627. bottom: 0.03
  6628. }
  6629. },
  6630. paw: {
  6631. height: math.unit(2 / 3.6, "meters"),
  6632. name: "Paw",
  6633. image: {
  6634. source: "./media/characters/everett/paw.svg"
  6635. }
  6636. },
  6637. },
  6638. [
  6639. {
  6640. name: "Normal",
  6641. height: math.unit(15, "feet"),
  6642. default: true
  6643. },
  6644. {
  6645. name: "Lorg",
  6646. height: math.unit(70, "feet"),
  6647. default: true
  6648. },
  6649. {
  6650. name: "Lorger",
  6651. height: math.unit(250, "feet")
  6652. },
  6653. {
  6654. name: "Macro",
  6655. height: math.unit(500, "meters")
  6656. },
  6657. ]
  6658. ))
  6659. characterMakers.push(() => makeCharacter(
  6660. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6661. {
  6662. front: {
  6663. height: math.unit(2, "meters"),
  6664. weight: math.unit(86, "kg"),
  6665. name: "Front",
  6666. image: {
  6667. source: "./media/characters/rose/front.svg",
  6668. extra: 1785/1636,
  6669. bottom: 30/1815
  6670. }
  6671. },
  6672. frontSporty: {
  6673. height: math.unit(2, "meters"),
  6674. weight: math.unit(86, "kg"),
  6675. name: "Front (Sporty)",
  6676. image: {
  6677. source: "./media/characters/rose/front-sporty.svg",
  6678. extra: 350/335,
  6679. bottom: 10/360
  6680. }
  6681. },
  6682. frontAlt: {
  6683. height: math.unit(1.6, "meters"),
  6684. weight: math.unit(86, "kg"),
  6685. name: "Front (Alt)",
  6686. image: {
  6687. source: "./media/characters/rose/front-alt.svg",
  6688. extra: 299/283,
  6689. bottom: 3/302
  6690. }
  6691. },
  6692. plush: {
  6693. height: math.unit(2, "meters"),
  6694. weight: math.unit(86/3, "kg"),
  6695. name: "Plush",
  6696. image: {
  6697. source: "./media/characters/rose/plush.svg",
  6698. extra: 361/337,
  6699. bottom: 11/372
  6700. }
  6701. },
  6702. },
  6703. [
  6704. {
  6705. name: "True Micro",
  6706. height: math.unit(9, "cm")
  6707. },
  6708. {
  6709. name: "Micro",
  6710. height: math.unit(16, "cm")
  6711. },
  6712. {
  6713. name: "Normal",
  6714. height: math.unit(1.85, "meters"),
  6715. default: true
  6716. },
  6717. {
  6718. name: "Mini-Macro",
  6719. height: math.unit(5, "meters")
  6720. },
  6721. {
  6722. name: "Macro",
  6723. height: math.unit(15, "meters")
  6724. },
  6725. {
  6726. name: "True Macro",
  6727. height: math.unit(40, "meters")
  6728. },
  6729. {
  6730. name: "City Scale",
  6731. height: math.unit(1, "km")
  6732. },
  6733. ]
  6734. ))
  6735. characterMakers.push(() => makeCharacter(
  6736. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6737. {
  6738. front: {
  6739. height: math.unit(2, "meters"),
  6740. weight: math.unit(350, "lbs"),
  6741. name: "Front",
  6742. image: {
  6743. source: "./media/characters/regal/front.svg"
  6744. }
  6745. },
  6746. back: {
  6747. height: math.unit(2, "meters"),
  6748. weight: math.unit(350, "lbs"),
  6749. name: "Back",
  6750. image: {
  6751. source: "./media/characters/regal/back.svg"
  6752. }
  6753. },
  6754. },
  6755. [
  6756. {
  6757. name: "Macro",
  6758. height: math.unit(350, "feet"),
  6759. default: true
  6760. }
  6761. ]
  6762. ))
  6763. characterMakers.push(() => makeCharacter(
  6764. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6765. {
  6766. front: {
  6767. height: math.unit(4 + 11 / 12, "feet"),
  6768. weight: math.unit(100, "lbs"),
  6769. name: "Front",
  6770. image: {
  6771. source: "./media/characters/opal/front.svg"
  6772. }
  6773. },
  6774. frontAlt: {
  6775. height: math.unit(4 + 11 / 12, "feet"),
  6776. weight: math.unit(100, "lbs"),
  6777. name: "Front (Alt)",
  6778. image: {
  6779. source: "./media/characters/opal/front-alt.svg"
  6780. }
  6781. },
  6782. },
  6783. [
  6784. {
  6785. name: "Small",
  6786. height: math.unit(4 + 11 / 12, "feet")
  6787. },
  6788. {
  6789. name: "Normal",
  6790. height: math.unit(20, "feet"),
  6791. default: true
  6792. },
  6793. {
  6794. name: "Macro",
  6795. height: math.unit(120, "feet")
  6796. },
  6797. {
  6798. name: "Megamacro",
  6799. height: math.unit(80, "miles")
  6800. },
  6801. {
  6802. name: "True Size",
  6803. height: math.unit(100000, "lightyears")
  6804. },
  6805. ]
  6806. ))
  6807. characterMakers.push(() => makeCharacter(
  6808. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6809. {
  6810. front: {
  6811. height: math.unit(6, "feet"),
  6812. weight: math.unit(200, "lbs"),
  6813. name: "Front",
  6814. image: {
  6815. source: "./media/characters/vector-wuff/front.svg"
  6816. }
  6817. }
  6818. },
  6819. [
  6820. {
  6821. name: "Normal",
  6822. height: math.unit(2.8, "meters")
  6823. },
  6824. {
  6825. name: "Macro",
  6826. height: math.unit(450, "meters"),
  6827. default: true
  6828. },
  6829. {
  6830. name: "Megamacro",
  6831. height: math.unit(15, "kilometers")
  6832. }
  6833. ]
  6834. ))
  6835. characterMakers.push(() => makeCharacter(
  6836. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6837. {
  6838. front: {
  6839. height: math.unit(6, "feet"),
  6840. weight: math.unit(256, "lbs"),
  6841. name: "Front",
  6842. image: {
  6843. source: "./media/characters/dannik/front.svg"
  6844. }
  6845. }
  6846. },
  6847. [
  6848. {
  6849. name: "Macro",
  6850. height: math.unit(69.57, "meters"),
  6851. default: true
  6852. },
  6853. ]
  6854. ))
  6855. characterMakers.push(() => makeCharacter(
  6856. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6857. {
  6858. front: {
  6859. height: math.unit(6, "feet"),
  6860. weight: math.unit(120, "lbs"),
  6861. name: "Front",
  6862. image: {
  6863. source: "./media/characters/azura-saharah/front.svg"
  6864. }
  6865. },
  6866. back: {
  6867. height: math.unit(6, "feet"),
  6868. weight: math.unit(120, "lbs"),
  6869. name: "Back",
  6870. image: {
  6871. source: "./media/characters/azura-saharah/back.svg"
  6872. }
  6873. },
  6874. },
  6875. [
  6876. {
  6877. name: "Macro",
  6878. height: math.unit(100, "feet"),
  6879. default: true
  6880. },
  6881. ]
  6882. ))
  6883. characterMakers.push(() => makeCharacter(
  6884. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6885. {
  6886. side: {
  6887. height: math.unit(5 + 4 / 12, "feet"),
  6888. weight: math.unit(163, "lbs"),
  6889. name: "Side",
  6890. image: {
  6891. source: "./media/characters/kennedy/side.svg"
  6892. }
  6893. }
  6894. },
  6895. [
  6896. {
  6897. name: "Standard Doggo",
  6898. height: math.unit(5 + 4 / 12, "feet")
  6899. },
  6900. {
  6901. name: "Big Doggo",
  6902. height: math.unit(25 + 3 / 12, "feet"),
  6903. default: true
  6904. },
  6905. ]
  6906. ))
  6907. characterMakers.push(() => makeCharacter(
  6908. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6909. {
  6910. front: {
  6911. height: math.unit(6, "feet"),
  6912. weight: math.unit(90, "lbs"),
  6913. name: "Front",
  6914. image: {
  6915. source: "./media/characters/odi-lunar/front.svg"
  6916. }
  6917. }
  6918. },
  6919. [
  6920. {
  6921. name: "Micro",
  6922. height: math.unit(3, "inches"),
  6923. default: true
  6924. },
  6925. {
  6926. name: "Normal",
  6927. height: math.unit(5.5, "feet")
  6928. }
  6929. ]
  6930. ))
  6931. characterMakers.push(() => makeCharacter(
  6932. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6933. {
  6934. back: {
  6935. height: math.unit(6, "feet"),
  6936. weight: math.unit(220, "lbs"),
  6937. name: "Back",
  6938. image: {
  6939. source: "./media/characters/mandake/back.svg"
  6940. }
  6941. }
  6942. },
  6943. [
  6944. {
  6945. name: "Normal",
  6946. height: math.unit(7, "feet"),
  6947. default: true
  6948. },
  6949. {
  6950. name: "Macro",
  6951. height: math.unit(78, "feet")
  6952. },
  6953. {
  6954. name: "Macro+",
  6955. height: math.unit(300, "meters")
  6956. },
  6957. {
  6958. name: "Macro++",
  6959. height: math.unit(2400, "feet")
  6960. },
  6961. {
  6962. name: "Megamacro",
  6963. height: math.unit(5167, "meters")
  6964. },
  6965. {
  6966. name: "Gigamacro",
  6967. height: math.unit(41769, "miles")
  6968. },
  6969. ]
  6970. ))
  6971. characterMakers.push(() => makeCharacter(
  6972. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6973. {
  6974. front: {
  6975. height: math.unit(6, "feet"),
  6976. weight: math.unit(120, "lbs"),
  6977. name: "Front",
  6978. image: {
  6979. source: "./media/characters/yozey/front.svg"
  6980. }
  6981. },
  6982. frontAlt: {
  6983. height: math.unit(6, "feet"),
  6984. weight: math.unit(120, "lbs"),
  6985. name: "Front (Alt)",
  6986. image: {
  6987. source: "./media/characters/yozey/front-alt.svg"
  6988. }
  6989. },
  6990. side: {
  6991. height: math.unit(6, "feet"),
  6992. weight: math.unit(120, "lbs"),
  6993. name: "Side",
  6994. image: {
  6995. source: "./media/characters/yozey/side.svg"
  6996. }
  6997. },
  6998. },
  6999. [
  7000. {
  7001. name: "Micro",
  7002. height: math.unit(3, "inches"),
  7003. default: true
  7004. },
  7005. {
  7006. name: "Normal",
  7007. height: math.unit(6, "feet")
  7008. }
  7009. ]
  7010. ))
  7011. characterMakers.push(() => makeCharacter(
  7012. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7013. {
  7014. front: {
  7015. height: math.unit(6, "feet"),
  7016. weight: math.unit(103, "lbs"),
  7017. name: "Front",
  7018. image: {
  7019. source: "./media/characters/valeska-voss/front.svg"
  7020. }
  7021. }
  7022. },
  7023. [
  7024. {
  7025. name: "Mini-Sized Sub",
  7026. height: math.unit(3.1, "inches")
  7027. },
  7028. {
  7029. name: "Mid-Sized Sub",
  7030. height: math.unit(6.2, "inches")
  7031. },
  7032. {
  7033. name: "Full-Sized Sub",
  7034. height: math.unit(9.3, "inches")
  7035. },
  7036. {
  7037. name: "Normal",
  7038. height: math.unit(5 + 2 / 12, "foot"),
  7039. default: true
  7040. },
  7041. ]
  7042. ))
  7043. characterMakers.push(() => makeCharacter(
  7044. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7045. {
  7046. front: {
  7047. height: math.unit(6, "feet"),
  7048. weight: math.unit(160, "lbs"),
  7049. name: "Front",
  7050. image: {
  7051. source: "./media/characters/gene-zeta/front.svg",
  7052. extra: 3006 / 2826,
  7053. bottom: 182 / 3188
  7054. }
  7055. }
  7056. },
  7057. [
  7058. {
  7059. name: "Micro",
  7060. height: math.unit(6, "inches")
  7061. },
  7062. {
  7063. name: "Normal",
  7064. height: math.unit(5 + 11 / 12, "foot"),
  7065. default: true
  7066. },
  7067. {
  7068. name: "Macro",
  7069. height: math.unit(140, "feet")
  7070. },
  7071. {
  7072. name: "Supercharged",
  7073. height: math.unit(2500, "feet")
  7074. },
  7075. ]
  7076. ))
  7077. characterMakers.push(() => makeCharacter(
  7078. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7079. {
  7080. front: {
  7081. height: math.unit(6, "feet"),
  7082. weight: math.unit(350, "lbs"),
  7083. name: "Front",
  7084. image: {
  7085. source: "./media/characters/razinox/front.svg",
  7086. extra: 1686 / 1548,
  7087. bottom: 28.2 / 1868
  7088. }
  7089. },
  7090. back: {
  7091. height: math.unit(6, "feet"),
  7092. weight: math.unit(350, "lbs"),
  7093. name: "Back",
  7094. image: {
  7095. source: "./media/characters/razinox/back.svg",
  7096. extra: 1660 / 1590,
  7097. bottom: 15 / 1665
  7098. }
  7099. },
  7100. },
  7101. [
  7102. {
  7103. name: "Normal",
  7104. height: math.unit(10 + 8 / 12, "foot")
  7105. },
  7106. {
  7107. name: "Minimacro",
  7108. height: math.unit(15, "foot")
  7109. },
  7110. {
  7111. name: "Macro",
  7112. height: math.unit(60, "foot"),
  7113. default: true
  7114. },
  7115. {
  7116. name: "Megamacro",
  7117. height: math.unit(5, "miles")
  7118. },
  7119. {
  7120. name: "Gigamacro",
  7121. height: math.unit(6000, "miles")
  7122. },
  7123. ]
  7124. ))
  7125. characterMakers.push(() => makeCharacter(
  7126. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7127. {
  7128. front: {
  7129. height: math.unit(6, "feet"),
  7130. weight: math.unit(150, "lbs"),
  7131. name: "Front",
  7132. image: {
  7133. source: "./media/characters/cobalt/front.svg"
  7134. }
  7135. }
  7136. },
  7137. [
  7138. {
  7139. name: "Normal",
  7140. height: math.unit(8 + 1 / 12, "foot")
  7141. },
  7142. {
  7143. name: "Macro",
  7144. height: math.unit(111, "foot"),
  7145. default: true
  7146. },
  7147. {
  7148. name: "Supracosmic",
  7149. height: math.unit(1e42, "feet")
  7150. },
  7151. ]
  7152. ))
  7153. characterMakers.push(() => makeCharacter(
  7154. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7155. {
  7156. front: {
  7157. height: math.unit(6, "feet"),
  7158. weight: math.unit(140, "lbs"),
  7159. name: "Front",
  7160. image: {
  7161. source: "./media/characters/amanda/front.svg"
  7162. }
  7163. }
  7164. },
  7165. [
  7166. {
  7167. name: "Micro",
  7168. height: math.unit(5, "inches"),
  7169. default: true
  7170. },
  7171. ]
  7172. ))
  7173. characterMakers.push(() => makeCharacter(
  7174. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7175. {
  7176. front: {
  7177. height: math.unit(2.75, "meters"),
  7178. weight: math.unit(1200, "lb"),
  7179. name: "Front",
  7180. image: {
  7181. source: "./media/characters/teal/front.svg",
  7182. extra: 2463 / 2320,
  7183. bottom: 166 / 2629
  7184. }
  7185. },
  7186. back: {
  7187. height: math.unit(2.75, "meters"),
  7188. weight: math.unit(1200, "lb"),
  7189. name: "Back",
  7190. image: {
  7191. source: "./media/characters/teal/back.svg",
  7192. extra: 2580 / 2489,
  7193. bottom: 151 / 2731
  7194. }
  7195. },
  7196. sitting: {
  7197. height: math.unit(1.9, "meters"),
  7198. weight: math.unit(1200, "lb"),
  7199. name: "Sitting",
  7200. image: {
  7201. source: "./media/characters/teal/sitting.svg",
  7202. extra: 623 / 590,
  7203. bottom: 121 / 744
  7204. }
  7205. },
  7206. standing: {
  7207. height: math.unit(2.75, "meters"),
  7208. weight: math.unit(1200, "lb"),
  7209. name: "Standing",
  7210. image: {
  7211. source: "./media/characters/teal/standing.svg",
  7212. extra: 923 / 893,
  7213. bottom: 60 / 983
  7214. }
  7215. },
  7216. stretching: {
  7217. height: math.unit(3.65, "meters"),
  7218. weight: math.unit(1200, "lb"),
  7219. name: "Stretching",
  7220. image: {
  7221. source: "./media/characters/teal/stretching.svg",
  7222. extra: 1276 / 1244,
  7223. bottom: 0 / 1276
  7224. }
  7225. },
  7226. legged: {
  7227. height: math.unit(1.3, "meters"),
  7228. weight: math.unit(100, "lb"),
  7229. name: "Legged",
  7230. image: {
  7231. source: "./media/characters/teal/legged.svg",
  7232. extra: 462 / 437,
  7233. bottom: 24 / 486
  7234. }
  7235. },
  7236. naga: {
  7237. height: math.unit(5.4, "meters"),
  7238. weight: math.unit(4000, "lb"),
  7239. name: "Naga",
  7240. image: {
  7241. source: "./media/characters/teal/naga.svg",
  7242. extra: 1902 / 1858,
  7243. bottom: 0 / 1902
  7244. }
  7245. },
  7246. hand: {
  7247. height: math.unit(0.52, "meters"),
  7248. name: "Hand",
  7249. image: {
  7250. source: "./media/characters/teal/hand.svg"
  7251. }
  7252. },
  7253. maw: {
  7254. height: math.unit(0.43, "meters"),
  7255. name: "Maw",
  7256. image: {
  7257. source: "./media/characters/teal/maw.svg"
  7258. }
  7259. },
  7260. slit: {
  7261. height: math.unit(0.25, "meters"),
  7262. name: "Slit",
  7263. image: {
  7264. source: "./media/characters/teal/slit.svg"
  7265. }
  7266. },
  7267. },
  7268. [
  7269. {
  7270. name: "Normal",
  7271. height: math.unit(2.75, "meters"),
  7272. default: true
  7273. },
  7274. {
  7275. name: "Macro",
  7276. height: math.unit(300, "feet")
  7277. },
  7278. {
  7279. name: "Macro+",
  7280. height: math.unit(2000, "feet")
  7281. },
  7282. ]
  7283. ))
  7284. characterMakers.push(() => makeCharacter(
  7285. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7286. {
  7287. frontCat: {
  7288. height: math.unit(6, "feet"),
  7289. weight: math.unit(180, "lbs"),
  7290. name: "Front (Cat)",
  7291. image: {
  7292. source: "./media/characters/ravin-amulet/front-cat.svg"
  7293. }
  7294. },
  7295. frontCatAlt: {
  7296. height: math.unit(6, "feet"),
  7297. weight: math.unit(180, "lbs"),
  7298. name: "Front (Alt, Cat)",
  7299. image: {
  7300. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7301. }
  7302. },
  7303. frontWerewolf: {
  7304. height: math.unit(6 * 1.2, "feet"),
  7305. weight: math.unit(225, "lbs"),
  7306. name: "Front (Werewolf)",
  7307. image: {
  7308. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7309. }
  7310. },
  7311. backWerewolf: {
  7312. height: math.unit(6 * 1.2, "feet"),
  7313. weight: math.unit(225, "lbs"),
  7314. name: "Back (Werewolf)",
  7315. image: {
  7316. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7317. }
  7318. },
  7319. },
  7320. [
  7321. {
  7322. name: "Nano",
  7323. height: math.unit(1, "micrometer")
  7324. },
  7325. {
  7326. name: "Micro",
  7327. height: math.unit(1, "inch")
  7328. },
  7329. {
  7330. name: "Normal",
  7331. height: math.unit(6, "feet"),
  7332. default: true
  7333. },
  7334. {
  7335. name: "Macro",
  7336. height: math.unit(60, "feet")
  7337. }
  7338. ]
  7339. ))
  7340. characterMakers.push(() => makeCharacter(
  7341. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7342. {
  7343. front: {
  7344. height: math.unit(6, "feet"),
  7345. weight: math.unit(165, "lbs"),
  7346. name: "Front",
  7347. image: {
  7348. source: "./media/characters/fluoresce/front.svg"
  7349. }
  7350. }
  7351. },
  7352. [
  7353. {
  7354. name: "Micro",
  7355. height: math.unit(6, "cm")
  7356. },
  7357. {
  7358. name: "Normal",
  7359. height: math.unit(5 + 7 / 12, "feet"),
  7360. default: true
  7361. },
  7362. {
  7363. name: "Macro",
  7364. height: math.unit(56, "feet")
  7365. },
  7366. {
  7367. name: "Megamacro",
  7368. height: math.unit(1.9, "miles")
  7369. },
  7370. ]
  7371. ))
  7372. characterMakers.push(() => makeCharacter(
  7373. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7374. {
  7375. front: {
  7376. height: math.unit(9 + 6 / 12, "feet"),
  7377. weight: math.unit(523, "lbs"),
  7378. name: "Side",
  7379. image: {
  7380. source: "./media/characters/aurora/side.svg"
  7381. }
  7382. }
  7383. },
  7384. [
  7385. {
  7386. name: "Normal",
  7387. height: math.unit(9 + 6 / 12, "feet")
  7388. },
  7389. {
  7390. name: "Macro",
  7391. height: math.unit(96, "feet"),
  7392. default: true
  7393. },
  7394. {
  7395. name: "Macro+",
  7396. height: math.unit(243, "feet")
  7397. },
  7398. ]
  7399. ))
  7400. characterMakers.push(() => makeCharacter(
  7401. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7402. {
  7403. front: {
  7404. height: math.unit(194, "cm"),
  7405. weight: math.unit(90, "kg"),
  7406. name: "Front",
  7407. image: {
  7408. source: "./media/characters/ranek/front.svg"
  7409. }
  7410. },
  7411. side: {
  7412. height: math.unit(194, "cm"),
  7413. weight: math.unit(90, "kg"),
  7414. name: "Side",
  7415. image: {
  7416. source: "./media/characters/ranek/side.svg"
  7417. }
  7418. },
  7419. back: {
  7420. height: math.unit(194, "cm"),
  7421. weight: math.unit(90, "kg"),
  7422. name: "Back",
  7423. image: {
  7424. source: "./media/characters/ranek/back.svg"
  7425. }
  7426. },
  7427. feral: {
  7428. height: math.unit(30, "cm"),
  7429. weight: math.unit(1.6, "lbs"),
  7430. name: "Feral",
  7431. image: {
  7432. source: "./media/characters/ranek/feral.svg"
  7433. }
  7434. },
  7435. },
  7436. [
  7437. {
  7438. name: "Normal",
  7439. height: math.unit(194, "cm"),
  7440. default: true
  7441. },
  7442. {
  7443. name: "Macro",
  7444. height: math.unit(100, "meters")
  7445. },
  7446. ]
  7447. ))
  7448. characterMakers.push(() => makeCharacter(
  7449. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7450. {
  7451. front: {
  7452. height: math.unit(5 + 6 / 12, "feet"),
  7453. weight: math.unit(153, "lbs"),
  7454. name: "Front",
  7455. image: {
  7456. source: "./media/characters/andrew-cooper/front.svg"
  7457. }
  7458. },
  7459. },
  7460. [
  7461. {
  7462. name: "Nano",
  7463. height: math.unit(1, "mm")
  7464. },
  7465. {
  7466. name: "Micro",
  7467. height: math.unit(2, "inches")
  7468. },
  7469. {
  7470. name: "Normal",
  7471. height: math.unit(5 + 6 / 12, "feet"),
  7472. default: true
  7473. }
  7474. ]
  7475. ))
  7476. characterMakers.push(() => makeCharacter(
  7477. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7478. {
  7479. front: {
  7480. height: math.unit(6, "feet"),
  7481. weight: math.unit(180, "lbs"),
  7482. name: "Front",
  7483. image: {
  7484. source: "./media/characters/akane-sato/front.svg",
  7485. extra: 1219 / 1140
  7486. }
  7487. },
  7488. back: {
  7489. height: math.unit(6, "feet"),
  7490. weight: math.unit(180, "lbs"),
  7491. name: "Back",
  7492. image: {
  7493. source: "./media/characters/akane-sato/back.svg",
  7494. extra: 1219 / 1170
  7495. }
  7496. },
  7497. },
  7498. [
  7499. {
  7500. name: "Normal",
  7501. height: math.unit(2.5, "meters")
  7502. },
  7503. {
  7504. name: "Macro",
  7505. height: math.unit(250, "meters"),
  7506. default: true
  7507. },
  7508. {
  7509. name: "Megamacro",
  7510. height: math.unit(25, "km")
  7511. },
  7512. ]
  7513. ))
  7514. characterMakers.push(() => makeCharacter(
  7515. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7516. {
  7517. front: {
  7518. height: math.unit(6, "feet"),
  7519. weight: math.unit(65, "kg"),
  7520. name: "Front",
  7521. image: {
  7522. source: "./media/characters/rook/front.svg",
  7523. extra: 960 / 950
  7524. }
  7525. }
  7526. },
  7527. [
  7528. {
  7529. name: "Normal",
  7530. height: math.unit(8.8, "feet")
  7531. },
  7532. {
  7533. name: "Macro",
  7534. height: math.unit(88, "feet"),
  7535. default: true
  7536. },
  7537. {
  7538. name: "Megamacro",
  7539. height: math.unit(8, "miles")
  7540. },
  7541. ]
  7542. ))
  7543. characterMakers.push(() => makeCharacter(
  7544. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7545. {
  7546. front: {
  7547. height: math.unit(12 + 2 / 12, "feet"),
  7548. weight: math.unit(808, "lbs"),
  7549. name: "Front",
  7550. image: {
  7551. source: "./media/characters/prodigy/front.svg"
  7552. }
  7553. }
  7554. },
  7555. [
  7556. {
  7557. name: "Normal",
  7558. height: math.unit(12 + 2 / 12, "feet"),
  7559. default: true
  7560. },
  7561. {
  7562. name: "Macro",
  7563. height: math.unit(143, "feet")
  7564. },
  7565. {
  7566. name: "Macro+",
  7567. height: math.unit(400, "feet")
  7568. },
  7569. ]
  7570. ))
  7571. characterMakers.push(() => makeCharacter(
  7572. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7573. {
  7574. front: {
  7575. height: math.unit(6, "feet"),
  7576. weight: math.unit(225, "lbs"),
  7577. name: "Front",
  7578. image: {
  7579. source: "./media/characters/daniel/front.svg"
  7580. }
  7581. },
  7582. leaning: {
  7583. height: math.unit(6, "feet"),
  7584. weight: math.unit(225, "lbs"),
  7585. name: "Leaning",
  7586. image: {
  7587. source: "./media/characters/daniel/leaning.svg"
  7588. }
  7589. },
  7590. },
  7591. [
  7592. {
  7593. name: "Macro",
  7594. height: math.unit(1000, "feet"),
  7595. default: true
  7596. },
  7597. ]
  7598. ))
  7599. characterMakers.push(() => makeCharacter(
  7600. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7601. {
  7602. front: {
  7603. height: math.unit(6, "feet"),
  7604. weight: math.unit(88, "lbs"),
  7605. name: "Front",
  7606. image: {
  7607. source: "./media/characters/chiros/front.svg",
  7608. extra: 306 / 226
  7609. }
  7610. },
  7611. side: {
  7612. height: math.unit(6, "feet"),
  7613. weight: math.unit(88, "lbs"),
  7614. name: "Side",
  7615. image: {
  7616. source: "./media/characters/chiros/side.svg",
  7617. extra: 306 / 226
  7618. }
  7619. },
  7620. },
  7621. [
  7622. {
  7623. name: "Normal",
  7624. height: math.unit(6, "cm"),
  7625. default: true
  7626. },
  7627. ]
  7628. ))
  7629. characterMakers.push(() => makeCharacter(
  7630. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7631. {
  7632. front: {
  7633. height: math.unit(6, "feet"),
  7634. weight: math.unit(100, "lbs"),
  7635. name: "Front",
  7636. image: {
  7637. source: "./media/characters/selka/front.svg",
  7638. extra: 947 / 887
  7639. }
  7640. }
  7641. },
  7642. [
  7643. {
  7644. name: "Normal",
  7645. height: math.unit(5, "cm"),
  7646. default: true
  7647. },
  7648. ]
  7649. ))
  7650. characterMakers.push(() => makeCharacter(
  7651. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7652. {
  7653. front: {
  7654. height: math.unit(8 + 3 / 12, "feet"),
  7655. weight: math.unit(424, "lbs"),
  7656. name: "Front",
  7657. image: {
  7658. source: "./media/characters/verin/front.svg",
  7659. extra: 1845 / 1550
  7660. }
  7661. },
  7662. frontArmored: {
  7663. height: math.unit(8 + 3 / 12, "feet"),
  7664. weight: math.unit(424, "lbs"),
  7665. name: "Front (Armored)",
  7666. image: {
  7667. source: "./media/characters/verin/front-armor.svg",
  7668. extra: 1845 / 1550,
  7669. bottom: 0.01
  7670. }
  7671. },
  7672. back: {
  7673. height: math.unit(8 + 3 / 12, "feet"),
  7674. weight: math.unit(424, "lbs"),
  7675. name: "Back",
  7676. image: {
  7677. source: "./media/characters/verin/back.svg",
  7678. bottom: 0.1,
  7679. extra: 1
  7680. }
  7681. },
  7682. foot: {
  7683. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7684. name: "Foot",
  7685. image: {
  7686. source: "./media/characters/verin/foot.svg"
  7687. }
  7688. },
  7689. },
  7690. [
  7691. {
  7692. name: "Normal",
  7693. height: math.unit(8 + 3 / 12, "feet")
  7694. },
  7695. {
  7696. name: "Minimacro",
  7697. height: math.unit(21, "feet"),
  7698. default: true
  7699. },
  7700. {
  7701. name: "Macro",
  7702. height: math.unit(626, "feet")
  7703. },
  7704. ]
  7705. ))
  7706. characterMakers.push(() => makeCharacter(
  7707. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7708. {
  7709. front: {
  7710. height: math.unit(2.718, "meters"),
  7711. weight: math.unit(150, "lbs"),
  7712. name: "Front",
  7713. image: {
  7714. source: "./media/characters/sovrim-terraquian/front.svg"
  7715. }
  7716. },
  7717. back: {
  7718. height: math.unit(2.718, "meters"),
  7719. weight: math.unit(150, "lbs"),
  7720. name: "Back",
  7721. image: {
  7722. source: "./media/characters/sovrim-terraquian/back.svg"
  7723. }
  7724. }
  7725. },
  7726. [
  7727. {
  7728. name: "Micro",
  7729. height: math.unit(2, "inches")
  7730. },
  7731. {
  7732. name: "Small",
  7733. height: math.unit(1, "meter")
  7734. },
  7735. {
  7736. name: "Normal",
  7737. height: math.unit(Math.E, "meters"),
  7738. default: true
  7739. },
  7740. {
  7741. name: "Macro",
  7742. height: math.unit(20, "meters")
  7743. },
  7744. {
  7745. name: "Macro+",
  7746. height: math.unit(400, "meters")
  7747. },
  7748. ]
  7749. ))
  7750. characterMakers.push(() => makeCharacter(
  7751. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7752. {
  7753. front: {
  7754. height: math.unit(7, "feet"),
  7755. weight: math.unit(489, "lbs"),
  7756. name: "Front",
  7757. image: {
  7758. source: "./media/characters/reece-silvermane/front.svg",
  7759. bottom: 0.02,
  7760. extra: 1
  7761. }
  7762. },
  7763. },
  7764. [
  7765. {
  7766. name: "Macro",
  7767. height: math.unit(1.5, "miles"),
  7768. default: true
  7769. },
  7770. ]
  7771. ))
  7772. characterMakers.push(() => makeCharacter(
  7773. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7774. {
  7775. front: {
  7776. height: math.unit(6, "feet"),
  7777. weight: math.unit(78, "kg"),
  7778. name: "Front",
  7779. image: {
  7780. source: "./media/characters/kane/front.svg",
  7781. extra: 978 / 899
  7782. }
  7783. },
  7784. },
  7785. [
  7786. {
  7787. name: "Normal",
  7788. height: math.unit(2.1, "m"),
  7789. },
  7790. {
  7791. name: "Macro",
  7792. height: math.unit(1, "km"),
  7793. default: true
  7794. },
  7795. ]
  7796. ))
  7797. characterMakers.push(() => makeCharacter(
  7798. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7799. {
  7800. front: {
  7801. height: math.unit(6, "feet"),
  7802. weight: math.unit(200, "kg"),
  7803. name: "Front",
  7804. image: {
  7805. source: "./media/characters/tegon/front.svg",
  7806. bottom: 0.01,
  7807. extra: 1
  7808. }
  7809. },
  7810. },
  7811. [
  7812. {
  7813. name: "Micro",
  7814. height: math.unit(1, "inch")
  7815. },
  7816. {
  7817. name: "Normal",
  7818. height: math.unit(6 + 3 / 12, "feet"),
  7819. default: true
  7820. },
  7821. {
  7822. name: "Macro",
  7823. height: math.unit(300, "feet")
  7824. },
  7825. {
  7826. name: "Megamacro",
  7827. height: math.unit(69, "miles")
  7828. },
  7829. ]
  7830. ))
  7831. characterMakers.push(() => makeCharacter(
  7832. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7833. {
  7834. side: {
  7835. height: math.unit(6, "feet"),
  7836. weight: math.unit(2304, "lbs"),
  7837. name: "Side",
  7838. image: {
  7839. source: "./media/characters/arcturax/side.svg",
  7840. extra: 790 / 376,
  7841. bottom: 0.01
  7842. }
  7843. },
  7844. },
  7845. [
  7846. {
  7847. name: "Micro",
  7848. height: math.unit(2, "inch")
  7849. },
  7850. {
  7851. name: "Normal",
  7852. height: math.unit(6, "feet")
  7853. },
  7854. {
  7855. name: "Macro",
  7856. height: math.unit(39, "feet"),
  7857. default: true
  7858. },
  7859. {
  7860. name: "Megamacro",
  7861. height: math.unit(7, "miles")
  7862. },
  7863. ]
  7864. ))
  7865. characterMakers.push(() => makeCharacter(
  7866. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7867. {
  7868. front: {
  7869. height: math.unit(6, "feet"),
  7870. weight: math.unit(50, "lbs"),
  7871. name: "Front",
  7872. image: {
  7873. source: "./media/characters/sentri/front.svg",
  7874. extra: 1750 / 1570,
  7875. bottom: 0.025
  7876. }
  7877. },
  7878. frontAlt: {
  7879. height: math.unit(6, "feet"),
  7880. weight: math.unit(50, "lbs"),
  7881. name: "Front (Alt)",
  7882. image: {
  7883. source: "./media/characters/sentri/front-alt.svg",
  7884. extra: 1750 / 1570,
  7885. bottom: 0.025
  7886. }
  7887. },
  7888. },
  7889. [
  7890. {
  7891. name: "Normal",
  7892. height: math.unit(15, "feet"),
  7893. default: true
  7894. },
  7895. {
  7896. name: "Macro",
  7897. height: math.unit(2500, "feet")
  7898. }
  7899. ]
  7900. ))
  7901. characterMakers.push(() => makeCharacter(
  7902. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7903. {
  7904. front: {
  7905. height: math.unit(5 + 8 / 12, "feet"),
  7906. weight: math.unit(130, "lbs"),
  7907. name: "Front",
  7908. image: {
  7909. source: "./media/characters/corvin/front.svg",
  7910. extra: 1803 / 1629
  7911. }
  7912. },
  7913. frontShirt: {
  7914. height: math.unit(5 + 8 / 12, "feet"),
  7915. weight: math.unit(130, "lbs"),
  7916. name: "Front (Shirt)",
  7917. image: {
  7918. source: "./media/characters/corvin/front-shirt.svg",
  7919. extra: 1803 / 1629
  7920. }
  7921. },
  7922. frontPoncho: {
  7923. height: math.unit(5 + 8 / 12, "feet"),
  7924. weight: math.unit(130, "lbs"),
  7925. name: "Front (Poncho)",
  7926. image: {
  7927. source: "./media/characters/corvin/front-poncho.svg",
  7928. extra: 1803 / 1629
  7929. }
  7930. },
  7931. side: {
  7932. height: math.unit(5 + 8 / 12, "feet"),
  7933. weight: math.unit(130, "lbs"),
  7934. name: "Side",
  7935. image: {
  7936. source: "./media/characters/corvin/side.svg",
  7937. extra: 1012 / 945
  7938. }
  7939. },
  7940. back: {
  7941. height: math.unit(5 + 8 / 12, "feet"),
  7942. weight: math.unit(130, "lbs"),
  7943. name: "Back",
  7944. image: {
  7945. source: "./media/characters/corvin/back.svg",
  7946. extra: 1803 / 1629
  7947. }
  7948. },
  7949. },
  7950. [
  7951. {
  7952. name: "Micro",
  7953. height: math.unit(3, "inches")
  7954. },
  7955. {
  7956. name: "Normal",
  7957. height: math.unit(5 + 8 / 12, "feet")
  7958. },
  7959. {
  7960. name: "Macro",
  7961. height: math.unit(300, "feet"),
  7962. default: true
  7963. },
  7964. {
  7965. name: "Megamacro",
  7966. height: math.unit(500, "miles")
  7967. }
  7968. ]
  7969. ))
  7970. characterMakers.push(() => makeCharacter(
  7971. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7972. {
  7973. front: {
  7974. height: math.unit(6, "feet"),
  7975. weight: math.unit(135, "lbs"),
  7976. name: "Front",
  7977. image: {
  7978. source: "./media/characters/q/front.svg",
  7979. extra: 854 / 752,
  7980. bottom: 0.005
  7981. }
  7982. },
  7983. back: {
  7984. height: math.unit(6, "feet"),
  7985. weight: math.unit(130, "lbs"),
  7986. name: "Back",
  7987. image: {
  7988. source: "./media/characters/q/back.svg",
  7989. extra: 854 / 752
  7990. }
  7991. },
  7992. },
  7993. [
  7994. {
  7995. name: "Macro",
  7996. height: math.unit(90, "feet"),
  7997. default: true
  7998. },
  7999. {
  8000. name: "Extra Macro",
  8001. height: math.unit(300, "feet"),
  8002. },
  8003. {
  8004. name: "BIG WALF",
  8005. height: math.unit(750, "feet"),
  8006. },
  8007. ]
  8008. ))
  8009. characterMakers.push(() => makeCharacter(
  8010. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8011. {
  8012. front: {
  8013. height: math.unit(6, "feet"),
  8014. weight: math.unit(150, "lbs"),
  8015. name: "Front",
  8016. image: {
  8017. source: "./media/characters/carley/front.svg",
  8018. extra: 3927 / 3540,
  8019. bottom: 29.2 / 735
  8020. }
  8021. }
  8022. },
  8023. [
  8024. {
  8025. name: "Normal",
  8026. height: math.unit(6 + 3 / 12, "feet")
  8027. },
  8028. {
  8029. name: "Macro",
  8030. height: math.unit(185, "feet"),
  8031. default: true
  8032. },
  8033. {
  8034. name: "Megamacro",
  8035. height: math.unit(8, "miles"),
  8036. },
  8037. ]
  8038. ))
  8039. characterMakers.push(() => makeCharacter(
  8040. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8041. {
  8042. front: {
  8043. height: math.unit(3, "feet"),
  8044. weight: math.unit(28, "lbs"),
  8045. name: "Front",
  8046. image: {
  8047. source: "./media/characters/citrine/front.svg"
  8048. }
  8049. }
  8050. },
  8051. [
  8052. {
  8053. name: "Normal",
  8054. height: math.unit(3, "feet"),
  8055. default: true
  8056. }
  8057. ]
  8058. ))
  8059. characterMakers.push(() => makeCharacter(
  8060. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8061. {
  8062. front: {
  8063. height: math.unit(14, "feet"),
  8064. weight: math.unit(1450, "kg"),
  8065. capacity: math.unit(15, "people"),
  8066. name: "Front",
  8067. image: {
  8068. source: "./media/characters/aura-starwind/front.svg",
  8069. extra: 1455 / 1335
  8070. }
  8071. },
  8072. side: {
  8073. height: math.unit(14, "feet"),
  8074. weight: math.unit(1450, "kg"),
  8075. capacity: math.unit(15, "people"),
  8076. name: "Side",
  8077. image: {
  8078. source: "./media/characters/aura-starwind/side.svg",
  8079. extra: 1654 / 1497
  8080. }
  8081. },
  8082. taur: {
  8083. height: math.unit(18, "feet"),
  8084. weight: math.unit(5500, "kg"),
  8085. capacity: math.unit(50, "people"),
  8086. name: "Taur",
  8087. image: {
  8088. source: "./media/characters/aura-starwind/taur.svg",
  8089. extra: 1760 / 1650
  8090. }
  8091. },
  8092. feral: {
  8093. height: math.unit(46, "feet"),
  8094. weight: math.unit(25000, "kg"),
  8095. capacity: math.unit(120, "people"),
  8096. name: "Feral",
  8097. image: {
  8098. source: "./media/characters/aura-starwind/feral.svg"
  8099. }
  8100. },
  8101. },
  8102. [
  8103. {
  8104. name: "Normal",
  8105. height: math.unit(14, "feet"),
  8106. default: true
  8107. },
  8108. {
  8109. name: "Macro",
  8110. height: math.unit(50, "meters")
  8111. },
  8112. {
  8113. name: "Megamacro",
  8114. height: math.unit(5000, "meters")
  8115. },
  8116. {
  8117. name: "Gigamacro",
  8118. height: math.unit(100000, "kilometers")
  8119. },
  8120. ]
  8121. ))
  8122. characterMakers.push(() => makeCharacter(
  8123. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8124. {
  8125. front: {
  8126. height: math.unit(2 + 7 / 12, "feet"),
  8127. weight: math.unit(32, "lbs"),
  8128. name: "Front",
  8129. image: {
  8130. source: "./media/characters/rivet/front.svg",
  8131. extra: 1716 / 1658,
  8132. bottom: 0.03
  8133. }
  8134. },
  8135. foot: {
  8136. height: math.unit(0.551, "feet"),
  8137. name: "Rivet's Foot",
  8138. image: {
  8139. source: "./media/characters/rivet/foot.svg"
  8140. },
  8141. rename: true
  8142. }
  8143. },
  8144. [
  8145. {
  8146. name: "Micro",
  8147. height: math.unit(1.5, "inches"),
  8148. },
  8149. {
  8150. name: "Normal",
  8151. height: math.unit(2 + 7 / 12, "feet"),
  8152. default: true
  8153. },
  8154. {
  8155. name: "Macro",
  8156. height: math.unit(85, "feet")
  8157. },
  8158. {
  8159. name: "Megamacro",
  8160. height: math.unit(2.2, "km")
  8161. }
  8162. ]
  8163. ))
  8164. characterMakers.push(() => makeCharacter(
  8165. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8166. {
  8167. front: {
  8168. height: math.unit(5 + 9 / 12, "feet"),
  8169. weight: math.unit(150, "lbs"),
  8170. name: "Front",
  8171. image: {
  8172. source: "./media/characters/coffee/front.svg",
  8173. extra: 3666 / 3032,
  8174. bottom: 0.04
  8175. }
  8176. },
  8177. foot: {
  8178. height: math.unit(1.29, "feet"),
  8179. name: "Foot",
  8180. image: {
  8181. source: "./media/characters/coffee/foot.svg"
  8182. }
  8183. },
  8184. },
  8185. [
  8186. {
  8187. name: "Micro",
  8188. height: math.unit(2, "inches"),
  8189. },
  8190. {
  8191. name: "Normal",
  8192. height: math.unit(5 + 9 / 12, "feet"),
  8193. default: true
  8194. },
  8195. {
  8196. name: "Macro",
  8197. height: math.unit(800, "feet")
  8198. },
  8199. {
  8200. name: "Megamacro",
  8201. height: math.unit(25, "miles")
  8202. }
  8203. ]
  8204. ))
  8205. characterMakers.push(() => makeCharacter(
  8206. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8207. {
  8208. front: {
  8209. height: math.unit(6, "feet"),
  8210. weight: math.unit(200, "lbs"),
  8211. name: "Front",
  8212. image: {
  8213. source: "./media/characters/chari-gal/front.svg",
  8214. extra: 1568 / 1385,
  8215. bottom: 0.047
  8216. }
  8217. },
  8218. gigantamax: {
  8219. height: math.unit(6 * 16, "feet"),
  8220. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8221. name: "Gigantamax",
  8222. image: {
  8223. source: "./media/characters/chari-gal/gigantamax.svg",
  8224. extra: 1124 / 888,
  8225. bottom: 0.03
  8226. }
  8227. },
  8228. },
  8229. [
  8230. {
  8231. name: "Normal",
  8232. height: math.unit(5 + 7 / 12, "feet")
  8233. },
  8234. {
  8235. name: "Macro",
  8236. height: math.unit(200, "feet"),
  8237. default: true
  8238. }
  8239. ]
  8240. ))
  8241. characterMakers.push(() => makeCharacter(
  8242. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8243. {
  8244. front: {
  8245. height: math.unit(6, "feet"),
  8246. weight: math.unit(150, "lbs"),
  8247. name: "Front",
  8248. image: {
  8249. source: "./media/characters/nova/front.svg",
  8250. extra: 5000 / 4722,
  8251. bottom: 0.02
  8252. }
  8253. }
  8254. },
  8255. [
  8256. {
  8257. name: "Micro-",
  8258. height: math.unit(0.8, "inches")
  8259. },
  8260. {
  8261. name: "Micro",
  8262. height: math.unit(2, "inches"),
  8263. default: true
  8264. },
  8265. ]
  8266. ))
  8267. characterMakers.push(() => makeCharacter(
  8268. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8269. {
  8270. front: {
  8271. height: math.unit(3 + 1 / 12, "feet"),
  8272. weight: math.unit(21.7, "lbs"),
  8273. name: "Front",
  8274. image: {
  8275. source: "./media/characters/argent/front.svg",
  8276. extra: 1471 / 1331,
  8277. bottom: 100.8 / 1575.5
  8278. }
  8279. }
  8280. },
  8281. [
  8282. {
  8283. name: "Micro",
  8284. height: math.unit(2, "inches")
  8285. },
  8286. {
  8287. name: "Normal",
  8288. height: math.unit(3 + 1 / 12, "feet"),
  8289. default: true
  8290. },
  8291. {
  8292. name: "Macro",
  8293. height: math.unit(120, "feet")
  8294. },
  8295. ]
  8296. ))
  8297. characterMakers.push(() => makeCharacter(
  8298. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8299. {
  8300. lamp: {
  8301. height: math.unit(7 * 1559 / 989, "feet"),
  8302. name: "Magic Lamp",
  8303. image: {
  8304. source: "./media/characters/mira-al-cul/lamp.svg",
  8305. extra: 1617 / 1559
  8306. }
  8307. },
  8308. front: {
  8309. height: math.unit(7, "feet"),
  8310. name: "Front",
  8311. image: {
  8312. source: "./media/characters/mira-al-cul/front.svg",
  8313. extra: 1044 / 990
  8314. }
  8315. },
  8316. },
  8317. [
  8318. {
  8319. name: "Heavily Restricted",
  8320. height: math.unit(7 * 1559 / 989, "feet")
  8321. },
  8322. {
  8323. name: "Freshly Freed",
  8324. height: math.unit(50 * 1559 / 989, "feet")
  8325. },
  8326. {
  8327. name: "World Encompassing",
  8328. height: math.unit(10000 * 1559 / 989, "miles")
  8329. },
  8330. {
  8331. name: "Galactic",
  8332. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8333. },
  8334. {
  8335. name: "Palmed Universe",
  8336. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8337. default: true
  8338. },
  8339. {
  8340. name: "Multiversal Matriarch",
  8341. height: math.unit(8.87e10, "yottameters")
  8342. },
  8343. {
  8344. name: "Void Mother",
  8345. height: math.unit(3.14e110, "yottaparsecs")
  8346. },
  8347. {
  8348. name: "Toying with Transcendence",
  8349. height: math.unit(1e307, "meters")
  8350. },
  8351. ]
  8352. ))
  8353. characterMakers.push(() => makeCharacter(
  8354. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8355. {
  8356. front: {
  8357. height: math.unit(17 + 1 / 12, "feet"),
  8358. weight: math.unit(476.2 * 5, "lbs"),
  8359. name: "Front",
  8360. image: {
  8361. source: "./media/characters/kuro-shi-uchū/front.svg",
  8362. extra: 2329 / 1835,
  8363. bottom: 0.02
  8364. }
  8365. },
  8366. },
  8367. [
  8368. {
  8369. name: "Micro",
  8370. height: math.unit(2, "inches")
  8371. },
  8372. {
  8373. name: "Normal",
  8374. height: math.unit(12, "meters")
  8375. },
  8376. {
  8377. name: "Planetary",
  8378. height: math.unit(0.00929, "AU"),
  8379. default: true
  8380. },
  8381. {
  8382. name: "Universal",
  8383. height: math.unit(20, "gigaparsecs")
  8384. },
  8385. ]
  8386. ))
  8387. characterMakers.push(() => makeCharacter(
  8388. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8389. {
  8390. front: {
  8391. height: math.unit(5 + 2 / 12, "feet"),
  8392. weight: math.unit(120, "lbs"),
  8393. name: "Front",
  8394. image: {
  8395. source: "./media/characters/katherine/front.svg",
  8396. extra: 2075 / 1969
  8397. }
  8398. },
  8399. dress: {
  8400. height: math.unit(5 + 2 / 12, "feet"),
  8401. weight: math.unit(120, "lbs"),
  8402. name: "Dress",
  8403. image: {
  8404. source: "./media/characters/katherine/dress.svg",
  8405. extra: 2258 / 2064
  8406. }
  8407. },
  8408. },
  8409. [
  8410. {
  8411. name: "Micro",
  8412. height: math.unit(1, "inches"),
  8413. default: true
  8414. },
  8415. {
  8416. name: "Normal",
  8417. height: math.unit(5 + 2 / 12, "feet")
  8418. },
  8419. {
  8420. name: "Macro",
  8421. height: math.unit(100, "meters")
  8422. },
  8423. {
  8424. name: "Megamacro",
  8425. height: math.unit(80, "miles")
  8426. },
  8427. ]
  8428. ))
  8429. characterMakers.push(() => makeCharacter(
  8430. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8431. {
  8432. front: {
  8433. height: math.unit(7 + 8 / 12, "feet"),
  8434. weight: math.unit(250, "lbs"),
  8435. name: "Front",
  8436. image: {
  8437. source: "./media/characters/yevis/front.svg",
  8438. extra: 1938 / 1755
  8439. }
  8440. }
  8441. },
  8442. [
  8443. {
  8444. name: "Mortal",
  8445. height: math.unit(7 + 8 / 12, "feet")
  8446. },
  8447. {
  8448. name: "Battle",
  8449. height: math.unit(25 + 11 / 12, "feet")
  8450. },
  8451. {
  8452. name: "Wrath",
  8453. height: math.unit(1654 + 11 / 12, "feet")
  8454. },
  8455. {
  8456. name: "Planet Destroyer",
  8457. height: math.unit(12000, "miles")
  8458. },
  8459. {
  8460. name: "Galaxy Conqueror",
  8461. height: math.unit(1.45, "zettameters"),
  8462. default: true
  8463. },
  8464. {
  8465. name: "Universal War",
  8466. height: math.unit(184, "gigaparsecs")
  8467. },
  8468. {
  8469. name: "Eternity War",
  8470. height: math.unit(1.98e55, "yottaparsecs")
  8471. },
  8472. ]
  8473. ))
  8474. characterMakers.push(() => makeCharacter(
  8475. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8476. {
  8477. front: {
  8478. height: math.unit(5 + 8 / 12, "feet"),
  8479. weight: math.unit(63, "kg"),
  8480. name: "Front",
  8481. image: {
  8482. source: "./media/characters/xavier/front.svg",
  8483. extra: 944 / 883
  8484. }
  8485. },
  8486. frontStretch: {
  8487. height: math.unit(5 + 8 / 12, "feet"),
  8488. weight: math.unit(63, "kg"),
  8489. name: "Stretching",
  8490. image: {
  8491. source: "./media/characters/xavier/front-stretch.svg",
  8492. extra: 962 / 820
  8493. }
  8494. },
  8495. },
  8496. [
  8497. {
  8498. name: "Normal",
  8499. height: math.unit(5 + 8 / 12, "feet")
  8500. },
  8501. {
  8502. name: "Macro",
  8503. height: math.unit(100, "meters"),
  8504. default: true
  8505. },
  8506. {
  8507. name: "McLargeHuge",
  8508. height: math.unit(10, "miles")
  8509. },
  8510. ]
  8511. ))
  8512. characterMakers.push(() => makeCharacter(
  8513. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8514. {
  8515. front: {
  8516. height: math.unit(5 + 5 / 12, "feet"),
  8517. weight: math.unit(150, "lb"),
  8518. name: "Front",
  8519. image: {
  8520. source: "./media/characters/joshii/front.svg",
  8521. extra: 765 / 653,
  8522. bottom: 51 / 816
  8523. }
  8524. },
  8525. foot: {
  8526. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8527. name: "Foot",
  8528. image: {
  8529. source: "./media/characters/joshii/foot.svg"
  8530. }
  8531. },
  8532. },
  8533. [
  8534. {
  8535. name: "Micro",
  8536. height: math.unit(2, "inches"),
  8537. default: true
  8538. },
  8539. {
  8540. name: "Normal",
  8541. height: math.unit(5 + 5 / 12, "feet")
  8542. },
  8543. {
  8544. name: "Macro",
  8545. height: math.unit(785, "feet")
  8546. },
  8547. {
  8548. name: "Megamacro",
  8549. height: math.unit(24.5, "miles")
  8550. },
  8551. ]
  8552. ))
  8553. characterMakers.push(() => makeCharacter(
  8554. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8555. {
  8556. front: {
  8557. height: math.unit(6, "feet"),
  8558. weight: math.unit(150, "lb"),
  8559. name: "Front",
  8560. image: {
  8561. source: "./media/characters/goddess-elizabeth/front.svg",
  8562. extra: 1800 / 1525,
  8563. bottom: 0.005
  8564. }
  8565. },
  8566. foot: {
  8567. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8568. name: "Foot",
  8569. image: {
  8570. source: "./media/characters/goddess-elizabeth/foot.svg"
  8571. }
  8572. },
  8573. mouth: {
  8574. height: math.unit(6, "feet"),
  8575. name: "Mouth",
  8576. image: {
  8577. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8578. }
  8579. },
  8580. },
  8581. [
  8582. {
  8583. name: "Micro",
  8584. height: math.unit(12, "feet")
  8585. },
  8586. {
  8587. name: "Normal",
  8588. height: math.unit(80, "miles"),
  8589. default: true
  8590. },
  8591. {
  8592. name: "Macro",
  8593. height: math.unit(15000, "parsecs")
  8594. },
  8595. ]
  8596. ))
  8597. characterMakers.push(() => makeCharacter(
  8598. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8599. {
  8600. front: {
  8601. height: math.unit(5 + 9 / 12, "feet"),
  8602. weight: math.unit(144, "lb"),
  8603. name: "Front",
  8604. image: {
  8605. source: "./media/characters/kara/front.svg"
  8606. }
  8607. },
  8608. feet: {
  8609. height: math.unit(6 / 6.765, "feet"),
  8610. name: "Kara's Feet",
  8611. rename: true,
  8612. image: {
  8613. source: "./media/characters/kara/feet.svg"
  8614. }
  8615. },
  8616. },
  8617. [
  8618. {
  8619. name: "Normal",
  8620. height: math.unit(5 + 9 / 12, "feet")
  8621. },
  8622. {
  8623. name: "Macro",
  8624. height: math.unit(174, "feet"),
  8625. default: true
  8626. },
  8627. ]
  8628. ))
  8629. characterMakers.push(() => makeCharacter(
  8630. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8631. {
  8632. front: {
  8633. height: math.unit(18, "feet"),
  8634. weight: math.unit(4050, "lb"),
  8635. name: "Front",
  8636. image: {
  8637. source: "./media/characters/tyrone/front.svg",
  8638. extra: 2405 / 2270,
  8639. bottom: 182 / 2587
  8640. }
  8641. },
  8642. },
  8643. [
  8644. {
  8645. name: "Normal",
  8646. height: math.unit(18, "feet"),
  8647. default: true
  8648. },
  8649. {
  8650. name: "Macro",
  8651. height: math.unit(300, "feet")
  8652. },
  8653. {
  8654. name: "Megamacro",
  8655. height: math.unit(15, "km")
  8656. },
  8657. {
  8658. name: "Gigamacro",
  8659. height: math.unit(500, "km")
  8660. },
  8661. {
  8662. name: "Teramacro",
  8663. height: math.unit(0.5, "gigameters")
  8664. },
  8665. {
  8666. name: "Omnimacro",
  8667. height: math.unit(1e252, "yottauniverse")
  8668. },
  8669. ]
  8670. ))
  8671. characterMakers.push(() => makeCharacter(
  8672. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8673. {
  8674. front: {
  8675. height: math.unit(7 + 8 / 12, "feet"),
  8676. weight: math.unit(120, "lb"),
  8677. name: "Front",
  8678. image: {
  8679. source: "./media/characters/danny/front.svg",
  8680. extra: 1490 / 1350
  8681. }
  8682. },
  8683. back: {
  8684. height: math.unit(7 + 8 / 12, "feet"),
  8685. weight: math.unit(120, "lb"),
  8686. name: "Back",
  8687. image: {
  8688. source: "./media/characters/danny/back.svg",
  8689. extra: 1490 / 1350
  8690. }
  8691. },
  8692. },
  8693. [
  8694. {
  8695. name: "Normal",
  8696. height: math.unit(7 + 8 / 12, "feet"),
  8697. default: true
  8698. },
  8699. ]
  8700. ))
  8701. characterMakers.push(() => makeCharacter(
  8702. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8703. {
  8704. front: {
  8705. height: math.unit(3.5, "inches"),
  8706. weight: math.unit(19, "grams"),
  8707. name: "Front",
  8708. image: {
  8709. source: "./media/characters/mallow/front.svg",
  8710. extra: 471 / 431
  8711. }
  8712. },
  8713. back: {
  8714. height: math.unit(3.5, "inches"),
  8715. weight: math.unit(19, "grams"),
  8716. name: "Back",
  8717. image: {
  8718. source: "./media/characters/mallow/back.svg",
  8719. extra: 471 / 431
  8720. }
  8721. },
  8722. },
  8723. [
  8724. {
  8725. name: "Normal",
  8726. height: math.unit(3.5, "inches"),
  8727. default: true
  8728. },
  8729. ]
  8730. ))
  8731. characterMakers.push(() => makeCharacter(
  8732. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8733. {
  8734. front: {
  8735. height: math.unit(9, "feet"),
  8736. weight: math.unit(230, "kg"),
  8737. name: "Front",
  8738. image: {
  8739. source: "./media/characters/starry-aqua/front.svg"
  8740. }
  8741. },
  8742. back: {
  8743. height: math.unit(9, "feet"),
  8744. weight: math.unit(230, "kg"),
  8745. name: "Back",
  8746. image: {
  8747. source: "./media/characters/starry-aqua/back.svg"
  8748. }
  8749. },
  8750. hand: {
  8751. height: math.unit(9 * 0.1168, "feet"),
  8752. name: "Hand",
  8753. image: {
  8754. source: "./media/characters/starry-aqua/hand.svg"
  8755. }
  8756. },
  8757. foot: {
  8758. height: math.unit(9 * 0.18, "feet"),
  8759. name: "Foot",
  8760. image: {
  8761. source: "./media/characters/starry-aqua/foot.svg"
  8762. }
  8763. }
  8764. },
  8765. [
  8766. {
  8767. name: "Micro",
  8768. height: math.unit(3, "inches")
  8769. },
  8770. {
  8771. name: "Normal",
  8772. height: math.unit(9, "feet")
  8773. },
  8774. {
  8775. name: "Macro",
  8776. height: math.unit(300, "feet"),
  8777. default: true
  8778. },
  8779. {
  8780. name: "Megamacro",
  8781. height: math.unit(3200, "feet")
  8782. }
  8783. ]
  8784. ))
  8785. characterMakers.push(() => makeCharacter(
  8786. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8787. {
  8788. front: {
  8789. height: math.unit(6, "feet"),
  8790. weight: math.unit(230, "lb"),
  8791. name: "Front",
  8792. image: {
  8793. source: "./media/characters/luka/front.svg",
  8794. extra: 1,
  8795. bottom: 0.025
  8796. }
  8797. },
  8798. },
  8799. [
  8800. {
  8801. name: "Normal",
  8802. height: math.unit(12 + 8 / 12, "feet"),
  8803. default: true
  8804. },
  8805. {
  8806. name: "Minimacro",
  8807. height: math.unit(20, "feet")
  8808. },
  8809. {
  8810. name: "Macro",
  8811. height: math.unit(250, "feet")
  8812. },
  8813. {
  8814. name: "Megamacro",
  8815. height: math.unit(5, "miles")
  8816. },
  8817. {
  8818. name: "Gigamacro",
  8819. height: math.unit(8000, "miles")
  8820. },
  8821. ]
  8822. ))
  8823. characterMakers.push(() => makeCharacter(
  8824. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8825. {
  8826. front: {
  8827. height: math.unit(6, "feet"),
  8828. weight: math.unit(150, "lb"),
  8829. name: "Front",
  8830. image: {
  8831. source: "./media/characters/natalie-nightring/front.svg",
  8832. extra: 1,
  8833. bottom: 0.06
  8834. }
  8835. },
  8836. },
  8837. [
  8838. {
  8839. name: "Uh Oh",
  8840. height: math.unit(0.1, "mm")
  8841. },
  8842. {
  8843. name: "Small",
  8844. height: math.unit(3, "inches")
  8845. },
  8846. {
  8847. name: "Human Scale",
  8848. height: math.unit(6, "feet")
  8849. },
  8850. {
  8851. name: "Librarian",
  8852. height: math.unit(50, "feet"),
  8853. default: true
  8854. },
  8855. {
  8856. name: "Immense",
  8857. height: math.unit(200, "miles")
  8858. },
  8859. ]
  8860. ))
  8861. characterMakers.push(() => makeCharacter(
  8862. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8863. {
  8864. front: {
  8865. height: math.unit(6, "feet"),
  8866. weight: math.unit(180, "lbs"),
  8867. name: "Front",
  8868. image: {
  8869. source: "./media/characters/danni-rosie/front.svg",
  8870. extra: 1260 / 1128,
  8871. bottom: 0.022
  8872. }
  8873. },
  8874. },
  8875. [
  8876. {
  8877. name: "Micro",
  8878. height: math.unit(2, "inches"),
  8879. default: true
  8880. },
  8881. ]
  8882. ))
  8883. characterMakers.push(() => makeCharacter(
  8884. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8885. {
  8886. front: {
  8887. height: math.unit(5 + 9 / 12, "feet"),
  8888. weight: math.unit(220, "lb"),
  8889. name: "Front",
  8890. image: {
  8891. source: "./media/characters/samantha-kruse/front.svg",
  8892. extra: (985 / 935),
  8893. bottom: 0.03
  8894. }
  8895. },
  8896. frontUndressed: {
  8897. height: math.unit(5 + 9 / 12, "feet"),
  8898. weight: math.unit(220, "lb"),
  8899. name: "Front (Undressed)",
  8900. image: {
  8901. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8902. extra: (973 / 923),
  8903. bottom: 0.025
  8904. }
  8905. },
  8906. fat: {
  8907. height: math.unit(5 + 9 / 12, "feet"),
  8908. weight: math.unit(900, "lb"),
  8909. name: "Front (Fat)",
  8910. image: {
  8911. source: "./media/characters/samantha-kruse/fat.svg",
  8912. extra: 2688 / 2561
  8913. }
  8914. },
  8915. },
  8916. [
  8917. {
  8918. name: "Normal",
  8919. height: math.unit(5 + 9 / 12, "feet"),
  8920. default: true
  8921. }
  8922. ]
  8923. ))
  8924. characterMakers.push(() => makeCharacter(
  8925. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8926. {
  8927. back: {
  8928. height: math.unit(5 + 4 / 12, "feet"),
  8929. weight: math.unit(4963, "lb"),
  8930. name: "Back",
  8931. image: {
  8932. source: "./media/characters/amelia-rosie/back.svg",
  8933. extra: 1113 / 963,
  8934. bottom: 0.01
  8935. }
  8936. },
  8937. },
  8938. [
  8939. {
  8940. name: "Level 0",
  8941. height: math.unit(5 + 4 / 12, "feet")
  8942. },
  8943. {
  8944. name: "Level 1",
  8945. height: math.unit(164597, "feet"),
  8946. default: true
  8947. },
  8948. {
  8949. name: "Level 2",
  8950. height: math.unit(956243, "miles")
  8951. },
  8952. {
  8953. name: "Level 3",
  8954. height: math.unit(29421709423, "miles")
  8955. },
  8956. {
  8957. name: "Level 4",
  8958. height: math.unit(154, "lightyears")
  8959. },
  8960. {
  8961. name: "Level 5",
  8962. height: math.unit(4738272, "lightyears")
  8963. },
  8964. {
  8965. name: "Level 6",
  8966. height: math.unit(145787152896, "lightyears")
  8967. },
  8968. ]
  8969. ))
  8970. characterMakers.push(() => makeCharacter(
  8971. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8972. {
  8973. front: {
  8974. height: math.unit(5 + 11 / 12, "feet"),
  8975. weight: math.unit(65, "kg"),
  8976. name: "Front",
  8977. image: {
  8978. source: "./media/characters/rook-kitara/front.svg",
  8979. extra: 1347 / 1274,
  8980. bottom: 0.005
  8981. }
  8982. },
  8983. },
  8984. [
  8985. {
  8986. name: "Totally Unfair",
  8987. height: math.unit(1.8, "mm")
  8988. },
  8989. {
  8990. name: "Lap Rookie",
  8991. height: math.unit(1.4, "feet")
  8992. },
  8993. {
  8994. name: "Normal",
  8995. height: math.unit(5 + 11 / 12, "feet"),
  8996. default: true
  8997. },
  8998. {
  8999. name: "How Did This Happen",
  9000. height: math.unit(80, "miles")
  9001. }
  9002. ]
  9003. ))
  9004. characterMakers.push(() => makeCharacter(
  9005. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9006. {
  9007. front: {
  9008. height: math.unit(7, "feet"),
  9009. weight: math.unit(300, "lb"),
  9010. name: "Front",
  9011. image: {
  9012. source: "./media/characters/pisces/front.svg",
  9013. extra: 2255 / 2115,
  9014. bottom: 0.03
  9015. }
  9016. },
  9017. back: {
  9018. height: math.unit(7, "feet"),
  9019. weight: math.unit(300, "lb"),
  9020. name: "Back",
  9021. image: {
  9022. source: "./media/characters/pisces/back.svg",
  9023. extra: 2146 / 2055,
  9024. bottom: 0.04
  9025. }
  9026. },
  9027. },
  9028. [
  9029. {
  9030. name: "Normal",
  9031. height: math.unit(7, "feet"),
  9032. default: true
  9033. },
  9034. {
  9035. name: "Swimming Pool",
  9036. height: math.unit(12.2, "meters")
  9037. },
  9038. {
  9039. name: "Olympic Swimming Pool",
  9040. height: math.unit(56.3, "meters")
  9041. },
  9042. {
  9043. name: "Lake Superior",
  9044. height: math.unit(93900, "meters")
  9045. },
  9046. {
  9047. name: "Mediterranean Sea",
  9048. height: math.unit(644457, "meters")
  9049. },
  9050. {
  9051. name: "World's Oceans",
  9052. height: math.unit(4567491, "meters")
  9053. },
  9054. ]
  9055. ))
  9056. characterMakers.push(() => makeCharacter(
  9057. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9058. {
  9059. front: {
  9060. height: math.unit(2.3, "meters"),
  9061. weight: math.unit(120, "kg"),
  9062. name: "Front",
  9063. image: {
  9064. source: "./media/characters/zelas/front.svg"
  9065. }
  9066. },
  9067. side: {
  9068. height: math.unit(2.3, "meters"),
  9069. weight: math.unit(120, "kg"),
  9070. name: "Side",
  9071. image: {
  9072. source: "./media/characters/zelas/side.svg"
  9073. }
  9074. },
  9075. back: {
  9076. height: math.unit(2.3, "meters"),
  9077. weight: math.unit(120, "kg"),
  9078. name: "Back",
  9079. image: {
  9080. source: "./media/characters/zelas/back.svg"
  9081. }
  9082. },
  9083. foot: {
  9084. height: math.unit(1.116, "feet"),
  9085. name: "Foot",
  9086. image: {
  9087. source: "./media/characters/zelas/foot.svg"
  9088. }
  9089. },
  9090. },
  9091. [
  9092. {
  9093. name: "Normal",
  9094. height: math.unit(2.3, "meters")
  9095. },
  9096. {
  9097. name: "Macro",
  9098. height: math.unit(30, "meters"),
  9099. default: true
  9100. },
  9101. ]
  9102. ))
  9103. characterMakers.push(() => makeCharacter(
  9104. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9105. {
  9106. front: {
  9107. height: math.unit(1, "inch"),
  9108. weight: math.unit(0.21, "grams"),
  9109. name: "Front",
  9110. image: {
  9111. source: "./media/characters/talbot/front.svg",
  9112. extra: 594 / 544
  9113. }
  9114. },
  9115. },
  9116. [
  9117. {
  9118. name: "Micro",
  9119. height: math.unit(1, "inch"),
  9120. default: true
  9121. },
  9122. ]
  9123. ))
  9124. characterMakers.push(() => makeCharacter(
  9125. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9126. {
  9127. front: {
  9128. height: math.unit(3 + 3 / 12, "feet"),
  9129. weight: math.unit(51.8, "lb"),
  9130. name: "Front",
  9131. image: {
  9132. source: "./media/characters/fliss/front.svg",
  9133. extra: 840 / 640
  9134. }
  9135. },
  9136. },
  9137. [
  9138. {
  9139. name: "Teeny Tiny",
  9140. height: math.unit(1, "mm")
  9141. },
  9142. {
  9143. name: "Small",
  9144. height: math.unit(1, "inch"),
  9145. default: true
  9146. },
  9147. {
  9148. name: "Standard Sylveon",
  9149. height: math.unit(3 + 3 / 12, "feet")
  9150. },
  9151. {
  9152. name: "Large Nuisance",
  9153. height: math.unit(33, "feet")
  9154. },
  9155. {
  9156. name: "City Filler",
  9157. height: math.unit(3000, "feet")
  9158. },
  9159. {
  9160. name: "New Horizon",
  9161. height: math.unit(6000, "miles")
  9162. },
  9163. ]
  9164. ))
  9165. characterMakers.push(() => makeCharacter(
  9166. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9167. {
  9168. front: {
  9169. height: math.unit(5, "cm"),
  9170. weight: math.unit(1.94, "g"),
  9171. name: "Front",
  9172. image: {
  9173. source: "./media/characters/fleta/front.svg",
  9174. extra: 835 / 803
  9175. }
  9176. },
  9177. back: {
  9178. height: math.unit(5, "cm"),
  9179. weight: math.unit(1.94, "g"),
  9180. name: "Back",
  9181. image: {
  9182. source: "./media/characters/fleta/back.svg",
  9183. extra: 835 / 803
  9184. }
  9185. },
  9186. },
  9187. [
  9188. {
  9189. name: "Micro",
  9190. height: math.unit(5, "cm"),
  9191. default: true
  9192. },
  9193. ]
  9194. ))
  9195. characterMakers.push(() => makeCharacter(
  9196. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9197. {
  9198. front: {
  9199. height: math.unit(6, "feet"),
  9200. weight: math.unit(225, "lb"),
  9201. name: "Front",
  9202. image: {
  9203. source: "./media/characters/dominic/front.svg",
  9204. extra: 1770 / 1620,
  9205. bottom: 0.025
  9206. }
  9207. },
  9208. back: {
  9209. height: math.unit(6, "feet"),
  9210. weight: math.unit(225, "lb"),
  9211. name: "Back",
  9212. image: {
  9213. source: "./media/characters/dominic/back.svg",
  9214. extra: 1745 / 1620,
  9215. bottom: 0.065
  9216. }
  9217. },
  9218. },
  9219. [
  9220. {
  9221. name: "Nano",
  9222. height: math.unit(0.1, "mm")
  9223. },
  9224. {
  9225. name: "Micro-",
  9226. height: math.unit(1, "mm")
  9227. },
  9228. {
  9229. name: "Micro",
  9230. height: math.unit(4, "inches")
  9231. },
  9232. {
  9233. name: "Normal",
  9234. height: math.unit(6 + 4 / 12, "feet"),
  9235. default: true
  9236. },
  9237. {
  9238. name: "Macro",
  9239. height: math.unit(115, "feet")
  9240. },
  9241. {
  9242. name: "Macro+",
  9243. height: math.unit(955, "feet")
  9244. },
  9245. {
  9246. name: "Megamacro",
  9247. height: math.unit(8990, "feet")
  9248. },
  9249. {
  9250. name: "Gigmacro",
  9251. height: math.unit(9310, "miles")
  9252. },
  9253. {
  9254. name: "Teramacro",
  9255. height: math.unit(1567005010, "miles")
  9256. },
  9257. {
  9258. name: "Examacro",
  9259. height: math.unit(1425, "parsecs")
  9260. },
  9261. ]
  9262. ))
  9263. characterMakers.push(() => makeCharacter(
  9264. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9265. {
  9266. front: {
  9267. height: math.unit(400, "feet"),
  9268. weight: math.unit(44444444, "lb"),
  9269. name: "Front",
  9270. image: {
  9271. source: "./media/characters/major-colonel/front.svg"
  9272. }
  9273. },
  9274. back: {
  9275. height: math.unit(400, "feet"),
  9276. weight: math.unit(44444444, "lb"),
  9277. name: "Back",
  9278. image: {
  9279. source: "./media/characters/major-colonel/back.svg"
  9280. }
  9281. },
  9282. },
  9283. [
  9284. {
  9285. name: "Macro",
  9286. height: math.unit(400, "feet"),
  9287. default: true
  9288. },
  9289. ]
  9290. ))
  9291. characterMakers.push(() => makeCharacter(
  9292. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9293. {
  9294. catFront: {
  9295. height: math.unit(6, "feet"),
  9296. weight: math.unit(120, "lb"),
  9297. name: "Front (Cat Side)",
  9298. image: {
  9299. source: "./media/characters/axel-lycan/cat-front.svg",
  9300. extra: 430 / 402,
  9301. bottom: 43 / 472.35
  9302. }
  9303. },
  9304. catBack: {
  9305. height: math.unit(6, "feet"),
  9306. weight: math.unit(120, "lb"),
  9307. name: "Back (Cat Side)",
  9308. image: {
  9309. source: "./media/characters/axel-lycan/cat-back.svg",
  9310. extra: 447 / 419,
  9311. bottom: 23.3 / 469
  9312. }
  9313. },
  9314. wolfFront: {
  9315. height: math.unit(6, "feet"),
  9316. weight: math.unit(120, "lb"),
  9317. name: "Front (Wolf Side)",
  9318. image: {
  9319. source: "./media/characters/axel-lycan/wolf-front.svg",
  9320. extra: 485 / 456,
  9321. bottom: 19 / 504
  9322. }
  9323. },
  9324. wolfBack: {
  9325. height: math.unit(6, "feet"),
  9326. weight: math.unit(120, "lb"),
  9327. name: "Back (Wolf Side)",
  9328. image: {
  9329. source: "./media/characters/axel-lycan/wolf-back.svg",
  9330. extra: 475 / 438,
  9331. bottom: 39.2 / 514
  9332. }
  9333. },
  9334. },
  9335. [
  9336. {
  9337. name: "Macro",
  9338. height: math.unit(1, "km"),
  9339. default: true
  9340. },
  9341. ]
  9342. ))
  9343. characterMakers.push(() => makeCharacter(
  9344. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9345. {
  9346. front: {
  9347. height: math.unit(5 + 9 / 12, "feet"),
  9348. weight: math.unit(175, "lb"),
  9349. name: "Front",
  9350. image: {
  9351. source: "./media/characters/vanrel-hyena/front.svg",
  9352. extra: 1086 / 1010,
  9353. bottom: 0.04
  9354. }
  9355. },
  9356. },
  9357. [
  9358. {
  9359. name: "Normal",
  9360. height: math.unit(5 + 9 / 12, "feet"),
  9361. default: true
  9362. },
  9363. ]
  9364. ))
  9365. characterMakers.push(() => makeCharacter(
  9366. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9367. {
  9368. front: {
  9369. height: math.unit(6, "feet"),
  9370. weight: math.unit(103, "lb"),
  9371. name: "Front",
  9372. image: {
  9373. source: "./media/characters/abbott-absol/front.svg",
  9374. extra: 2010 / 1842
  9375. }
  9376. },
  9377. },
  9378. [
  9379. {
  9380. name: "Megamicro",
  9381. height: math.unit(0.1, "mm")
  9382. },
  9383. {
  9384. name: "Micro",
  9385. height: math.unit(1, "inch")
  9386. },
  9387. {
  9388. name: "Normal",
  9389. height: math.unit(6, "feet"),
  9390. default: true
  9391. },
  9392. ]
  9393. ))
  9394. characterMakers.push(() => makeCharacter(
  9395. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9396. {
  9397. front: {
  9398. height: math.unit(6, "feet"),
  9399. weight: math.unit(264, "lb"),
  9400. name: "Front",
  9401. image: {
  9402. source: "./media/characters/hector/front.svg",
  9403. extra: 2280 / 2130,
  9404. bottom: 0.07
  9405. }
  9406. },
  9407. },
  9408. [
  9409. {
  9410. name: "Normal",
  9411. height: math.unit(12.25, "foot"),
  9412. default: true
  9413. },
  9414. {
  9415. name: "Macro",
  9416. height: math.unit(160, "feet")
  9417. },
  9418. ]
  9419. ))
  9420. characterMakers.push(() => makeCharacter(
  9421. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9422. {
  9423. front: {
  9424. height: math.unit(6, "feet"),
  9425. weight: math.unit(150, "lb"),
  9426. name: "Front",
  9427. image: {
  9428. source: "./media/characters/sal/front.svg",
  9429. extra: 1846 / 1699,
  9430. bottom: 0.04
  9431. }
  9432. },
  9433. },
  9434. [
  9435. {
  9436. name: "Megamacro",
  9437. height: math.unit(10, "miles"),
  9438. default: true
  9439. },
  9440. ]
  9441. ))
  9442. characterMakers.push(() => makeCharacter(
  9443. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9444. {
  9445. front: {
  9446. height: math.unit(3, "meters"),
  9447. weight: math.unit(450, "kg"),
  9448. name: "front",
  9449. image: {
  9450. source: "./media/characters/ranger/front.svg",
  9451. extra: 2401 / 2243,
  9452. bottom: 0.05
  9453. }
  9454. },
  9455. },
  9456. [
  9457. {
  9458. name: "Normal",
  9459. height: math.unit(3, "meters"),
  9460. default: true
  9461. },
  9462. ]
  9463. ))
  9464. characterMakers.push(() => makeCharacter(
  9465. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9466. {
  9467. front: {
  9468. height: math.unit(14, "feet"),
  9469. weight: math.unit(800, "kg"),
  9470. name: "Front",
  9471. image: {
  9472. source: "./media/characters/theresa/front.svg",
  9473. extra: 3575 / 3346,
  9474. bottom: 0.03
  9475. }
  9476. },
  9477. },
  9478. [
  9479. {
  9480. name: "Normal",
  9481. height: math.unit(14, "feet"),
  9482. default: true
  9483. },
  9484. ]
  9485. ))
  9486. characterMakers.push(() => makeCharacter(
  9487. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9488. {
  9489. front: {
  9490. height: math.unit(6, "feet"),
  9491. weight: math.unit(3, "kg"),
  9492. name: "Front",
  9493. image: {
  9494. source: "./media/characters/ine/front.svg",
  9495. extra: 678 / 539,
  9496. bottom: 0.023
  9497. }
  9498. },
  9499. },
  9500. [
  9501. {
  9502. name: "Normal",
  9503. height: math.unit(2.265, "feet"),
  9504. default: true
  9505. },
  9506. ]
  9507. ))
  9508. characterMakers.push(() => makeCharacter(
  9509. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9510. {
  9511. front: {
  9512. height: math.unit(5, "feet"),
  9513. weight: math.unit(30, "kg"),
  9514. name: "Front",
  9515. image: {
  9516. source: "./media/characters/vial/front.svg",
  9517. extra: 1365 / 1277,
  9518. bottom: 0.04
  9519. }
  9520. },
  9521. },
  9522. [
  9523. {
  9524. name: "Normal",
  9525. height: math.unit(5, "feet"),
  9526. default: true
  9527. },
  9528. ]
  9529. ))
  9530. characterMakers.push(() => makeCharacter(
  9531. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9532. {
  9533. side: {
  9534. height: math.unit(3.4, "meters"),
  9535. weight: math.unit(1000, "lb"),
  9536. name: "Side",
  9537. image: {
  9538. source: "./media/characters/rovoska/side.svg",
  9539. extra: 4403 / 1515
  9540. }
  9541. },
  9542. },
  9543. [
  9544. {
  9545. name: "Normal",
  9546. height: math.unit(3.4, "meters"),
  9547. default: true
  9548. },
  9549. ]
  9550. ))
  9551. characterMakers.push(() => makeCharacter(
  9552. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9553. {
  9554. front: {
  9555. height: math.unit(8, "feet"),
  9556. weight: math.unit(315, "lb"),
  9557. name: "Front",
  9558. image: {
  9559. source: "./media/characters/gunner-rotthbauer/front.svg"
  9560. }
  9561. },
  9562. back: {
  9563. height: math.unit(8, "feet"),
  9564. weight: math.unit(315, "lb"),
  9565. name: "Back",
  9566. image: {
  9567. source: "./media/characters/gunner-rotthbauer/back.svg"
  9568. }
  9569. },
  9570. },
  9571. [
  9572. {
  9573. name: "Micro",
  9574. height: math.unit(3.5, "inches")
  9575. },
  9576. {
  9577. name: "Normal",
  9578. height: math.unit(8, "feet"),
  9579. default: true
  9580. },
  9581. {
  9582. name: "Macro",
  9583. height: math.unit(250, "feet")
  9584. },
  9585. {
  9586. name: "Megamacro",
  9587. height: math.unit(1, "AU")
  9588. },
  9589. ]
  9590. ))
  9591. characterMakers.push(() => makeCharacter(
  9592. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9593. {
  9594. front: {
  9595. height: math.unit(5 + 5 / 12, "feet"),
  9596. weight: math.unit(140, "lb"),
  9597. name: "Front",
  9598. image: {
  9599. source: "./media/characters/allatia/front.svg",
  9600. extra: 1227 / 1180,
  9601. bottom: 0.027
  9602. }
  9603. },
  9604. },
  9605. [
  9606. {
  9607. name: "Normal",
  9608. height: math.unit(5 + 5 / 12, "feet")
  9609. },
  9610. {
  9611. name: "Macro",
  9612. height: math.unit(250, "feet"),
  9613. default: true
  9614. },
  9615. {
  9616. name: "Megamacro",
  9617. height: math.unit(8, "miles")
  9618. }
  9619. ]
  9620. ))
  9621. characterMakers.push(() => makeCharacter(
  9622. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9623. {
  9624. front: {
  9625. height: math.unit(6, "feet"),
  9626. weight: math.unit(120, "lb"),
  9627. name: "Front",
  9628. image: {
  9629. source: "./media/characters/tene/front.svg",
  9630. extra: 1728 / 1578,
  9631. bottom: 0.022
  9632. }
  9633. },
  9634. stomping: {
  9635. height: math.unit(2.025, "meters"),
  9636. weight: math.unit(120, "lb"),
  9637. name: "Stomping",
  9638. image: {
  9639. source: "./media/characters/tene/stomping.svg",
  9640. extra: 938 / 873,
  9641. bottom: 0.01
  9642. }
  9643. },
  9644. sitting: {
  9645. height: math.unit(1, "meter"),
  9646. weight: math.unit(120, "lb"),
  9647. name: "Sitting",
  9648. image: {
  9649. source: "./media/characters/tene/sitting.svg",
  9650. extra: 437 / 415,
  9651. bottom: 0.1
  9652. }
  9653. },
  9654. feral: {
  9655. height: math.unit(3.9, "feet"),
  9656. weight: math.unit(250, "lb"),
  9657. name: "Feral",
  9658. image: {
  9659. source: "./media/characters/tene/feral.svg",
  9660. extra: 717 / 458,
  9661. bottom: 0.179
  9662. }
  9663. },
  9664. },
  9665. [
  9666. {
  9667. name: "Normal",
  9668. height: math.unit(6, "feet")
  9669. },
  9670. {
  9671. name: "Macro",
  9672. height: math.unit(300, "feet"),
  9673. default: true
  9674. },
  9675. {
  9676. name: "Megamacro",
  9677. height: math.unit(5, "miles")
  9678. },
  9679. ]
  9680. ))
  9681. characterMakers.push(() => makeCharacter(
  9682. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9683. {
  9684. side: {
  9685. height: math.unit(6, "feet"),
  9686. name: "Side",
  9687. image: {
  9688. source: "./media/characters/evander/side.svg",
  9689. extra: 877 / 477
  9690. }
  9691. },
  9692. },
  9693. [
  9694. {
  9695. name: "Normal",
  9696. height: math.unit(0.83, "meters"),
  9697. default: true
  9698. },
  9699. ]
  9700. ))
  9701. characterMakers.push(() => makeCharacter(
  9702. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9703. {
  9704. front: {
  9705. height: math.unit(12, "feet"),
  9706. weight: math.unit(1000, "lb"),
  9707. name: "Front",
  9708. image: {
  9709. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9710. extra: 1762 / 1611
  9711. }
  9712. },
  9713. back: {
  9714. height: math.unit(12, "feet"),
  9715. weight: math.unit(1000, "lb"),
  9716. name: "Back",
  9717. image: {
  9718. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9719. extra: 1762 / 1611
  9720. }
  9721. },
  9722. },
  9723. [
  9724. {
  9725. name: "Normal",
  9726. height: math.unit(12, "feet"),
  9727. default: true
  9728. },
  9729. {
  9730. name: "Kaiju",
  9731. height: math.unit(150, "feet")
  9732. },
  9733. ]
  9734. ))
  9735. characterMakers.push(() => makeCharacter(
  9736. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9737. {
  9738. front: {
  9739. height: math.unit(6, "feet"),
  9740. weight: math.unit(150, "lb"),
  9741. name: "Front",
  9742. image: {
  9743. source: "./media/characters/zero-alurus/front.svg"
  9744. }
  9745. },
  9746. back: {
  9747. height: math.unit(6, "feet"),
  9748. weight: math.unit(150, "lb"),
  9749. name: "Back",
  9750. image: {
  9751. source: "./media/characters/zero-alurus/back.svg"
  9752. }
  9753. },
  9754. },
  9755. [
  9756. {
  9757. name: "Normal",
  9758. height: math.unit(5 + 10 / 12, "feet")
  9759. },
  9760. {
  9761. name: "Macro",
  9762. height: math.unit(60, "feet"),
  9763. default: true
  9764. },
  9765. {
  9766. name: "Macro+",
  9767. height: math.unit(450, "feet")
  9768. },
  9769. ]
  9770. ))
  9771. characterMakers.push(() => makeCharacter(
  9772. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9773. {
  9774. front: {
  9775. height: math.unit(6, "feet"),
  9776. weight: math.unit(200, "lb"),
  9777. name: "Front",
  9778. image: {
  9779. source: "./media/characters/mega-shi/front.svg",
  9780. extra: 1279 / 1250,
  9781. bottom: 0.02
  9782. }
  9783. },
  9784. back: {
  9785. height: math.unit(6, "feet"),
  9786. weight: math.unit(200, "lb"),
  9787. name: "Back",
  9788. image: {
  9789. source: "./media/characters/mega-shi/back.svg",
  9790. extra: 1279 / 1250,
  9791. bottom: 0.02
  9792. }
  9793. },
  9794. },
  9795. [
  9796. {
  9797. name: "Micro",
  9798. height: math.unit(16 + 6 / 12, "feet")
  9799. },
  9800. {
  9801. name: "Third Dimension",
  9802. height: math.unit(40, "meters")
  9803. },
  9804. {
  9805. name: "Normal",
  9806. height: math.unit(660, "feet"),
  9807. default: true
  9808. },
  9809. {
  9810. name: "Megamacro",
  9811. height: math.unit(10, "miles")
  9812. },
  9813. {
  9814. name: "Planetary Launch",
  9815. height: math.unit(500, "miles")
  9816. },
  9817. {
  9818. name: "Interstellar",
  9819. height: math.unit(1e9, "miles")
  9820. },
  9821. {
  9822. name: "Leaving the Universe",
  9823. height: math.unit(1, "gigaparsec")
  9824. },
  9825. {
  9826. name: "Travelling Universes",
  9827. height: math.unit(30e15, "parsecs")
  9828. },
  9829. ]
  9830. ))
  9831. characterMakers.push(() => makeCharacter(
  9832. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9833. {
  9834. front: {
  9835. height: math.unit(6, "feet"),
  9836. weight: math.unit(150, "lb"),
  9837. name: "Front",
  9838. image: {
  9839. source: "./media/characters/odyssey/front.svg",
  9840. extra: 1782 / 1582,
  9841. bottom: 0.01
  9842. }
  9843. },
  9844. side: {
  9845. height: math.unit(5.7, "feet"),
  9846. weight: math.unit(140, "lb"),
  9847. name: "Side",
  9848. image: {
  9849. source: "./media/characters/odyssey/side.svg",
  9850. extra: 6462 / 5700
  9851. }
  9852. },
  9853. },
  9854. [
  9855. {
  9856. name: "Normal",
  9857. height: math.unit(5 + 4 / 12, "feet")
  9858. },
  9859. {
  9860. name: "Macro",
  9861. height: math.unit(1, "km")
  9862. },
  9863. {
  9864. name: "Megamacro",
  9865. height: math.unit(3000, "km")
  9866. },
  9867. {
  9868. name: "Gigamacro",
  9869. height: math.unit(1, "AU"),
  9870. default: true
  9871. },
  9872. {
  9873. name: "Omniversal",
  9874. height: math.unit(100e14, "lightyears")
  9875. },
  9876. ]
  9877. ))
  9878. characterMakers.push(() => makeCharacter(
  9879. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9880. {
  9881. front: {
  9882. height: math.unit(6, "feet"),
  9883. weight: math.unit(300, "lb"),
  9884. name: "Front",
  9885. image: {
  9886. source: "./media/characters/mekuto/front.svg",
  9887. extra: 921 / 832,
  9888. bottom: 0.03
  9889. }
  9890. },
  9891. hand: {
  9892. height: math.unit(6 / 10.24, "feet"),
  9893. name: "Hand",
  9894. image: {
  9895. source: "./media/characters/mekuto/hand.svg"
  9896. }
  9897. },
  9898. foot: {
  9899. height: math.unit(6 / 5.05, "feet"),
  9900. name: "Foot",
  9901. image: {
  9902. source: "./media/characters/mekuto/foot.svg"
  9903. }
  9904. },
  9905. },
  9906. [
  9907. {
  9908. name: "Minimicro",
  9909. height: math.unit(0.2, "inches")
  9910. },
  9911. {
  9912. name: "Micro",
  9913. height: math.unit(1.5, "inches")
  9914. },
  9915. {
  9916. name: "Normal",
  9917. height: math.unit(5 + 11 / 12, "feet"),
  9918. default: true
  9919. },
  9920. {
  9921. name: "Minimacro",
  9922. height: math.unit(17 + 9 / 12, "feet")
  9923. },
  9924. {
  9925. name: "Macro",
  9926. height: math.unit(177.5, "feet")
  9927. },
  9928. {
  9929. name: "Megamacro",
  9930. height: math.unit(152, "miles")
  9931. },
  9932. ]
  9933. ))
  9934. characterMakers.push(() => makeCharacter(
  9935. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9936. {
  9937. front: {
  9938. height: math.unit(6.5, "inches"),
  9939. weight: math.unit(13, "oz"),
  9940. name: "Front",
  9941. image: {
  9942. source: "./media/characters/dafydd-tomos/front.svg",
  9943. extra: 2990 / 2603,
  9944. bottom: 0.03
  9945. }
  9946. },
  9947. },
  9948. [
  9949. {
  9950. name: "Micro",
  9951. height: math.unit(6.5, "inches"),
  9952. default: true
  9953. },
  9954. ]
  9955. ))
  9956. characterMakers.push(() => makeCharacter(
  9957. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9958. {
  9959. front: {
  9960. height: math.unit(6, "feet"),
  9961. weight: math.unit(150, "lb"),
  9962. name: "Front",
  9963. image: {
  9964. source: "./media/characters/splinter/front.svg",
  9965. extra: 2990 / 2882,
  9966. bottom: 0.04
  9967. }
  9968. },
  9969. back: {
  9970. height: math.unit(6, "feet"),
  9971. weight: math.unit(150, "lb"),
  9972. name: "Back",
  9973. image: {
  9974. source: "./media/characters/splinter/back.svg",
  9975. extra: 2990 / 2882,
  9976. bottom: 0.04
  9977. }
  9978. },
  9979. },
  9980. [
  9981. {
  9982. name: "Normal",
  9983. height: math.unit(6, "feet")
  9984. },
  9985. {
  9986. name: "Macro",
  9987. height: math.unit(230, "meters"),
  9988. default: true
  9989. },
  9990. ]
  9991. ))
  9992. characterMakers.push(() => makeCharacter(
  9993. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9994. {
  9995. front: {
  9996. height: math.unit(4 + 10 / 12, "feet"),
  9997. weight: math.unit(480, "lb"),
  9998. name: "Front",
  9999. image: {
  10000. source: "./media/characters/snow-gabumon/front.svg",
  10001. extra: 1140 / 963,
  10002. bottom: 0.058
  10003. }
  10004. },
  10005. back: {
  10006. height: math.unit(4 + 10 / 12, "feet"),
  10007. weight: math.unit(480, "lb"),
  10008. name: "Back",
  10009. image: {
  10010. source: "./media/characters/snow-gabumon/back.svg",
  10011. extra: 1115 / 962,
  10012. bottom: 0.041
  10013. }
  10014. },
  10015. frontUndresed: {
  10016. height: math.unit(4 + 10 / 12, "feet"),
  10017. weight: math.unit(480, "lb"),
  10018. name: "Front (Undressed)",
  10019. image: {
  10020. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10021. extra: 1061 / 960,
  10022. bottom: 0.045
  10023. }
  10024. },
  10025. },
  10026. [
  10027. {
  10028. name: "Micro",
  10029. height: math.unit(1, "inch")
  10030. },
  10031. {
  10032. name: "Normal",
  10033. height: math.unit(4 + 10 / 12, "feet"),
  10034. default: true
  10035. },
  10036. {
  10037. name: "Macro",
  10038. height: math.unit(200, "feet")
  10039. },
  10040. {
  10041. name: "Megamacro",
  10042. height: math.unit(120, "miles")
  10043. },
  10044. {
  10045. name: "Gigamacro",
  10046. height: math.unit(9800, "miles")
  10047. },
  10048. ]
  10049. ))
  10050. characterMakers.push(() => makeCharacter(
  10051. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10052. {
  10053. front: {
  10054. height: math.unit(1.7, "meters"),
  10055. weight: math.unit(140, "lb"),
  10056. name: "Front",
  10057. image: {
  10058. source: "./media/characters/moody/front.svg",
  10059. extra: 3226 / 3007,
  10060. bottom: 0.087
  10061. }
  10062. },
  10063. },
  10064. [
  10065. {
  10066. name: "Micro",
  10067. height: math.unit(1, "mm")
  10068. },
  10069. {
  10070. name: "Normal",
  10071. height: math.unit(1.7, "meters"),
  10072. default: true
  10073. },
  10074. {
  10075. name: "Macro",
  10076. height: math.unit(80, "meters")
  10077. },
  10078. {
  10079. name: "Macro+",
  10080. height: math.unit(500, "meters")
  10081. },
  10082. ]
  10083. ))
  10084. characterMakers.push(() => makeCharacter(
  10085. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10086. {
  10087. front: {
  10088. height: math.unit(6, "feet"),
  10089. weight: math.unit(150, "lb"),
  10090. name: "Front",
  10091. image: {
  10092. source: "./media/characters/zyas/front.svg",
  10093. extra: 1180 / 1120,
  10094. bottom: 0.045
  10095. }
  10096. },
  10097. },
  10098. [
  10099. {
  10100. name: "Normal",
  10101. height: math.unit(10, "feet"),
  10102. default: true
  10103. },
  10104. {
  10105. name: "Macro",
  10106. height: math.unit(500, "feet")
  10107. },
  10108. {
  10109. name: "Megamacro",
  10110. height: math.unit(5, "miles")
  10111. },
  10112. {
  10113. name: "Teramacro",
  10114. height: math.unit(150000, "miles")
  10115. },
  10116. ]
  10117. ))
  10118. characterMakers.push(() => makeCharacter(
  10119. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10120. {
  10121. front: {
  10122. height: math.unit(6, "feet"),
  10123. weight: math.unit(150, "lb"),
  10124. name: "Front",
  10125. image: {
  10126. source: "./media/characters/cuon/front.svg",
  10127. extra: 1390 / 1320,
  10128. bottom: 0.008
  10129. }
  10130. },
  10131. },
  10132. [
  10133. {
  10134. name: "Micro",
  10135. height: math.unit(3, "inches")
  10136. },
  10137. {
  10138. name: "Normal",
  10139. height: math.unit(18 + 9 / 12, "feet"),
  10140. default: true
  10141. },
  10142. {
  10143. name: "Macro",
  10144. height: math.unit(360, "feet")
  10145. },
  10146. {
  10147. name: "Megamacro",
  10148. height: math.unit(360, "miles")
  10149. },
  10150. ]
  10151. ))
  10152. characterMakers.push(() => makeCharacter(
  10153. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10154. {
  10155. front: {
  10156. height: math.unit(2.4, "meters"),
  10157. weight: math.unit(70, "kg"),
  10158. name: "Front",
  10159. image: {
  10160. source: "./media/characters/nyanuxk/front.svg",
  10161. extra: 1172 / 1084,
  10162. bottom: 0.065
  10163. }
  10164. },
  10165. side: {
  10166. height: math.unit(2.4, "meters"),
  10167. weight: math.unit(70, "kg"),
  10168. name: "Side",
  10169. image: {
  10170. source: "./media/characters/nyanuxk/side.svg",
  10171. extra: 1190 / 1132,
  10172. bottom: 0.007
  10173. }
  10174. },
  10175. back: {
  10176. height: math.unit(2.4, "meters"),
  10177. weight: math.unit(70, "kg"),
  10178. name: "Back",
  10179. image: {
  10180. source: "./media/characters/nyanuxk/back.svg",
  10181. extra: 1200 / 1141,
  10182. bottom: 0.015
  10183. }
  10184. },
  10185. foot: {
  10186. height: math.unit(0.52, "meters"),
  10187. name: "Foot",
  10188. image: {
  10189. source: "./media/characters/nyanuxk/foot.svg"
  10190. }
  10191. },
  10192. },
  10193. [
  10194. {
  10195. name: "Micro",
  10196. height: math.unit(2, "cm")
  10197. },
  10198. {
  10199. name: "Normal",
  10200. height: math.unit(2.4, "meters"),
  10201. default: true
  10202. },
  10203. {
  10204. name: "Smaller Macro",
  10205. height: math.unit(120, "meters")
  10206. },
  10207. {
  10208. name: "Bigger Macro",
  10209. height: math.unit(1.2, "km")
  10210. },
  10211. {
  10212. name: "Megamacro",
  10213. height: math.unit(15, "kilometers")
  10214. },
  10215. {
  10216. name: "Gigamacro",
  10217. height: math.unit(2000, "km")
  10218. },
  10219. {
  10220. name: "Teramacro",
  10221. height: math.unit(500000, "km")
  10222. },
  10223. ]
  10224. ))
  10225. characterMakers.push(() => makeCharacter(
  10226. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10227. {
  10228. side: {
  10229. height: math.unit(6, "feet"),
  10230. name: "Side",
  10231. image: {
  10232. source: "./media/characters/ailbhe/side.svg",
  10233. extra: 757 / 464,
  10234. bottom: 0.041
  10235. }
  10236. },
  10237. },
  10238. [
  10239. {
  10240. name: "Normal",
  10241. height: math.unit(1.07, "meters"),
  10242. default: true
  10243. },
  10244. ]
  10245. ))
  10246. characterMakers.push(() => makeCharacter(
  10247. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10248. {
  10249. front: {
  10250. height: math.unit(6, "feet"),
  10251. weight: math.unit(120, "kg"),
  10252. name: "Front",
  10253. image: {
  10254. source: "./media/characters/zevulfius/front.svg",
  10255. extra: 965 / 903
  10256. }
  10257. },
  10258. side: {
  10259. height: math.unit(6, "feet"),
  10260. weight: math.unit(120, "kg"),
  10261. name: "Side",
  10262. image: {
  10263. source: "./media/characters/zevulfius/side.svg",
  10264. extra: 939 / 900
  10265. }
  10266. },
  10267. back: {
  10268. height: math.unit(6, "feet"),
  10269. weight: math.unit(120, "kg"),
  10270. name: "Back",
  10271. image: {
  10272. source: "./media/characters/zevulfius/back.svg",
  10273. extra: 918 / 854,
  10274. bottom: 0.005
  10275. }
  10276. },
  10277. foot: {
  10278. height: math.unit(6 / 3.72, "feet"),
  10279. name: "Foot",
  10280. image: {
  10281. source: "./media/characters/zevulfius/foot.svg"
  10282. }
  10283. },
  10284. },
  10285. [
  10286. {
  10287. name: "Macro",
  10288. height: math.unit(750, "meters")
  10289. },
  10290. {
  10291. name: "Megamacro",
  10292. height: math.unit(20, "km"),
  10293. default: true
  10294. },
  10295. {
  10296. name: "Gigamacro",
  10297. height: math.unit(2000, "km")
  10298. },
  10299. {
  10300. name: "Teramacro",
  10301. height: math.unit(250000, "km")
  10302. },
  10303. ]
  10304. ))
  10305. characterMakers.push(() => makeCharacter(
  10306. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10307. {
  10308. front: {
  10309. height: math.unit(100, "feet"),
  10310. weight: math.unit(350, "kg"),
  10311. name: "Front",
  10312. image: {
  10313. source: "./media/characters/rikes/front.svg",
  10314. extra: 1565 / 1483,
  10315. bottom: 0.017
  10316. }
  10317. },
  10318. },
  10319. [
  10320. {
  10321. name: "Macro",
  10322. height: math.unit(100, "feet"),
  10323. default: true
  10324. },
  10325. ]
  10326. ))
  10327. characterMakers.push(() => makeCharacter(
  10328. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10329. {
  10330. anthro: {
  10331. height: math.unit(8, "feet"),
  10332. weight: math.unit(120, "kg"),
  10333. name: "Anthro",
  10334. image: {
  10335. source: "./media/characters/adam-silver-mane/anthro.svg",
  10336. extra: 5743 / 5339,
  10337. bottom: 0.07
  10338. }
  10339. },
  10340. taur: {
  10341. height: math.unit(16, "feet"),
  10342. weight: math.unit(1500, "kg"),
  10343. name: "Taur",
  10344. image: {
  10345. source: "./media/characters/adam-silver-mane/taur.svg",
  10346. extra: 1713 / 1571,
  10347. bottom: 0.01
  10348. }
  10349. },
  10350. },
  10351. [
  10352. {
  10353. name: "Normal",
  10354. height: math.unit(8, "feet")
  10355. },
  10356. {
  10357. name: "Minimacro",
  10358. height: math.unit(80, "feet")
  10359. },
  10360. {
  10361. name: "Macro",
  10362. height: math.unit(800, "feet"),
  10363. default: true
  10364. },
  10365. {
  10366. name: "Megamacro",
  10367. height: math.unit(8000, "feet")
  10368. },
  10369. {
  10370. name: "Gigamacro",
  10371. height: math.unit(800, "miles")
  10372. },
  10373. {
  10374. name: "Teramacro",
  10375. height: math.unit(80000, "miles")
  10376. },
  10377. {
  10378. name: "Celestial",
  10379. height: math.unit(8e6, "miles")
  10380. },
  10381. {
  10382. name: "Star Dragon",
  10383. height: math.unit(800000, "parsecs")
  10384. },
  10385. {
  10386. name: "Godly",
  10387. height: math.unit(800, "teraparsecs")
  10388. },
  10389. ]
  10390. ))
  10391. characterMakers.push(() => makeCharacter(
  10392. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10393. {
  10394. front: {
  10395. height: math.unit(6, "feet"),
  10396. weight: math.unit(150, "lb"),
  10397. name: "Front",
  10398. image: {
  10399. source: "./media/characters/ky'owin/front.svg",
  10400. extra: 3888 / 3068,
  10401. bottom: 0.015
  10402. }
  10403. },
  10404. },
  10405. [
  10406. {
  10407. name: "Normal",
  10408. height: math.unit(6 + 8 / 12, "feet")
  10409. },
  10410. {
  10411. name: "Large",
  10412. height: math.unit(68, "feet")
  10413. },
  10414. {
  10415. name: "Macro",
  10416. height: math.unit(132, "feet")
  10417. },
  10418. {
  10419. name: "Macro+",
  10420. height: math.unit(340, "feet")
  10421. },
  10422. {
  10423. name: "Macro++",
  10424. height: math.unit(680, "feet"),
  10425. default: true
  10426. },
  10427. {
  10428. name: "Megamacro",
  10429. height: math.unit(1, "mile")
  10430. },
  10431. {
  10432. name: "Megamacro+",
  10433. height: math.unit(10, "miles")
  10434. },
  10435. ]
  10436. ))
  10437. characterMakers.push(() => makeCharacter(
  10438. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10439. {
  10440. front: {
  10441. height: math.unit(4, "feet"),
  10442. weight: math.unit(50, "lb"),
  10443. name: "Front",
  10444. image: {
  10445. source: "./media/characters/mal/front.svg",
  10446. extra: 785 / 724,
  10447. bottom: 0.07
  10448. }
  10449. },
  10450. },
  10451. [
  10452. {
  10453. name: "Micro",
  10454. height: math.unit(4, "inches")
  10455. },
  10456. {
  10457. name: "Normal",
  10458. height: math.unit(4, "feet"),
  10459. default: true
  10460. },
  10461. {
  10462. name: "Macro",
  10463. height: math.unit(200, "feet")
  10464. },
  10465. ]
  10466. ))
  10467. characterMakers.push(() => makeCharacter(
  10468. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10469. {
  10470. front: {
  10471. height: math.unit(6, "feet"),
  10472. weight: math.unit(150, "lb"),
  10473. name: "Front",
  10474. image: {
  10475. source: "./media/characters/jordan-deware/front.svg",
  10476. extra: 1191 / 1012
  10477. }
  10478. },
  10479. },
  10480. [
  10481. {
  10482. name: "Nano",
  10483. height: math.unit(0.01, "mm")
  10484. },
  10485. {
  10486. name: "Minimicro",
  10487. height: math.unit(1, "mm")
  10488. },
  10489. {
  10490. name: "Micro",
  10491. height: math.unit(0.5, "inches")
  10492. },
  10493. {
  10494. name: "Normal",
  10495. height: math.unit(4, "feet"),
  10496. default: true
  10497. },
  10498. {
  10499. name: "Minimacro",
  10500. height: math.unit(40, "meters")
  10501. },
  10502. {
  10503. name: "Small Macro",
  10504. height: math.unit(400, "meters")
  10505. },
  10506. {
  10507. name: "Macro",
  10508. height: math.unit(4, "miles")
  10509. },
  10510. {
  10511. name: "Megamacro",
  10512. height: math.unit(40, "miles")
  10513. },
  10514. {
  10515. name: "Megamacro+",
  10516. height: math.unit(400, "miles")
  10517. },
  10518. {
  10519. name: "Gigamacro",
  10520. height: math.unit(400000, "miles")
  10521. },
  10522. ]
  10523. ))
  10524. characterMakers.push(() => makeCharacter(
  10525. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10526. {
  10527. side: {
  10528. height: math.unit(6, "feet"),
  10529. weight: math.unit(150, "lb"),
  10530. name: "Side",
  10531. image: {
  10532. source: "./media/characters/kimiko/side.svg",
  10533. extra: 600 / 358
  10534. }
  10535. },
  10536. },
  10537. [
  10538. {
  10539. name: "Normal",
  10540. height: math.unit(15, "feet"),
  10541. default: true
  10542. },
  10543. {
  10544. name: "Macro",
  10545. height: math.unit(220, "feet")
  10546. },
  10547. {
  10548. name: "Macro+",
  10549. height: math.unit(1450, "feet")
  10550. },
  10551. {
  10552. name: "Megamacro",
  10553. height: math.unit(11500, "feet")
  10554. },
  10555. {
  10556. name: "Gigamacro",
  10557. height: math.unit(9500, "miles")
  10558. },
  10559. {
  10560. name: "Teramacro",
  10561. height: math.unit(2208005005, "miles")
  10562. },
  10563. {
  10564. name: "Examacro",
  10565. height: math.unit(2750, "parsecs")
  10566. },
  10567. {
  10568. name: "Zettamacro",
  10569. height: math.unit(101500, "parsecs")
  10570. },
  10571. ]
  10572. ))
  10573. characterMakers.push(() => makeCharacter(
  10574. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10575. {
  10576. front: {
  10577. height: math.unit(6, "feet"),
  10578. weight: math.unit(70, "kg"),
  10579. name: "Front",
  10580. image: {
  10581. source: "./media/characters/andrew-sleepy/front.svg"
  10582. }
  10583. },
  10584. side: {
  10585. height: math.unit(6, "feet"),
  10586. weight: math.unit(70, "kg"),
  10587. name: "Side",
  10588. image: {
  10589. source: "./media/characters/andrew-sleepy/side.svg"
  10590. }
  10591. },
  10592. },
  10593. [
  10594. {
  10595. name: "Micro",
  10596. height: math.unit(1, "mm"),
  10597. default: true
  10598. },
  10599. ]
  10600. ))
  10601. characterMakers.push(() => makeCharacter(
  10602. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10603. {
  10604. front: {
  10605. height: math.unit(6, "feet"),
  10606. weight: math.unit(150, "lb"),
  10607. name: "Front",
  10608. image: {
  10609. source: "./media/characters/judio/front.svg",
  10610. extra: 1258 / 1110
  10611. }
  10612. },
  10613. },
  10614. [
  10615. {
  10616. name: "Normal",
  10617. height: math.unit(5 + 6 / 12, "feet")
  10618. },
  10619. {
  10620. name: "Macro",
  10621. height: math.unit(1000, "feet"),
  10622. default: true
  10623. },
  10624. {
  10625. name: "Megamacro",
  10626. height: math.unit(10, "miles")
  10627. },
  10628. ]
  10629. ))
  10630. characterMakers.push(() => makeCharacter(
  10631. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10632. {
  10633. front: {
  10634. height: math.unit(6, "feet"),
  10635. weight: math.unit(68, "kg"),
  10636. name: "Front",
  10637. image: {
  10638. source: "./media/characters/nomaxice/front.svg",
  10639. extra: 1498 / 1073,
  10640. bottom: 0.075
  10641. }
  10642. },
  10643. foot: {
  10644. height: math.unit(1.1, "feet"),
  10645. name: "Foot",
  10646. image: {
  10647. source: "./media/characters/nomaxice/foot.svg"
  10648. }
  10649. },
  10650. },
  10651. [
  10652. {
  10653. name: "Micro",
  10654. height: math.unit(8, "cm")
  10655. },
  10656. {
  10657. name: "Norm",
  10658. height: math.unit(1.82, "m")
  10659. },
  10660. {
  10661. name: "Norm+",
  10662. height: math.unit(8.8, "feet")
  10663. },
  10664. {
  10665. name: "Big",
  10666. height: math.unit(8, "meters"),
  10667. default: true
  10668. },
  10669. {
  10670. name: "Macro",
  10671. height: math.unit(18, "meters")
  10672. },
  10673. {
  10674. name: "Macro+",
  10675. height: math.unit(88, "meters")
  10676. },
  10677. ]
  10678. ))
  10679. characterMakers.push(() => makeCharacter(
  10680. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10681. {
  10682. front: {
  10683. height: math.unit(12, "feet"),
  10684. weight: math.unit(1.5, "tons"),
  10685. name: "Front",
  10686. image: {
  10687. source: "./media/characters/dydros/front.svg",
  10688. extra: 863 / 800,
  10689. bottom: 0.015
  10690. }
  10691. },
  10692. back: {
  10693. height: math.unit(12, "feet"),
  10694. weight: math.unit(1.5, "tons"),
  10695. name: "Back",
  10696. image: {
  10697. source: "./media/characters/dydros/back.svg",
  10698. extra: 900 / 843,
  10699. bottom: 0.005
  10700. }
  10701. },
  10702. },
  10703. [
  10704. {
  10705. name: "Normal",
  10706. height: math.unit(12, "feet"),
  10707. default: true
  10708. },
  10709. ]
  10710. ))
  10711. characterMakers.push(() => makeCharacter(
  10712. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10713. {
  10714. front: {
  10715. height: math.unit(6, "feet"),
  10716. weight: math.unit(100, "kg"),
  10717. name: "Front",
  10718. image: {
  10719. source: "./media/characters/riggi/front.svg",
  10720. extra: 5787 / 5303
  10721. }
  10722. },
  10723. hyper: {
  10724. height: math.unit(6 * 5 / 3, "feet"),
  10725. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10726. name: "Hyper",
  10727. image: {
  10728. source: "./media/characters/riggi/hyper.svg",
  10729. extra: 3595 / 3485
  10730. }
  10731. },
  10732. },
  10733. [
  10734. {
  10735. name: "Small Macro",
  10736. height: math.unit(50, "feet")
  10737. },
  10738. {
  10739. name: "Default",
  10740. height: math.unit(200, "feet"),
  10741. default: true
  10742. },
  10743. {
  10744. name: "Loom",
  10745. height: math.unit(10000, "feet")
  10746. },
  10747. {
  10748. name: "Cruising Altitude",
  10749. height: math.unit(30000, "feet")
  10750. },
  10751. {
  10752. name: "Megamacro",
  10753. height: math.unit(100, "miles")
  10754. },
  10755. {
  10756. name: "Continent Sized",
  10757. height: math.unit(2800, "miles")
  10758. },
  10759. {
  10760. name: "Earth Sized",
  10761. height: math.unit(8000, "miles")
  10762. },
  10763. ]
  10764. ))
  10765. characterMakers.push(() => makeCharacter(
  10766. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10767. {
  10768. front: {
  10769. height: math.unit(6, "feet"),
  10770. weight: math.unit(250, "lb"),
  10771. name: "Front",
  10772. image: {
  10773. source: "./media/characters/alexi/front.svg",
  10774. extra: 3483 / 3291,
  10775. bottom: 0.04
  10776. }
  10777. },
  10778. back: {
  10779. height: math.unit(6, "feet"),
  10780. weight: math.unit(250, "lb"),
  10781. name: "Back",
  10782. image: {
  10783. source: "./media/characters/alexi/back.svg",
  10784. extra: 3533 / 3356,
  10785. bottom: 0.021
  10786. }
  10787. },
  10788. frontTransforming: {
  10789. height: math.unit(8.58, "feet"),
  10790. weight: math.unit(1300, "lb"),
  10791. name: "Transforming",
  10792. image: {
  10793. source: "./media/characters/alexi/front-transforming.svg",
  10794. extra: 437 / 409,
  10795. bottom: 19 / 458.66
  10796. }
  10797. },
  10798. frontTransformed: {
  10799. height: math.unit(12.5, "feet"),
  10800. weight: math.unit(4000, "lb"),
  10801. name: "Transformed",
  10802. image: {
  10803. source: "./media/characters/alexi/front-transformed.svg",
  10804. extra: 639 / 614,
  10805. bottom: 30.55 / 671
  10806. }
  10807. },
  10808. },
  10809. [
  10810. {
  10811. name: "Normal",
  10812. height: math.unit(14, "feet"),
  10813. default: true
  10814. },
  10815. {
  10816. name: "Minimacro",
  10817. height: math.unit(30, "meters")
  10818. },
  10819. {
  10820. name: "Macro",
  10821. height: math.unit(500, "meters")
  10822. },
  10823. {
  10824. name: "Megamacro",
  10825. height: math.unit(9000, "km")
  10826. },
  10827. {
  10828. name: "Teramacro",
  10829. height: math.unit(384000, "km")
  10830. },
  10831. ]
  10832. ))
  10833. characterMakers.push(() => makeCharacter(
  10834. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10835. {
  10836. front: {
  10837. height: math.unit(6, "feet"),
  10838. weight: math.unit(150, "lb"),
  10839. name: "Front",
  10840. image: {
  10841. source: "./media/characters/kayroo/front.svg",
  10842. extra: 1153 / 1038,
  10843. bottom: 0.06
  10844. }
  10845. },
  10846. foot: {
  10847. height: math.unit(6, "feet"),
  10848. weight: math.unit(150, "lb"),
  10849. name: "Foot",
  10850. image: {
  10851. source: "./media/characters/kayroo/foot.svg"
  10852. }
  10853. },
  10854. },
  10855. [
  10856. {
  10857. name: "Normal",
  10858. height: math.unit(8, "feet"),
  10859. default: true
  10860. },
  10861. {
  10862. name: "Minimacro",
  10863. height: math.unit(250, "feet")
  10864. },
  10865. {
  10866. name: "Macro",
  10867. height: math.unit(2800, "feet")
  10868. },
  10869. {
  10870. name: "Megamacro",
  10871. height: math.unit(5200, "feet")
  10872. },
  10873. {
  10874. name: "Gigamacro",
  10875. height: math.unit(27000, "feet")
  10876. },
  10877. {
  10878. name: "Omega",
  10879. height: math.unit(45000, "feet")
  10880. },
  10881. ]
  10882. ))
  10883. characterMakers.push(() => makeCharacter(
  10884. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10885. {
  10886. front: {
  10887. height: math.unit(18, "feet"),
  10888. weight: math.unit(5800, "lb"),
  10889. name: "Front",
  10890. image: {
  10891. source: "./media/characters/rhys/front.svg",
  10892. extra: 3386 / 3090,
  10893. bottom: 0.07
  10894. }
  10895. },
  10896. },
  10897. [
  10898. {
  10899. name: "Normal",
  10900. height: math.unit(18, "feet"),
  10901. default: true
  10902. },
  10903. {
  10904. name: "Working Size",
  10905. height: math.unit(200, "feet")
  10906. },
  10907. {
  10908. name: "Demolition Size",
  10909. height: math.unit(2000, "feet")
  10910. },
  10911. {
  10912. name: "Maximum Licensed Size",
  10913. height: math.unit(5, "miles")
  10914. },
  10915. {
  10916. name: "Maximum Observed Size",
  10917. height: math.unit(10, "yottameters")
  10918. },
  10919. ]
  10920. ))
  10921. characterMakers.push(() => makeCharacter(
  10922. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10923. {
  10924. front: {
  10925. height: math.unit(6, "feet"),
  10926. weight: math.unit(250, "lb"),
  10927. name: "Front",
  10928. image: {
  10929. source: "./media/characters/toto/front.svg",
  10930. extra: 527 / 479,
  10931. bottom: 0.05
  10932. }
  10933. },
  10934. },
  10935. [
  10936. {
  10937. name: "Micro",
  10938. height: math.unit(3, "feet")
  10939. },
  10940. {
  10941. name: "Normal",
  10942. height: math.unit(10, "feet")
  10943. },
  10944. {
  10945. name: "Macro",
  10946. height: math.unit(150, "feet"),
  10947. default: true
  10948. },
  10949. {
  10950. name: "Megamacro",
  10951. height: math.unit(1200, "feet")
  10952. },
  10953. ]
  10954. ))
  10955. characterMakers.push(() => makeCharacter(
  10956. { name: "King", species: ["lion"], tags: ["anthro"] },
  10957. {
  10958. back: {
  10959. height: math.unit(6, "feet"),
  10960. weight: math.unit(150, "lb"),
  10961. name: "Back",
  10962. image: {
  10963. source: "./media/characters/king/back.svg"
  10964. }
  10965. },
  10966. },
  10967. [
  10968. {
  10969. name: "Micro",
  10970. height: math.unit(2, "inches")
  10971. },
  10972. {
  10973. name: "Normal",
  10974. height: math.unit(8, "feet")
  10975. },
  10976. {
  10977. name: "Macro",
  10978. height: math.unit(200, "feet"),
  10979. default: true
  10980. },
  10981. {
  10982. name: "Megamacro",
  10983. height: math.unit(50, "miles")
  10984. },
  10985. ]
  10986. ))
  10987. characterMakers.push(() => makeCharacter(
  10988. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10989. {
  10990. anthro: {
  10991. height: math.unit(6 + 5 / 12, "feet"),
  10992. weight: math.unit(280, "lb"),
  10993. name: "Anthro",
  10994. image: {
  10995. source: "./media/characters/cordite/anthro.svg",
  10996. extra: 1986 / 1905,
  10997. bottom: 0.025
  10998. }
  10999. },
  11000. feral: {
  11001. height: math.unit(2, "feet"),
  11002. weight: math.unit(90, "lb"),
  11003. name: "Feral",
  11004. image: {
  11005. source: "./media/characters/cordite/feral.svg",
  11006. extra: 1260 / 755,
  11007. bottom: 0.05
  11008. }
  11009. },
  11010. },
  11011. [
  11012. {
  11013. name: "Normal",
  11014. height: math.unit(6 + 5 / 12, "feet"),
  11015. default: true
  11016. },
  11017. ]
  11018. ))
  11019. characterMakers.push(() => makeCharacter(
  11020. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11021. {
  11022. front: {
  11023. height: math.unit(6, "feet"),
  11024. weight: math.unit(150, "lb"),
  11025. name: "Front",
  11026. image: {
  11027. source: "./media/characters/pianostrong/front.svg",
  11028. extra: 6577 / 6254,
  11029. bottom: 0.02
  11030. }
  11031. },
  11032. side: {
  11033. height: math.unit(6, "feet"),
  11034. weight: math.unit(150, "lb"),
  11035. name: "Side",
  11036. image: {
  11037. source: "./media/characters/pianostrong/side.svg",
  11038. extra: 6106 / 5730
  11039. }
  11040. },
  11041. back: {
  11042. height: math.unit(6, "feet"),
  11043. weight: math.unit(150, "lb"),
  11044. name: "Back",
  11045. image: {
  11046. source: "./media/characters/pianostrong/back.svg",
  11047. extra: 6085 / 5733,
  11048. bottom: 0.01
  11049. }
  11050. },
  11051. },
  11052. [
  11053. {
  11054. name: "Macro",
  11055. height: math.unit(100, "feet")
  11056. },
  11057. {
  11058. name: "Macro+",
  11059. height: math.unit(300, "feet"),
  11060. default: true
  11061. },
  11062. {
  11063. name: "Macro++",
  11064. height: math.unit(1000, "feet")
  11065. },
  11066. ]
  11067. ))
  11068. characterMakers.push(() => makeCharacter(
  11069. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11070. {
  11071. front: {
  11072. height: math.unit(6, "feet"),
  11073. weight: math.unit(150, "lb"),
  11074. name: "Front",
  11075. image: {
  11076. source: "./media/characters/kona/front.svg",
  11077. extra: 2960 / 2629,
  11078. bottom: 0.005
  11079. }
  11080. },
  11081. },
  11082. [
  11083. {
  11084. name: "Normal",
  11085. height: math.unit(11 + 8 / 12, "feet")
  11086. },
  11087. {
  11088. name: "Macro",
  11089. height: math.unit(850, "feet"),
  11090. default: true
  11091. },
  11092. {
  11093. name: "Macro+",
  11094. height: math.unit(1.5, "km"),
  11095. default: true
  11096. },
  11097. {
  11098. name: "Megamacro",
  11099. height: math.unit(80, "miles")
  11100. },
  11101. {
  11102. name: "Gigamacro",
  11103. height: math.unit(3500, "miles")
  11104. },
  11105. ]
  11106. ))
  11107. characterMakers.push(() => makeCharacter(
  11108. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11109. {
  11110. side: {
  11111. height: math.unit(1.9, "meters"),
  11112. weight: math.unit(326, "kg"),
  11113. name: "Side",
  11114. image: {
  11115. source: "./media/characters/levi/side.svg",
  11116. extra: 1704 / 1334,
  11117. bottom: 0.02
  11118. }
  11119. },
  11120. },
  11121. [
  11122. {
  11123. name: "Normal",
  11124. height: math.unit(1.9, "meters"),
  11125. default: true
  11126. },
  11127. {
  11128. name: "Macro",
  11129. height: math.unit(20, "meters")
  11130. },
  11131. {
  11132. name: "Macro+",
  11133. height: math.unit(200, "meters")
  11134. },
  11135. {
  11136. name: "Megamacro",
  11137. height: math.unit(2, "km")
  11138. },
  11139. {
  11140. name: "Megamacro+",
  11141. height: math.unit(20, "km")
  11142. },
  11143. {
  11144. name: "Gigamacro",
  11145. height: math.unit(2500, "km")
  11146. },
  11147. {
  11148. name: "Gigamacro+",
  11149. height: math.unit(120000, "km")
  11150. },
  11151. {
  11152. name: "Teramacro",
  11153. height: math.unit(7.77e6, "km")
  11154. },
  11155. ]
  11156. ))
  11157. characterMakers.push(() => makeCharacter(
  11158. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11159. {
  11160. front: {
  11161. height: math.unit(6 + 4 / 12, "feet"),
  11162. weight: math.unit(188, "lb"),
  11163. name: "Front",
  11164. image: {
  11165. source: "./media/characters/bmc/front.svg",
  11166. extra: 1067 / 1022,
  11167. bottom: 0.047
  11168. }
  11169. },
  11170. },
  11171. [
  11172. {
  11173. name: "Human-sized",
  11174. height: math.unit(6 + 4 / 12, "feet")
  11175. },
  11176. {
  11177. name: "Small",
  11178. height: math.unit(250, "feet")
  11179. },
  11180. {
  11181. name: "Normal",
  11182. height: math.unit(1250, "feet"),
  11183. default: true
  11184. },
  11185. {
  11186. name: "Good Day",
  11187. height: math.unit(88, "miles")
  11188. },
  11189. {
  11190. name: "Largest Measured Size",
  11191. height: math.unit(11.2e6, "lightyears")
  11192. },
  11193. ]
  11194. ))
  11195. characterMakers.push(() => makeCharacter(
  11196. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11197. {
  11198. front: {
  11199. height: math.unit(20, "feet"),
  11200. weight: math.unit(2016, "kg"),
  11201. name: "Front",
  11202. image: {
  11203. source: "./media/characters/sven-the-kaiju/front.svg",
  11204. extra: 1277/1250,
  11205. bottom: 35/1312
  11206. }
  11207. },
  11208. mouth: {
  11209. height: math.unit(1.85, "feet"),
  11210. name: "Mouth",
  11211. image: {
  11212. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11213. }
  11214. },
  11215. },
  11216. [
  11217. {
  11218. name: "Fairy",
  11219. height: math.unit(6, "inches")
  11220. },
  11221. {
  11222. name: "Normal",
  11223. height: math.unit(20, "feet"),
  11224. default: true
  11225. },
  11226. {
  11227. name: "Rampage",
  11228. height: math.unit(200, "feet")
  11229. },
  11230. {
  11231. name: "Archfey Forest Guardian",
  11232. height: math.unit(1, "mile")
  11233. },
  11234. ]
  11235. ))
  11236. characterMakers.push(() => makeCharacter(
  11237. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11238. {
  11239. front: {
  11240. height: math.unit(4, "meters"),
  11241. weight: math.unit(2, "tons"),
  11242. name: "Front",
  11243. image: {
  11244. source: "./media/characters/marik/front.svg",
  11245. extra: 1057 / 1003,
  11246. bottom: 0.08
  11247. }
  11248. },
  11249. },
  11250. [
  11251. {
  11252. name: "Normal",
  11253. height: math.unit(4, "meters"),
  11254. default: true
  11255. },
  11256. {
  11257. name: "Macro",
  11258. height: math.unit(20, "meters")
  11259. },
  11260. {
  11261. name: "Megamacro",
  11262. height: math.unit(50, "km")
  11263. },
  11264. {
  11265. name: "Gigamacro",
  11266. height: math.unit(100, "km")
  11267. },
  11268. {
  11269. name: "Alpha Macro",
  11270. height: math.unit(7.88e7, "yottameters")
  11271. },
  11272. ]
  11273. ))
  11274. characterMakers.push(() => makeCharacter(
  11275. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11276. {
  11277. front: {
  11278. height: math.unit(6, "feet"),
  11279. weight: math.unit(110, "lb"),
  11280. name: "Front",
  11281. image: {
  11282. source: "./media/characters/mel/front.svg",
  11283. extra: 736 / 617,
  11284. bottom: 0.017
  11285. }
  11286. },
  11287. },
  11288. [
  11289. {
  11290. name: "Pico",
  11291. height: math.unit(3, "pm")
  11292. },
  11293. {
  11294. name: "Nano",
  11295. height: math.unit(3, "nm")
  11296. },
  11297. {
  11298. name: "Micro",
  11299. height: math.unit(0.3, "mm"),
  11300. default: true
  11301. },
  11302. {
  11303. name: "Micro+",
  11304. height: math.unit(3, "mm")
  11305. },
  11306. {
  11307. name: "Normal",
  11308. height: math.unit(5 + 10.5 / 12, "feet")
  11309. },
  11310. ]
  11311. ))
  11312. characterMakers.push(() => makeCharacter(
  11313. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11314. {
  11315. kaiju: {
  11316. height: math.unit(1.75, "meters"),
  11317. weight: math.unit(55, "kg"),
  11318. name: "Kaiju",
  11319. image: {
  11320. source: "./media/characters/lykonous/kaiju.svg",
  11321. extra: 1055 / 946,
  11322. bottom: 0.135
  11323. }
  11324. },
  11325. },
  11326. [
  11327. {
  11328. name: "Normal",
  11329. height: math.unit(2.5, "meters"),
  11330. default: true
  11331. },
  11332. {
  11333. name: "Kaiju Dragon",
  11334. height: math.unit(60, "meters")
  11335. },
  11336. {
  11337. name: "Mega Kaiju",
  11338. height: math.unit(120, "km")
  11339. },
  11340. {
  11341. name: "Giga Kaiju",
  11342. height: math.unit(200, "megameters")
  11343. },
  11344. {
  11345. name: "Terra Kaiju",
  11346. height: math.unit(400, "gigameters")
  11347. },
  11348. {
  11349. name: "Kaiju Dragon God",
  11350. height: math.unit(13000, "exaparsecs")
  11351. },
  11352. ]
  11353. ))
  11354. characterMakers.push(() => makeCharacter(
  11355. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11356. {
  11357. front: {
  11358. height: math.unit(6, "feet"),
  11359. weight: math.unit(150, "lb"),
  11360. name: "Front",
  11361. image: {
  11362. source: "./media/characters/blü/front.svg",
  11363. extra: 1883 / 1564,
  11364. bottom: 0.031
  11365. }
  11366. },
  11367. },
  11368. [
  11369. {
  11370. name: "Normal",
  11371. height: math.unit(13, "feet"),
  11372. default: true
  11373. },
  11374. {
  11375. name: "Big Boi",
  11376. height: math.unit(150, "meters")
  11377. },
  11378. {
  11379. name: "Mini Stomper",
  11380. height: math.unit(300, "meters")
  11381. },
  11382. {
  11383. name: "Macro",
  11384. height: math.unit(1000, "meters")
  11385. },
  11386. {
  11387. name: "Megamacro",
  11388. height: math.unit(11000, "meters")
  11389. },
  11390. {
  11391. name: "Gigamacro",
  11392. height: math.unit(11000, "km")
  11393. },
  11394. {
  11395. name: "Teramacro",
  11396. height: math.unit(420000, "km")
  11397. },
  11398. {
  11399. name: "Examacro",
  11400. height: math.unit(120, "parsecs")
  11401. },
  11402. {
  11403. name: "God Tho",
  11404. height: math.unit(98000000000, "parsecs")
  11405. },
  11406. ]
  11407. ))
  11408. characterMakers.push(() => makeCharacter(
  11409. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11410. {
  11411. taurFront: {
  11412. height: math.unit(6, "feet"),
  11413. weight: math.unit(200, "lb"),
  11414. name: "Taur (Front)",
  11415. image: {
  11416. source: "./media/characters/scales/taur-front.svg",
  11417. extra: 1,
  11418. bottom: 0.05
  11419. }
  11420. },
  11421. taurBack: {
  11422. height: math.unit(6, "feet"),
  11423. weight: math.unit(200, "lb"),
  11424. name: "Taur (Back)",
  11425. image: {
  11426. source: "./media/characters/scales/taur-back.svg",
  11427. extra: 1,
  11428. bottom: 0.08
  11429. }
  11430. },
  11431. anthro: {
  11432. height: math.unit(6 * 7 / 12, "feet"),
  11433. weight: math.unit(100, "lb"),
  11434. name: "Anthro",
  11435. image: {
  11436. source: "./media/characters/scales/anthro.svg",
  11437. extra: 1,
  11438. bottom: 0.06
  11439. }
  11440. },
  11441. },
  11442. [
  11443. {
  11444. name: "Normal",
  11445. height: math.unit(12, "feet"),
  11446. default: true
  11447. },
  11448. ]
  11449. ))
  11450. characterMakers.push(() => makeCharacter(
  11451. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11452. {
  11453. front: {
  11454. height: math.unit(6, "feet"),
  11455. weight: math.unit(150, "lb"),
  11456. name: "Front",
  11457. image: {
  11458. source: "./media/characters/koragos/front.svg",
  11459. extra: 841 / 794,
  11460. bottom: 0.035
  11461. }
  11462. },
  11463. back: {
  11464. height: math.unit(6, "feet"),
  11465. weight: math.unit(150, "lb"),
  11466. name: "Back",
  11467. image: {
  11468. source: "./media/characters/koragos/back.svg",
  11469. extra: 841 / 810,
  11470. bottom: 0.022
  11471. }
  11472. },
  11473. },
  11474. [
  11475. {
  11476. name: "Normal",
  11477. height: math.unit(6 + 11 / 12, "feet"),
  11478. default: true
  11479. },
  11480. {
  11481. name: "Macro",
  11482. height: math.unit(490, "feet")
  11483. },
  11484. {
  11485. name: "Megamacro",
  11486. height: math.unit(10, "miles")
  11487. },
  11488. {
  11489. name: "Gigamacro",
  11490. height: math.unit(50, "miles")
  11491. },
  11492. ]
  11493. ))
  11494. characterMakers.push(() => makeCharacter(
  11495. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11496. {
  11497. front: {
  11498. height: math.unit(6, "feet"),
  11499. weight: math.unit(250, "lb"),
  11500. name: "Front",
  11501. image: {
  11502. source: "./media/characters/xylrem/front.svg",
  11503. extra: 3323 / 3050,
  11504. bottom: 0.065
  11505. }
  11506. },
  11507. },
  11508. [
  11509. {
  11510. name: "Micro",
  11511. height: math.unit(4, "feet")
  11512. },
  11513. {
  11514. name: "Normal",
  11515. height: math.unit(16, "feet"),
  11516. default: true
  11517. },
  11518. {
  11519. name: "Macro",
  11520. height: math.unit(2720, "feet")
  11521. },
  11522. {
  11523. name: "Megamacro",
  11524. height: math.unit(25000, "miles")
  11525. },
  11526. ]
  11527. ))
  11528. characterMakers.push(() => makeCharacter(
  11529. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11530. {
  11531. front: {
  11532. height: math.unit(8, "feet"),
  11533. weight: math.unit(250, "kg"),
  11534. name: "Front",
  11535. image: {
  11536. source: "./media/characters/ikideru/front.svg",
  11537. extra: 930 / 870,
  11538. bottom: 0.087
  11539. }
  11540. },
  11541. back: {
  11542. height: math.unit(8, "feet"),
  11543. weight: math.unit(250, "kg"),
  11544. name: "Back",
  11545. image: {
  11546. source: "./media/characters/ikideru/back.svg",
  11547. extra: 919 / 852,
  11548. bottom: 0.055
  11549. }
  11550. },
  11551. },
  11552. [
  11553. {
  11554. name: "Rare",
  11555. height: math.unit(8, "feet"),
  11556. default: true
  11557. },
  11558. {
  11559. name: "Playful Loom",
  11560. height: math.unit(80, "feet")
  11561. },
  11562. {
  11563. name: "City Leaner",
  11564. height: math.unit(230, "feet")
  11565. },
  11566. {
  11567. name: "Megamacro",
  11568. height: math.unit(2500, "feet")
  11569. },
  11570. {
  11571. name: "Gigamacro",
  11572. height: math.unit(26400, "feet")
  11573. },
  11574. {
  11575. name: "Tectonic Shifter",
  11576. height: math.unit(1.7, "megameters")
  11577. },
  11578. {
  11579. name: "Planet Carer",
  11580. height: math.unit(21, "megameters")
  11581. },
  11582. {
  11583. name: "God",
  11584. height: math.unit(11157.22, "parsecs")
  11585. },
  11586. ]
  11587. ))
  11588. characterMakers.push(() => makeCharacter(
  11589. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11590. {
  11591. front: {
  11592. height: math.unit(6, "feet"),
  11593. weight: math.unit(120, "lb"),
  11594. name: "Front",
  11595. image: {
  11596. source: "./media/characters/neo/front.svg"
  11597. }
  11598. },
  11599. },
  11600. [
  11601. {
  11602. name: "Micro",
  11603. height: math.unit(2, "inches"),
  11604. default: true
  11605. },
  11606. {
  11607. name: "Human Size",
  11608. height: math.unit(5 + 8 / 12, "feet")
  11609. },
  11610. ]
  11611. ))
  11612. characterMakers.push(() => makeCharacter(
  11613. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11614. {
  11615. front: {
  11616. height: math.unit(13 + 10 / 12, "feet"),
  11617. weight: math.unit(5320, "lb"),
  11618. name: "Front",
  11619. image: {
  11620. source: "./media/characters/chauncey-chantz/front.svg",
  11621. extra: 1587 / 1435,
  11622. bottom: 0.02
  11623. }
  11624. },
  11625. },
  11626. [
  11627. {
  11628. name: "Normal",
  11629. height: math.unit(13 + 10 / 12, "feet"),
  11630. default: true
  11631. },
  11632. {
  11633. name: "Macro",
  11634. height: math.unit(45, "feet")
  11635. },
  11636. {
  11637. name: "Megamacro",
  11638. height: math.unit(250, "miles")
  11639. },
  11640. {
  11641. name: "Planetary",
  11642. height: math.unit(10000, "miles")
  11643. },
  11644. {
  11645. name: "Galactic",
  11646. height: math.unit(40000, "parsecs")
  11647. },
  11648. {
  11649. name: "Universal",
  11650. height: math.unit(1, "yottameter")
  11651. },
  11652. ]
  11653. ))
  11654. characterMakers.push(() => makeCharacter(
  11655. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11656. {
  11657. front: {
  11658. height: math.unit(6, "feet"),
  11659. weight: math.unit(150, "lb"),
  11660. name: "Front",
  11661. image: {
  11662. source: "./media/characters/epifox/front.svg",
  11663. extra: 1,
  11664. bottom: 0.075
  11665. }
  11666. },
  11667. },
  11668. [
  11669. {
  11670. name: "Micro",
  11671. height: math.unit(6, "inches")
  11672. },
  11673. {
  11674. name: "Normal",
  11675. height: math.unit(12, "feet"),
  11676. default: true
  11677. },
  11678. {
  11679. name: "Macro",
  11680. height: math.unit(3810, "feet")
  11681. },
  11682. {
  11683. name: "Megamacro",
  11684. height: math.unit(500, "miles")
  11685. },
  11686. ]
  11687. ))
  11688. characterMakers.push(() => makeCharacter(
  11689. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11690. {
  11691. front: {
  11692. height: math.unit(1.8796, "m"),
  11693. weight: math.unit(230, "lb"),
  11694. name: "Front",
  11695. image: {
  11696. source: "./media/characters/colin-t/front.svg",
  11697. extra: 1272 / 1193,
  11698. bottom: 0.07
  11699. }
  11700. },
  11701. },
  11702. [
  11703. {
  11704. name: "Micro",
  11705. height: math.unit(0.571, "meters")
  11706. },
  11707. {
  11708. name: "Normal",
  11709. height: math.unit(1.8796, "meters"),
  11710. default: true
  11711. },
  11712. {
  11713. name: "Tall",
  11714. height: math.unit(4, "meters")
  11715. },
  11716. {
  11717. name: "Macro",
  11718. height: math.unit(67.241, "meters")
  11719. },
  11720. {
  11721. name: "Megamacro",
  11722. height: math.unit(371.856, "meters")
  11723. },
  11724. {
  11725. name: "Planetary",
  11726. height: math.unit(12631.5689, "km")
  11727. },
  11728. ]
  11729. ))
  11730. characterMakers.push(() => makeCharacter(
  11731. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11732. {
  11733. front: {
  11734. height: math.unit(1.85, "meters"),
  11735. weight: math.unit(80, "kg"),
  11736. name: "Front",
  11737. image: {
  11738. source: "./media/characters/matvei/front.svg",
  11739. extra: 614 / 594,
  11740. bottom: 0.01
  11741. }
  11742. },
  11743. },
  11744. [
  11745. {
  11746. name: "Normal",
  11747. height: math.unit(1.85, "meters"),
  11748. default: true
  11749. },
  11750. ]
  11751. ))
  11752. characterMakers.push(() => makeCharacter(
  11753. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11754. {
  11755. front: {
  11756. height: math.unit(5 + 9 / 12, "feet"),
  11757. weight: math.unit(70, "lb"),
  11758. name: "Front",
  11759. image: {
  11760. source: "./media/characters/quincy/front.svg",
  11761. extra: 3041 / 2751
  11762. }
  11763. },
  11764. back: {
  11765. height: math.unit(5 + 9 / 12, "feet"),
  11766. weight: math.unit(70, "lb"),
  11767. name: "Back",
  11768. image: {
  11769. source: "./media/characters/quincy/back.svg",
  11770. extra: 3041 / 2751
  11771. }
  11772. },
  11773. flying: {
  11774. height: math.unit(5 + 4 / 12, "feet"),
  11775. weight: math.unit(70, "lb"),
  11776. name: "Flying",
  11777. image: {
  11778. source: "./media/characters/quincy/flying.svg",
  11779. extra: 1044 / 930
  11780. }
  11781. },
  11782. },
  11783. [
  11784. {
  11785. name: "Micro",
  11786. height: math.unit(3, "cm")
  11787. },
  11788. {
  11789. name: "Normal",
  11790. height: math.unit(5 + 9 / 12, "feet")
  11791. },
  11792. {
  11793. name: "Macro",
  11794. height: math.unit(200, "meters"),
  11795. default: true
  11796. },
  11797. {
  11798. name: "Megamacro",
  11799. height: math.unit(1000, "meters")
  11800. },
  11801. ]
  11802. ))
  11803. characterMakers.push(() => makeCharacter(
  11804. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11805. {
  11806. front: {
  11807. height: math.unit(3 + 11/12, "feet"),
  11808. weight: math.unit(50, "lb"),
  11809. name: "Front",
  11810. image: {
  11811. source: "./media/characters/vanrel/front.svg",
  11812. extra: 1104/949,
  11813. bottom: 52/1156
  11814. }
  11815. },
  11816. back: {
  11817. height: math.unit(3 + 11/12, "feet"),
  11818. weight: math.unit(50, "lb"),
  11819. name: "Back",
  11820. image: {
  11821. source: "./media/characters/vanrel/back.svg",
  11822. extra: 1119/976,
  11823. bottom: 37/1156
  11824. }
  11825. },
  11826. tome: {
  11827. height: math.unit(1.35, "feet"),
  11828. weight: math.unit(10, "lb"),
  11829. name: "Vanrel's Tome",
  11830. rename: true,
  11831. image: {
  11832. source: "./media/characters/vanrel/tome.svg"
  11833. }
  11834. },
  11835. beans: {
  11836. height: math.unit(0.89, "feet"),
  11837. name: "Beans",
  11838. image: {
  11839. source: "./media/characters/vanrel/beans.svg"
  11840. }
  11841. },
  11842. },
  11843. [
  11844. {
  11845. name: "Normal",
  11846. height: math.unit(3 + 11/12, "feet"),
  11847. default: true
  11848. },
  11849. ]
  11850. ))
  11851. characterMakers.push(() => makeCharacter(
  11852. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11853. {
  11854. front: {
  11855. height: math.unit(7 + 5 / 12, "feet"),
  11856. name: "Front",
  11857. image: {
  11858. source: "./media/characters/kuiper-vanrel/front.svg",
  11859. extra: 1219/1169,
  11860. bottom: 69/1288
  11861. }
  11862. },
  11863. back: {
  11864. height: math.unit(7 + 5 / 12, "feet"),
  11865. name: "Back",
  11866. image: {
  11867. source: "./media/characters/kuiper-vanrel/back.svg",
  11868. extra: 1236/1193,
  11869. bottom: 27/1263
  11870. }
  11871. },
  11872. foot: {
  11873. height: math.unit(0.55, "meters"),
  11874. name: "Foot",
  11875. image: {
  11876. source: "./media/characters/kuiper-vanrel/foot.svg",
  11877. }
  11878. },
  11879. battle: {
  11880. height: math.unit(6.824, "feet"),
  11881. name: "Battle",
  11882. image: {
  11883. source: "./media/characters/kuiper-vanrel/battle.svg",
  11884. extra: 1466 / 1327,
  11885. bottom: 29 / 1492.5
  11886. }
  11887. },
  11888. },
  11889. [
  11890. {
  11891. name: "Normal",
  11892. height: math.unit(7 + 5 / 12, "feet"),
  11893. default: true
  11894. },
  11895. ]
  11896. ))
  11897. characterMakers.push(() => makeCharacter(
  11898. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11899. {
  11900. front: {
  11901. height: math.unit(8 + 5 / 12, "feet"),
  11902. name: "Front",
  11903. image: {
  11904. source: "./media/characters/keset-vanrel/front.svg",
  11905. extra: 1231/1148,
  11906. bottom: 82/1313
  11907. }
  11908. },
  11909. back: {
  11910. height: math.unit(8 + 5 / 12, "feet"),
  11911. name: "Back",
  11912. image: {
  11913. source: "./media/characters/keset-vanrel/back.svg",
  11914. extra: 1240/1174,
  11915. bottom: 33/1273
  11916. }
  11917. },
  11918. hand: {
  11919. height: math.unit(0.6, "meters"),
  11920. name: "Hand",
  11921. image: {
  11922. source: "./media/characters/keset-vanrel/hand.svg"
  11923. }
  11924. },
  11925. foot: {
  11926. height: math.unit(0.94978, "meters"),
  11927. name: "Foot",
  11928. image: {
  11929. source: "./media/characters/keset-vanrel/foot.svg"
  11930. }
  11931. },
  11932. battle: {
  11933. height: math.unit(7.408, "feet"),
  11934. name: "Battle",
  11935. image: {
  11936. source: "./media/characters/keset-vanrel/battle.svg",
  11937. extra: 1890 / 1386,
  11938. bottom: 73.28 / 1970
  11939. }
  11940. },
  11941. },
  11942. [
  11943. {
  11944. name: "Normal",
  11945. height: math.unit(8 + 5 / 12, "feet"),
  11946. default: true
  11947. },
  11948. ]
  11949. ))
  11950. characterMakers.push(() => makeCharacter(
  11951. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11952. {
  11953. front: {
  11954. height: math.unit(6, "feet"),
  11955. weight: math.unit(150, "lb"),
  11956. name: "Front",
  11957. image: {
  11958. source: "./media/characters/neos/front.svg",
  11959. extra: 1696 / 992,
  11960. bottom: 0.14
  11961. }
  11962. },
  11963. },
  11964. [
  11965. {
  11966. name: "Normal",
  11967. height: math.unit(54, "cm"),
  11968. default: true
  11969. },
  11970. {
  11971. name: "Macro",
  11972. height: math.unit(100, "m")
  11973. },
  11974. {
  11975. name: "Megamacro",
  11976. height: math.unit(10, "km")
  11977. },
  11978. {
  11979. name: "Megamacro+",
  11980. height: math.unit(100, "km")
  11981. },
  11982. {
  11983. name: "Gigamacro",
  11984. height: math.unit(100, "Mm")
  11985. },
  11986. {
  11987. name: "Teramacro",
  11988. height: math.unit(100, "Gm")
  11989. },
  11990. {
  11991. name: "Examacro",
  11992. height: math.unit(100, "Em")
  11993. },
  11994. {
  11995. name: "Godly",
  11996. height: math.unit(10000, "Ym")
  11997. },
  11998. {
  11999. name: "Beyond Godly",
  12000. height: math.unit(25, "multiverses")
  12001. },
  12002. ]
  12003. ))
  12004. characterMakers.push(() => makeCharacter(
  12005. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12006. {
  12007. feminine: {
  12008. height: math.unit(5, "feet"),
  12009. weight: math.unit(100, "lb"),
  12010. name: "Feminine",
  12011. image: {
  12012. source: "./media/characters/sammy-mouse/feminine.svg",
  12013. extra: 2526 / 2425,
  12014. bottom: 0.123
  12015. }
  12016. },
  12017. masculine: {
  12018. height: math.unit(5, "feet"),
  12019. weight: math.unit(100, "lb"),
  12020. name: "Masculine",
  12021. image: {
  12022. source: "./media/characters/sammy-mouse/masculine.svg",
  12023. extra: 2526 / 2425,
  12024. bottom: 0.123
  12025. }
  12026. },
  12027. },
  12028. [
  12029. {
  12030. name: "Micro",
  12031. height: math.unit(5, "inches")
  12032. },
  12033. {
  12034. name: "Normal",
  12035. height: math.unit(5, "feet"),
  12036. default: true
  12037. },
  12038. {
  12039. name: "Macro",
  12040. height: math.unit(60, "feet")
  12041. },
  12042. ]
  12043. ))
  12044. characterMakers.push(() => makeCharacter(
  12045. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12046. {
  12047. front: {
  12048. height: math.unit(4, "feet"),
  12049. weight: math.unit(50, "lb"),
  12050. name: "Front",
  12051. image: {
  12052. source: "./media/characters/kole/front.svg",
  12053. extra: 1423 / 1303,
  12054. bottom: 0.025
  12055. }
  12056. },
  12057. back: {
  12058. height: math.unit(4, "feet"),
  12059. weight: math.unit(50, "lb"),
  12060. name: "Back",
  12061. image: {
  12062. source: "./media/characters/kole/back.svg",
  12063. extra: 1426 / 1280,
  12064. bottom: 0.02
  12065. }
  12066. },
  12067. },
  12068. [
  12069. {
  12070. name: "Normal",
  12071. height: math.unit(4, "feet"),
  12072. default: true
  12073. },
  12074. ]
  12075. ))
  12076. characterMakers.push(() => makeCharacter(
  12077. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12078. {
  12079. front: {
  12080. height: math.unit(2.5, "feet"),
  12081. weight: math.unit(32, "lb"),
  12082. name: "Front",
  12083. image: {
  12084. source: "./media/characters/rufran/front.svg",
  12085. extra: 1313/885,
  12086. bottom: 94/1407
  12087. }
  12088. },
  12089. side: {
  12090. height: math.unit(2.5, "feet"),
  12091. weight: math.unit(32, "lb"),
  12092. name: "Side",
  12093. image: {
  12094. source: "./media/characters/rufran/side.svg",
  12095. extra: 1109/852,
  12096. bottom: 118/1227
  12097. }
  12098. },
  12099. back: {
  12100. height: math.unit(2.5, "feet"),
  12101. weight: math.unit(32, "lb"),
  12102. name: "Back",
  12103. image: {
  12104. source: "./media/characters/rufran/back.svg",
  12105. extra: 1280/878,
  12106. bottom: 131/1411
  12107. }
  12108. },
  12109. mouth: {
  12110. height: math.unit(1.13, "feet"),
  12111. name: "Mouth",
  12112. image: {
  12113. source: "./media/characters/rufran/mouth.svg"
  12114. }
  12115. },
  12116. foot: {
  12117. height: math.unit(1.33, "feet"),
  12118. name: "Foot",
  12119. image: {
  12120. source: "./media/characters/rufran/foot.svg"
  12121. }
  12122. },
  12123. koboldFront: {
  12124. height: math.unit(2 + 6 / 12, "feet"),
  12125. weight: math.unit(20, "lb"),
  12126. name: "Front (Kobold)",
  12127. image: {
  12128. source: "./media/characters/rufran/kobold-front.svg",
  12129. extra: 2041 / 1839,
  12130. bottom: 0.055
  12131. }
  12132. },
  12133. koboldBack: {
  12134. height: math.unit(2 + 6 / 12, "feet"),
  12135. weight: math.unit(20, "lb"),
  12136. name: "Back (Kobold)",
  12137. image: {
  12138. source: "./media/characters/rufran/kobold-back.svg",
  12139. extra: 2054 / 1839,
  12140. bottom: 0.01
  12141. }
  12142. },
  12143. koboldHand: {
  12144. height: math.unit(0.2166, "meters"),
  12145. name: "Hand (Kobold)",
  12146. image: {
  12147. source: "./media/characters/rufran/kobold-hand.svg"
  12148. }
  12149. },
  12150. koboldFoot: {
  12151. height: math.unit(0.185, "meters"),
  12152. name: "Foot (Kobold)",
  12153. image: {
  12154. source: "./media/characters/rufran/kobold-foot.svg"
  12155. }
  12156. },
  12157. },
  12158. [
  12159. {
  12160. name: "Micro",
  12161. height: math.unit(1, "inch")
  12162. },
  12163. {
  12164. name: "Normal",
  12165. height: math.unit(2 + 6 / 12, "feet"),
  12166. default: true
  12167. },
  12168. {
  12169. name: "Big",
  12170. height: math.unit(60, "feet")
  12171. },
  12172. {
  12173. name: "Macro",
  12174. height: math.unit(325, "feet")
  12175. },
  12176. ]
  12177. ))
  12178. characterMakers.push(() => makeCharacter(
  12179. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12180. {
  12181. front: {
  12182. height: math.unit(0.3, "meters"),
  12183. weight: math.unit(3.5, "kg"),
  12184. name: "Front",
  12185. image: {
  12186. source: "./media/characters/chip/front.svg",
  12187. extra: 748 / 674
  12188. }
  12189. },
  12190. },
  12191. [
  12192. {
  12193. name: "Micro",
  12194. height: math.unit(1, "inch"),
  12195. default: true
  12196. },
  12197. ]
  12198. ))
  12199. characterMakers.push(() => makeCharacter(
  12200. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12201. {
  12202. side: {
  12203. height: math.unit(2.3, "meters"),
  12204. weight: math.unit(3500, "lb"),
  12205. name: "Side",
  12206. image: {
  12207. source: "./media/characters/torvid/side.svg",
  12208. extra: 1972 / 722,
  12209. bottom: 0.035
  12210. }
  12211. },
  12212. },
  12213. [
  12214. {
  12215. name: "Normal",
  12216. height: math.unit(2.3, "meters"),
  12217. default: true
  12218. },
  12219. ]
  12220. ))
  12221. characterMakers.push(() => makeCharacter(
  12222. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12223. {
  12224. front: {
  12225. height: math.unit(2, "meters"),
  12226. weight: math.unit(150.5, "kg"),
  12227. name: "Front",
  12228. image: {
  12229. source: "./media/characters/susan/front.svg",
  12230. extra: 693 / 635,
  12231. bottom: 0.05
  12232. }
  12233. },
  12234. },
  12235. [
  12236. {
  12237. name: "Megamacro",
  12238. height: math.unit(505, "miles"),
  12239. default: true
  12240. },
  12241. ]
  12242. ))
  12243. characterMakers.push(() => makeCharacter(
  12244. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12245. {
  12246. front: {
  12247. height: math.unit(6, "feet"),
  12248. weight: math.unit(150, "lb"),
  12249. name: "Front",
  12250. image: {
  12251. source: "./media/characters/raindrops/front.svg",
  12252. extra: 2655 / 2461,
  12253. bottom: 49 / 2705
  12254. }
  12255. },
  12256. back: {
  12257. height: math.unit(6, "feet"),
  12258. weight: math.unit(150, "lb"),
  12259. name: "Back",
  12260. image: {
  12261. source: "./media/characters/raindrops/back.svg",
  12262. extra: 2574 / 2400,
  12263. bottom: 65 / 2634
  12264. }
  12265. },
  12266. },
  12267. [
  12268. {
  12269. name: "Micro",
  12270. height: math.unit(6, "inches")
  12271. },
  12272. {
  12273. name: "Normal",
  12274. height: math.unit(6 + 2 / 12, "feet")
  12275. },
  12276. {
  12277. name: "Macro",
  12278. height: math.unit(131, "feet"),
  12279. default: true
  12280. },
  12281. {
  12282. name: "Megamacro",
  12283. height: math.unit(15, "miles")
  12284. },
  12285. {
  12286. name: "Gigamacro",
  12287. height: math.unit(4000, "miles")
  12288. },
  12289. {
  12290. name: "Teramacro",
  12291. height: math.unit(315000, "miles")
  12292. },
  12293. ]
  12294. ))
  12295. characterMakers.push(() => makeCharacter(
  12296. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12297. {
  12298. front: {
  12299. height: math.unit(2.794, "meters"),
  12300. weight: math.unit(325, "kg"),
  12301. name: "Front",
  12302. image: {
  12303. source: "./media/characters/tezwa/front.svg",
  12304. extra: 2083 / 1906,
  12305. bottom: 0.031
  12306. }
  12307. },
  12308. foot: {
  12309. height: math.unit(0.687, "meters"),
  12310. name: "Foot",
  12311. image: {
  12312. source: "./media/characters/tezwa/foot.svg"
  12313. }
  12314. },
  12315. },
  12316. [
  12317. {
  12318. name: "Normal",
  12319. height: math.unit(9 + 2 / 12, "feet"),
  12320. default: true
  12321. },
  12322. ]
  12323. ))
  12324. characterMakers.push(() => makeCharacter(
  12325. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12326. {
  12327. front: {
  12328. height: math.unit(58, "feet"),
  12329. weight: math.unit(89000, "lb"),
  12330. name: "Front",
  12331. image: {
  12332. source: "./media/characters/typhus/front.svg",
  12333. extra: 816 / 800,
  12334. bottom: 0.065
  12335. }
  12336. },
  12337. },
  12338. [
  12339. {
  12340. name: "Macro",
  12341. height: math.unit(58, "feet"),
  12342. default: true
  12343. },
  12344. ]
  12345. ))
  12346. characterMakers.push(() => makeCharacter(
  12347. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12348. {
  12349. front: {
  12350. height: math.unit(12, "feet"),
  12351. weight: math.unit(6, "tonnes"),
  12352. name: "Front",
  12353. image: {
  12354. source: "./media/characters/lyra-von-wulf/front.svg",
  12355. extra: 1,
  12356. bottom: 0.10
  12357. }
  12358. },
  12359. frontMecha: {
  12360. height: math.unit(12, "feet"),
  12361. weight: math.unit(12, "tonnes"),
  12362. name: "Front (Mecha)",
  12363. image: {
  12364. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12365. extra: 1,
  12366. bottom: 0.042
  12367. }
  12368. },
  12369. maw: {
  12370. height: math.unit(2.2, "feet"),
  12371. name: "Maw",
  12372. image: {
  12373. source: "./media/characters/lyra-von-wulf/maw.svg"
  12374. }
  12375. },
  12376. },
  12377. [
  12378. {
  12379. name: "Normal",
  12380. height: math.unit(12, "feet"),
  12381. default: true
  12382. },
  12383. {
  12384. name: "Classic",
  12385. height: math.unit(50, "feet")
  12386. },
  12387. {
  12388. name: "Macro",
  12389. height: math.unit(500, "feet")
  12390. },
  12391. {
  12392. name: "Megamacro",
  12393. height: math.unit(1, "mile")
  12394. },
  12395. {
  12396. name: "Gigamacro",
  12397. height: math.unit(400, "miles")
  12398. },
  12399. {
  12400. name: "Teramacro",
  12401. height: math.unit(22000, "miles")
  12402. },
  12403. {
  12404. name: "Solarmacro",
  12405. height: math.unit(8600000, "miles")
  12406. },
  12407. {
  12408. name: "Galactic",
  12409. height: math.unit(1057000, "lightyears")
  12410. },
  12411. ]
  12412. ))
  12413. characterMakers.push(() => makeCharacter(
  12414. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12415. {
  12416. front: {
  12417. height: math.unit(6 + 10 / 12, "feet"),
  12418. weight: math.unit(150, "lb"),
  12419. name: "Front",
  12420. image: {
  12421. source: "./media/characters/dixon/front.svg",
  12422. extra: 3361 / 3209,
  12423. bottom: 0.01
  12424. }
  12425. },
  12426. },
  12427. [
  12428. {
  12429. name: "Normal",
  12430. height: math.unit(6 + 10 / 12, "feet"),
  12431. default: true
  12432. },
  12433. {
  12434. name: "Big",
  12435. height: math.unit(12, "meters")
  12436. },
  12437. {
  12438. name: "Macro",
  12439. height: math.unit(500, "meters")
  12440. },
  12441. {
  12442. name: "Megamacro",
  12443. height: math.unit(2, "km")
  12444. },
  12445. ]
  12446. ))
  12447. characterMakers.push(() => makeCharacter(
  12448. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12449. {
  12450. front: {
  12451. height: math.unit(185, "cm"),
  12452. weight: math.unit(68, "kg"),
  12453. name: "Front",
  12454. image: {
  12455. source: "./media/characters/kauko/front.svg",
  12456. extra: 1455 / 1421,
  12457. bottom: 0.03
  12458. }
  12459. },
  12460. back: {
  12461. height: math.unit(185, "cm"),
  12462. weight: math.unit(68, "kg"),
  12463. name: "Back",
  12464. image: {
  12465. source: "./media/characters/kauko/back.svg",
  12466. extra: 1455 / 1421,
  12467. bottom: 0.004
  12468. }
  12469. },
  12470. },
  12471. [
  12472. {
  12473. name: "Normal",
  12474. height: math.unit(185, "cm"),
  12475. default: true
  12476. },
  12477. ]
  12478. ))
  12479. characterMakers.push(() => makeCharacter(
  12480. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12481. {
  12482. front: {
  12483. height: math.unit(6, "feet"),
  12484. weight: math.unit(150, "kg"),
  12485. name: "Front",
  12486. image: {
  12487. source: "./media/characters/varg/front.svg",
  12488. extra: 1108 / 1018,
  12489. bottom: 0.0375
  12490. }
  12491. },
  12492. },
  12493. [
  12494. {
  12495. name: "Normal",
  12496. height: math.unit(5, "meters")
  12497. },
  12498. {
  12499. name: "Macro",
  12500. height: math.unit(200, "meters")
  12501. },
  12502. {
  12503. name: "Megamacro",
  12504. height: math.unit(20, "kilometers")
  12505. },
  12506. {
  12507. name: "True Size",
  12508. height: math.unit(211, "km"),
  12509. default: true
  12510. },
  12511. {
  12512. name: "Gigamacro",
  12513. height: math.unit(1000, "km")
  12514. },
  12515. {
  12516. name: "Gigamacro+",
  12517. height: math.unit(8000, "km")
  12518. },
  12519. {
  12520. name: "Teramacro",
  12521. height: math.unit(1000000, "km")
  12522. },
  12523. ]
  12524. ))
  12525. characterMakers.push(() => makeCharacter(
  12526. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12527. {
  12528. front: {
  12529. height: math.unit(7 + 7 / 12, "feet"),
  12530. weight: math.unit(267, "lb"),
  12531. name: "Front",
  12532. image: {
  12533. source: "./media/characters/dayza/front.svg",
  12534. extra: 1262 / 1200,
  12535. bottom: 0.035
  12536. }
  12537. },
  12538. side: {
  12539. height: math.unit(7 + 7 / 12, "feet"),
  12540. weight: math.unit(267, "lb"),
  12541. name: "Side",
  12542. image: {
  12543. source: "./media/characters/dayza/side.svg",
  12544. extra: 1295 / 1245,
  12545. bottom: 0.05
  12546. }
  12547. },
  12548. back: {
  12549. height: math.unit(7 + 7 / 12, "feet"),
  12550. weight: math.unit(267, "lb"),
  12551. name: "Back",
  12552. image: {
  12553. source: "./media/characters/dayza/back.svg",
  12554. extra: 1241 / 1170
  12555. }
  12556. },
  12557. },
  12558. [
  12559. {
  12560. name: "Normal",
  12561. height: math.unit(7 + 7 / 12, "feet"),
  12562. default: true
  12563. },
  12564. {
  12565. name: "Macro",
  12566. height: math.unit(155, "feet")
  12567. },
  12568. ]
  12569. ))
  12570. characterMakers.push(() => makeCharacter(
  12571. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12572. {
  12573. front: {
  12574. height: math.unit(6 + 5 / 12, "feet"),
  12575. weight: math.unit(160, "lb"),
  12576. name: "Front",
  12577. image: {
  12578. source: "./media/characters/xanthos/front.svg",
  12579. extra: 1,
  12580. bottom: 0.04
  12581. }
  12582. },
  12583. back: {
  12584. height: math.unit(6 + 5 / 12, "feet"),
  12585. weight: math.unit(160, "lb"),
  12586. name: "Back",
  12587. image: {
  12588. source: "./media/characters/xanthos/back.svg",
  12589. extra: 1,
  12590. bottom: 0.03
  12591. }
  12592. },
  12593. hand: {
  12594. height: math.unit(0.928, "feet"),
  12595. name: "Hand",
  12596. image: {
  12597. source: "./media/characters/xanthos/hand.svg"
  12598. }
  12599. },
  12600. foot: {
  12601. height: math.unit(1.286, "feet"),
  12602. name: "Foot",
  12603. image: {
  12604. source: "./media/characters/xanthos/foot.svg"
  12605. }
  12606. },
  12607. },
  12608. [
  12609. {
  12610. name: "Normal",
  12611. height: math.unit(6 + 5 / 12, "feet"),
  12612. default: true
  12613. },
  12614. {
  12615. name: "Normal+",
  12616. height: math.unit(6, "meters")
  12617. },
  12618. {
  12619. name: "Macro",
  12620. height: math.unit(40, "feet")
  12621. },
  12622. {
  12623. name: "Macro+",
  12624. height: math.unit(200, "meters")
  12625. },
  12626. {
  12627. name: "Megamacro",
  12628. height: math.unit(20, "km")
  12629. },
  12630. {
  12631. name: "Megamacro+",
  12632. height: math.unit(100, "km")
  12633. },
  12634. ]
  12635. ))
  12636. characterMakers.push(() => makeCharacter(
  12637. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12638. {
  12639. front: {
  12640. height: math.unit(6 + 3 / 12, "feet"),
  12641. weight: math.unit(215, "lb"),
  12642. name: "Front",
  12643. image: {
  12644. source: "./media/characters/grynn/front.svg",
  12645. extra: 4627 / 4209,
  12646. bottom: 0.047
  12647. }
  12648. },
  12649. },
  12650. [
  12651. {
  12652. name: "Micro",
  12653. height: math.unit(6, "inches")
  12654. },
  12655. {
  12656. name: "Normal",
  12657. height: math.unit(6 + 3 / 12, "feet"),
  12658. default: true
  12659. },
  12660. {
  12661. name: "Big",
  12662. height: math.unit(104, "feet")
  12663. },
  12664. {
  12665. name: "Macro",
  12666. height: math.unit(944, "feet")
  12667. },
  12668. {
  12669. name: "Macro+",
  12670. height: math.unit(9480, "feet")
  12671. },
  12672. {
  12673. name: "Megamacro",
  12674. height: math.unit(78752, "feet")
  12675. },
  12676. {
  12677. name: "Megamacro+",
  12678. height: math.unit(630128, "feet")
  12679. },
  12680. {
  12681. name: "Megamacro++",
  12682. height: math.unit(3150695, "feet")
  12683. },
  12684. ]
  12685. ))
  12686. characterMakers.push(() => makeCharacter(
  12687. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12688. {
  12689. front: {
  12690. height: math.unit(7 + 5 / 12, "feet"),
  12691. weight: math.unit(450, "lb"),
  12692. name: "Front",
  12693. image: {
  12694. source: "./media/characters/mocha-aura/front.svg",
  12695. extra: 1907 / 1817,
  12696. bottom: 0.04
  12697. }
  12698. },
  12699. back: {
  12700. height: math.unit(7 + 5 / 12, "feet"),
  12701. weight: math.unit(450, "lb"),
  12702. name: "Back",
  12703. image: {
  12704. source: "./media/characters/mocha-aura/back.svg",
  12705. extra: 1900 / 1825,
  12706. bottom: 0.045
  12707. }
  12708. },
  12709. },
  12710. [
  12711. {
  12712. name: "Nano",
  12713. height: math.unit(1, "nm")
  12714. },
  12715. {
  12716. name: "Megamicro",
  12717. height: math.unit(1, "mm")
  12718. },
  12719. {
  12720. name: "Micro",
  12721. height: math.unit(3, "inches")
  12722. },
  12723. {
  12724. name: "Normal",
  12725. height: math.unit(7 + 5 / 12, "feet"),
  12726. default: true
  12727. },
  12728. {
  12729. name: "Macro",
  12730. height: math.unit(30, "feet")
  12731. },
  12732. {
  12733. name: "Megamacro",
  12734. height: math.unit(3500, "feet")
  12735. },
  12736. {
  12737. name: "Teramacro",
  12738. height: math.unit(500000, "miles")
  12739. },
  12740. {
  12741. name: "Petamacro",
  12742. height: math.unit(50000000000000000, "parsecs")
  12743. },
  12744. ]
  12745. ))
  12746. characterMakers.push(() => makeCharacter(
  12747. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12748. {
  12749. front: {
  12750. height: math.unit(6, "feet"),
  12751. weight: math.unit(150, "lb"),
  12752. name: "Front",
  12753. image: {
  12754. source: "./media/characters/ilisha-devya/front.svg",
  12755. extra: 1,
  12756. bottom: 0.175
  12757. }
  12758. },
  12759. back: {
  12760. height: math.unit(6, "feet"),
  12761. weight: math.unit(150, "lb"),
  12762. name: "Back",
  12763. image: {
  12764. source: "./media/characters/ilisha-devya/back.svg",
  12765. extra: 1,
  12766. bottom: 0.015
  12767. }
  12768. },
  12769. },
  12770. [
  12771. {
  12772. name: "Macro",
  12773. height: math.unit(500, "feet"),
  12774. default: true
  12775. },
  12776. {
  12777. name: "Megamacro",
  12778. height: math.unit(10, "miles")
  12779. },
  12780. {
  12781. name: "Gigamacro",
  12782. height: math.unit(100000, "miles")
  12783. },
  12784. {
  12785. name: "Examacro",
  12786. height: math.unit(1e9, "lightyears")
  12787. },
  12788. {
  12789. name: "Omniversal",
  12790. height: math.unit(1e33, "lightyears")
  12791. },
  12792. {
  12793. name: "Beyond Infinite",
  12794. height: math.unit(1e100, "lightyears")
  12795. },
  12796. ]
  12797. ))
  12798. characterMakers.push(() => makeCharacter(
  12799. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12800. {
  12801. Side: {
  12802. height: math.unit(6, "feet"),
  12803. weight: math.unit(150, "lb"),
  12804. name: "Side",
  12805. image: {
  12806. source: "./media/characters/mira/side.svg",
  12807. extra: 900 / 799,
  12808. bottom: 0.02
  12809. }
  12810. },
  12811. },
  12812. [
  12813. {
  12814. name: "Human Size",
  12815. height: math.unit(6, "feet")
  12816. },
  12817. {
  12818. name: "Macro",
  12819. height: math.unit(100, "feet"),
  12820. default: true
  12821. },
  12822. {
  12823. name: "Megamacro",
  12824. height: math.unit(10, "miles")
  12825. },
  12826. {
  12827. name: "Gigamacro",
  12828. height: math.unit(25000, "miles")
  12829. },
  12830. {
  12831. name: "Teramacro",
  12832. height: math.unit(300, "AU")
  12833. },
  12834. {
  12835. name: "Full Size",
  12836. height: math.unit(4.5e10, "lightyears")
  12837. },
  12838. ]
  12839. ))
  12840. characterMakers.push(() => makeCharacter(
  12841. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12842. {
  12843. front: {
  12844. height: math.unit(6, "feet"),
  12845. weight: math.unit(150, "lb"),
  12846. name: "Front",
  12847. image: {
  12848. source: "./media/characters/holly/front.svg",
  12849. extra: 639 / 606
  12850. }
  12851. },
  12852. back: {
  12853. height: math.unit(6, "feet"),
  12854. weight: math.unit(150, "lb"),
  12855. name: "Back",
  12856. image: {
  12857. source: "./media/characters/holly/back.svg",
  12858. extra: 623 / 598
  12859. }
  12860. },
  12861. frontWorking: {
  12862. height: math.unit(6, "feet"),
  12863. weight: math.unit(150, "lb"),
  12864. name: "Front (Working)",
  12865. image: {
  12866. source: "./media/characters/holly/front-working.svg",
  12867. extra: 607 / 577,
  12868. bottom: 0.048
  12869. }
  12870. },
  12871. },
  12872. [
  12873. {
  12874. name: "Normal",
  12875. height: math.unit(12 + 3 / 12, "feet"),
  12876. default: true
  12877. },
  12878. ]
  12879. ))
  12880. characterMakers.push(() => makeCharacter(
  12881. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12882. {
  12883. front: {
  12884. height: math.unit(6, "feet"),
  12885. weight: math.unit(150, "lb"),
  12886. name: "Front",
  12887. image: {
  12888. source: "./media/characters/porter/front.svg",
  12889. extra: 1,
  12890. bottom: 0.01
  12891. }
  12892. },
  12893. frontRobes: {
  12894. height: math.unit(6, "feet"),
  12895. weight: math.unit(150, "lb"),
  12896. name: "Front (Robes)",
  12897. image: {
  12898. source: "./media/characters/porter/front-robes.svg",
  12899. extra: 1.01,
  12900. bottom: 0.01
  12901. }
  12902. },
  12903. },
  12904. [
  12905. {
  12906. name: "Normal",
  12907. height: math.unit(11 + 9 / 12, "feet"),
  12908. default: true
  12909. },
  12910. ]
  12911. ))
  12912. characterMakers.push(() => makeCharacter(
  12913. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12914. {
  12915. legendary: {
  12916. height: math.unit(6, "feet"),
  12917. weight: math.unit(150, "lb"),
  12918. name: "Legendary",
  12919. image: {
  12920. source: "./media/characters/lucy/legendary.svg",
  12921. extra: 1355 / 1100,
  12922. bottom: 0.045
  12923. }
  12924. },
  12925. },
  12926. [
  12927. {
  12928. name: "Legendary",
  12929. height: math.unit(86882 * 2, "miles"),
  12930. default: true
  12931. },
  12932. ]
  12933. ))
  12934. characterMakers.push(() => makeCharacter(
  12935. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12936. {
  12937. front: {
  12938. height: math.unit(6, "feet"),
  12939. weight: math.unit(150, "lb"),
  12940. name: "Front",
  12941. image: {
  12942. source: "./media/characters/drusilla/front.svg",
  12943. extra: 678 / 635,
  12944. bottom: 0.03
  12945. }
  12946. },
  12947. back: {
  12948. height: math.unit(6, "feet"),
  12949. weight: math.unit(150, "lb"),
  12950. name: "Back",
  12951. image: {
  12952. source: "./media/characters/drusilla/back.svg",
  12953. extra: 678 / 635,
  12954. bottom: 0.005
  12955. }
  12956. },
  12957. },
  12958. [
  12959. {
  12960. name: "Macro",
  12961. height: math.unit(100, "feet")
  12962. },
  12963. {
  12964. name: "Canon Height",
  12965. height: math.unit(2000, "feet"),
  12966. default: true
  12967. },
  12968. ]
  12969. ))
  12970. characterMakers.push(() => makeCharacter(
  12971. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12972. {
  12973. front: {
  12974. height: math.unit(6, "feet"),
  12975. weight: math.unit(180, "lb"),
  12976. name: "Front",
  12977. image: {
  12978. source: "./media/characters/renard-thatch/front.svg",
  12979. extra: 2411 / 2275,
  12980. bottom: 0.01
  12981. }
  12982. },
  12983. frontPosing: {
  12984. height: math.unit(6, "feet"),
  12985. weight: math.unit(180, "lb"),
  12986. name: "Front (Posing)",
  12987. image: {
  12988. source: "./media/characters/renard-thatch/front-posing.svg",
  12989. extra: 2381 / 2261,
  12990. bottom: 0.01
  12991. }
  12992. },
  12993. back: {
  12994. height: math.unit(6, "feet"),
  12995. weight: math.unit(180, "lb"),
  12996. name: "Back",
  12997. image: {
  12998. source: "./media/characters/renard-thatch/back.svg",
  12999. extra: 2428 / 2288
  13000. }
  13001. },
  13002. },
  13003. [
  13004. {
  13005. name: "Micro",
  13006. height: math.unit(3, "inches")
  13007. },
  13008. {
  13009. name: "Default",
  13010. height: math.unit(6, "feet"),
  13011. default: true
  13012. },
  13013. {
  13014. name: "Macro",
  13015. height: math.unit(75, "feet")
  13016. },
  13017. ]
  13018. ))
  13019. characterMakers.push(() => makeCharacter(
  13020. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13021. {
  13022. front: {
  13023. height: math.unit(1450, "feet"),
  13024. weight: math.unit(1.21e6, "tons"),
  13025. name: "Front",
  13026. image: {
  13027. source: "./media/characters/sekvra/front.svg",
  13028. extra: 1,
  13029. bottom: 0.03
  13030. }
  13031. },
  13032. frontClothed: {
  13033. height: math.unit(1450, "feet"),
  13034. weight: math.unit(1.21e6, "tons"),
  13035. name: "Front (Clothed)",
  13036. image: {
  13037. source: "./media/characters/sekvra/front-clothed.svg",
  13038. extra: 1,
  13039. bottom: 0.03
  13040. }
  13041. },
  13042. side: {
  13043. height: math.unit(1450, "feet"),
  13044. weight: math.unit(1.21e6, "tons"),
  13045. name: "Side",
  13046. image: {
  13047. source: "./media/characters/sekvra/side.svg",
  13048. extra: 1,
  13049. bottom: 0.025
  13050. }
  13051. },
  13052. back: {
  13053. height: math.unit(1450, "feet"),
  13054. weight: math.unit(1.21e6, "tons"),
  13055. name: "Back",
  13056. image: {
  13057. source: "./media/characters/sekvra/back.svg",
  13058. extra: 1,
  13059. bottom: 0.005
  13060. }
  13061. },
  13062. },
  13063. [
  13064. {
  13065. name: "Macro",
  13066. height: math.unit(1450, "feet"),
  13067. default: true
  13068. },
  13069. {
  13070. name: "Megamacro",
  13071. height: math.unit(15000, "feet")
  13072. },
  13073. ]
  13074. ))
  13075. characterMakers.push(() => makeCharacter(
  13076. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13077. {
  13078. front: {
  13079. height: math.unit(6, "feet"),
  13080. weight: math.unit(150, "lb"),
  13081. name: "Front",
  13082. image: {
  13083. source: "./media/characters/carmine/front.svg",
  13084. extra: 1,
  13085. bottom: 0.035
  13086. }
  13087. },
  13088. frontArmor: {
  13089. height: math.unit(6, "feet"),
  13090. weight: math.unit(150, "lb"),
  13091. name: "Front (Armor)",
  13092. image: {
  13093. source: "./media/characters/carmine/front-armor.svg",
  13094. extra: 1,
  13095. bottom: 0.035
  13096. }
  13097. },
  13098. },
  13099. [
  13100. {
  13101. name: "Large",
  13102. height: math.unit(1, "mile")
  13103. },
  13104. {
  13105. name: "Huge",
  13106. height: math.unit(40, "miles"),
  13107. default: true
  13108. },
  13109. {
  13110. name: "Colossal",
  13111. height: math.unit(2500, "miles")
  13112. },
  13113. ]
  13114. ))
  13115. characterMakers.push(() => makeCharacter(
  13116. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13117. {
  13118. front: {
  13119. height: math.unit(6, "feet"),
  13120. weight: math.unit(150, "lb"),
  13121. name: "Front",
  13122. image: {
  13123. source: "./media/characters/elyssia/front.svg",
  13124. extra: 2201 / 2035,
  13125. bottom: 0.05
  13126. }
  13127. },
  13128. frontClothed: {
  13129. height: math.unit(6, "feet"),
  13130. weight: math.unit(150, "lb"),
  13131. name: "Front (Clothed)",
  13132. image: {
  13133. source: "./media/characters/elyssia/front-clothed.svg",
  13134. extra: 2201 / 2035,
  13135. bottom: 0.05
  13136. }
  13137. },
  13138. back: {
  13139. height: math.unit(6, "feet"),
  13140. weight: math.unit(150, "lb"),
  13141. name: "Back",
  13142. image: {
  13143. source: "./media/characters/elyssia/back.svg",
  13144. extra: 2201 / 2035,
  13145. bottom: 0.013
  13146. }
  13147. },
  13148. },
  13149. [
  13150. {
  13151. name: "Smaller",
  13152. height: math.unit(150, "feet")
  13153. },
  13154. {
  13155. name: "Standard",
  13156. height: math.unit(1400, "feet"),
  13157. default: true
  13158. },
  13159. {
  13160. name: "Distracted",
  13161. height: math.unit(15000, "feet")
  13162. },
  13163. ]
  13164. ))
  13165. characterMakers.push(() => makeCharacter(
  13166. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13167. {
  13168. front: {
  13169. height: math.unit(7 + 4 / 12, "feet"),
  13170. weight: math.unit(500, "lb"),
  13171. name: "Front",
  13172. image: {
  13173. source: "./media/characters/geno-maxwell/front.svg",
  13174. extra: 2207 / 2040,
  13175. bottom: 0.015
  13176. }
  13177. },
  13178. },
  13179. [
  13180. {
  13181. name: "Micro",
  13182. height: math.unit(3, "inches")
  13183. },
  13184. {
  13185. name: "Normal",
  13186. height: math.unit(7 + 4 / 12, "feet"),
  13187. default: true
  13188. },
  13189. {
  13190. name: "Macro",
  13191. height: math.unit(220, "feet")
  13192. },
  13193. {
  13194. name: "Megamacro",
  13195. height: math.unit(11, "miles")
  13196. },
  13197. ]
  13198. ))
  13199. characterMakers.push(() => makeCharacter(
  13200. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13201. {
  13202. front: {
  13203. height: math.unit(7 + 4 / 12, "feet"),
  13204. weight: math.unit(500, "lb"),
  13205. name: "Front",
  13206. image: {
  13207. source: "./media/characters/regena-maxwell/front.svg",
  13208. extra: 3115 / 2770,
  13209. bottom: 0.02
  13210. }
  13211. },
  13212. },
  13213. [
  13214. {
  13215. name: "Normal",
  13216. height: math.unit(7 + 4 / 12, "feet"),
  13217. default: true
  13218. },
  13219. {
  13220. name: "Macro",
  13221. height: math.unit(220, "feet")
  13222. },
  13223. {
  13224. name: "Megamacro",
  13225. height: math.unit(11, "miles")
  13226. },
  13227. ]
  13228. ))
  13229. characterMakers.push(() => makeCharacter(
  13230. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13231. {
  13232. front: {
  13233. height: math.unit(6, "feet"),
  13234. weight: math.unit(150, "lb"),
  13235. name: "Front",
  13236. image: {
  13237. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13238. extra: 860 / 690,
  13239. bottom: 0.03
  13240. }
  13241. },
  13242. },
  13243. [
  13244. {
  13245. name: "Normal",
  13246. height: math.unit(1.7, "meters"),
  13247. default: true
  13248. },
  13249. ]
  13250. ))
  13251. characterMakers.push(() => makeCharacter(
  13252. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13253. {
  13254. front: {
  13255. height: math.unit(6, "feet"),
  13256. weight: math.unit(150, "lb"),
  13257. name: "Front",
  13258. image: {
  13259. source: "./media/characters/quilly/front.svg",
  13260. extra: 890 / 776
  13261. }
  13262. },
  13263. },
  13264. [
  13265. {
  13266. name: "Gigamacro",
  13267. height: math.unit(404090, "miles"),
  13268. default: true
  13269. },
  13270. ]
  13271. ))
  13272. characterMakers.push(() => makeCharacter(
  13273. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13274. {
  13275. front: {
  13276. height: math.unit(7 + 8 / 12, "feet"),
  13277. weight: math.unit(350, "lb"),
  13278. name: "Front",
  13279. image: {
  13280. source: "./media/characters/tempest/front.svg",
  13281. extra: 1175 / 1086,
  13282. bottom: 0.02
  13283. }
  13284. },
  13285. },
  13286. [
  13287. {
  13288. name: "Normal",
  13289. height: math.unit(7 + 8 / 12, "feet"),
  13290. default: true
  13291. },
  13292. ]
  13293. ))
  13294. characterMakers.push(() => makeCharacter(
  13295. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13296. {
  13297. side: {
  13298. height: math.unit(4 + 5 / 12, "feet"),
  13299. weight: math.unit(80, "lb"),
  13300. name: "Side",
  13301. image: {
  13302. source: "./media/characters/rodger/side.svg",
  13303. extra: 1235 / 1118
  13304. }
  13305. },
  13306. },
  13307. [
  13308. {
  13309. name: "Micro",
  13310. height: math.unit(1, "inch")
  13311. },
  13312. {
  13313. name: "Normal",
  13314. height: math.unit(4 + 5 / 12, "feet"),
  13315. default: true
  13316. },
  13317. {
  13318. name: "Macro",
  13319. height: math.unit(120, "feet")
  13320. },
  13321. ]
  13322. ))
  13323. characterMakers.push(() => makeCharacter(
  13324. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13325. {
  13326. front: {
  13327. height: math.unit(6, "feet"),
  13328. weight: math.unit(150, "lb"),
  13329. name: "Front",
  13330. image: {
  13331. source: "./media/characters/danyel/front.svg",
  13332. extra: 1185 / 1123,
  13333. bottom: 0.05
  13334. }
  13335. },
  13336. },
  13337. [
  13338. {
  13339. name: "Shrunken",
  13340. height: math.unit(0.5, "mm")
  13341. },
  13342. {
  13343. name: "Micro",
  13344. height: math.unit(1, "mm"),
  13345. default: true
  13346. },
  13347. {
  13348. name: "Upsized",
  13349. height: math.unit(5 + 5 / 12, "feet")
  13350. },
  13351. ]
  13352. ))
  13353. characterMakers.push(() => makeCharacter(
  13354. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13355. {
  13356. front: {
  13357. height: math.unit(5 + 6 / 12, "feet"),
  13358. weight: math.unit(200, "lb"),
  13359. name: "Front",
  13360. image: {
  13361. source: "./media/characters/vivian-bijoux/front.svg",
  13362. extra: 1,
  13363. bottom: 0.072
  13364. }
  13365. },
  13366. },
  13367. [
  13368. {
  13369. name: "Normal",
  13370. height: math.unit(5 + 6 / 12, "feet"),
  13371. default: true
  13372. },
  13373. {
  13374. name: "Bad Dream",
  13375. height: math.unit(500, "feet")
  13376. },
  13377. {
  13378. name: "Nightmare",
  13379. height: math.unit(500, "miles")
  13380. },
  13381. ]
  13382. ))
  13383. characterMakers.push(() => makeCharacter(
  13384. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13385. {
  13386. front: {
  13387. height: math.unit(6 + 1 / 12, "feet"),
  13388. weight: math.unit(260, "lb"),
  13389. name: "Front",
  13390. image: {
  13391. source: "./media/characters/zeta/front.svg",
  13392. extra: 1968 / 1889,
  13393. bottom: 0.06
  13394. }
  13395. },
  13396. back: {
  13397. height: math.unit(6 + 1 / 12, "feet"),
  13398. weight: math.unit(260, "lb"),
  13399. name: "Back",
  13400. image: {
  13401. source: "./media/characters/zeta/back.svg",
  13402. extra: 1944 / 1858,
  13403. bottom: 0.03
  13404. }
  13405. },
  13406. hand: {
  13407. height: math.unit(1.112, "feet"),
  13408. name: "Hand",
  13409. image: {
  13410. source: "./media/characters/zeta/hand.svg"
  13411. }
  13412. },
  13413. foot: {
  13414. height: math.unit(1.48, "feet"),
  13415. name: "Foot",
  13416. image: {
  13417. source: "./media/characters/zeta/foot.svg"
  13418. }
  13419. },
  13420. },
  13421. [
  13422. {
  13423. name: "Micro",
  13424. height: math.unit(6, "inches")
  13425. },
  13426. {
  13427. name: "Normal",
  13428. height: math.unit(6 + 1 / 12, "feet"),
  13429. default: true
  13430. },
  13431. {
  13432. name: "Macro",
  13433. height: math.unit(20, "feet")
  13434. },
  13435. ]
  13436. ))
  13437. characterMakers.push(() => makeCharacter(
  13438. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13439. {
  13440. front: {
  13441. height: math.unit(6, "feet"),
  13442. weight: math.unit(150, "lb"),
  13443. name: "Front",
  13444. image: {
  13445. source: "./media/characters/jamie-larsen/front.svg",
  13446. extra: 962 / 933,
  13447. bottom: 0.02
  13448. }
  13449. },
  13450. back: {
  13451. height: math.unit(6, "feet"),
  13452. weight: math.unit(150, "lb"),
  13453. name: "Back",
  13454. image: {
  13455. source: "./media/characters/jamie-larsen/back.svg",
  13456. extra: 997 / 946
  13457. }
  13458. },
  13459. },
  13460. [
  13461. {
  13462. name: "Macro",
  13463. height: math.unit(28 + 7 / 12, "feet"),
  13464. default: true
  13465. },
  13466. {
  13467. name: "Macro+",
  13468. height: math.unit(180, "feet")
  13469. },
  13470. {
  13471. name: "Megamacro",
  13472. height: math.unit(10, "miles")
  13473. },
  13474. {
  13475. name: "Gigamacro",
  13476. height: math.unit(200000, "miles")
  13477. },
  13478. ]
  13479. ))
  13480. characterMakers.push(() => makeCharacter(
  13481. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13482. {
  13483. front: {
  13484. height: math.unit(6, "feet"),
  13485. weight: math.unit(120, "lb"),
  13486. name: "Front",
  13487. image: {
  13488. source: "./media/characters/vance/front.svg",
  13489. extra: 1980 / 1890,
  13490. bottom: 0.09
  13491. }
  13492. },
  13493. back: {
  13494. height: math.unit(6, "feet"),
  13495. weight: math.unit(120, "lb"),
  13496. name: "Back",
  13497. image: {
  13498. source: "./media/characters/vance/back.svg",
  13499. extra: 2081 / 1994,
  13500. bottom: 0.014
  13501. }
  13502. },
  13503. hand: {
  13504. height: math.unit(0.88, "feet"),
  13505. name: "Hand",
  13506. image: {
  13507. source: "./media/characters/vance/hand.svg"
  13508. }
  13509. },
  13510. foot: {
  13511. height: math.unit(0.64, "feet"),
  13512. name: "Foot",
  13513. image: {
  13514. source: "./media/characters/vance/foot.svg"
  13515. }
  13516. },
  13517. },
  13518. [
  13519. {
  13520. name: "Small",
  13521. height: math.unit(90, "feet"),
  13522. default: true
  13523. },
  13524. {
  13525. name: "Macro",
  13526. height: math.unit(100, "meters")
  13527. },
  13528. {
  13529. name: "Megamacro",
  13530. height: math.unit(15, "miles")
  13531. },
  13532. ]
  13533. ))
  13534. characterMakers.push(() => makeCharacter(
  13535. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13536. {
  13537. front: {
  13538. height: math.unit(6, "feet"),
  13539. weight: math.unit(180, "lb"),
  13540. name: "Front",
  13541. image: {
  13542. source: "./media/characters/xochitl/front.svg",
  13543. extra: 2297 / 2261,
  13544. bottom: 0.065
  13545. }
  13546. },
  13547. back: {
  13548. height: math.unit(6, "feet"),
  13549. weight: math.unit(180, "lb"),
  13550. name: "Back",
  13551. image: {
  13552. source: "./media/characters/xochitl/back.svg",
  13553. extra: 2386 / 2354,
  13554. bottom: 0.01
  13555. }
  13556. },
  13557. foot: {
  13558. height: math.unit(6 / 5 * 1.15, "feet"),
  13559. weight: math.unit(150, "lb"),
  13560. name: "Foot",
  13561. image: {
  13562. source: "./media/characters/xochitl/foot.svg"
  13563. }
  13564. },
  13565. },
  13566. [
  13567. {
  13568. name: "Macro",
  13569. height: math.unit(80, "feet")
  13570. },
  13571. {
  13572. name: "Macro+",
  13573. height: math.unit(400, "feet"),
  13574. default: true
  13575. },
  13576. {
  13577. name: "Gigamacro",
  13578. height: math.unit(80000, "miles")
  13579. },
  13580. {
  13581. name: "Gigamacro+",
  13582. height: math.unit(400000, "miles")
  13583. },
  13584. {
  13585. name: "Teramacro",
  13586. height: math.unit(300, "AU")
  13587. },
  13588. ]
  13589. ))
  13590. characterMakers.push(() => makeCharacter(
  13591. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13592. {
  13593. front: {
  13594. height: math.unit(6, "feet"),
  13595. weight: math.unit(150, "lb"),
  13596. name: "Front",
  13597. image: {
  13598. source: "./media/characters/vincent/front.svg",
  13599. extra: 1130 / 1080,
  13600. bottom: 0.055
  13601. }
  13602. },
  13603. beak: {
  13604. height: math.unit(6 * 0.1, "feet"),
  13605. name: "Beak",
  13606. image: {
  13607. source: "./media/characters/vincent/beak.svg"
  13608. }
  13609. },
  13610. hand: {
  13611. height: math.unit(6 * 0.85, "feet"),
  13612. weight: math.unit(150, "lb"),
  13613. name: "Hand",
  13614. image: {
  13615. source: "./media/characters/vincent/hand.svg"
  13616. }
  13617. },
  13618. foot: {
  13619. height: math.unit(6 * 0.19, "feet"),
  13620. weight: math.unit(150, "lb"),
  13621. name: "Foot",
  13622. image: {
  13623. source: "./media/characters/vincent/foot.svg"
  13624. }
  13625. },
  13626. },
  13627. [
  13628. {
  13629. name: "Base",
  13630. height: math.unit(6 + 5 / 12, "feet"),
  13631. default: true
  13632. },
  13633. {
  13634. name: "Macro",
  13635. height: math.unit(300, "feet")
  13636. },
  13637. {
  13638. name: "Megamacro",
  13639. height: math.unit(2, "miles")
  13640. },
  13641. {
  13642. name: "Gigamacro",
  13643. height: math.unit(1000, "miles")
  13644. },
  13645. ]
  13646. ))
  13647. characterMakers.push(() => makeCharacter(
  13648. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13649. {
  13650. front: {
  13651. height: math.unit(2, "meters"),
  13652. weight: math.unit(500, "kg"),
  13653. name: "Front",
  13654. image: {
  13655. source: "./media/characters/coatl/front.svg",
  13656. extra: 3948 / 3500,
  13657. bottom: 0.082
  13658. }
  13659. },
  13660. },
  13661. [
  13662. {
  13663. name: "Normal",
  13664. height: math.unit(4, "meters")
  13665. },
  13666. {
  13667. name: "Macro",
  13668. height: math.unit(100, "meters"),
  13669. default: true
  13670. },
  13671. {
  13672. name: "Macro+",
  13673. height: math.unit(300, "meters")
  13674. },
  13675. {
  13676. name: "Megamacro",
  13677. height: math.unit(3, "gigameters")
  13678. },
  13679. {
  13680. name: "Megamacro+",
  13681. height: math.unit(300, "terameters")
  13682. },
  13683. {
  13684. name: "Megamacro++",
  13685. height: math.unit(3, "lightyears")
  13686. },
  13687. ]
  13688. ))
  13689. characterMakers.push(() => makeCharacter(
  13690. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13691. {
  13692. front: {
  13693. height: math.unit(6, "feet"),
  13694. weight: math.unit(50, "kg"),
  13695. name: "front",
  13696. image: {
  13697. source: "./media/characters/shiroryu/front.svg",
  13698. extra: 1990 / 1935
  13699. }
  13700. },
  13701. },
  13702. [
  13703. {
  13704. name: "Mortal Mingling",
  13705. height: math.unit(3, "meters")
  13706. },
  13707. {
  13708. name: "Kaiju-ish",
  13709. height: math.unit(250, "meters")
  13710. },
  13711. {
  13712. name: "Somewhat Godly",
  13713. height: math.unit(400, "km"),
  13714. default: true
  13715. },
  13716. {
  13717. name: "Planetary",
  13718. height: math.unit(300, "megameters")
  13719. },
  13720. {
  13721. name: "Galaxy-dwarfing",
  13722. height: math.unit(450, "kiloparsecs")
  13723. },
  13724. {
  13725. name: "Universe Eater",
  13726. height: math.unit(150, "gigaparsecs")
  13727. },
  13728. {
  13729. name: "Almost Immeasurable",
  13730. height: math.unit(1.3e266, "yottaparsecs")
  13731. },
  13732. ]
  13733. ))
  13734. characterMakers.push(() => makeCharacter(
  13735. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13736. {
  13737. front: {
  13738. height: math.unit(6, "feet"),
  13739. weight: math.unit(150, "lb"),
  13740. name: "Front",
  13741. image: {
  13742. source: "./media/characters/umeko/front.svg",
  13743. extra: 1,
  13744. bottom: 0.019
  13745. }
  13746. },
  13747. frontArmored: {
  13748. height: math.unit(6, "feet"),
  13749. weight: math.unit(150, "lb"),
  13750. name: "Front (Armored)",
  13751. image: {
  13752. source: "./media/characters/umeko/front-armored.svg",
  13753. extra: 1,
  13754. bottom: 0.021
  13755. }
  13756. },
  13757. },
  13758. [
  13759. {
  13760. name: "Macro",
  13761. height: math.unit(220, "feet"),
  13762. default: true
  13763. },
  13764. {
  13765. name: "Guardian Dragon",
  13766. height: math.unit(50, "miles")
  13767. },
  13768. {
  13769. name: "Cosmic",
  13770. height: math.unit(800000, "miles")
  13771. },
  13772. ]
  13773. ))
  13774. characterMakers.push(() => makeCharacter(
  13775. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13776. {
  13777. front: {
  13778. height: math.unit(6, "feet"),
  13779. weight: math.unit(150, "lb"),
  13780. name: "Front",
  13781. image: {
  13782. source: "./media/characters/cassidy/front.svg",
  13783. extra: 1,
  13784. bottom: 0.043
  13785. }
  13786. },
  13787. },
  13788. [
  13789. {
  13790. name: "Canon Height",
  13791. height: math.unit(120, "feet"),
  13792. default: true
  13793. },
  13794. {
  13795. name: "Macro+",
  13796. height: math.unit(400, "feet")
  13797. },
  13798. {
  13799. name: "Macro++",
  13800. height: math.unit(4000, "feet")
  13801. },
  13802. {
  13803. name: "Megamacro",
  13804. height: math.unit(3, "miles")
  13805. },
  13806. ]
  13807. ))
  13808. characterMakers.push(() => makeCharacter(
  13809. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13810. {
  13811. front: {
  13812. height: math.unit(6, "feet"),
  13813. weight: math.unit(150, "lb"),
  13814. name: "Front",
  13815. image: {
  13816. source: "./media/characters/isaac/front.svg",
  13817. extra: 896 / 815,
  13818. bottom: 0.11
  13819. }
  13820. },
  13821. },
  13822. [
  13823. {
  13824. name: "Human Size",
  13825. height: math.unit(8, "feet"),
  13826. default: true
  13827. },
  13828. {
  13829. name: "Macro",
  13830. height: math.unit(400, "feet")
  13831. },
  13832. {
  13833. name: "Megamacro",
  13834. height: math.unit(50, "miles")
  13835. },
  13836. {
  13837. name: "Canon Height",
  13838. height: math.unit(200, "AU")
  13839. },
  13840. ]
  13841. ))
  13842. characterMakers.push(() => makeCharacter(
  13843. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13844. {
  13845. front: {
  13846. height: math.unit(6, "feet"),
  13847. weight: math.unit(72, "kg"),
  13848. name: "Front",
  13849. image: {
  13850. source: "./media/characters/sleekit/front.svg",
  13851. extra: 4693 / 4487,
  13852. bottom: 0.012
  13853. }
  13854. },
  13855. },
  13856. [
  13857. {
  13858. name: "Minimum Height",
  13859. height: math.unit(10, "meters")
  13860. },
  13861. {
  13862. name: "Smaller",
  13863. height: math.unit(25, "meters")
  13864. },
  13865. {
  13866. name: "Larger",
  13867. height: math.unit(38, "meters"),
  13868. default: true
  13869. },
  13870. {
  13871. name: "Maximum height",
  13872. height: math.unit(100, "meters")
  13873. },
  13874. ]
  13875. ))
  13876. characterMakers.push(() => makeCharacter(
  13877. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13878. {
  13879. front: {
  13880. height: math.unit(6, "feet"),
  13881. weight: math.unit(150, "lb"),
  13882. name: "Front",
  13883. image: {
  13884. source: "./media/characters/nillia/front.svg",
  13885. extra: 2195 / 2037,
  13886. bottom: 0.005
  13887. }
  13888. },
  13889. back: {
  13890. height: math.unit(6, "feet"),
  13891. weight: math.unit(150, "lb"),
  13892. name: "Back",
  13893. image: {
  13894. source: "./media/characters/nillia/back.svg",
  13895. extra: 2195 / 2037,
  13896. bottom: 0.005
  13897. }
  13898. },
  13899. },
  13900. [
  13901. {
  13902. name: "Canon Height",
  13903. height: math.unit(489, "feet"),
  13904. default: true
  13905. }
  13906. ]
  13907. ))
  13908. characterMakers.push(() => makeCharacter(
  13909. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13910. {
  13911. front: {
  13912. height: math.unit(6, "feet"),
  13913. weight: math.unit(150, "lb"),
  13914. name: "Front",
  13915. image: {
  13916. source: "./media/characters/mesmyriza/front.svg",
  13917. extra: 2067 / 1784,
  13918. bottom: 0.035
  13919. }
  13920. },
  13921. foot: {
  13922. height: math.unit(6 / (250 / 35), "feet"),
  13923. name: "Foot",
  13924. image: {
  13925. source: "./media/characters/mesmyriza/foot.svg"
  13926. }
  13927. },
  13928. },
  13929. [
  13930. {
  13931. name: "Macro",
  13932. height: math.unit(457, "meters"),
  13933. default: true
  13934. },
  13935. {
  13936. name: "Megamacro",
  13937. height: math.unit(8, "megameters")
  13938. },
  13939. ]
  13940. ))
  13941. characterMakers.push(() => makeCharacter(
  13942. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13943. {
  13944. front: {
  13945. height: math.unit(6, "feet"),
  13946. weight: math.unit(250, "lb"),
  13947. name: "Front",
  13948. image: {
  13949. source: "./media/characters/saudade/front.svg",
  13950. extra: 1172 / 1139,
  13951. bottom: 0.035
  13952. }
  13953. },
  13954. },
  13955. [
  13956. {
  13957. name: "Micro",
  13958. height: math.unit(3, "inches")
  13959. },
  13960. {
  13961. name: "Normal",
  13962. height: math.unit(6, "feet"),
  13963. default: true
  13964. },
  13965. {
  13966. name: "Macro",
  13967. height: math.unit(50, "feet")
  13968. },
  13969. {
  13970. name: "Megamacro",
  13971. height: math.unit(2800, "feet")
  13972. },
  13973. ]
  13974. ))
  13975. characterMakers.push(() => makeCharacter(
  13976. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13977. {
  13978. front: {
  13979. height: math.unit(5 + 4 / 12, "feet"),
  13980. weight: math.unit(100, "lb"),
  13981. name: "Front",
  13982. image: {
  13983. source: "./media/characters/keireer/front.svg",
  13984. extra: 716 / 666,
  13985. bottom: 0.05
  13986. }
  13987. },
  13988. },
  13989. [
  13990. {
  13991. name: "Normal",
  13992. height: math.unit(5 + 4 / 12, "feet"),
  13993. default: true
  13994. },
  13995. ]
  13996. ))
  13997. characterMakers.push(() => makeCharacter(
  13998. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13999. {
  14000. front: {
  14001. height: math.unit(6, "feet"),
  14002. weight: math.unit(90, "kg"),
  14003. name: "Front",
  14004. image: {
  14005. source: "./media/characters/mirja/front.svg",
  14006. extra: 1789 / 1683,
  14007. bottom: 0.05
  14008. }
  14009. },
  14010. frontDressed: {
  14011. height: math.unit(6, "feet"),
  14012. weight: math.unit(90, "lb"),
  14013. name: "Front (Dressed)",
  14014. image: {
  14015. source: "./media/characters/mirja/front-dressed.svg",
  14016. extra: 1789 / 1683,
  14017. bottom: 0.05
  14018. }
  14019. },
  14020. back: {
  14021. height: math.unit(6, "feet"),
  14022. weight: math.unit(90, "lb"),
  14023. name: "Back",
  14024. image: {
  14025. source: "./media/characters/mirja/back.svg",
  14026. extra: 953 / 917,
  14027. bottom: 0.017
  14028. }
  14029. },
  14030. },
  14031. [
  14032. {
  14033. name: "\"Incognito\"",
  14034. height: math.unit(3, "meters")
  14035. },
  14036. {
  14037. name: "Strolling Size",
  14038. height: math.unit(15, "km")
  14039. },
  14040. {
  14041. name: "Larger Strolling Size",
  14042. height: math.unit(400, "km")
  14043. },
  14044. {
  14045. name: "Preferred Size",
  14046. height: math.unit(5000, "km")
  14047. },
  14048. {
  14049. name: "True Size",
  14050. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14051. default: true
  14052. },
  14053. ]
  14054. ))
  14055. characterMakers.push(() => makeCharacter(
  14056. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14057. {
  14058. front: {
  14059. height: math.unit(15, "feet"),
  14060. weight: math.unit(880, "kg"),
  14061. name: "Front",
  14062. image: {
  14063. source: "./media/characters/nightraver/front.svg",
  14064. extra: 2444 / 2160,
  14065. bottom: 0.027
  14066. }
  14067. },
  14068. back: {
  14069. height: math.unit(15, "feet"),
  14070. weight: math.unit(880, "kg"),
  14071. name: "Back",
  14072. image: {
  14073. source: "./media/characters/nightraver/back.svg",
  14074. extra: 2309 / 2180,
  14075. bottom: 0.005
  14076. }
  14077. },
  14078. sole: {
  14079. height: math.unit(2.878, "feet"),
  14080. name: "Sole",
  14081. image: {
  14082. source: "./media/characters/nightraver/sole.svg"
  14083. }
  14084. },
  14085. foot: {
  14086. height: math.unit(2.285, "feet"),
  14087. name: "Foot",
  14088. image: {
  14089. source: "./media/characters/nightraver/foot.svg"
  14090. }
  14091. },
  14092. maw: {
  14093. height: math.unit(2.67, "feet"),
  14094. name: "Maw",
  14095. image: {
  14096. source: "./media/characters/nightraver/maw.svg"
  14097. }
  14098. },
  14099. },
  14100. [
  14101. {
  14102. name: "Micro",
  14103. height: math.unit(1, "cm")
  14104. },
  14105. {
  14106. name: "Normal",
  14107. height: math.unit(15, "feet"),
  14108. default: true
  14109. },
  14110. {
  14111. name: "Macro",
  14112. height: math.unit(300, "feet")
  14113. },
  14114. {
  14115. name: "Megamacro",
  14116. height: math.unit(300, "miles")
  14117. },
  14118. {
  14119. name: "Gigamacro",
  14120. height: math.unit(10000, "miles")
  14121. },
  14122. ]
  14123. ))
  14124. characterMakers.push(() => makeCharacter(
  14125. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14126. {
  14127. side: {
  14128. height: math.unit(2, "inches"),
  14129. weight: math.unit(5, "grams"),
  14130. name: "Side",
  14131. image: {
  14132. source: "./media/characters/arc/side.svg"
  14133. }
  14134. },
  14135. },
  14136. [
  14137. {
  14138. name: "Micro",
  14139. height: math.unit(2, "inches"),
  14140. default: true
  14141. },
  14142. ]
  14143. ))
  14144. characterMakers.push(() => makeCharacter(
  14145. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14146. {
  14147. front: {
  14148. height: math.unit(1.1938, "meters"),
  14149. weight: math.unit(54, "kg"),
  14150. name: "Front",
  14151. image: {
  14152. source: "./media/characters/nebula-shahar/front.svg",
  14153. extra: 1642 / 1436,
  14154. bottom: 0.06
  14155. }
  14156. },
  14157. },
  14158. [
  14159. {
  14160. name: "Megamicro",
  14161. height: math.unit(0.3, "mm")
  14162. },
  14163. {
  14164. name: "Micro",
  14165. height: math.unit(3, "cm")
  14166. },
  14167. {
  14168. name: "Normal",
  14169. height: math.unit(138, "cm"),
  14170. default: true
  14171. },
  14172. {
  14173. name: "Macro",
  14174. height: math.unit(30, "m")
  14175. },
  14176. ]
  14177. ))
  14178. characterMakers.push(() => makeCharacter(
  14179. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14180. {
  14181. front: {
  14182. height: math.unit(5.24, "feet"),
  14183. weight: math.unit(150, "lb"),
  14184. name: "Front",
  14185. image: {
  14186. source: "./media/characters/shayla/front.svg",
  14187. extra: 1512 / 1414,
  14188. bottom: 0.01
  14189. }
  14190. },
  14191. back: {
  14192. height: math.unit(5.24, "feet"),
  14193. weight: math.unit(150, "lb"),
  14194. name: "Back",
  14195. image: {
  14196. source: "./media/characters/shayla/back.svg",
  14197. extra: 1512 / 1414
  14198. }
  14199. },
  14200. hand: {
  14201. height: math.unit(0.7781496062992126, "feet"),
  14202. name: "Hand",
  14203. image: {
  14204. source: "./media/characters/shayla/hand.svg"
  14205. }
  14206. },
  14207. foot: {
  14208. height: math.unit(1.4206036745406823, "feet"),
  14209. name: "Foot",
  14210. image: {
  14211. source: "./media/characters/shayla/foot.svg"
  14212. }
  14213. },
  14214. },
  14215. [
  14216. {
  14217. name: "Micro",
  14218. height: math.unit(0.32, "feet")
  14219. },
  14220. {
  14221. name: "Normal",
  14222. height: math.unit(5.24, "feet"),
  14223. default: true
  14224. },
  14225. {
  14226. name: "Macro",
  14227. height: math.unit(492.12, "feet")
  14228. },
  14229. {
  14230. name: "Megamacro",
  14231. height: math.unit(186.41, "miles")
  14232. },
  14233. ]
  14234. ))
  14235. characterMakers.push(() => makeCharacter(
  14236. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14237. {
  14238. front: {
  14239. height: math.unit(2.2, "m"),
  14240. weight: math.unit(120, "kg"),
  14241. name: "Front",
  14242. image: {
  14243. source: "./media/characters/pia-jr/front.svg",
  14244. extra: 1000 / 970,
  14245. bottom: 0.035
  14246. }
  14247. },
  14248. hand: {
  14249. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14250. name: "Hand",
  14251. image: {
  14252. source: "./media/characters/pia-jr/hand.svg"
  14253. }
  14254. },
  14255. paw: {
  14256. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14257. name: "Paw",
  14258. image: {
  14259. source: "./media/characters/pia-jr/paw.svg"
  14260. }
  14261. },
  14262. },
  14263. [
  14264. {
  14265. name: "Micro",
  14266. height: math.unit(1.2, "cm")
  14267. },
  14268. {
  14269. name: "Normal",
  14270. height: math.unit(2.2, "m"),
  14271. default: true
  14272. },
  14273. {
  14274. name: "Macro",
  14275. height: math.unit(180, "m")
  14276. },
  14277. {
  14278. name: "Megamacro",
  14279. height: math.unit(420, "km")
  14280. },
  14281. ]
  14282. ))
  14283. characterMakers.push(() => makeCharacter(
  14284. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14285. {
  14286. front: {
  14287. height: math.unit(2, "m"),
  14288. weight: math.unit(115, "kg"),
  14289. name: "Front",
  14290. image: {
  14291. source: "./media/characters/pia-sr/front.svg",
  14292. extra: 760 / 730,
  14293. bottom: 0.015
  14294. }
  14295. },
  14296. back: {
  14297. height: math.unit(2, "m"),
  14298. weight: math.unit(115, "kg"),
  14299. name: "Back",
  14300. image: {
  14301. source: "./media/characters/pia-sr/back.svg",
  14302. extra: 760 / 730,
  14303. bottom: 0.01
  14304. }
  14305. },
  14306. hand: {
  14307. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14308. name: "Hand",
  14309. image: {
  14310. source: "./media/characters/pia-sr/hand.svg"
  14311. }
  14312. },
  14313. foot: {
  14314. height: math.unit(1.83, "feet"),
  14315. name: "Foot",
  14316. image: {
  14317. source: "./media/characters/pia-sr/foot.svg"
  14318. }
  14319. },
  14320. },
  14321. [
  14322. {
  14323. name: "Micro",
  14324. height: math.unit(88, "mm")
  14325. },
  14326. {
  14327. name: "Normal",
  14328. height: math.unit(2, "m"),
  14329. default: true
  14330. },
  14331. {
  14332. name: "Macro",
  14333. height: math.unit(200, "m")
  14334. },
  14335. {
  14336. name: "Megamacro",
  14337. height: math.unit(420, "km")
  14338. },
  14339. ]
  14340. ))
  14341. characterMakers.push(() => makeCharacter(
  14342. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14343. {
  14344. front: {
  14345. height: math.unit(8 + 2 / 12, "feet"),
  14346. weight: math.unit(300, "lb"),
  14347. name: "Front",
  14348. image: {
  14349. source: "./media/characters/kibibyte/front.svg",
  14350. extra: 2221 / 2098,
  14351. bottom: 0.04
  14352. }
  14353. },
  14354. },
  14355. [
  14356. {
  14357. name: "Normal",
  14358. height: math.unit(8 + 2 / 12, "feet"),
  14359. default: true
  14360. },
  14361. {
  14362. name: "Socialable Macro",
  14363. height: math.unit(50, "feet")
  14364. },
  14365. {
  14366. name: "Macro",
  14367. height: math.unit(300, "feet")
  14368. },
  14369. {
  14370. name: "Megamacro",
  14371. height: math.unit(500, "miles")
  14372. },
  14373. ]
  14374. ))
  14375. characterMakers.push(() => makeCharacter(
  14376. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14377. {
  14378. front: {
  14379. height: math.unit(6, "feet"),
  14380. weight: math.unit(150, "lb"),
  14381. name: "Front",
  14382. image: {
  14383. source: "./media/characters/felix/front.svg",
  14384. extra: 762 / 722,
  14385. bottom: 0.02
  14386. }
  14387. },
  14388. frontClothed: {
  14389. height: math.unit(6, "feet"),
  14390. weight: math.unit(150, "lb"),
  14391. name: "Front (Clothed)",
  14392. image: {
  14393. source: "./media/characters/felix/front-clothed.svg",
  14394. extra: 762 / 722,
  14395. bottom: 0.02
  14396. }
  14397. },
  14398. },
  14399. [
  14400. {
  14401. name: "Normal",
  14402. height: math.unit(6 + 8 / 12, "feet"),
  14403. default: true
  14404. },
  14405. {
  14406. name: "Macro",
  14407. height: math.unit(2600, "feet")
  14408. },
  14409. {
  14410. name: "Megamacro",
  14411. height: math.unit(450, "miles")
  14412. },
  14413. ]
  14414. ))
  14415. characterMakers.push(() => makeCharacter(
  14416. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14417. {
  14418. front: {
  14419. height: math.unit(6 + 1 / 12, "feet"),
  14420. weight: math.unit(250, "lb"),
  14421. name: "Front",
  14422. image: {
  14423. source: "./media/characters/tobo/front.svg",
  14424. extra: 608 / 586,
  14425. bottom: 0.023
  14426. }
  14427. },
  14428. back: {
  14429. height: math.unit(6 + 1 / 12, "feet"),
  14430. weight: math.unit(250, "lb"),
  14431. name: "Back",
  14432. image: {
  14433. source: "./media/characters/tobo/back.svg",
  14434. extra: 608 / 586
  14435. }
  14436. },
  14437. },
  14438. [
  14439. {
  14440. name: "Nano",
  14441. height: math.unit(2, "nm")
  14442. },
  14443. {
  14444. name: "Megamicro",
  14445. height: math.unit(0.1, "mm")
  14446. },
  14447. {
  14448. name: "Micro",
  14449. height: math.unit(1, "inch"),
  14450. default: true
  14451. },
  14452. {
  14453. name: "Human-sized",
  14454. height: math.unit(6 + 1 / 12, "feet")
  14455. },
  14456. {
  14457. name: "Macro",
  14458. height: math.unit(250, "feet")
  14459. },
  14460. {
  14461. name: "Megamacro",
  14462. height: math.unit(75, "miles")
  14463. },
  14464. {
  14465. name: "Texas-sized",
  14466. height: math.unit(750, "miles")
  14467. },
  14468. {
  14469. name: "Teramacro",
  14470. height: math.unit(50000, "miles")
  14471. },
  14472. ]
  14473. ))
  14474. characterMakers.push(() => makeCharacter(
  14475. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14476. {
  14477. front: {
  14478. height: math.unit(6, "feet"),
  14479. weight: math.unit(269, "lb"),
  14480. name: "Front",
  14481. image: {
  14482. source: "./media/characters/danny-kapowsky/front.svg",
  14483. extra: 766 / 736,
  14484. bottom: 0.044
  14485. }
  14486. },
  14487. back: {
  14488. height: math.unit(6, "feet"),
  14489. weight: math.unit(269, "lb"),
  14490. name: "Back",
  14491. image: {
  14492. source: "./media/characters/danny-kapowsky/back.svg",
  14493. extra: 797 / 760,
  14494. bottom: 0.025
  14495. }
  14496. },
  14497. },
  14498. [
  14499. {
  14500. name: "Macro",
  14501. height: math.unit(150, "feet"),
  14502. default: true
  14503. },
  14504. {
  14505. name: "Macro+",
  14506. height: math.unit(200, "feet")
  14507. },
  14508. {
  14509. name: "Macro++",
  14510. height: math.unit(300, "feet")
  14511. },
  14512. {
  14513. name: "Macro+++",
  14514. height: math.unit(400, "feet")
  14515. },
  14516. ]
  14517. ))
  14518. characterMakers.push(() => makeCharacter(
  14519. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14520. {
  14521. side: {
  14522. height: math.unit(6, "feet"),
  14523. weight: math.unit(170, "lb"),
  14524. name: "Side",
  14525. image: {
  14526. source: "./media/characters/finn/side.svg",
  14527. extra: 1953 / 1807,
  14528. bottom: 0.057
  14529. }
  14530. },
  14531. },
  14532. [
  14533. {
  14534. name: "Megamacro",
  14535. height: math.unit(14445, "feet"),
  14536. default: true
  14537. },
  14538. ]
  14539. ))
  14540. characterMakers.push(() => makeCharacter(
  14541. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14542. {
  14543. front: {
  14544. height: math.unit(5 + 6 / 12, "feet"),
  14545. weight: math.unit(125, "lb"),
  14546. name: "Front",
  14547. image: {
  14548. source: "./media/characters/roy/front.svg",
  14549. extra: 1,
  14550. bottom: 0.11
  14551. }
  14552. },
  14553. },
  14554. [
  14555. {
  14556. name: "Micro",
  14557. height: math.unit(3, "inches"),
  14558. default: true
  14559. },
  14560. {
  14561. name: "Normal",
  14562. height: math.unit(5 + 6 / 12, "feet")
  14563. },
  14564. {
  14565. name: "Lesser Macro",
  14566. height: math.unit(60, "feet")
  14567. },
  14568. {
  14569. name: "Greater Macro",
  14570. height: math.unit(120, "feet")
  14571. },
  14572. ]
  14573. ))
  14574. characterMakers.push(() => makeCharacter(
  14575. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14576. {
  14577. front: {
  14578. height: math.unit(6, "feet"),
  14579. weight: math.unit(100, "lb"),
  14580. name: "Front",
  14581. image: {
  14582. source: "./media/characters/aevsivs/front.svg",
  14583. extra: 1,
  14584. bottom: 0.03
  14585. }
  14586. },
  14587. back: {
  14588. height: math.unit(6, "feet"),
  14589. weight: math.unit(100, "lb"),
  14590. name: "Back",
  14591. image: {
  14592. source: "./media/characters/aevsivs/back.svg"
  14593. }
  14594. },
  14595. },
  14596. [
  14597. {
  14598. name: "Micro",
  14599. height: math.unit(2, "inches"),
  14600. default: true
  14601. },
  14602. {
  14603. name: "Normal",
  14604. height: math.unit(5, "feet")
  14605. },
  14606. ]
  14607. ))
  14608. characterMakers.push(() => makeCharacter(
  14609. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14610. {
  14611. front: {
  14612. height: math.unit(5 + 7 / 12, "feet"),
  14613. weight: math.unit(159, "lb"),
  14614. name: "Front",
  14615. image: {
  14616. source: "./media/characters/hildegard/front.svg",
  14617. extra: 289 / 269,
  14618. bottom: 7.63 / 297.8
  14619. }
  14620. },
  14621. back: {
  14622. height: math.unit(5 + 7 / 12, "feet"),
  14623. weight: math.unit(159, "lb"),
  14624. name: "Back",
  14625. image: {
  14626. source: "./media/characters/hildegard/back.svg",
  14627. extra: 280 / 260,
  14628. bottom: 2.3 / 282
  14629. }
  14630. },
  14631. },
  14632. [
  14633. {
  14634. name: "Normal",
  14635. height: math.unit(5 + 7 / 12, "feet"),
  14636. default: true
  14637. },
  14638. ]
  14639. ))
  14640. characterMakers.push(() => makeCharacter(
  14641. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14642. {
  14643. bernard: {
  14644. height: math.unit(2 + 7 / 12, "feet"),
  14645. weight: math.unit(66, "lb"),
  14646. name: "Bernard",
  14647. rename: true,
  14648. image: {
  14649. source: "./media/characters/bernard-wilder/bernard.svg",
  14650. extra: 192 / 128,
  14651. bottom: 0.05
  14652. }
  14653. },
  14654. wilder: {
  14655. height: math.unit(5 + 8 / 12, "feet"),
  14656. weight: math.unit(143, "lb"),
  14657. name: "Wilder",
  14658. rename: true,
  14659. image: {
  14660. source: "./media/characters/bernard-wilder/wilder.svg",
  14661. extra: 361 / 312,
  14662. bottom: 0.02
  14663. }
  14664. },
  14665. },
  14666. [
  14667. {
  14668. name: "Normal",
  14669. height: math.unit(2 + 7 / 12, "feet"),
  14670. default: true
  14671. },
  14672. ]
  14673. ))
  14674. characterMakers.push(() => makeCharacter(
  14675. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14676. {
  14677. anthro: {
  14678. height: math.unit(6 + 1 / 12, "feet"),
  14679. weight: math.unit(155, "lb"),
  14680. name: "Anthro",
  14681. image: {
  14682. source: "./media/characters/hearth/anthro.svg",
  14683. extra: 260 / 250,
  14684. bottom: 0.02
  14685. }
  14686. },
  14687. feral: {
  14688. height: math.unit(3.78, "feet"),
  14689. weight: math.unit(35, "kg"),
  14690. name: "Feral",
  14691. image: {
  14692. source: "./media/characters/hearth/feral.svg",
  14693. extra: 153 / 135,
  14694. bottom: 0.03
  14695. }
  14696. },
  14697. },
  14698. [
  14699. {
  14700. name: "Normal",
  14701. height: math.unit(6 + 1 / 12, "feet"),
  14702. default: true
  14703. },
  14704. ]
  14705. ))
  14706. characterMakers.push(() => makeCharacter(
  14707. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14708. {
  14709. front: {
  14710. height: math.unit(6, "feet"),
  14711. weight: math.unit(182, "lb"),
  14712. name: "Front",
  14713. image: {
  14714. source: "./media/characters/ingrid/front.svg",
  14715. extra: 294 / 268,
  14716. bottom: 0.027
  14717. }
  14718. },
  14719. },
  14720. [
  14721. {
  14722. name: "Normal",
  14723. height: math.unit(6, "feet"),
  14724. default: true
  14725. },
  14726. ]
  14727. ))
  14728. characterMakers.push(() => makeCharacter(
  14729. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14730. {
  14731. eevee: {
  14732. height: math.unit(2 + 10 / 12, "feet"),
  14733. weight: math.unit(86, "lb"),
  14734. name: "Malgam",
  14735. image: {
  14736. source: "./media/characters/malgam/eevee.svg",
  14737. extra: 218 / 180,
  14738. bottom: 0.2
  14739. }
  14740. },
  14741. sylveon: {
  14742. height: math.unit(4, "feet"),
  14743. weight: math.unit(101, "lb"),
  14744. name: "Future Malgam",
  14745. rename: true,
  14746. image: {
  14747. source: "./media/characters/malgam/sylveon.svg",
  14748. extra: 371 / 325,
  14749. bottom: 0.015
  14750. }
  14751. },
  14752. gigantamax: {
  14753. height: math.unit(50, "feet"),
  14754. name: "Gigantamax Malgam",
  14755. rename: true,
  14756. image: {
  14757. source: "./media/characters/malgam/gigantamax.svg"
  14758. }
  14759. },
  14760. },
  14761. [
  14762. {
  14763. name: "Normal",
  14764. height: math.unit(2 + 10 / 12, "feet"),
  14765. default: true
  14766. },
  14767. ]
  14768. ))
  14769. characterMakers.push(() => makeCharacter(
  14770. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14771. {
  14772. front: {
  14773. height: math.unit(5 + 11 / 12, "feet"),
  14774. weight: math.unit(188, "lb"),
  14775. name: "Front",
  14776. image: {
  14777. source: "./media/characters/fleur/front.svg",
  14778. extra: 309 / 283,
  14779. bottom: 0.007
  14780. }
  14781. },
  14782. },
  14783. [
  14784. {
  14785. name: "Normal",
  14786. height: math.unit(5 + 11 / 12, "feet"),
  14787. default: true
  14788. },
  14789. ]
  14790. ))
  14791. characterMakers.push(() => makeCharacter(
  14792. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14793. {
  14794. front: {
  14795. height: math.unit(5 + 4 / 12, "feet"),
  14796. weight: math.unit(122, "lb"),
  14797. name: "Front",
  14798. image: {
  14799. source: "./media/characters/jude/front.svg",
  14800. extra: 288 / 273,
  14801. bottom: 0.03
  14802. }
  14803. },
  14804. },
  14805. [
  14806. {
  14807. name: "Normal",
  14808. height: math.unit(5 + 4 / 12, "feet"),
  14809. default: true
  14810. },
  14811. ]
  14812. ))
  14813. characterMakers.push(() => makeCharacter(
  14814. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14815. {
  14816. front: {
  14817. height: math.unit(5 + 11 / 12, "feet"),
  14818. weight: math.unit(190, "lb"),
  14819. name: "Front",
  14820. image: {
  14821. source: "./media/characters/seara/front.svg",
  14822. extra: 1,
  14823. bottom: 0.05
  14824. }
  14825. },
  14826. },
  14827. [
  14828. {
  14829. name: "Normal",
  14830. height: math.unit(5 + 11 / 12, "feet"),
  14831. default: true
  14832. },
  14833. ]
  14834. ))
  14835. characterMakers.push(() => makeCharacter(
  14836. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14837. {
  14838. front: {
  14839. height: math.unit(16 + 5 / 12, "feet"),
  14840. weight: math.unit(524, "lb"),
  14841. name: "Front",
  14842. image: {
  14843. source: "./media/characters/caspian/front.svg",
  14844. extra: 1,
  14845. bottom: 0.04
  14846. }
  14847. },
  14848. },
  14849. [
  14850. {
  14851. name: "Normal",
  14852. height: math.unit(16 + 5 / 12, "feet"),
  14853. default: true
  14854. },
  14855. ]
  14856. ))
  14857. characterMakers.push(() => makeCharacter(
  14858. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14859. {
  14860. front: {
  14861. height: math.unit(5 + 7 / 12, "feet"),
  14862. weight: math.unit(170, "lb"),
  14863. name: "Front",
  14864. image: {
  14865. source: "./media/characters/mika/front.svg",
  14866. extra: 1,
  14867. bottom: 0.016
  14868. }
  14869. },
  14870. },
  14871. [
  14872. {
  14873. name: "Normal",
  14874. height: math.unit(5 + 7 / 12, "feet"),
  14875. default: true
  14876. },
  14877. ]
  14878. ))
  14879. characterMakers.push(() => makeCharacter(
  14880. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14881. {
  14882. front: {
  14883. height: math.unit(6 + 2 / 12, "feet"),
  14884. weight: math.unit(268, "lb"),
  14885. name: "Front",
  14886. image: {
  14887. source: "./media/characters/sol/front.svg",
  14888. extra: 247 / 231,
  14889. bottom: 0.05
  14890. }
  14891. },
  14892. },
  14893. [
  14894. {
  14895. name: "Normal",
  14896. height: math.unit(6 + 2 / 12, "feet"),
  14897. default: true
  14898. },
  14899. ]
  14900. ))
  14901. characterMakers.push(() => makeCharacter(
  14902. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14903. {
  14904. buizel: {
  14905. height: math.unit(2 + 5 / 12, "feet"),
  14906. weight: math.unit(87, "lb"),
  14907. name: "Buizel",
  14908. image: {
  14909. source: "./media/characters/umiko/buizel.svg",
  14910. extra: 172 / 157,
  14911. bottom: 0.01
  14912. }
  14913. },
  14914. floatzel: {
  14915. height: math.unit(5 + 9 / 12, "feet"),
  14916. weight: math.unit(250, "lb"),
  14917. name: "Floatzel",
  14918. image: {
  14919. source: "./media/characters/umiko/floatzel.svg",
  14920. extra: 262 / 248
  14921. }
  14922. },
  14923. },
  14924. [
  14925. {
  14926. name: "Normal",
  14927. height: math.unit(2 + 5 / 12, "feet"),
  14928. default: true
  14929. },
  14930. ]
  14931. ))
  14932. characterMakers.push(() => makeCharacter(
  14933. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14934. {
  14935. front: {
  14936. height: math.unit(6 + 2 / 12, "feet"),
  14937. weight: math.unit(146, "lb"),
  14938. name: "Front",
  14939. image: {
  14940. source: "./media/characters/iliac/front.svg",
  14941. extra: 389 / 365,
  14942. bottom: 0.035
  14943. }
  14944. },
  14945. },
  14946. [
  14947. {
  14948. name: "Normal",
  14949. height: math.unit(6 + 2 / 12, "feet"),
  14950. default: true
  14951. },
  14952. ]
  14953. ))
  14954. characterMakers.push(() => makeCharacter(
  14955. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14956. {
  14957. front: {
  14958. height: math.unit(6, "feet"),
  14959. weight: math.unit(170, "lb"),
  14960. name: "Front",
  14961. image: {
  14962. source: "./media/characters/topaz/front.svg",
  14963. extra: 317 / 303,
  14964. bottom: 0.055
  14965. }
  14966. },
  14967. },
  14968. [
  14969. {
  14970. name: "Normal",
  14971. height: math.unit(6, "feet"),
  14972. default: true
  14973. },
  14974. ]
  14975. ))
  14976. characterMakers.push(() => makeCharacter(
  14977. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14978. {
  14979. front: {
  14980. height: math.unit(5 + 11 / 12, "feet"),
  14981. weight: math.unit(144, "lb"),
  14982. name: "Front",
  14983. image: {
  14984. source: "./media/characters/gabriel/front.svg",
  14985. extra: 285 / 262,
  14986. bottom: 0.004
  14987. }
  14988. },
  14989. },
  14990. [
  14991. {
  14992. name: "Normal",
  14993. height: math.unit(5 + 11 / 12, "feet"),
  14994. default: true
  14995. },
  14996. ]
  14997. ))
  14998. characterMakers.push(() => makeCharacter(
  14999. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15000. {
  15001. side: {
  15002. height: math.unit(6 + 5 / 12, "feet"),
  15003. weight: math.unit(300, "lb"),
  15004. name: "Side",
  15005. image: {
  15006. source: "./media/characters/tempest-suicune/side.svg",
  15007. extra: 195 / 154,
  15008. bottom: 0.04
  15009. }
  15010. },
  15011. },
  15012. [
  15013. {
  15014. name: "Normal",
  15015. height: math.unit(6 + 5 / 12, "feet"),
  15016. default: true
  15017. },
  15018. ]
  15019. ))
  15020. characterMakers.push(() => makeCharacter(
  15021. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15022. {
  15023. front: {
  15024. height: math.unit(7 + 2 / 12, "feet"),
  15025. weight: math.unit(322, "lb"),
  15026. name: "Front",
  15027. image: {
  15028. source: "./media/characters/vulcan/front.svg",
  15029. extra: 154 / 147,
  15030. bottom: 0.04
  15031. }
  15032. },
  15033. },
  15034. [
  15035. {
  15036. name: "Normal",
  15037. height: math.unit(7 + 2 / 12, "feet"),
  15038. default: true
  15039. },
  15040. ]
  15041. ))
  15042. characterMakers.push(() => makeCharacter(
  15043. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15044. {
  15045. front: {
  15046. height: math.unit(5 + 10 / 12, "feet"),
  15047. weight: math.unit(264, "lb"),
  15048. name: "Front",
  15049. image: {
  15050. source: "./media/characters/gault/front.svg",
  15051. extra: 161 / 140,
  15052. bottom: 0.028
  15053. }
  15054. },
  15055. },
  15056. [
  15057. {
  15058. name: "Normal",
  15059. height: math.unit(5 + 10 / 12, "feet"),
  15060. default: true
  15061. },
  15062. ]
  15063. ))
  15064. characterMakers.push(() => makeCharacter(
  15065. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15066. {
  15067. front: {
  15068. height: math.unit(6, "feet"),
  15069. weight: math.unit(150, "lb"),
  15070. name: "Front",
  15071. image: {
  15072. source: "./media/characters/shard/front.svg",
  15073. extra: 273 / 238,
  15074. bottom: 0.02
  15075. }
  15076. },
  15077. },
  15078. [
  15079. {
  15080. name: "Normal",
  15081. height: math.unit(3 + 6 / 12, "feet"),
  15082. default: true
  15083. },
  15084. ]
  15085. ))
  15086. characterMakers.push(() => makeCharacter(
  15087. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15088. {
  15089. front: {
  15090. height: math.unit(5 + 11 / 12, "feet"),
  15091. weight: math.unit(146, "lb"),
  15092. name: "Front",
  15093. image: {
  15094. source: "./media/characters/ashe/front.svg",
  15095. extra: 400 / 373,
  15096. bottom: 0.01
  15097. }
  15098. },
  15099. },
  15100. [
  15101. {
  15102. name: "Normal",
  15103. height: math.unit(5 + 11 / 12, "feet"),
  15104. default: true
  15105. },
  15106. ]
  15107. ))
  15108. characterMakers.push(() => makeCharacter(
  15109. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15110. {
  15111. front: {
  15112. height: math.unit(5 + 5 / 12, "feet"),
  15113. weight: math.unit(135, "lb"),
  15114. name: "Front",
  15115. image: {
  15116. source: "./media/characters/beatrix/front.svg",
  15117. extra: 392 / 379,
  15118. bottom: 0.01
  15119. }
  15120. },
  15121. },
  15122. [
  15123. {
  15124. name: "Normal",
  15125. height: math.unit(6, "feet"),
  15126. default: true
  15127. },
  15128. ]
  15129. ))
  15130. characterMakers.push(() => makeCharacter(
  15131. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15132. {
  15133. front: {
  15134. height: math.unit(6, "feet"),
  15135. weight: math.unit(150, "lb"),
  15136. name: "Front",
  15137. image: {
  15138. source: "./media/characters/ignatius/front.svg",
  15139. extra: 245 / 222,
  15140. bottom: 0.01
  15141. }
  15142. },
  15143. },
  15144. [
  15145. {
  15146. name: "Normal",
  15147. height: math.unit(5 + 5 / 12, "feet"),
  15148. default: true
  15149. },
  15150. ]
  15151. ))
  15152. characterMakers.push(() => makeCharacter(
  15153. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15154. {
  15155. front: {
  15156. height: math.unit(6 + 2 / 12, "feet"),
  15157. weight: math.unit(138, "lb"),
  15158. name: "Front",
  15159. image: {
  15160. source: "./media/characters/mei-li/front.svg",
  15161. extra: 237 / 229,
  15162. bottom: 0.03
  15163. }
  15164. },
  15165. },
  15166. [
  15167. {
  15168. name: "Normal",
  15169. height: math.unit(6 + 2 / 12, "feet"),
  15170. default: true
  15171. },
  15172. ]
  15173. ))
  15174. characterMakers.push(() => makeCharacter(
  15175. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15176. {
  15177. front: {
  15178. height: math.unit(2 + 4 / 12, "feet"),
  15179. weight: math.unit(62, "lb"),
  15180. name: "Front",
  15181. image: {
  15182. source: "./media/characters/puru/front.svg",
  15183. extra: 206 / 149,
  15184. bottom: 0.06
  15185. }
  15186. },
  15187. },
  15188. [
  15189. {
  15190. name: "Normal",
  15191. height: math.unit(2 + 4 / 12, "feet"),
  15192. default: true
  15193. },
  15194. ]
  15195. ))
  15196. characterMakers.push(() => makeCharacter(
  15197. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15198. {
  15199. anthro: {
  15200. height: math.unit(5 + 8/12, "feet"),
  15201. weight: math.unit(200, "lb"),
  15202. energyNeed: math.unit(2000, "kcal"),
  15203. name: "Anthro",
  15204. image: {
  15205. source: "./media/characters/kee/anthro.svg",
  15206. extra: 3251/3184,
  15207. bottom: 250/3501
  15208. }
  15209. },
  15210. taur: {
  15211. height: math.unit(11, "feet"),
  15212. weight: math.unit(500, "lb"),
  15213. energyNeed: math.unit(5000, "kcal"),
  15214. name: "Taur",
  15215. image: {
  15216. source: "./media/characters/kee/taur.svg",
  15217. extra: 1362/1320,
  15218. bottom: 83/1445
  15219. }
  15220. },
  15221. },
  15222. [
  15223. {
  15224. name: "Normal",
  15225. height: math.unit(5 + 8/12, "feet"),
  15226. default: true
  15227. },
  15228. {
  15229. name: "Macro",
  15230. height: math.unit(35, "feet")
  15231. },
  15232. ]
  15233. ))
  15234. characterMakers.push(() => makeCharacter(
  15235. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15236. {
  15237. anthro: {
  15238. height: math.unit(7, "feet"),
  15239. weight: math.unit(190, "lb"),
  15240. name: "Anthro",
  15241. image: {
  15242. source: "./media/characters/cobalt-dracha/anthro.svg",
  15243. extra: 231 / 225,
  15244. bottom: 0.04
  15245. }
  15246. },
  15247. feral: {
  15248. height: math.unit(9 + 7 / 12, "feet"),
  15249. weight: math.unit(294, "lb"),
  15250. name: "Feral",
  15251. image: {
  15252. source: "./media/characters/cobalt-dracha/feral.svg",
  15253. extra: 692 / 633,
  15254. bottom: 0.05
  15255. }
  15256. },
  15257. },
  15258. [
  15259. {
  15260. name: "Normal",
  15261. height: math.unit(7, "feet"),
  15262. default: true
  15263. },
  15264. ]
  15265. ))
  15266. characterMakers.push(() => makeCharacter(
  15267. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15268. {
  15269. fallen: {
  15270. height: math.unit(11 + 8 / 12, "feet"),
  15271. weight: math.unit(485, "lb"),
  15272. name: "Java (Fallen)",
  15273. rename: true,
  15274. image: {
  15275. source: "./media/characters/java/fallen.svg",
  15276. extra: 226 / 208,
  15277. bottom: 0.005
  15278. }
  15279. },
  15280. godkin: {
  15281. height: math.unit(10 + 6 / 12, "feet"),
  15282. weight: math.unit(328, "lb"),
  15283. name: "Java (Godkin)",
  15284. rename: true,
  15285. image: {
  15286. source: "./media/characters/java/godkin.svg",
  15287. extra: 270 / 262,
  15288. bottom: 0.02
  15289. }
  15290. },
  15291. },
  15292. [
  15293. {
  15294. name: "Normal",
  15295. height: math.unit(11 + 8 / 12, "feet"),
  15296. default: true
  15297. },
  15298. ]
  15299. ))
  15300. characterMakers.push(() => makeCharacter(
  15301. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15302. {
  15303. front: {
  15304. height: math.unit(7 + 8 / 12, "feet"),
  15305. weight: math.unit(320, "lb"),
  15306. name: "Front",
  15307. image: {
  15308. source: "./media/characters/skoll/front.svg",
  15309. extra: 232 / 220,
  15310. bottom: 0.02
  15311. }
  15312. },
  15313. },
  15314. [
  15315. {
  15316. name: "Normal",
  15317. height: math.unit(7 + 8 / 12, "feet"),
  15318. default: true
  15319. },
  15320. ]
  15321. ))
  15322. characterMakers.push(() => makeCharacter(
  15323. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15324. {
  15325. front: {
  15326. height: math.unit(5 + 9 / 12, "feet"),
  15327. weight: math.unit(170, "lb"),
  15328. name: "Front",
  15329. image: {
  15330. source: "./media/characters/purna/front.svg",
  15331. extra: 239 / 229,
  15332. bottom: 0.01
  15333. }
  15334. },
  15335. },
  15336. [
  15337. {
  15338. name: "Normal",
  15339. height: math.unit(5 + 9 / 12, "feet"),
  15340. default: true
  15341. },
  15342. ]
  15343. ))
  15344. characterMakers.push(() => makeCharacter(
  15345. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15346. {
  15347. front: {
  15348. height: math.unit(5 + 9 / 12, "feet"),
  15349. weight: math.unit(142, "lb"),
  15350. name: "Front",
  15351. image: {
  15352. source: "./media/characters/kuva/front.svg",
  15353. extra: 281 / 271,
  15354. bottom: 0.006
  15355. }
  15356. },
  15357. },
  15358. [
  15359. {
  15360. name: "Normal",
  15361. height: math.unit(5 + 9 / 12, "feet"),
  15362. default: true
  15363. },
  15364. ]
  15365. ))
  15366. characterMakers.push(() => makeCharacter(
  15367. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15368. {
  15369. anthro: {
  15370. height: math.unit(9 + 2 / 12, "feet"),
  15371. weight: math.unit(270, "lb"),
  15372. name: "Anthro",
  15373. image: {
  15374. source: "./media/characters/embra/anthro.svg",
  15375. extra: 200 / 187,
  15376. bottom: 0.02
  15377. }
  15378. },
  15379. feral: {
  15380. height: math.unit(18 + 8 / 12, "feet"),
  15381. weight: math.unit(576, "lb"),
  15382. name: "Feral",
  15383. image: {
  15384. source: "./media/characters/embra/feral.svg",
  15385. extra: 152 / 137,
  15386. bottom: 0.037
  15387. }
  15388. },
  15389. },
  15390. [
  15391. {
  15392. name: "Normal",
  15393. height: math.unit(9 + 2 / 12, "feet"),
  15394. default: true
  15395. },
  15396. ]
  15397. ))
  15398. characterMakers.push(() => makeCharacter(
  15399. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15400. {
  15401. anthro: {
  15402. height: math.unit(10 + 9 / 12, "feet"),
  15403. weight: math.unit(224, "lb"),
  15404. name: "Anthro",
  15405. image: {
  15406. source: "./media/characters/grottos/anthro.svg",
  15407. extra: 350 / 332,
  15408. bottom: 0.045
  15409. }
  15410. },
  15411. feral: {
  15412. height: math.unit(20 + 7 / 12, "feet"),
  15413. weight: math.unit(629, "lb"),
  15414. name: "Feral",
  15415. image: {
  15416. source: "./media/characters/grottos/feral.svg",
  15417. extra: 207 / 190,
  15418. bottom: 0.05
  15419. }
  15420. },
  15421. },
  15422. [
  15423. {
  15424. name: "Normal",
  15425. height: math.unit(10 + 9 / 12, "feet"),
  15426. default: true
  15427. },
  15428. ]
  15429. ))
  15430. characterMakers.push(() => makeCharacter(
  15431. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15432. {
  15433. anthro: {
  15434. height: math.unit(9 + 6 / 12, "feet"),
  15435. weight: math.unit(298, "lb"),
  15436. name: "Anthro",
  15437. image: {
  15438. source: "./media/characters/frifna/anthro.svg",
  15439. extra: 282 / 269,
  15440. bottom: 0.015
  15441. }
  15442. },
  15443. feral: {
  15444. height: math.unit(16 + 2 / 12, "feet"),
  15445. weight: math.unit(624, "lb"),
  15446. name: "Feral",
  15447. image: {
  15448. source: "./media/characters/frifna/feral.svg"
  15449. }
  15450. },
  15451. },
  15452. [
  15453. {
  15454. name: "Normal",
  15455. height: math.unit(9 + 6 / 12, "feet"),
  15456. default: true
  15457. },
  15458. ]
  15459. ))
  15460. characterMakers.push(() => makeCharacter(
  15461. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15462. {
  15463. front: {
  15464. height: math.unit(6 + 2 / 12, "feet"),
  15465. weight: math.unit(168, "lb"),
  15466. name: "Front",
  15467. image: {
  15468. source: "./media/characters/elise/front.svg",
  15469. extra: 276 / 271
  15470. }
  15471. },
  15472. },
  15473. [
  15474. {
  15475. name: "Normal",
  15476. height: math.unit(6 + 2 / 12, "feet"),
  15477. default: true
  15478. },
  15479. ]
  15480. ))
  15481. characterMakers.push(() => makeCharacter(
  15482. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15483. {
  15484. front: {
  15485. height: math.unit(5 + 10 / 12, "feet"),
  15486. weight: math.unit(210, "lb"),
  15487. name: "Front",
  15488. image: {
  15489. source: "./media/characters/glade/front.svg",
  15490. extra: 258 / 247,
  15491. bottom: 0.008
  15492. }
  15493. },
  15494. },
  15495. [
  15496. {
  15497. name: "Normal",
  15498. height: math.unit(5 + 10 / 12, "feet"),
  15499. default: true
  15500. },
  15501. ]
  15502. ))
  15503. characterMakers.push(() => makeCharacter(
  15504. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15505. {
  15506. front: {
  15507. height: math.unit(5 + 10 / 12, "feet"),
  15508. weight: math.unit(129, "lb"),
  15509. name: "Front",
  15510. image: {
  15511. source: "./media/characters/rina/front.svg",
  15512. extra: 266 / 255,
  15513. bottom: 0.005
  15514. }
  15515. },
  15516. },
  15517. [
  15518. {
  15519. name: "Normal",
  15520. height: math.unit(5 + 10 / 12, "feet"),
  15521. default: true
  15522. },
  15523. ]
  15524. ))
  15525. characterMakers.push(() => makeCharacter(
  15526. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15527. {
  15528. front: {
  15529. height: math.unit(6 + 1 / 12, "feet"),
  15530. weight: math.unit(192, "lb"),
  15531. name: "Front",
  15532. image: {
  15533. source: "./media/characters/veronica/front.svg",
  15534. extra: 319 / 309,
  15535. bottom: 0.005
  15536. }
  15537. },
  15538. },
  15539. [
  15540. {
  15541. name: "Normal",
  15542. height: math.unit(6 + 1 / 12, "feet"),
  15543. default: true
  15544. },
  15545. ]
  15546. ))
  15547. characterMakers.push(() => makeCharacter(
  15548. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15549. {
  15550. front: {
  15551. height: math.unit(9 + 3 / 12, "feet"),
  15552. weight: math.unit(1100, "lb"),
  15553. name: "Front",
  15554. image: {
  15555. source: "./media/characters/braxton/front.svg",
  15556. extra: 1057 / 984,
  15557. bottom: 0.05
  15558. }
  15559. },
  15560. },
  15561. [
  15562. {
  15563. name: "Normal",
  15564. height: math.unit(9 + 3 / 12, "feet")
  15565. },
  15566. {
  15567. name: "Giant",
  15568. height: math.unit(300, "feet"),
  15569. default: true
  15570. },
  15571. {
  15572. name: "Macro",
  15573. height: math.unit(700, "feet")
  15574. },
  15575. {
  15576. name: "Megamacro",
  15577. height: math.unit(6000, "feet")
  15578. },
  15579. ]
  15580. ))
  15581. characterMakers.push(() => makeCharacter(
  15582. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15583. {
  15584. front: {
  15585. height: math.unit(6 + 7 / 12, "feet"),
  15586. weight: math.unit(150, "lb"),
  15587. name: "Front",
  15588. image: {
  15589. source: "./media/characters/blue-feyonics/front.svg",
  15590. extra: 1403 / 1306,
  15591. bottom: 0.047
  15592. }
  15593. },
  15594. },
  15595. [
  15596. {
  15597. name: "Normal",
  15598. height: math.unit(6 + 7 / 12, "feet"),
  15599. default: true
  15600. },
  15601. ]
  15602. ))
  15603. characterMakers.push(() => makeCharacter(
  15604. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15605. {
  15606. front: {
  15607. height: math.unit(1.8, "meters"),
  15608. weight: math.unit(60, "kg"),
  15609. name: "Front",
  15610. image: {
  15611. source: "./media/characters/maxwell/front.svg",
  15612. extra: 2060 / 1873
  15613. }
  15614. },
  15615. },
  15616. [
  15617. {
  15618. name: "Micro",
  15619. height: math.unit(1, "mm")
  15620. },
  15621. {
  15622. name: "Normal",
  15623. height: math.unit(1.8, "meter"),
  15624. default: true
  15625. },
  15626. {
  15627. name: "Macro",
  15628. height: math.unit(30, "meters")
  15629. },
  15630. {
  15631. name: "Megamacro",
  15632. height: math.unit(10, "km")
  15633. },
  15634. ]
  15635. ))
  15636. characterMakers.push(() => makeCharacter(
  15637. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15638. {
  15639. front: {
  15640. height: math.unit(6, "feet"),
  15641. weight: math.unit(150, "lb"),
  15642. name: "Front",
  15643. image: {
  15644. source: "./media/characters/jack/front.svg",
  15645. extra: 1754 / 1640,
  15646. bottom: 0.01
  15647. }
  15648. },
  15649. },
  15650. [
  15651. {
  15652. name: "Normal",
  15653. height: math.unit(80000, "feet"),
  15654. default: true
  15655. },
  15656. {
  15657. name: "Max size",
  15658. height: math.unit(10, "lightyears")
  15659. },
  15660. ]
  15661. ))
  15662. characterMakers.push(() => makeCharacter(
  15663. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15664. {
  15665. urban: {
  15666. height: math.unit(5, "feet"),
  15667. weight: math.unit(240, "lb"),
  15668. name: "Urban",
  15669. image: {
  15670. source: "./media/characters/cafat/urban.svg",
  15671. extra: 1223/1126,
  15672. bottom: 205/1428
  15673. }
  15674. },
  15675. summer: {
  15676. height: math.unit(5, "feet"),
  15677. weight: math.unit(240, "lb"),
  15678. name: "Summer",
  15679. image: {
  15680. source: "./media/characters/cafat/summer.svg",
  15681. extra: 1223/1126,
  15682. bottom: 205/1428
  15683. }
  15684. },
  15685. winter: {
  15686. height: math.unit(5, "feet"),
  15687. weight: math.unit(240, "lb"),
  15688. name: "Winter",
  15689. image: {
  15690. source: "./media/characters/cafat/winter.svg",
  15691. extra: 1223/1126,
  15692. bottom: 205/1428
  15693. }
  15694. },
  15695. lingerie: {
  15696. height: math.unit(5, "feet"),
  15697. weight: math.unit(240, "lb"),
  15698. name: "Lingerie",
  15699. image: {
  15700. source: "./media/characters/cafat/lingerie.svg",
  15701. extra: 1223/1126,
  15702. bottom: 205/1428
  15703. }
  15704. },
  15705. upright: {
  15706. height: math.unit(6.3, "feet"),
  15707. weight: math.unit(240, "lb"),
  15708. name: "Upright",
  15709. image: {
  15710. source: "./media/characters/cafat/upright.svg",
  15711. bottom: 0.01
  15712. }
  15713. },
  15714. uprightFull: {
  15715. height: math.unit(6.3, "feet"),
  15716. weight: math.unit(240, "lb"),
  15717. name: "Upright (Full)",
  15718. image: {
  15719. source: "./media/characters/cafat/upright-full.svg",
  15720. bottom: 0.01
  15721. }
  15722. },
  15723. },
  15724. [
  15725. {
  15726. name: "Small",
  15727. height: math.unit(5, "feet"),
  15728. default: true
  15729. },
  15730. {
  15731. name: "Large",
  15732. height: math.unit(13, "feet")
  15733. },
  15734. ]
  15735. ))
  15736. characterMakers.push(() => makeCharacter(
  15737. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15738. {
  15739. front: {
  15740. height: math.unit(6, "feet"),
  15741. weight: math.unit(150, "lb"),
  15742. name: "Front",
  15743. image: {
  15744. source: "./media/characters/verin-raharra/front.svg",
  15745. extra: 5019 / 4835,
  15746. bottom: 0.023
  15747. }
  15748. },
  15749. },
  15750. [
  15751. {
  15752. name: "Normal",
  15753. height: math.unit(7 + 5 / 12, "feet"),
  15754. default: true
  15755. },
  15756. {
  15757. name: "Upsized",
  15758. height: math.unit(20, "feet")
  15759. },
  15760. ]
  15761. ))
  15762. characterMakers.push(() => makeCharacter(
  15763. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15764. {
  15765. front: {
  15766. height: math.unit(7, "feet"),
  15767. weight: math.unit(230, "lb"),
  15768. name: "Front",
  15769. image: {
  15770. source: "./media/characters/nakata/front.svg",
  15771. extra: 1.005,
  15772. bottom: 0.01
  15773. }
  15774. },
  15775. },
  15776. [
  15777. {
  15778. name: "Normal",
  15779. height: math.unit(7, "feet"),
  15780. default: true
  15781. },
  15782. {
  15783. name: "Big",
  15784. height: math.unit(14, "feet")
  15785. },
  15786. {
  15787. name: "Macro",
  15788. height: math.unit(400, "feet")
  15789. },
  15790. ]
  15791. ))
  15792. characterMakers.push(() => makeCharacter(
  15793. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15794. {
  15795. front: {
  15796. height: math.unit(4.91, "feet"),
  15797. weight: math.unit(100, "lb"),
  15798. name: "Front",
  15799. image: {
  15800. source: "./media/characters/lily/front.svg",
  15801. extra: 1585 / 1415,
  15802. bottom: 0.02
  15803. }
  15804. },
  15805. },
  15806. [
  15807. {
  15808. name: "Normal",
  15809. height: math.unit(4.91, "feet"),
  15810. default: true
  15811. },
  15812. ]
  15813. ))
  15814. characterMakers.push(() => makeCharacter(
  15815. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15816. {
  15817. laying: {
  15818. height: math.unit(4 + 4 / 12, "feet"),
  15819. weight: math.unit(600, "lb"),
  15820. name: "Laying",
  15821. image: {
  15822. source: "./media/characters/sheila/laying.svg",
  15823. extra: 1333 / 1265,
  15824. bottom: 0.16
  15825. }
  15826. },
  15827. },
  15828. [
  15829. {
  15830. name: "Normal",
  15831. height: math.unit(4 + 4 / 12, "feet"),
  15832. default: true
  15833. },
  15834. ]
  15835. ))
  15836. characterMakers.push(() => makeCharacter(
  15837. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15838. {
  15839. front: {
  15840. height: math.unit(6, "feet"),
  15841. weight: math.unit(190, "lb"),
  15842. name: "Front",
  15843. image: {
  15844. source: "./media/characters/sax/front.svg",
  15845. extra: 1187 / 973,
  15846. bottom: 0.042
  15847. }
  15848. },
  15849. },
  15850. [
  15851. {
  15852. name: "Micro",
  15853. height: math.unit(4, "inches"),
  15854. default: true
  15855. },
  15856. ]
  15857. ))
  15858. characterMakers.push(() => makeCharacter(
  15859. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15860. {
  15861. front: {
  15862. height: math.unit(6, "feet"),
  15863. weight: math.unit(150, "lb"),
  15864. name: "Front",
  15865. image: {
  15866. source: "./media/characters/pandora/front.svg",
  15867. extra: 2720 / 2556,
  15868. bottom: 0.015
  15869. }
  15870. },
  15871. back: {
  15872. height: math.unit(6, "feet"),
  15873. weight: math.unit(150, "lb"),
  15874. name: "Back",
  15875. image: {
  15876. source: "./media/characters/pandora/back.svg",
  15877. extra: 2720 / 2556,
  15878. bottom: 0.01
  15879. }
  15880. },
  15881. beans: {
  15882. height: math.unit(6 / 8, "feet"),
  15883. name: "Beans",
  15884. image: {
  15885. source: "./media/characters/pandora/beans.svg"
  15886. }
  15887. },
  15888. collar: {
  15889. height: math.unit(0.31, "feet"),
  15890. name: "Collar",
  15891. image: {
  15892. source: "./media/characters/pandora/collar.svg"
  15893. }
  15894. },
  15895. skirt: {
  15896. height: math.unit(6, "feet"),
  15897. weight: math.unit(150, "lb"),
  15898. name: "Skirt",
  15899. image: {
  15900. source: "./media/characters/pandora/skirt.svg",
  15901. extra: 1622 / 1525,
  15902. bottom: 0.015
  15903. }
  15904. },
  15905. hoodie: {
  15906. height: math.unit(6, "feet"),
  15907. weight: math.unit(150, "lb"),
  15908. name: "Hoodie",
  15909. image: {
  15910. source: "./media/characters/pandora/hoodie.svg",
  15911. extra: 1622 / 1525,
  15912. bottom: 0.015
  15913. }
  15914. },
  15915. casual: {
  15916. height: math.unit(6, "feet"),
  15917. weight: math.unit(150, "lb"),
  15918. name: "Casual",
  15919. image: {
  15920. source: "./media/characters/pandora/casual.svg",
  15921. extra: 1622 / 1525,
  15922. bottom: 0.015
  15923. }
  15924. },
  15925. },
  15926. [
  15927. {
  15928. name: "Normal",
  15929. height: math.unit(6, "feet")
  15930. },
  15931. {
  15932. name: "Big Steppy",
  15933. height: math.unit(1, "km"),
  15934. default: true
  15935. },
  15936. {
  15937. name: "Galactic Steppy",
  15938. height: math.unit(2, "gigameters")
  15939. },
  15940. ]
  15941. ))
  15942. characterMakers.push(() => makeCharacter(
  15943. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15944. {
  15945. side: {
  15946. height: math.unit(10, "feet"),
  15947. weight: math.unit(800, "kg"),
  15948. name: "Side",
  15949. image: {
  15950. source: "./media/characters/venio-darcony/side.svg",
  15951. extra: 1373 / 1003,
  15952. bottom: 0.037
  15953. }
  15954. },
  15955. front: {
  15956. height: math.unit(19, "feet"),
  15957. weight: math.unit(800, "kg"),
  15958. name: "Front",
  15959. image: {
  15960. source: "./media/characters/venio-darcony/front.svg"
  15961. }
  15962. },
  15963. back: {
  15964. height: math.unit(19, "feet"),
  15965. weight: math.unit(800, "kg"),
  15966. name: "Back",
  15967. image: {
  15968. source: "./media/characters/venio-darcony/back.svg"
  15969. }
  15970. },
  15971. sideNsfw: {
  15972. height: math.unit(10, "feet"),
  15973. weight: math.unit(800, "kg"),
  15974. name: "Side (NSFW)",
  15975. image: {
  15976. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15977. extra: 1373 / 1003,
  15978. bottom: 0.037
  15979. }
  15980. },
  15981. frontNsfw: {
  15982. height: math.unit(19, "feet"),
  15983. weight: math.unit(800, "kg"),
  15984. name: "Front (NSFW)",
  15985. image: {
  15986. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15987. }
  15988. },
  15989. backNsfw: {
  15990. height: math.unit(19, "feet"),
  15991. weight: math.unit(800, "kg"),
  15992. name: "Back (NSFW)",
  15993. image: {
  15994. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15995. }
  15996. },
  15997. sideArmored: {
  15998. height: math.unit(10, "feet"),
  15999. weight: math.unit(800, "kg"),
  16000. name: "Side (Armored)",
  16001. image: {
  16002. source: "./media/characters/venio-darcony/side-armored.svg",
  16003. extra: 1373 / 1003,
  16004. bottom: 0.037
  16005. }
  16006. },
  16007. frontArmored: {
  16008. height: math.unit(19, "feet"),
  16009. weight: math.unit(900, "kg"),
  16010. name: "Front (Armored)",
  16011. image: {
  16012. source: "./media/characters/venio-darcony/front-armored.svg"
  16013. }
  16014. },
  16015. backArmored: {
  16016. height: math.unit(19, "feet"),
  16017. weight: math.unit(900, "kg"),
  16018. name: "Back (Armored)",
  16019. image: {
  16020. source: "./media/characters/venio-darcony/back-armored.svg"
  16021. }
  16022. },
  16023. sword: {
  16024. height: math.unit(10, "feet"),
  16025. weight: math.unit(50, "lb"),
  16026. name: "Sword",
  16027. image: {
  16028. source: "./media/characters/venio-darcony/sword.svg"
  16029. }
  16030. },
  16031. },
  16032. [
  16033. {
  16034. name: "Normal",
  16035. height: math.unit(10, "feet")
  16036. },
  16037. {
  16038. name: "Macro",
  16039. height: math.unit(130, "feet"),
  16040. default: true
  16041. },
  16042. {
  16043. name: "Macro+",
  16044. height: math.unit(240, "feet")
  16045. },
  16046. ]
  16047. ))
  16048. characterMakers.push(() => makeCharacter(
  16049. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16050. {
  16051. front: {
  16052. height: math.unit(6, "feet"),
  16053. weight: math.unit(150, "lb"),
  16054. name: "Front",
  16055. image: {
  16056. source: "./media/characters/veski/front.svg",
  16057. extra: 1299 / 1225,
  16058. bottom: 0.04
  16059. }
  16060. },
  16061. back: {
  16062. height: math.unit(6, "feet"),
  16063. weight: math.unit(150, "lb"),
  16064. name: "Back",
  16065. image: {
  16066. source: "./media/characters/veski/back.svg",
  16067. extra: 1299 / 1225,
  16068. bottom: 0.008
  16069. }
  16070. },
  16071. maw: {
  16072. height: math.unit(1.5 * 1.21, "feet"),
  16073. name: "Maw",
  16074. image: {
  16075. source: "./media/characters/veski/maw.svg"
  16076. }
  16077. },
  16078. },
  16079. [
  16080. {
  16081. name: "Macro",
  16082. height: math.unit(2, "km"),
  16083. default: true
  16084. },
  16085. ]
  16086. ))
  16087. characterMakers.push(() => makeCharacter(
  16088. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16089. {
  16090. front: {
  16091. height: math.unit(5 + 7 / 12, "feet"),
  16092. name: "Front",
  16093. image: {
  16094. source: "./media/characters/isabelle/front.svg",
  16095. extra: 2130 / 1976,
  16096. bottom: 0.05
  16097. }
  16098. },
  16099. },
  16100. [
  16101. {
  16102. name: "Supermicro",
  16103. height: math.unit(10, "micrometers")
  16104. },
  16105. {
  16106. name: "Micro",
  16107. height: math.unit(1, "inch")
  16108. },
  16109. {
  16110. name: "Tiny",
  16111. height: math.unit(5, "inches")
  16112. },
  16113. {
  16114. name: "Standard",
  16115. height: math.unit(5 + 7 / 12, "inches")
  16116. },
  16117. {
  16118. name: "Macro",
  16119. height: math.unit(80, "meters"),
  16120. default: true
  16121. },
  16122. {
  16123. name: "Megamacro",
  16124. height: math.unit(250, "meters")
  16125. },
  16126. {
  16127. name: "Gigamacro",
  16128. height: math.unit(5, "km")
  16129. },
  16130. {
  16131. name: "Cosmic",
  16132. height: math.unit(2.5e6, "miles")
  16133. },
  16134. ]
  16135. ))
  16136. characterMakers.push(() => makeCharacter(
  16137. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16138. {
  16139. front: {
  16140. height: math.unit(6, "feet"),
  16141. weight: math.unit(150, "lb"),
  16142. name: "Front",
  16143. image: {
  16144. source: "./media/characters/hanzo/front.svg",
  16145. extra: 374 / 344,
  16146. bottom: 0.02
  16147. }
  16148. },
  16149. },
  16150. [
  16151. {
  16152. name: "Normal",
  16153. height: math.unit(8, "feet"),
  16154. default: true
  16155. },
  16156. ]
  16157. ))
  16158. characterMakers.push(() => makeCharacter(
  16159. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16160. {
  16161. front: {
  16162. height: math.unit(7, "feet"),
  16163. weight: math.unit(130, "lb"),
  16164. name: "Front",
  16165. image: {
  16166. source: "./media/characters/anna/front.svg",
  16167. extra: 169 / 145,
  16168. bottom: 0.06
  16169. }
  16170. },
  16171. full: {
  16172. height: math.unit(4.96, "feet"),
  16173. weight: math.unit(220, "lb"),
  16174. name: "Full",
  16175. image: {
  16176. source: "./media/characters/anna/full.svg",
  16177. extra: 138 / 114,
  16178. bottom: 0.15
  16179. }
  16180. },
  16181. tongue: {
  16182. height: math.unit(2.53, "feet"),
  16183. name: "Tongue",
  16184. image: {
  16185. source: "./media/characters/anna/tongue.svg"
  16186. }
  16187. },
  16188. },
  16189. [
  16190. {
  16191. name: "Normal",
  16192. height: math.unit(7, "feet"),
  16193. default: true
  16194. },
  16195. ]
  16196. ))
  16197. characterMakers.push(() => makeCharacter(
  16198. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16199. {
  16200. front: {
  16201. height: math.unit(7, "feet"),
  16202. weight: math.unit(150, "lb"),
  16203. name: "Front",
  16204. image: {
  16205. source: "./media/characters/ian-corvid/front.svg",
  16206. extra: 150 / 142,
  16207. bottom: 0.02
  16208. }
  16209. },
  16210. back: {
  16211. height: math.unit(7, "feet"),
  16212. weight: math.unit(150, "lb"),
  16213. name: "Back",
  16214. image: {
  16215. source: "./media/characters/ian-corvid/back.svg",
  16216. extra: 150 / 143,
  16217. bottom: 0.01
  16218. }
  16219. },
  16220. stomping: {
  16221. height: math.unit(7, "feet"),
  16222. weight: math.unit(150, "lb"),
  16223. name: "Stomping",
  16224. image: {
  16225. source: "./media/characters/ian-corvid/stomping.svg",
  16226. extra: 76 / 72
  16227. }
  16228. },
  16229. sitting: {
  16230. height: math.unit(7 / 1.8, "feet"),
  16231. weight: math.unit(150, "lb"),
  16232. name: "Sitting",
  16233. image: {
  16234. source: "./media/characters/ian-corvid/sitting.svg",
  16235. extra: 1400 / 1269,
  16236. bottom: 0.15
  16237. }
  16238. },
  16239. },
  16240. [
  16241. {
  16242. name: "Tiny Microw",
  16243. height: math.unit(1, "inch")
  16244. },
  16245. {
  16246. name: "Microw",
  16247. height: math.unit(6, "inches")
  16248. },
  16249. {
  16250. name: "Crow",
  16251. height: math.unit(7 + 1 / 12, "feet"),
  16252. default: true
  16253. },
  16254. {
  16255. name: "Macrow",
  16256. height: math.unit(176, "feet")
  16257. },
  16258. ]
  16259. ))
  16260. characterMakers.push(() => makeCharacter(
  16261. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16262. {
  16263. front: {
  16264. height: math.unit(5 + 7 / 12, "feet"),
  16265. weight: math.unit(147, "lb"),
  16266. name: "Front",
  16267. image: {
  16268. source: "./media/characters/natalie-kellon/front.svg",
  16269. extra: 1214 / 1141,
  16270. bottom: 0.02
  16271. }
  16272. },
  16273. },
  16274. [
  16275. {
  16276. name: "Micro",
  16277. height: math.unit(1 / 16, "inch")
  16278. },
  16279. {
  16280. name: "Tiny",
  16281. height: math.unit(4, "inches")
  16282. },
  16283. {
  16284. name: "Normal",
  16285. height: math.unit(5 + 7 / 12, "feet"),
  16286. default: true
  16287. },
  16288. {
  16289. name: "Amazon",
  16290. height: math.unit(12, "feet")
  16291. },
  16292. {
  16293. name: "Giantess",
  16294. height: math.unit(160, "meters")
  16295. },
  16296. {
  16297. name: "Titaness",
  16298. height: math.unit(800, "meters")
  16299. },
  16300. ]
  16301. ))
  16302. characterMakers.push(() => makeCharacter(
  16303. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16304. {
  16305. front: {
  16306. height: math.unit(6, "feet"),
  16307. weight: math.unit(150, "lb"),
  16308. name: "Front",
  16309. image: {
  16310. source: "./media/characters/alluria/front.svg",
  16311. extra: 806 / 738,
  16312. bottom: 0.01
  16313. }
  16314. },
  16315. side: {
  16316. height: math.unit(6, "feet"),
  16317. weight: math.unit(150, "lb"),
  16318. name: "Side",
  16319. image: {
  16320. source: "./media/characters/alluria/side.svg",
  16321. extra: 800 / 750,
  16322. }
  16323. },
  16324. back: {
  16325. height: math.unit(6, "feet"),
  16326. weight: math.unit(150, "lb"),
  16327. name: "Back",
  16328. image: {
  16329. source: "./media/characters/alluria/back.svg",
  16330. extra: 806 / 738,
  16331. }
  16332. },
  16333. frontMaid: {
  16334. height: math.unit(6, "feet"),
  16335. weight: math.unit(150, "lb"),
  16336. name: "Front (Maid)",
  16337. image: {
  16338. source: "./media/characters/alluria/front-maid.svg",
  16339. extra: 806 / 738,
  16340. bottom: 0.01
  16341. }
  16342. },
  16343. sideMaid: {
  16344. height: math.unit(6, "feet"),
  16345. weight: math.unit(150, "lb"),
  16346. name: "Side (Maid)",
  16347. image: {
  16348. source: "./media/characters/alluria/side-maid.svg",
  16349. extra: 800 / 750,
  16350. bottom: 0.005
  16351. }
  16352. },
  16353. backMaid: {
  16354. height: math.unit(6, "feet"),
  16355. weight: math.unit(150, "lb"),
  16356. name: "Back (Maid)",
  16357. image: {
  16358. source: "./media/characters/alluria/back-maid.svg",
  16359. extra: 806 / 738,
  16360. }
  16361. },
  16362. },
  16363. [
  16364. {
  16365. name: "Micro",
  16366. height: math.unit(6, "inches"),
  16367. default: true
  16368. },
  16369. ]
  16370. ))
  16371. characterMakers.push(() => makeCharacter(
  16372. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16373. {
  16374. front: {
  16375. height: math.unit(6, "feet"),
  16376. weight: math.unit(150, "lb"),
  16377. name: "Front",
  16378. image: {
  16379. source: "./media/characters/kyle/front.svg",
  16380. extra: 1069 / 962,
  16381. bottom: 77.228 / 1727.45
  16382. }
  16383. },
  16384. },
  16385. [
  16386. {
  16387. name: "Macro",
  16388. height: math.unit(150, "feet"),
  16389. default: true
  16390. },
  16391. ]
  16392. ))
  16393. characterMakers.push(() => makeCharacter(
  16394. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16395. {
  16396. front: {
  16397. height: math.unit(6, "feet"),
  16398. weight: math.unit(300, "lb"),
  16399. name: "Front",
  16400. image: {
  16401. source: "./media/characters/duncan/front.svg",
  16402. extra: 1650 / 1482,
  16403. bottom: 0.05
  16404. }
  16405. },
  16406. },
  16407. [
  16408. {
  16409. name: "Macro",
  16410. height: math.unit(100, "feet"),
  16411. default: true
  16412. },
  16413. ]
  16414. ))
  16415. characterMakers.push(() => makeCharacter(
  16416. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16417. {
  16418. front: {
  16419. height: math.unit(5 + 4 / 12, "feet"),
  16420. weight: math.unit(220, "lb"),
  16421. name: "Front",
  16422. image: {
  16423. source: "./media/characters/memory/front.svg",
  16424. extra: 3641 / 3545,
  16425. bottom: 0.03
  16426. }
  16427. },
  16428. back: {
  16429. height: math.unit(5 + 4 / 12, "feet"),
  16430. weight: math.unit(220, "lb"),
  16431. name: "Back",
  16432. image: {
  16433. source: "./media/characters/memory/back.svg",
  16434. extra: 3641 / 3545,
  16435. bottom: 0.025
  16436. }
  16437. },
  16438. frontSkirt: {
  16439. height: math.unit(5 + 4 / 12, "feet"),
  16440. weight: math.unit(220, "lb"),
  16441. name: "Front (Skirt)",
  16442. image: {
  16443. source: "./media/characters/memory/front-skirt.svg",
  16444. extra: 3641 / 3545,
  16445. bottom: 0.03
  16446. }
  16447. },
  16448. frontDress: {
  16449. height: math.unit(5 + 4 / 12, "feet"),
  16450. weight: math.unit(220, "lb"),
  16451. name: "Front (Dress)",
  16452. image: {
  16453. source: "./media/characters/memory/front-dress.svg",
  16454. extra: 3641 / 3545,
  16455. bottom: 0.03
  16456. }
  16457. },
  16458. },
  16459. [
  16460. {
  16461. name: "Micro",
  16462. height: math.unit(6, "inches"),
  16463. default: true
  16464. },
  16465. {
  16466. name: "Normal",
  16467. height: math.unit(5 + 4 / 12, "feet")
  16468. },
  16469. ]
  16470. ))
  16471. characterMakers.push(() => makeCharacter(
  16472. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16473. {
  16474. front: {
  16475. height: math.unit(4 + 11 / 12, "feet"),
  16476. weight: math.unit(100, "lb"),
  16477. name: "Front",
  16478. image: {
  16479. source: "./media/characters/luno/front.svg",
  16480. extra: 1535 / 1487,
  16481. bottom: 0.03
  16482. }
  16483. },
  16484. },
  16485. [
  16486. {
  16487. name: "Micro",
  16488. height: math.unit(3, "inches")
  16489. },
  16490. {
  16491. name: "Normal",
  16492. height: math.unit(4 + 11 / 12, "feet"),
  16493. default: true
  16494. },
  16495. {
  16496. name: "Macro",
  16497. height: math.unit(300, "feet")
  16498. },
  16499. {
  16500. name: "Megamacro",
  16501. height: math.unit(700, "miles")
  16502. },
  16503. ]
  16504. ))
  16505. characterMakers.push(() => makeCharacter(
  16506. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16507. {
  16508. front: {
  16509. height: math.unit(6 + 2 / 12, "feet"),
  16510. weight: math.unit(170, "lb"),
  16511. name: "Front",
  16512. image: {
  16513. source: "./media/characters/jamesy/front.svg",
  16514. extra: 440 / 382,
  16515. bottom: 0.005
  16516. }
  16517. },
  16518. },
  16519. [
  16520. {
  16521. name: "Micro",
  16522. height: math.unit(3, "inches")
  16523. },
  16524. {
  16525. name: "Normal",
  16526. height: math.unit(6 + 2 / 12, "feet"),
  16527. default: true
  16528. },
  16529. {
  16530. name: "Macro",
  16531. height: math.unit(300, "feet")
  16532. },
  16533. {
  16534. name: "Megamacro",
  16535. height: math.unit(700, "miles")
  16536. },
  16537. ]
  16538. ))
  16539. characterMakers.push(() => makeCharacter(
  16540. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16541. {
  16542. front: {
  16543. height: math.unit(6, "feet"),
  16544. weight: math.unit(160, "lb"),
  16545. name: "Front",
  16546. image: {
  16547. source: "./media/characters/mark/front.svg",
  16548. extra: 3300 / 3100,
  16549. bottom: 136.42 / 3440.47
  16550. }
  16551. },
  16552. },
  16553. [
  16554. {
  16555. name: "Macro",
  16556. height: math.unit(120, "meters")
  16557. },
  16558. {
  16559. name: "Bigger Macro",
  16560. height: math.unit(350, "meters")
  16561. },
  16562. {
  16563. name: "Megamacro",
  16564. height: math.unit(8, "km"),
  16565. default: true
  16566. },
  16567. {
  16568. name: "Continental",
  16569. height: math.unit(4550, "km")
  16570. },
  16571. {
  16572. name: "Planetary",
  16573. height: math.unit(65000, "km")
  16574. },
  16575. ]
  16576. ))
  16577. characterMakers.push(() => makeCharacter(
  16578. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16579. {
  16580. front: {
  16581. height: math.unit(6, "feet"),
  16582. weight: math.unit(400, "lb"),
  16583. name: "Front",
  16584. image: {
  16585. source: "./media/characters/mac/front.svg",
  16586. extra: 1048 / 987.7,
  16587. bottom: 60 / 1107.6,
  16588. }
  16589. },
  16590. },
  16591. [
  16592. {
  16593. name: "Macro",
  16594. height: math.unit(500, "feet"),
  16595. default: true
  16596. },
  16597. ]
  16598. ))
  16599. characterMakers.push(() => makeCharacter(
  16600. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16601. {
  16602. front: {
  16603. height: math.unit(5 + 2 / 12, "feet"),
  16604. weight: math.unit(190, "lb"),
  16605. name: "Front",
  16606. image: {
  16607. source: "./media/characters/bari/front.svg",
  16608. extra: 3156 / 2880,
  16609. bottom: 0.03
  16610. }
  16611. },
  16612. back: {
  16613. height: math.unit(5 + 2 / 12, "feet"),
  16614. weight: math.unit(190, "lb"),
  16615. name: "Back",
  16616. image: {
  16617. source: "./media/characters/bari/back.svg",
  16618. extra: 3260 / 2834,
  16619. bottom: 0.025
  16620. }
  16621. },
  16622. frontPlush: {
  16623. height: math.unit(5 + 2 / 12, "feet"),
  16624. weight: math.unit(190, "lb"),
  16625. name: "Front (Plush)",
  16626. image: {
  16627. source: "./media/characters/bari/front-plush.svg",
  16628. extra: 1112 / 1061,
  16629. bottom: 0.002
  16630. }
  16631. },
  16632. },
  16633. [
  16634. {
  16635. name: "Micro",
  16636. height: math.unit(3, "inches")
  16637. },
  16638. {
  16639. name: "Normal",
  16640. height: math.unit(5 + 2 / 12, "feet"),
  16641. default: true
  16642. },
  16643. {
  16644. name: "Macro",
  16645. height: math.unit(20, "feet")
  16646. },
  16647. ]
  16648. ))
  16649. characterMakers.push(() => makeCharacter(
  16650. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16651. {
  16652. front: {
  16653. height: math.unit(6 + 1 / 12, "feet"),
  16654. weight: math.unit(275, "lb"),
  16655. name: "Front",
  16656. image: {
  16657. source: "./media/characters/hunter-misha-raven/front.svg"
  16658. }
  16659. },
  16660. },
  16661. [
  16662. {
  16663. name: "Mortal",
  16664. height: math.unit(6 + 1 / 12, "feet")
  16665. },
  16666. {
  16667. name: "Divine",
  16668. height: math.unit(1.12134e34, "parsecs"),
  16669. default: true
  16670. },
  16671. ]
  16672. ))
  16673. characterMakers.push(() => makeCharacter(
  16674. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16675. {
  16676. front: {
  16677. height: math.unit(6 + 3 / 12, "feet"),
  16678. weight: math.unit(220, "lb"),
  16679. name: "Front",
  16680. image: {
  16681. source: "./media/characters/max-calore/front.svg",
  16682. extra: 1700 / 1648,
  16683. bottom: 0.01
  16684. }
  16685. },
  16686. back: {
  16687. height: math.unit(6 + 3 / 12, "feet"),
  16688. weight: math.unit(220, "lb"),
  16689. name: "Back",
  16690. image: {
  16691. source: "./media/characters/max-calore/back.svg",
  16692. extra: 1700 / 1648,
  16693. bottom: 0.01
  16694. }
  16695. },
  16696. },
  16697. [
  16698. {
  16699. name: "Normal",
  16700. height: math.unit(6 + 3 / 12, "feet"),
  16701. default: true
  16702. },
  16703. ]
  16704. ))
  16705. characterMakers.push(() => makeCharacter(
  16706. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16707. {
  16708. side: {
  16709. height: math.unit(2 + 8 / 12, "feet"),
  16710. weight: math.unit(99, "lb"),
  16711. name: "Side",
  16712. image: {
  16713. source: "./media/characters/aspen/side.svg",
  16714. extra: 152 / 138,
  16715. bottom: 0.032
  16716. }
  16717. },
  16718. },
  16719. [
  16720. {
  16721. name: "Normal",
  16722. height: math.unit(2 + 8 / 12, "feet"),
  16723. default: true
  16724. },
  16725. ]
  16726. ))
  16727. characterMakers.push(() => makeCharacter(
  16728. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16729. {
  16730. side: {
  16731. height: math.unit(3 + 2 / 12, "feet"),
  16732. weight: math.unit(224, "lb"),
  16733. name: "Side",
  16734. image: {
  16735. source: "./media/characters/sheila-feral-wolf/side.svg",
  16736. extra: 179 / 166,
  16737. bottom: 0.03
  16738. }
  16739. },
  16740. },
  16741. [
  16742. {
  16743. name: "Normal",
  16744. height: math.unit(3 + 2 / 12, "feet"),
  16745. default: true
  16746. },
  16747. ]
  16748. ))
  16749. characterMakers.push(() => makeCharacter(
  16750. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16751. {
  16752. side: {
  16753. height: math.unit(1 + 9 / 12, "feet"),
  16754. weight: math.unit(38, "lb"),
  16755. name: "Side",
  16756. image: {
  16757. source: "./media/characters/michelle/side.svg",
  16758. extra: 147 / 136.7,
  16759. bottom: 0.03
  16760. }
  16761. },
  16762. },
  16763. [
  16764. {
  16765. name: "Normal",
  16766. height: math.unit(1 + 9 / 12, "feet"),
  16767. default: true
  16768. },
  16769. ]
  16770. ))
  16771. characterMakers.push(() => makeCharacter(
  16772. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16773. {
  16774. front: {
  16775. height: math.unit(1 + 1 / 12, "feet"),
  16776. weight: math.unit(18, "lb"),
  16777. name: "Front",
  16778. image: {
  16779. source: "./media/characters/nino/front.svg"
  16780. }
  16781. },
  16782. },
  16783. [
  16784. {
  16785. name: "Normal",
  16786. height: math.unit(1 + 1 / 12, "feet"),
  16787. default: true
  16788. },
  16789. ]
  16790. ))
  16791. characterMakers.push(() => makeCharacter(
  16792. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16793. {
  16794. front: {
  16795. height: math.unit(1, "feet"),
  16796. weight: math.unit(16, "lb"),
  16797. name: "Front",
  16798. image: {
  16799. source: "./media/characters/viola/front.svg"
  16800. }
  16801. },
  16802. },
  16803. [
  16804. {
  16805. name: "Normal",
  16806. height: math.unit(1, "feet"),
  16807. default: true
  16808. },
  16809. ]
  16810. ))
  16811. characterMakers.push(() => makeCharacter(
  16812. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16813. {
  16814. front: {
  16815. height: math.unit(6 + 5 / 12, "feet"),
  16816. weight: math.unit(580, "lb"),
  16817. name: "Front",
  16818. image: {
  16819. source: "./media/characters/atlas/front.svg",
  16820. extra: 298.5 / 290,
  16821. bottom: 0.015
  16822. }
  16823. },
  16824. },
  16825. [
  16826. {
  16827. name: "Normal",
  16828. height: math.unit(6 + 5 / 12, "feet"),
  16829. default: true
  16830. },
  16831. ]
  16832. ))
  16833. characterMakers.push(() => makeCharacter(
  16834. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16835. {
  16836. side: {
  16837. height: math.unit(1 + 10 / 12, "feet"),
  16838. weight: math.unit(25, "lb"),
  16839. name: "Side",
  16840. image: {
  16841. source: "./media/characters/davy/side.svg",
  16842. extra: 200 / 170,
  16843. bottom: 0.01
  16844. }
  16845. },
  16846. },
  16847. [
  16848. {
  16849. name: "Normal",
  16850. height: math.unit(1 + 10 / 12, "feet"),
  16851. default: true
  16852. },
  16853. ]
  16854. ))
  16855. characterMakers.push(() => makeCharacter(
  16856. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16857. {
  16858. side: {
  16859. height: math.unit(4 + 8 / 12, "feet"),
  16860. weight: math.unit(166, "lb"),
  16861. name: "Side",
  16862. image: {
  16863. source: "./media/characters/fiona/side.svg",
  16864. extra: 232 / 220,
  16865. bottom: 0.03
  16866. }
  16867. },
  16868. },
  16869. [
  16870. {
  16871. name: "Normal",
  16872. height: math.unit(4 + 8 / 12, "feet"),
  16873. default: true
  16874. },
  16875. ]
  16876. ))
  16877. characterMakers.push(() => makeCharacter(
  16878. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16879. {
  16880. front: {
  16881. height: math.unit(2, "feet"),
  16882. weight: math.unit(62, "lb"),
  16883. name: "Front",
  16884. image: {
  16885. source: "./media/characters/lyla/front.svg",
  16886. bottom: 0.1
  16887. }
  16888. },
  16889. },
  16890. [
  16891. {
  16892. name: "Normal",
  16893. height: math.unit(2, "feet"),
  16894. default: true
  16895. },
  16896. ]
  16897. ))
  16898. characterMakers.push(() => makeCharacter(
  16899. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16900. {
  16901. side: {
  16902. height: math.unit(1.8, "feet"),
  16903. weight: math.unit(44, "lb"),
  16904. name: "Side",
  16905. image: {
  16906. source: "./media/characters/perseus/side.svg",
  16907. bottom: 0.21
  16908. }
  16909. },
  16910. },
  16911. [
  16912. {
  16913. name: "Normal",
  16914. height: math.unit(1.8, "feet"),
  16915. default: true
  16916. },
  16917. ]
  16918. ))
  16919. characterMakers.push(() => makeCharacter(
  16920. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16921. {
  16922. side: {
  16923. height: math.unit(4 + 2 / 12, "feet"),
  16924. weight: math.unit(20, "lb"),
  16925. name: "Side",
  16926. image: {
  16927. source: "./media/characters/remus/side.svg"
  16928. }
  16929. },
  16930. },
  16931. [
  16932. {
  16933. name: "Normal",
  16934. height: math.unit(4 + 2 / 12, "feet"),
  16935. default: true
  16936. },
  16937. ]
  16938. ))
  16939. characterMakers.push(() => makeCharacter(
  16940. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16941. {
  16942. front: {
  16943. height: math.unit(4 + 11 / 12, "feet"),
  16944. weight: math.unit(114, "lb"),
  16945. name: "Front",
  16946. image: {
  16947. source: "./media/characters/raf/front.svg",
  16948. bottom: 20.5 / 1863
  16949. }
  16950. },
  16951. side: {
  16952. height: math.unit(4 + 11 / 12, "feet"),
  16953. weight: math.unit(114, "lb"),
  16954. name: "Side",
  16955. image: {
  16956. source: "./media/characters/raf/side.svg",
  16957. bottom: 22 / 1822
  16958. }
  16959. },
  16960. },
  16961. [
  16962. {
  16963. name: "Micro",
  16964. height: math.unit(2, "inches")
  16965. },
  16966. {
  16967. name: "Normal",
  16968. height: math.unit(4 + 11 / 12, "feet"),
  16969. default: true
  16970. },
  16971. {
  16972. name: "Macro",
  16973. height: math.unit(70, "feet")
  16974. },
  16975. ]
  16976. ))
  16977. characterMakers.push(() => makeCharacter(
  16978. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16979. {
  16980. front: {
  16981. height: math.unit(1.5, "meters"),
  16982. weight: math.unit(68, "kg"),
  16983. name: "Front",
  16984. image: {
  16985. source: "./media/characters/liam-einarr/front.svg",
  16986. extra: 2822 / 2666
  16987. }
  16988. },
  16989. back: {
  16990. height: math.unit(1.5, "meters"),
  16991. weight: math.unit(68, "kg"),
  16992. name: "Back",
  16993. image: {
  16994. source: "./media/characters/liam-einarr/back.svg",
  16995. extra: 2822 / 2666,
  16996. bottom: 0.015
  16997. }
  16998. },
  16999. },
  17000. [
  17001. {
  17002. name: "Normal",
  17003. height: math.unit(1.5, "meters"),
  17004. default: true
  17005. },
  17006. {
  17007. name: "Macro",
  17008. height: math.unit(150, "meters")
  17009. },
  17010. {
  17011. name: "Megamacro",
  17012. height: math.unit(35, "km")
  17013. },
  17014. ]
  17015. ))
  17016. characterMakers.push(() => makeCharacter(
  17017. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17018. {
  17019. front: {
  17020. height: math.unit(6, "feet"),
  17021. weight: math.unit(75, "kg"),
  17022. name: "Front",
  17023. image: {
  17024. source: "./media/characters/linda/front.svg",
  17025. extra: 930 / 874,
  17026. bottom: 0.004
  17027. }
  17028. },
  17029. },
  17030. [
  17031. {
  17032. name: "Normal",
  17033. height: math.unit(6, "feet"),
  17034. default: true
  17035. },
  17036. ]
  17037. ))
  17038. characterMakers.push(() => makeCharacter(
  17039. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17040. {
  17041. front: {
  17042. height: math.unit(6 + 8 / 12, "feet"),
  17043. weight: math.unit(220, "lb"),
  17044. name: "Front",
  17045. image: {
  17046. source: "./media/characters/caylex/front.svg",
  17047. extra: 821 / 772,
  17048. bottom: 0.07
  17049. }
  17050. },
  17051. back: {
  17052. height: math.unit(6 + 8 / 12, "feet"),
  17053. weight: math.unit(220, "lb"),
  17054. name: "Back",
  17055. image: {
  17056. source: "./media/characters/caylex/back.svg",
  17057. extra: 821 / 772,
  17058. bottom: 0.022
  17059. }
  17060. },
  17061. hand: {
  17062. height: math.unit(1.25, "feet"),
  17063. name: "Hand",
  17064. image: {
  17065. source: "./media/characters/caylex/hand.svg"
  17066. }
  17067. },
  17068. foot: {
  17069. height: math.unit(1.6, "feet"),
  17070. name: "Foot",
  17071. image: {
  17072. source: "./media/characters/caylex/foot.svg"
  17073. }
  17074. },
  17075. armored: {
  17076. height: math.unit(6 + 8 / 12, "feet"),
  17077. weight: math.unit(250, "lb"),
  17078. name: "Armored",
  17079. image: {
  17080. source: "./media/characters/caylex/armored.svg",
  17081. extra: 1420 / 1310,
  17082. bottom: 0.045
  17083. }
  17084. },
  17085. },
  17086. [
  17087. {
  17088. name: "Normal",
  17089. height: math.unit(6 + 8 / 12, "feet"),
  17090. default: true
  17091. },
  17092. {
  17093. name: "Normal+",
  17094. height: math.unit(12, "feet")
  17095. },
  17096. ]
  17097. ))
  17098. characterMakers.push(() => makeCharacter(
  17099. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17100. {
  17101. front: {
  17102. height: math.unit(7 + 6 / 12, "feet"),
  17103. weight: math.unit(288, "lb"),
  17104. name: "Front",
  17105. image: {
  17106. source: "./media/characters/alana/front.svg",
  17107. extra: 679 / 653,
  17108. bottom: 22.5 / 701
  17109. }
  17110. },
  17111. },
  17112. [
  17113. {
  17114. name: "Normal",
  17115. height: math.unit(7 + 6 / 12, "feet")
  17116. },
  17117. {
  17118. name: "Large",
  17119. height: math.unit(50, "feet")
  17120. },
  17121. {
  17122. name: "Macro",
  17123. height: math.unit(100, "feet"),
  17124. default: true
  17125. },
  17126. {
  17127. name: "Macro+",
  17128. height: math.unit(200, "feet")
  17129. },
  17130. ]
  17131. ))
  17132. characterMakers.push(() => makeCharacter(
  17133. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17134. {
  17135. front: {
  17136. height: math.unit(6 + 1 / 12, "feet"),
  17137. weight: math.unit(210, "lb"),
  17138. name: "Front",
  17139. image: {
  17140. source: "./media/characters/hasani/front.svg",
  17141. extra: 244 / 232,
  17142. bottom: 0.01
  17143. }
  17144. },
  17145. back: {
  17146. height: math.unit(6 + 1 / 12, "feet"),
  17147. weight: math.unit(210, "lb"),
  17148. name: "Back",
  17149. image: {
  17150. source: "./media/characters/hasani/back.svg",
  17151. extra: 244 / 232,
  17152. bottom: 0.01
  17153. }
  17154. },
  17155. },
  17156. [
  17157. {
  17158. name: "Normal",
  17159. height: math.unit(6 + 1 / 12, "feet")
  17160. },
  17161. {
  17162. name: "Macro",
  17163. height: math.unit(175, "feet"),
  17164. default: true
  17165. },
  17166. ]
  17167. ))
  17168. characterMakers.push(() => makeCharacter(
  17169. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17170. {
  17171. front: {
  17172. height: math.unit(1.82, "meters"),
  17173. weight: math.unit(140, "lb"),
  17174. name: "Front",
  17175. image: {
  17176. source: "./media/characters/nita/front.svg",
  17177. extra: 2473 / 2363,
  17178. bottom: 0.01
  17179. }
  17180. },
  17181. },
  17182. [
  17183. {
  17184. name: "Normal",
  17185. height: math.unit(1.82, "m")
  17186. },
  17187. {
  17188. name: "Macro",
  17189. height: math.unit(300, "m")
  17190. },
  17191. {
  17192. name: "Mistake Canon",
  17193. height: math.unit(0.5, "miles"),
  17194. default: true
  17195. },
  17196. {
  17197. name: "Big Mistake",
  17198. height: math.unit(13, "miles")
  17199. },
  17200. {
  17201. name: "Playing God",
  17202. height: math.unit(2450, "miles")
  17203. },
  17204. ]
  17205. ))
  17206. characterMakers.push(() => makeCharacter(
  17207. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17208. {
  17209. front: {
  17210. height: math.unit(4, "feet"),
  17211. weight: math.unit(120, "lb"),
  17212. name: "Front",
  17213. image: {
  17214. source: "./media/characters/shiriko/front.svg",
  17215. extra: 970/934,
  17216. bottom: 5/975
  17217. }
  17218. },
  17219. },
  17220. [
  17221. {
  17222. name: "Normal",
  17223. height: math.unit(4, "feet"),
  17224. default: true
  17225. },
  17226. ]
  17227. ))
  17228. characterMakers.push(() => makeCharacter(
  17229. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17230. {
  17231. front: {
  17232. height: math.unit(6, "feet"),
  17233. name: "front",
  17234. image: {
  17235. source: "./media/characters/deja/front.svg",
  17236. extra: 926 / 840,
  17237. bottom: 0.07
  17238. }
  17239. },
  17240. },
  17241. [
  17242. {
  17243. name: "Planck Length",
  17244. height: math.unit(1.6e-35, "meters")
  17245. },
  17246. {
  17247. name: "Normal",
  17248. height: math.unit(30.48, "meters"),
  17249. default: true
  17250. },
  17251. {
  17252. name: "Universal",
  17253. height: math.unit(8.8e26, "meters")
  17254. },
  17255. ]
  17256. ))
  17257. characterMakers.push(() => makeCharacter(
  17258. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17259. {
  17260. side: {
  17261. height: math.unit(8, "feet"),
  17262. weight: math.unit(6300, "lb"),
  17263. name: "Side",
  17264. image: {
  17265. source: "./media/characters/anima/side.svg",
  17266. bottom: 0.035
  17267. }
  17268. },
  17269. },
  17270. [
  17271. {
  17272. name: "Normal",
  17273. height: math.unit(8, "feet"),
  17274. default: true
  17275. },
  17276. ]
  17277. ))
  17278. characterMakers.push(() => makeCharacter(
  17279. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17280. {
  17281. front: {
  17282. height: math.unit(8, "feet"),
  17283. weight: math.unit(350, "lb"),
  17284. name: "Front",
  17285. image: {
  17286. source: "./media/characters/bianca/front.svg",
  17287. extra: 234 / 225,
  17288. bottom: 0.03
  17289. }
  17290. },
  17291. },
  17292. [
  17293. {
  17294. name: "Normal",
  17295. height: math.unit(8, "feet"),
  17296. default: true
  17297. },
  17298. ]
  17299. ))
  17300. characterMakers.push(() => makeCharacter(
  17301. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17302. {
  17303. front: {
  17304. height: math.unit(6, "feet"),
  17305. weight: math.unit(150, "lb"),
  17306. name: "Front",
  17307. image: {
  17308. source: "./media/characters/adinia/front.svg",
  17309. extra: 1845 / 1672,
  17310. bottom: 0.02
  17311. }
  17312. },
  17313. back: {
  17314. height: math.unit(6, "feet"),
  17315. weight: math.unit(150, "lb"),
  17316. name: "Back",
  17317. image: {
  17318. source: "./media/characters/adinia/back.svg",
  17319. extra: 1845 / 1672,
  17320. bottom: 0.002
  17321. }
  17322. },
  17323. },
  17324. [
  17325. {
  17326. name: "Normal",
  17327. height: math.unit(11 + 5 / 12, "feet"),
  17328. default: true
  17329. },
  17330. ]
  17331. ))
  17332. characterMakers.push(() => makeCharacter(
  17333. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17334. {
  17335. front: {
  17336. height: math.unit(3, "meters"),
  17337. weight: math.unit(200, "kg"),
  17338. name: "Front",
  17339. image: {
  17340. source: "./media/characters/lykasa/front.svg",
  17341. extra: 1076 / 976,
  17342. bottom: 0.06
  17343. }
  17344. },
  17345. },
  17346. [
  17347. {
  17348. name: "Normal",
  17349. height: math.unit(3, "meters")
  17350. },
  17351. {
  17352. name: "Kaiju",
  17353. height: math.unit(120, "meters"),
  17354. default: true
  17355. },
  17356. {
  17357. name: "Mega Kaiju",
  17358. height: math.unit(240, "km")
  17359. },
  17360. {
  17361. name: "Giga Kaiju",
  17362. height: math.unit(400, "megameters")
  17363. },
  17364. {
  17365. name: "Tera Kaiju",
  17366. height: math.unit(800, "gigameters")
  17367. },
  17368. {
  17369. name: "Kaiju Dragon Goddess",
  17370. height: math.unit(26, "zettaparsecs")
  17371. },
  17372. ]
  17373. ))
  17374. characterMakers.push(() => makeCharacter(
  17375. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17376. {
  17377. side: {
  17378. height: math.unit(283 / 124 * 6, "feet"),
  17379. weight: math.unit(35000, "lb"),
  17380. name: "Side",
  17381. image: {
  17382. source: "./media/characters/malfaren/side.svg",
  17383. extra: 2500 / 1010,
  17384. bottom: 0.01
  17385. }
  17386. },
  17387. front: {
  17388. height: math.unit(22.36, "feet"),
  17389. weight: math.unit(35000, "lb"),
  17390. name: "Front",
  17391. image: {
  17392. source: "./media/characters/malfaren/front.svg",
  17393. extra: 1631 / 1476,
  17394. bottom: 0.01
  17395. }
  17396. },
  17397. maw: {
  17398. height: math.unit(6.9, "feet"),
  17399. name: "Maw",
  17400. image: {
  17401. source: "./media/characters/malfaren/maw.svg"
  17402. }
  17403. },
  17404. },
  17405. [
  17406. {
  17407. name: "Big",
  17408. height: math.unit(283 / 162 * 6, "feet"),
  17409. },
  17410. {
  17411. name: "Bigger",
  17412. height: math.unit(283 / 124 * 6, "feet")
  17413. },
  17414. {
  17415. name: "Massive",
  17416. height: math.unit(283 / 92 * 6, "feet"),
  17417. default: true
  17418. },
  17419. {
  17420. name: "👀💦",
  17421. height: math.unit(283 / 73 * 6, "feet"),
  17422. },
  17423. ]
  17424. ))
  17425. characterMakers.push(() => makeCharacter(
  17426. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17427. {
  17428. front: {
  17429. height: math.unit(1.7, "m"),
  17430. weight: math.unit(70, "kg"),
  17431. name: "Front",
  17432. image: {
  17433. source: "./media/characters/kernel/front.svg",
  17434. extra: 222 / 210,
  17435. bottom: 0.007
  17436. }
  17437. },
  17438. },
  17439. [
  17440. {
  17441. name: "Nano",
  17442. height: math.unit(17, "micrometers")
  17443. },
  17444. {
  17445. name: "Micro",
  17446. height: math.unit(1.7, "mm")
  17447. },
  17448. {
  17449. name: "Small",
  17450. height: math.unit(1.7, "cm")
  17451. },
  17452. {
  17453. name: "Normal",
  17454. height: math.unit(1.7, "m"),
  17455. default: true
  17456. },
  17457. ]
  17458. ))
  17459. characterMakers.push(() => makeCharacter(
  17460. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17461. {
  17462. front: {
  17463. height: math.unit(1.75, "meters"),
  17464. weight: math.unit(65, "kg"),
  17465. name: "Front",
  17466. image: {
  17467. source: "./media/characters/jayne-folest/front.svg",
  17468. extra: 2115 / 2007,
  17469. bottom: 0.02
  17470. }
  17471. },
  17472. back: {
  17473. height: math.unit(1.75, "meters"),
  17474. weight: math.unit(65, "kg"),
  17475. name: "Back",
  17476. image: {
  17477. source: "./media/characters/jayne-folest/back.svg",
  17478. extra: 2115 / 2007,
  17479. bottom: 0.005
  17480. }
  17481. },
  17482. frontClothed: {
  17483. height: math.unit(1.75, "meters"),
  17484. weight: math.unit(65, "kg"),
  17485. name: "Front (Clothed)",
  17486. image: {
  17487. source: "./media/characters/jayne-folest/front-clothed.svg",
  17488. extra: 2115 / 2007,
  17489. bottom: 0.035
  17490. }
  17491. },
  17492. hand: {
  17493. height: math.unit(1 / 1.260, "feet"),
  17494. name: "Hand",
  17495. image: {
  17496. source: "./media/characters/jayne-folest/hand.svg"
  17497. }
  17498. },
  17499. foot: {
  17500. height: math.unit(1 / 0.918, "feet"),
  17501. name: "Foot",
  17502. image: {
  17503. source: "./media/characters/jayne-folest/foot.svg"
  17504. }
  17505. },
  17506. },
  17507. [
  17508. {
  17509. name: "Micro",
  17510. height: math.unit(4, "cm")
  17511. },
  17512. {
  17513. name: "Normal",
  17514. height: math.unit(1.75, "meters")
  17515. },
  17516. {
  17517. name: "Macro",
  17518. height: math.unit(47.5, "meters"),
  17519. default: true
  17520. },
  17521. ]
  17522. ))
  17523. characterMakers.push(() => makeCharacter(
  17524. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17525. {
  17526. front: {
  17527. height: math.unit(180, "cm"),
  17528. weight: math.unit(70, "kg"),
  17529. name: "Front",
  17530. image: {
  17531. source: "./media/characters/algier/front.svg",
  17532. extra: 596 / 572,
  17533. bottom: 0.04
  17534. }
  17535. },
  17536. back: {
  17537. height: math.unit(180, "cm"),
  17538. weight: math.unit(70, "kg"),
  17539. name: "Back",
  17540. image: {
  17541. source: "./media/characters/algier/back.svg",
  17542. extra: 596 / 572,
  17543. bottom: 0.025
  17544. }
  17545. },
  17546. frontdressed: {
  17547. height: math.unit(180, "cm"),
  17548. weight: math.unit(150, "kg"),
  17549. name: "Front-dressed",
  17550. image: {
  17551. source: "./media/characters/algier/front-dressed.svg",
  17552. extra: 596 / 572,
  17553. bottom: 0.038
  17554. }
  17555. },
  17556. },
  17557. [
  17558. {
  17559. name: "Micro",
  17560. height: math.unit(5, "cm")
  17561. },
  17562. {
  17563. name: "Normal",
  17564. height: math.unit(180, "cm"),
  17565. default: true
  17566. },
  17567. {
  17568. name: "Macro",
  17569. height: math.unit(64, "m")
  17570. },
  17571. ]
  17572. ))
  17573. characterMakers.push(() => makeCharacter(
  17574. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17575. {
  17576. upright: {
  17577. height: math.unit(7, "feet"),
  17578. weight: math.unit(300, "lb"),
  17579. name: "Upright",
  17580. image: {
  17581. source: "./media/characters/pretzel/upright.svg",
  17582. extra: 534 / 522,
  17583. bottom: 0.065
  17584. }
  17585. },
  17586. sprawling: {
  17587. height: math.unit(3.75, "feet"),
  17588. weight: math.unit(300, "lb"),
  17589. name: "Sprawling",
  17590. image: {
  17591. source: "./media/characters/pretzel/sprawling.svg",
  17592. extra: 314 / 281,
  17593. bottom: 0.1
  17594. }
  17595. },
  17596. tongue: {
  17597. height: math.unit(2, "feet"),
  17598. name: "Tongue",
  17599. image: {
  17600. source: "./media/characters/pretzel/tongue.svg"
  17601. }
  17602. },
  17603. },
  17604. [
  17605. {
  17606. name: "Normal",
  17607. height: math.unit(7, "feet"),
  17608. default: true
  17609. },
  17610. {
  17611. name: "Oversized",
  17612. height: math.unit(15, "feet")
  17613. },
  17614. {
  17615. name: "Huge",
  17616. height: math.unit(30, "feet")
  17617. },
  17618. {
  17619. name: "Macro",
  17620. height: math.unit(250, "feet")
  17621. },
  17622. ]
  17623. ))
  17624. characterMakers.push(() => makeCharacter(
  17625. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17626. {
  17627. sideFront: {
  17628. height: math.unit(5 + 2 / 12, "feet"),
  17629. weight: math.unit(120, "lb"),
  17630. name: "Front Side",
  17631. image: {
  17632. source: "./media/characters/roxi/side-front.svg",
  17633. extra: 2924 / 2717,
  17634. bottom: 0.08
  17635. }
  17636. },
  17637. sideBack: {
  17638. height: math.unit(5 + 2 / 12, "feet"),
  17639. weight: math.unit(120, "lb"),
  17640. name: "Back Side",
  17641. image: {
  17642. source: "./media/characters/roxi/side-back.svg",
  17643. extra: 2904 / 2693,
  17644. bottom: 0.06
  17645. }
  17646. },
  17647. front: {
  17648. height: math.unit(5 + 2 / 12, "feet"),
  17649. weight: math.unit(120, "lb"),
  17650. name: "Front",
  17651. image: {
  17652. source: "./media/characters/roxi/front.svg",
  17653. extra: 2028 / 1907,
  17654. bottom: 0.01
  17655. }
  17656. },
  17657. frontAlt: {
  17658. height: math.unit(5 + 2 / 12, "feet"),
  17659. weight: math.unit(120, "lb"),
  17660. name: "Front (Alt)",
  17661. image: {
  17662. source: "./media/characters/roxi/front-alt.svg",
  17663. extra: 1828 / 1798,
  17664. bottom: 0.01
  17665. }
  17666. },
  17667. sitting: {
  17668. height: math.unit(2.8, "feet"),
  17669. weight: math.unit(120, "lb"),
  17670. name: "Sitting",
  17671. image: {
  17672. source: "./media/characters/roxi/sitting.svg",
  17673. extra: 2660 / 2462,
  17674. bottom: 0.1
  17675. }
  17676. },
  17677. },
  17678. [
  17679. {
  17680. name: "Normal",
  17681. height: math.unit(5 + 2 / 12, "feet"),
  17682. default: true
  17683. },
  17684. ]
  17685. ))
  17686. characterMakers.push(() => makeCharacter(
  17687. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17688. {
  17689. side: {
  17690. height: math.unit(55, "feet"),
  17691. weight: math.unit(153, "tons"),
  17692. name: "Side",
  17693. image: {
  17694. source: "./media/characters/shadow/side.svg",
  17695. extra: 701 / 628,
  17696. bottom: 0.02
  17697. }
  17698. },
  17699. flying: {
  17700. height: math.unit(145, "feet"),
  17701. weight: math.unit(153, "tons"),
  17702. name: "Flying",
  17703. image: {
  17704. source: "./media/characters/shadow/flying.svg"
  17705. }
  17706. },
  17707. },
  17708. [
  17709. {
  17710. name: "Normal",
  17711. height: math.unit(55, "feet"),
  17712. default: true
  17713. },
  17714. ]
  17715. ))
  17716. characterMakers.push(() => makeCharacter(
  17717. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17718. {
  17719. front: {
  17720. height: math.unit(6, "feet"),
  17721. weight: math.unit(200, "lb"),
  17722. name: "Front",
  17723. image: {
  17724. source: "./media/characters/marcie/front.svg",
  17725. extra: 960 / 876,
  17726. bottom: 58 / 1017.87
  17727. }
  17728. },
  17729. },
  17730. [
  17731. {
  17732. name: "Macro",
  17733. height: math.unit(1, "mile"),
  17734. default: true
  17735. },
  17736. ]
  17737. ))
  17738. characterMakers.push(() => makeCharacter(
  17739. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17740. {
  17741. front: {
  17742. height: math.unit(7, "feet"),
  17743. weight: math.unit(200, "lb"),
  17744. name: "Front",
  17745. image: {
  17746. source: "./media/characters/kachina/front.svg",
  17747. extra: 1290.68 / 1119,
  17748. bottom: 36.5 / 1327.18
  17749. }
  17750. },
  17751. },
  17752. [
  17753. {
  17754. name: "Normal",
  17755. height: math.unit(7, "feet"),
  17756. default: true
  17757. },
  17758. ]
  17759. ))
  17760. characterMakers.push(() => makeCharacter(
  17761. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17762. {
  17763. looking: {
  17764. height: math.unit(2, "meters"),
  17765. weight: math.unit(300, "kg"),
  17766. name: "Looking",
  17767. image: {
  17768. source: "./media/characters/kash/looking.svg",
  17769. extra: 474 / 344,
  17770. bottom: 0.03
  17771. }
  17772. },
  17773. side: {
  17774. height: math.unit(2, "meters"),
  17775. weight: math.unit(300, "kg"),
  17776. name: "Side",
  17777. image: {
  17778. source: "./media/characters/kash/side.svg",
  17779. extra: 302 / 251,
  17780. bottom: 0.03
  17781. }
  17782. },
  17783. front: {
  17784. height: math.unit(2, "meters"),
  17785. weight: math.unit(300, "kg"),
  17786. name: "Front",
  17787. image: {
  17788. source: "./media/characters/kash/front.svg",
  17789. extra: 495 / 360,
  17790. bottom: 0.015
  17791. }
  17792. },
  17793. },
  17794. [
  17795. {
  17796. name: "Normal",
  17797. height: math.unit(2, "meters"),
  17798. default: true
  17799. },
  17800. {
  17801. name: "Big",
  17802. height: math.unit(3, "meters")
  17803. },
  17804. {
  17805. name: "Large",
  17806. height: math.unit(5, "meters")
  17807. },
  17808. ]
  17809. ))
  17810. characterMakers.push(() => makeCharacter(
  17811. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17812. {
  17813. feeding: {
  17814. height: math.unit(6.7, "feet"),
  17815. weight: math.unit(350, "lb"),
  17816. name: "Feeding",
  17817. image: {
  17818. source: "./media/characters/lalim/feeding.svg",
  17819. }
  17820. },
  17821. },
  17822. [
  17823. {
  17824. name: "Normal",
  17825. height: math.unit(6.7, "feet"),
  17826. default: true
  17827. },
  17828. ]
  17829. ))
  17830. characterMakers.push(() => makeCharacter(
  17831. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17832. {
  17833. front: {
  17834. height: math.unit(9.5, "feet"),
  17835. weight: math.unit(600, "lb"),
  17836. name: "Front",
  17837. image: {
  17838. source: "./media/characters/de'vout/front.svg",
  17839. extra: 1443 / 1328,
  17840. bottom: 0.025
  17841. }
  17842. },
  17843. back: {
  17844. height: math.unit(9.5, "feet"),
  17845. weight: math.unit(600, "lb"),
  17846. name: "Back",
  17847. image: {
  17848. source: "./media/characters/de'vout/back.svg",
  17849. extra: 1443 / 1328
  17850. }
  17851. },
  17852. frontDressed: {
  17853. height: math.unit(9.5, "feet"),
  17854. weight: math.unit(600, "lb"),
  17855. name: "Front (Dressed",
  17856. image: {
  17857. source: "./media/characters/de'vout/front-dressed.svg",
  17858. extra: 1443 / 1328,
  17859. bottom: 0.025
  17860. }
  17861. },
  17862. backDressed: {
  17863. height: math.unit(9.5, "feet"),
  17864. weight: math.unit(600, "lb"),
  17865. name: "Back (Dressed",
  17866. image: {
  17867. source: "./media/characters/de'vout/back-dressed.svg",
  17868. extra: 1443 / 1328
  17869. }
  17870. },
  17871. },
  17872. [
  17873. {
  17874. name: "Normal",
  17875. height: math.unit(9.5, "feet"),
  17876. default: true
  17877. },
  17878. ]
  17879. ))
  17880. characterMakers.push(() => makeCharacter(
  17881. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17882. {
  17883. front: {
  17884. height: math.unit(8, "feet"),
  17885. weight: math.unit(225, "lb"),
  17886. name: "Front",
  17887. image: {
  17888. source: "./media/characters/talana/front.svg",
  17889. extra: 1410 / 1300,
  17890. bottom: 0.015
  17891. }
  17892. },
  17893. frontDressed: {
  17894. height: math.unit(8, "feet"),
  17895. weight: math.unit(225, "lb"),
  17896. name: "Front (Dressed",
  17897. image: {
  17898. source: "./media/characters/talana/front-dressed.svg",
  17899. extra: 1410 / 1300,
  17900. bottom: 0.015
  17901. }
  17902. },
  17903. },
  17904. [
  17905. {
  17906. name: "Normal",
  17907. height: math.unit(8, "feet"),
  17908. default: true
  17909. },
  17910. ]
  17911. ))
  17912. characterMakers.push(() => makeCharacter(
  17913. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17914. {
  17915. side: {
  17916. height: math.unit(7.2, "feet"),
  17917. weight: math.unit(150, "lb"),
  17918. name: "Side",
  17919. image: {
  17920. source: "./media/characters/xeauvok/side.svg",
  17921. extra: 1975 / 1523,
  17922. bottom: 0.07
  17923. }
  17924. },
  17925. },
  17926. [
  17927. {
  17928. name: "Normal",
  17929. height: math.unit(7.2, "feet"),
  17930. default: true
  17931. },
  17932. ]
  17933. ))
  17934. characterMakers.push(() => makeCharacter(
  17935. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17936. {
  17937. side: {
  17938. height: math.unit(10, "feet"),
  17939. weight: math.unit(900, "kg"),
  17940. name: "Side",
  17941. image: {
  17942. source: "./media/characters/zara/side.svg",
  17943. extra: 504 / 498
  17944. }
  17945. },
  17946. },
  17947. [
  17948. {
  17949. name: "Normal",
  17950. height: math.unit(10, "feet"),
  17951. default: true
  17952. },
  17953. ]
  17954. ))
  17955. characterMakers.push(() => makeCharacter(
  17956. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17957. {
  17958. side: {
  17959. height: math.unit(6, "feet"),
  17960. weight: math.unit(150, "lb"),
  17961. name: "Side",
  17962. image: {
  17963. source: "./media/characters/richard-dragon/side.svg",
  17964. extra: 845 / 340,
  17965. bottom: 0.017
  17966. }
  17967. },
  17968. maw: {
  17969. height: math.unit(2.97, "feet"),
  17970. name: "Maw",
  17971. image: {
  17972. source: "./media/characters/richard-dragon/maw.svg"
  17973. }
  17974. },
  17975. },
  17976. [
  17977. ]
  17978. ))
  17979. characterMakers.push(() => makeCharacter(
  17980. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17981. {
  17982. front: {
  17983. height: math.unit(4, "feet"),
  17984. weight: math.unit(100, "lb"),
  17985. name: "Front",
  17986. image: {
  17987. source: "./media/characters/richard-smeargle/front.svg",
  17988. extra: 2952 / 2820,
  17989. bottom: 0.028
  17990. }
  17991. },
  17992. },
  17993. [
  17994. {
  17995. name: "Normal",
  17996. height: math.unit(4, "feet"),
  17997. default: true
  17998. },
  17999. {
  18000. name: "Dynamax",
  18001. height: math.unit(20, "meters")
  18002. },
  18003. ]
  18004. ))
  18005. characterMakers.push(() => makeCharacter(
  18006. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18007. {
  18008. front: {
  18009. height: math.unit(6, "feet"),
  18010. weight: math.unit(110, "lb"),
  18011. name: "Front",
  18012. image: {
  18013. source: "./media/characters/klay/front.svg",
  18014. extra: 962 / 883,
  18015. bottom: 0.04
  18016. }
  18017. },
  18018. back: {
  18019. height: math.unit(6, "feet"),
  18020. weight: math.unit(110, "lb"),
  18021. name: "Back",
  18022. image: {
  18023. source: "./media/characters/klay/back.svg",
  18024. extra: 962 / 883
  18025. }
  18026. },
  18027. beans: {
  18028. height: math.unit(1.15, "feet"),
  18029. name: "Beans",
  18030. image: {
  18031. source: "./media/characters/klay/beans.svg"
  18032. }
  18033. },
  18034. },
  18035. [
  18036. {
  18037. name: "Micro",
  18038. height: math.unit(6, "inches")
  18039. },
  18040. {
  18041. name: "Mini",
  18042. height: math.unit(3, "feet")
  18043. },
  18044. {
  18045. name: "Normal",
  18046. height: math.unit(6, "feet"),
  18047. default: true
  18048. },
  18049. {
  18050. name: "Big",
  18051. height: math.unit(25, "feet")
  18052. },
  18053. {
  18054. name: "Macro",
  18055. height: math.unit(100, "feet")
  18056. },
  18057. {
  18058. name: "Megamacro",
  18059. height: math.unit(400, "feet")
  18060. },
  18061. ]
  18062. ))
  18063. characterMakers.push(() => makeCharacter(
  18064. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18065. {
  18066. front: {
  18067. height: math.unit(6, "feet"),
  18068. weight: math.unit(160, "lb"),
  18069. name: "Front",
  18070. image: {
  18071. source: "./media/characters/marcus/front.svg",
  18072. extra: 734 / 676,
  18073. bottom: 0.03
  18074. }
  18075. },
  18076. },
  18077. [
  18078. {
  18079. name: "Little",
  18080. height: math.unit(6, "feet")
  18081. },
  18082. {
  18083. name: "Normal",
  18084. height: math.unit(110, "feet"),
  18085. default: true
  18086. },
  18087. {
  18088. name: "Macro",
  18089. height: math.unit(250, "feet")
  18090. },
  18091. {
  18092. name: "Megamacro",
  18093. height: math.unit(1000, "feet")
  18094. },
  18095. ]
  18096. ))
  18097. characterMakers.push(() => makeCharacter(
  18098. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18099. {
  18100. front: {
  18101. height: math.unit(7, "feet"),
  18102. weight: math.unit(275, "lb"),
  18103. name: "Front",
  18104. image: {
  18105. source: "./media/characters/claude-delroute/front.svg",
  18106. extra: 230 / 214,
  18107. bottom: 0.007
  18108. }
  18109. },
  18110. side: {
  18111. height: math.unit(7, "feet"),
  18112. weight: math.unit(275, "lb"),
  18113. name: "Side",
  18114. image: {
  18115. source: "./media/characters/claude-delroute/side.svg",
  18116. extra: 222 / 214,
  18117. bottom: 0.01
  18118. }
  18119. },
  18120. back: {
  18121. height: math.unit(7, "feet"),
  18122. weight: math.unit(275, "lb"),
  18123. name: "Back",
  18124. image: {
  18125. source: "./media/characters/claude-delroute/back.svg",
  18126. extra: 230 / 214,
  18127. bottom: 0.015
  18128. }
  18129. },
  18130. maw: {
  18131. height: math.unit(0.6407, "meters"),
  18132. name: "Maw",
  18133. image: {
  18134. source: "./media/characters/claude-delroute/maw.svg"
  18135. }
  18136. },
  18137. },
  18138. [
  18139. {
  18140. name: "Normal",
  18141. height: math.unit(7, "feet"),
  18142. default: true
  18143. },
  18144. {
  18145. name: "Lorge",
  18146. height: math.unit(20, "feet")
  18147. },
  18148. ]
  18149. ))
  18150. characterMakers.push(() => makeCharacter(
  18151. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18152. {
  18153. front: {
  18154. height: math.unit(8 + 4 / 12, "feet"),
  18155. weight: math.unit(600, "lb"),
  18156. name: "Front",
  18157. image: {
  18158. source: "./media/characters/dragonien/front.svg",
  18159. extra: 100 / 94,
  18160. bottom: 3.3 / 103.3445
  18161. }
  18162. },
  18163. back: {
  18164. height: math.unit(8 + 4 / 12, "feet"),
  18165. weight: math.unit(600, "lb"),
  18166. name: "Back",
  18167. image: {
  18168. source: "./media/characters/dragonien/back.svg",
  18169. extra: 776 / 746,
  18170. bottom: 6.4 / 782.0616
  18171. }
  18172. },
  18173. foot: {
  18174. height: math.unit(1.54, "feet"),
  18175. name: "Foot",
  18176. image: {
  18177. source: "./media/characters/dragonien/foot.svg",
  18178. }
  18179. },
  18180. },
  18181. [
  18182. {
  18183. name: "Normal",
  18184. height: math.unit(8 + 4 / 12, "feet"),
  18185. default: true
  18186. },
  18187. {
  18188. name: "Macro",
  18189. height: math.unit(200, "feet")
  18190. },
  18191. {
  18192. name: "Megamacro",
  18193. height: math.unit(1, "mile")
  18194. },
  18195. {
  18196. name: "Gigamacro",
  18197. height: math.unit(1000, "miles")
  18198. },
  18199. ]
  18200. ))
  18201. characterMakers.push(() => makeCharacter(
  18202. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18203. {
  18204. front: {
  18205. height: math.unit(5 + 2 / 12, "feet"),
  18206. weight: math.unit(110, "lb"),
  18207. name: "Front",
  18208. image: {
  18209. source: "./media/characters/desta/front.svg",
  18210. extra: 767 / 726,
  18211. bottom: 11.7 / 779
  18212. }
  18213. },
  18214. back: {
  18215. height: math.unit(5 + 2 / 12, "feet"),
  18216. weight: math.unit(110, "lb"),
  18217. name: "Back",
  18218. image: {
  18219. source: "./media/characters/desta/back.svg",
  18220. extra: 777 / 728,
  18221. bottom: 6 / 784
  18222. }
  18223. },
  18224. frontAlt: {
  18225. height: math.unit(5 + 2 / 12, "feet"),
  18226. weight: math.unit(110, "lb"),
  18227. name: "Front",
  18228. image: {
  18229. source: "./media/characters/desta/front-alt.svg",
  18230. extra: 1482 / 1417
  18231. }
  18232. },
  18233. side: {
  18234. height: math.unit(5 + 2 / 12, "feet"),
  18235. weight: math.unit(110, "lb"),
  18236. name: "Side",
  18237. image: {
  18238. source: "./media/characters/desta/side.svg",
  18239. extra: 2579 / 2491,
  18240. bottom: 0.053
  18241. }
  18242. },
  18243. },
  18244. [
  18245. {
  18246. name: "Micro",
  18247. height: math.unit(6, "inches")
  18248. },
  18249. {
  18250. name: "Normal",
  18251. height: math.unit(5 + 2 / 12, "feet"),
  18252. default: true
  18253. },
  18254. {
  18255. name: "Macro",
  18256. height: math.unit(62, "feet")
  18257. },
  18258. {
  18259. name: "Megamacro",
  18260. height: math.unit(1800, "feet")
  18261. },
  18262. ]
  18263. ))
  18264. characterMakers.push(() => makeCharacter(
  18265. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18266. {
  18267. front: {
  18268. height: math.unit(10, "feet"),
  18269. weight: math.unit(700, "lb"),
  18270. name: "Front",
  18271. image: {
  18272. source: "./media/characters/storm-alystar/front.svg",
  18273. extra: 2112 / 1898,
  18274. bottom: 0.034
  18275. }
  18276. },
  18277. },
  18278. [
  18279. {
  18280. name: "Micro",
  18281. height: math.unit(3.5, "inches")
  18282. },
  18283. {
  18284. name: "Normal",
  18285. height: math.unit(10, "feet"),
  18286. default: true
  18287. },
  18288. {
  18289. name: "Macro",
  18290. height: math.unit(400, "feet")
  18291. },
  18292. {
  18293. name: "Deific",
  18294. height: math.unit(60, "miles")
  18295. },
  18296. ]
  18297. ))
  18298. characterMakers.push(() => makeCharacter(
  18299. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18300. {
  18301. front: {
  18302. height: math.unit(2.35, "meters"),
  18303. weight: math.unit(119, "kg"),
  18304. name: "Front",
  18305. image: {
  18306. source: "./media/characters/ilia/front.svg",
  18307. extra: 1285 / 1255,
  18308. bottom: 0.06
  18309. }
  18310. },
  18311. },
  18312. [
  18313. {
  18314. name: "Normal",
  18315. height: math.unit(2.35, "meters")
  18316. },
  18317. {
  18318. name: "Macro",
  18319. height: math.unit(140, "meters"),
  18320. default: true
  18321. },
  18322. {
  18323. name: "Megamacro",
  18324. height: math.unit(100, "miles")
  18325. },
  18326. ]
  18327. ))
  18328. characterMakers.push(() => makeCharacter(
  18329. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18330. {
  18331. front: {
  18332. height: math.unit(6 + 5 / 12, "feet"),
  18333. weight: math.unit(190, "lb"),
  18334. name: "Front",
  18335. image: {
  18336. source: "./media/characters/kingdead/front.svg",
  18337. extra: 1228 / 1177
  18338. }
  18339. },
  18340. },
  18341. [
  18342. {
  18343. name: "Micro",
  18344. height: math.unit(7, "inches")
  18345. },
  18346. {
  18347. name: "Normal",
  18348. height: math.unit(6 + 5 / 12, "feet")
  18349. },
  18350. {
  18351. name: "Macro",
  18352. height: math.unit(150, "feet"),
  18353. default: true
  18354. },
  18355. {
  18356. name: "Megamacro",
  18357. height: math.unit(200, "miles")
  18358. },
  18359. ]
  18360. ))
  18361. characterMakers.push(() => makeCharacter(
  18362. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18363. {
  18364. front: {
  18365. height: math.unit(8, "feet"),
  18366. weight: math.unit(600, "lb"),
  18367. name: "Front",
  18368. image: {
  18369. source: "./media/characters/kyrehx/front.svg",
  18370. extra: 1195 / 1095,
  18371. bottom: 0.034
  18372. }
  18373. },
  18374. },
  18375. [
  18376. {
  18377. name: "Micro",
  18378. height: math.unit(2, "inches")
  18379. },
  18380. {
  18381. name: "Normal",
  18382. height: math.unit(8, "feet"),
  18383. default: true
  18384. },
  18385. {
  18386. name: "Macro",
  18387. height: math.unit(255, "feet")
  18388. },
  18389. ]
  18390. ))
  18391. characterMakers.push(() => makeCharacter(
  18392. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18393. {
  18394. front: {
  18395. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18396. weight: math.unit(184, "lb"),
  18397. name: "Front",
  18398. image: {
  18399. source: "./media/characters/xang/front.svg",
  18400. extra: 845 / 755
  18401. }
  18402. },
  18403. },
  18404. [
  18405. {
  18406. name: "Normal",
  18407. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18408. default: true
  18409. },
  18410. {
  18411. name: "Macro",
  18412. height: math.unit(0.935 * 146, "feet")
  18413. },
  18414. {
  18415. name: "Megamacro",
  18416. height: math.unit(0.935 * 3, "miles")
  18417. },
  18418. ]
  18419. ))
  18420. characterMakers.push(() => makeCharacter(
  18421. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18422. {
  18423. frontDressed: {
  18424. height: math.unit(5 + 7 / 12, "feet"),
  18425. weight: math.unit(140, "lb"),
  18426. name: "Front (Dressed)",
  18427. image: {
  18428. source: "./media/characters/doc-weardno/front-dressed.svg",
  18429. extra: 263 / 234
  18430. }
  18431. },
  18432. backDressed: {
  18433. height: math.unit(5 + 7 / 12, "feet"),
  18434. weight: math.unit(140, "lb"),
  18435. name: "Back (Dressed)",
  18436. image: {
  18437. source: "./media/characters/doc-weardno/back-dressed.svg",
  18438. extra: 266 / 238
  18439. }
  18440. },
  18441. front: {
  18442. height: math.unit(5 + 7 / 12, "feet"),
  18443. weight: math.unit(140, "lb"),
  18444. name: "Front",
  18445. image: {
  18446. source: "./media/characters/doc-weardno/front.svg",
  18447. extra: 254 / 233
  18448. }
  18449. },
  18450. },
  18451. [
  18452. {
  18453. name: "Micro",
  18454. height: math.unit(3, "inches")
  18455. },
  18456. {
  18457. name: "Normal",
  18458. height: math.unit(5 + 7 / 12, "feet"),
  18459. default: true
  18460. },
  18461. {
  18462. name: "Macro",
  18463. height: math.unit(25, "feet")
  18464. },
  18465. {
  18466. name: "Megamacro",
  18467. height: math.unit(2, "miles")
  18468. },
  18469. ]
  18470. ))
  18471. characterMakers.push(() => makeCharacter(
  18472. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18473. {
  18474. front: {
  18475. height: math.unit(6 + 2 / 12, "feet"),
  18476. weight: math.unit(153, "lb"),
  18477. name: "Front",
  18478. image: {
  18479. source: "./media/characters/seth-whilst/front.svg",
  18480. bottom: 0.07
  18481. }
  18482. },
  18483. },
  18484. [
  18485. {
  18486. name: "Micro",
  18487. height: math.unit(5, "inches")
  18488. },
  18489. {
  18490. name: "Normal",
  18491. height: math.unit(6 + 2 / 12, "feet"),
  18492. default: true
  18493. },
  18494. ]
  18495. ))
  18496. characterMakers.push(() => makeCharacter(
  18497. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18498. {
  18499. front: {
  18500. height: math.unit(3, "inches"),
  18501. weight: math.unit(8, "grams"),
  18502. name: "Front",
  18503. image: {
  18504. source: "./media/characters/pocket-jabari/front.svg",
  18505. extra: 1024 / 974,
  18506. bottom: 0.039
  18507. }
  18508. },
  18509. },
  18510. [
  18511. {
  18512. name: "Minimicro",
  18513. height: math.unit(8, "mm")
  18514. },
  18515. {
  18516. name: "Micro",
  18517. height: math.unit(3, "inches"),
  18518. default: true
  18519. },
  18520. {
  18521. name: "Normal",
  18522. height: math.unit(3, "feet")
  18523. },
  18524. ]
  18525. ))
  18526. characterMakers.push(() => makeCharacter(
  18527. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18528. {
  18529. front: {
  18530. height: math.unit(15, "feet"),
  18531. weight: math.unit(3280, "lb"),
  18532. name: "Front",
  18533. image: {
  18534. source: "./media/characters/sapphy/front.svg",
  18535. extra: 671 / 577,
  18536. bottom: 0.085
  18537. }
  18538. },
  18539. back: {
  18540. height: math.unit(15, "feet"),
  18541. weight: math.unit(3280, "lb"),
  18542. name: "Back",
  18543. image: {
  18544. source: "./media/characters/sapphy/back.svg",
  18545. extra: 631 / 607,
  18546. bottom: 0.045
  18547. }
  18548. },
  18549. },
  18550. [
  18551. {
  18552. name: "Normal",
  18553. height: math.unit(15, "feet")
  18554. },
  18555. {
  18556. name: "Casual Macro",
  18557. height: math.unit(120, "feet")
  18558. },
  18559. {
  18560. name: "Macro",
  18561. height: math.unit(2150, "feet"),
  18562. default: true
  18563. },
  18564. {
  18565. name: "Megamacro",
  18566. height: math.unit(8, "miles")
  18567. },
  18568. {
  18569. name: "Galaxy Mom",
  18570. height: math.unit(6, "megalightyears")
  18571. },
  18572. ]
  18573. ))
  18574. characterMakers.push(() => makeCharacter(
  18575. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18576. {
  18577. front: {
  18578. height: math.unit(6, "feet"),
  18579. weight: math.unit(170, "lb"),
  18580. name: "Front",
  18581. image: {
  18582. source: "./media/characters/kiro/front.svg",
  18583. extra: 1064 / 1012,
  18584. bottom: 0.052
  18585. }
  18586. },
  18587. },
  18588. [
  18589. {
  18590. name: "Micro",
  18591. height: math.unit(6, "inches")
  18592. },
  18593. {
  18594. name: "Normal",
  18595. height: math.unit(6, "feet"),
  18596. default: true
  18597. },
  18598. {
  18599. name: "Macro",
  18600. height: math.unit(72, "feet")
  18601. },
  18602. ]
  18603. ))
  18604. characterMakers.push(() => makeCharacter(
  18605. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18606. {
  18607. front: {
  18608. height: math.unit(5 + 9 / 12, "feet"),
  18609. weight: math.unit(175, "lb"),
  18610. name: "Front",
  18611. image: {
  18612. source: "./media/characters/irishfox/front.svg",
  18613. extra: 1912 / 1680,
  18614. bottom: 0.02
  18615. }
  18616. },
  18617. },
  18618. [
  18619. {
  18620. name: "Nano",
  18621. height: math.unit(1, "mm")
  18622. },
  18623. {
  18624. name: "Micro",
  18625. height: math.unit(2, "inches")
  18626. },
  18627. {
  18628. name: "Normal",
  18629. height: math.unit(5 + 9 / 12, "feet"),
  18630. default: true
  18631. },
  18632. {
  18633. name: "Macro",
  18634. height: math.unit(45, "feet")
  18635. },
  18636. ]
  18637. ))
  18638. characterMakers.push(() => makeCharacter(
  18639. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18640. {
  18641. front: {
  18642. height: math.unit(6 + 1 / 12, "feet"),
  18643. weight: math.unit(75, "lb"),
  18644. name: "Front",
  18645. image: {
  18646. source: "./media/characters/aronai-sieyes/front.svg",
  18647. extra: 1556 / 1480,
  18648. bottom: 0.015
  18649. }
  18650. },
  18651. side: {
  18652. height: math.unit(6 + 1 / 12, "feet"),
  18653. weight: math.unit(75, "lb"),
  18654. name: "Side",
  18655. image: {
  18656. source: "./media/characters/aronai-sieyes/side.svg",
  18657. extra: 1433 / 1390,
  18658. bottom: 0.0393
  18659. }
  18660. },
  18661. back: {
  18662. height: math.unit(6 + 1 / 12, "feet"),
  18663. weight: math.unit(75, "lb"),
  18664. name: "Back",
  18665. image: {
  18666. source: "./media/characters/aronai-sieyes/back.svg",
  18667. extra: 1544 / 1494,
  18668. bottom: 0.02
  18669. }
  18670. },
  18671. frontClothed: {
  18672. height: math.unit(6 + 1 / 12, "feet"),
  18673. weight: math.unit(75, "lb"),
  18674. name: "Front (Clothed)",
  18675. image: {
  18676. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18677. extra: 1582 / 1527
  18678. }
  18679. },
  18680. feral: {
  18681. height: math.unit(18, "feet"),
  18682. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18683. name: "Feral",
  18684. image: {
  18685. source: "./media/characters/aronai-sieyes/feral.svg",
  18686. extra: 1530 / 1240,
  18687. bottom: 0.035
  18688. }
  18689. },
  18690. },
  18691. [
  18692. {
  18693. name: "Micro",
  18694. height: math.unit(2, "inches")
  18695. },
  18696. {
  18697. name: "Normal",
  18698. height: math.unit(6 + 1 / 12, "feet"),
  18699. default: true
  18700. }
  18701. ]
  18702. ))
  18703. characterMakers.push(() => makeCharacter(
  18704. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18705. {
  18706. front: {
  18707. height: math.unit(12, "feet"),
  18708. weight: math.unit(410, "kg"),
  18709. name: "Front",
  18710. image: {
  18711. source: "./media/characters/xuna/front.svg",
  18712. extra: 2184 / 1980
  18713. }
  18714. },
  18715. side: {
  18716. height: math.unit(12, "feet"),
  18717. weight: math.unit(410, "kg"),
  18718. name: "Side",
  18719. image: {
  18720. source: "./media/characters/xuna/side.svg",
  18721. extra: 2184 / 1980
  18722. }
  18723. },
  18724. back: {
  18725. height: math.unit(12, "feet"),
  18726. weight: math.unit(410, "kg"),
  18727. name: "Back",
  18728. image: {
  18729. source: "./media/characters/xuna/back.svg",
  18730. extra: 2184 / 1980
  18731. }
  18732. },
  18733. },
  18734. [
  18735. {
  18736. name: "Nano glow",
  18737. height: math.unit(10, "nm")
  18738. },
  18739. {
  18740. name: "Micro floof",
  18741. height: math.unit(0.3, "m")
  18742. },
  18743. {
  18744. name: "Huggable softy boi",
  18745. height: math.unit(3.6576, "m"),
  18746. default: true
  18747. },
  18748. {
  18749. name: "Admirable floof",
  18750. height: math.unit(80, "meters")
  18751. },
  18752. {
  18753. name: "Gentle macro",
  18754. height: math.unit(300, "meters")
  18755. },
  18756. {
  18757. name: "Very careful floof",
  18758. height: math.unit(3200, "meters")
  18759. },
  18760. {
  18761. name: "The mega floof",
  18762. height: math.unit(36000, "meters")
  18763. },
  18764. {
  18765. name: "Giga-fur-Wicker",
  18766. height: math.unit(4800000, "meters")
  18767. },
  18768. {
  18769. name: "Licky world",
  18770. height: math.unit(20000000, "meters")
  18771. },
  18772. {
  18773. name: "Floofy cyan sun",
  18774. height: math.unit(1500000000, "meters")
  18775. },
  18776. {
  18777. name: "Milky Wicker",
  18778. height: math.unit(1000000000000000000000, "meters")
  18779. },
  18780. {
  18781. name: "The observing Wicker",
  18782. height: math.unit(999999999999999999999999999, "meters")
  18783. },
  18784. ]
  18785. ))
  18786. characterMakers.push(() => makeCharacter(
  18787. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18788. {
  18789. front: {
  18790. height: math.unit(5 + 9 / 12, "feet"),
  18791. weight: math.unit(150, "lb"),
  18792. name: "Front",
  18793. image: {
  18794. source: "./media/characters/arokha-sieyes/front.svg",
  18795. extra: 1425 / 1284,
  18796. bottom: 0.05
  18797. }
  18798. },
  18799. },
  18800. [
  18801. {
  18802. name: "Normal",
  18803. height: math.unit(5 + 9 / 12, "feet")
  18804. },
  18805. {
  18806. name: "Macro",
  18807. height: math.unit(30, "meters"),
  18808. default: true
  18809. },
  18810. ]
  18811. ))
  18812. characterMakers.push(() => makeCharacter(
  18813. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18814. {
  18815. front: {
  18816. height: math.unit(6, "feet"),
  18817. weight: math.unit(180, "lb"),
  18818. name: "Front",
  18819. image: {
  18820. source: "./media/characters/arokh-sieyes/front.svg",
  18821. extra: 1830 / 1769,
  18822. bottom: 0.01
  18823. }
  18824. },
  18825. },
  18826. [
  18827. {
  18828. name: "Normal",
  18829. height: math.unit(6, "feet")
  18830. },
  18831. {
  18832. name: "Macro",
  18833. height: math.unit(30, "meters"),
  18834. default: true
  18835. },
  18836. ]
  18837. ))
  18838. characterMakers.push(() => makeCharacter(
  18839. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18840. {
  18841. side: {
  18842. height: math.unit(13 + 1 / 12, "feet"),
  18843. weight: math.unit(8.5, "tonnes"),
  18844. name: "Side",
  18845. image: {
  18846. source: "./media/characters/goldeneye/side.svg",
  18847. extra: 1182 / 778,
  18848. bottom: 0.067
  18849. }
  18850. },
  18851. paw: {
  18852. height: math.unit(3.4, "feet"),
  18853. name: "Paw",
  18854. image: {
  18855. source: "./media/characters/goldeneye/paw.svg"
  18856. }
  18857. },
  18858. },
  18859. [
  18860. {
  18861. name: "Normal",
  18862. height: math.unit(13 + 1 / 12, "feet"),
  18863. default: true
  18864. },
  18865. ]
  18866. ))
  18867. characterMakers.push(() => makeCharacter(
  18868. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  18869. {
  18870. front: {
  18871. height: math.unit(6 + 1 / 12, "feet"),
  18872. weight: math.unit(210, "lb"),
  18873. name: "Front",
  18874. image: {
  18875. source: "./media/characters/leonardo-lycheborne/front.svg",
  18876. extra: 390 / 365,
  18877. bottom: 0.032
  18878. }
  18879. },
  18880. side: {
  18881. height: math.unit(6 + 1 / 12, "feet"),
  18882. weight: math.unit(210, "lb"),
  18883. name: "Side",
  18884. image: {
  18885. source: "./media/characters/leonardo-lycheborne/side.svg",
  18886. extra: 390 / 365,
  18887. bottom: 0.005
  18888. }
  18889. },
  18890. back: {
  18891. height: math.unit(6 + 1 / 12, "feet"),
  18892. weight: math.unit(210, "lb"),
  18893. name: "Back",
  18894. image: {
  18895. source: "./media/characters/leonardo-lycheborne/back.svg",
  18896. extra: 392 / 366,
  18897. bottom: 0.01
  18898. }
  18899. },
  18900. hand: {
  18901. height: math.unit(1.08, "feet"),
  18902. name: "Hand",
  18903. image: {
  18904. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18905. }
  18906. },
  18907. foot: {
  18908. height: math.unit(1.32, "feet"),
  18909. name: "Foot",
  18910. image: {
  18911. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18912. }
  18913. },
  18914. were: {
  18915. height: math.unit(20, "feet"),
  18916. weight: math.unit(7800, "lb"),
  18917. name: "Were",
  18918. image: {
  18919. source: "./media/characters/leonardo-lycheborne/were.svg",
  18920. extra: 308 / 294,
  18921. bottom: 0.048
  18922. }
  18923. },
  18924. feral: {
  18925. height: math.unit(7.5, "feet"),
  18926. weight: math.unit(600, "lb"),
  18927. name: "Feral",
  18928. image: {
  18929. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18930. extra: 210 / 186,
  18931. bottom: 0.108
  18932. }
  18933. },
  18934. taur: {
  18935. height: math.unit(11, "feet"),
  18936. weight: math.unit(3300, "lb"),
  18937. name: "Taur",
  18938. image: {
  18939. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18940. extra: 320 / 303,
  18941. bottom: 0.025
  18942. }
  18943. },
  18944. barghest: {
  18945. height: math.unit(11, "feet"),
  18946. weight: math.unit(1300, "lb"),
  18947. name: "Barghest",
  18948. image: {
  18949. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18950. extra: 323 / 302,
  18951. bottom: 0.027
  18952. }
  18953. },
  18954. dick: {
  18955. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18956. name: "Dick",
  18957. image: {
  18958. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18959. }
  18960. },
  18961. dickWere: {
  18962. height: math.unit((20) / 3.8, "feet"),
  18963. name: "Dick (Were)",
  18964. image: {
  18965. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18966. }
  18967. },
  18968. },
  18969. [
  18970. {
  18971. name: "Normal",
  18972. height: math.unit(6 + 1 / 12, "feet"),
  18973. default: true
  18974. },
  18975. ]
  18976. ))
  18977. characterMakers.push(() => makeCharacter(
  18978. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18979. {
  18980. front: {
  18981. height: math.unit(10, "feet"),
  18982. weight: math.unit(350, "lb"),
  18983. name: "Front",
  18984. image: {
  18985. source: "./media/characters/jet/front.svg",
  18986. extra: 2050 / 1980,
  18987. bottom: 0.013
  18988. }
  18989. },
  18990. back: {
  18991. height: math.unit(10, "feet"),
  18992. weight: math.unit(350, "lb"),
  18993. name: "Back",
  18994. image: {
  18995. source: "./media/characters/jet/back.svg",
  18996. extra: 2050 / 1980,
  18997. bottom: 0.013
  18998. }
  18999. },
  19000. },
  19001. [
  19002. {
  19003. name: "Micro",
  19004. height: math.unit(6, "inches")
  19005. },
  19006. {
  19007. name: "Normal",
  19008. height: math.unit(10, "feet"),
  19009. default: true
  19010. },
  19011. {
  19012. name: "Macro",
  19013. height: math.unit(100, "feet")
  19014. },
  19015. ]
  19016. ))
  19017. characterMakers.push(() => makeCharacter(
  19018. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19019. {
  19020. front: {
  19021. height: math.unit(15, "feet"),
  19022. weight: math.unit(2800, "lb"),
  19023. name: "Front",
  19024. image: {
  19025. source: "./media/characters/tanarath/front.svg",
  19026. extra: 2392 / 2220,
  19027. bottom: 0.03
  19028. }
  19029. },
  19030. back: {
  19031. height: math.unit(15, "feet"),
  19032. weight: math.unit(2800, "lb"),
  19033. name: "Back",
  19034. image: {
  19035. source: "./media/characters/tanarath/back.svg",
  19036. extra: 2392 / 2220,
  19037. bottom: 0.03
  19038. }
  19039. },
  19040. },
  19041. [
  19042. {
  19043. name: "Normal",
  19044. height: math.unit(15, "feet"),
  19045. default: true
  19046. },
  19047. ]
  19048. ))
  19049. characterMakers.push(() => makeCharacter(
  19050. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19051. {
  19052. front: {
  19053. height: math.unit(7 + 1 / 12, "feet"),
  19054. weight: math.unit(175, "lb"),
  19055. name: "Front",
  19056. image: {
  19057. source: "./media/characters/patty-cattybatty/front.svg",
  19058. extra: 908 / 874,
  19059. bottom: 0.025
  19060. }
  19061. },
  19062. },
  19063. [
  19064. {
  19065. name: "Micro",
  19066. height: math.unit(1, "inch")
  19067. },
  19068. {
  19069. name: "Normal",
  19070. height: math.unit(7 + 1 / 12, "feet")
  19071. },
  19072. {
  19073. name: "Mini Macro",
  19074. height: math.unit(155, "feet")
  19075. },
  19076. {
  19077. name: "Macro",
  19078. height: math.unit(1077, "feet")
  19079. },
  19080. {
  19081. name: "Mega Macro",
  19082. height: math.unit(47650, "feet"),
  19083. default: true
  19084. },
  19085. {
  19086. name: "Giga Macro",
  19087. height: math.unit(440, "miles")
  19088. },
  19089. {
  19090. name: "Tera Macro",
  19091. height: math.unit(8700, "miles")
  19092. },
  19093. {
  19094. name: "Planetary Macro",
  19095. height: math.unit(32700, "miles")
  19096. },
  19097. {
  19098. name: "Solar Macro",
  19099. height: math.unit(550000, "miles")
  19100. },
  19101. {
  19102. name: "Celestial Macro",
  19103. height: math.unit(2.5, "AU")
  19104. },
  19105. ]
  19106. ))
  19107. characterMakers.push(() => makeCharacter(
  19108. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19109. {
  19110. front: {
  19111. height: math.unit(4 + 5 / 12, "feet"),
  19112. weight: math.unit(90, "lb"),
  19113. name: "Front",
  19114. image: {
  19115. source: "./media/characters/cappu/front.svg",
  19116. extra: 1247 / 1152,
  19117. bottom: 0.012
  19118. }
  19119. },
  19120. },
  19121. [
  19122. {
  19123. name: "Normal",
  19124. height: math.unit(4 + 5 / 12, "feet"),
  19125. default: true
  19126. },
  19127. ]
  19128. ))
  19129. characterMakers.push(() => makeCharacter(
  19130. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19131. {
  19132. frontDressed: {
  19133. height: math.unit(70, "cm"),
  19134. weight: math.unit(6, "kg"),
  19135. name: "Front (Dressed)",
  19136. image: {
  19137. source: "./media/characters/sebi/front-dressed.svg",
  19138. extra: 713.5 / 686.5,
  19139. bottom: 0.003
  19140. }
  19141. },
  19142. front: {
  19143. height: math.unit(70, "cm"),
  19144. weight: math.unit(5, "kg"),
  19145. name: "Front",
  19146. image: {
  19147. source: "./media/characters/sebi/front.svg",
  19148. extra: 713.5 / 686.5,
  19149. bottom: 0.003
  19150. }
  19151. }
  19152. },
  19153. [
  19154. {
  19155. name: "Normal",
  19156. height: math.unit(70, "cm"),
  19157. default: true
  19158. },
  19159. {
  19160. name: "Macro",
  19161. height: math.unit(8, "meters")
  19162. },
  19163. ]
  19164. ))
  19165. characterMakers.push(() => makeCharacter(
  19166. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19167. {
  19168. front: {
  19169. height: math.unit(6, "feet"),
  19170. weight: math.unit(150, "lb"),
  19171. name: "Front",
  19172. image: {
  19173. source: "./media/characters/typhek/front.svg",
  19174. extra: 1948 / 1929,
  19175. bottom: 0.025
  19176. }
  19177. },
  19178. side: {
  19179. height: math.unit(6, "feet"),
  19180. weight: math.unit(150, "lb"),
  19181. name: "Side",
  19182. image: {
  19183. source: "./media/characters/typhek/side.svg",
  19184. extra: 2034 / 2010,
  19185. bottom: 0.003
  19186. }
  19187. },
  19188. back: {
  19189. height: math.unit(6, "feet"),
  19190. weight: math.unit(150, "lb"),
  19191. name: "Back",
  19192. image: {
  19193. source: "./media/characters/typhek/back.svg",
  19194. extra: 2005 / 1978,
  19195. bottom: 0.004
  19196. }
  19197. },
  19198. palm: {
  19199. height: math.unit(1.2, "feet"),
  19200. name: "Palm",
  19201. image: {
  19202. source: "./media/characters/typhek/palm.svg"
  19203. }
  19204. },
  19205. fist: {
  19206. height: math.unit(1.1, "feet"),
  19207. name: "Fist",
  19208. image: {
  19209. source: "./media/characters/typhek/fist.svg"
  19210. }
  19211. },
  19212. foot: {
  19213. height: math.unit(1.57, "feet"),
  19214. name: "Foot",
  19215. image: {
  19216. source: "./media/characters/typhek/foot.svg"
  19217. }
  19218. },
  19219. sole: {
  19220. height: math.unit(2.05, "feet"),
  19221. name: "Sole",
  19222. image: {
  19223. source: "./media/characters/typhek/sole.svg"
  19224. }
  19225. },
  19226. },
  19227. [
  19228. {
  19229. name: "Macro",
  19230. height: math.unit(40, "stories"),
  19231. default: true
  19232. },
  19233. {
  19234. name: "Megamacro",
  19235. height: math.unit(1, "mile")
  19236. },
  19237. {
  19238. name: "Gigamacro",
  19239. height: math.unit(4000, "solarradii")
  19240. },
  19241. {
  19242. name: "Universal",
  19243. height: math.unit(1.1, "universes")
  19244. }
  19245. ]
  19246. ))
  19247. characterMakers.push(() => makeCharacter(
  19248. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19249. {
  19250. side: {
  19251. height: math.unit(5 + 7 / 12, "feet"),
  19252. weight: math.unit(150, "lb"),
  19253. name: "Side",
  19254. image: {
  19255. source: "./media/characters/kassy/side.svg",
  19256. extra: 1280 / 1225,
  19257. bottom: 0.002
  19258. }
  19259. },
  19260. front: {
  19261. height: math.unit(5 + 7 / 12, "feet"),
  19262. weight: math.unit(150, "lb"),
  19263. name: "Front",
  19264. image: {
  19265. source: "./media/characters/kassy/front.svg",
  19266. extra: 1280 / 1225,
  19267. bottom: 0.025
  19268. }
  19269. },
  19270. back: {
  19271. height: math.unit(5 + 7 / 12, "feet"),
  19272. weight: math.unit(150, "lb"),
  19273. name: "Back",
  19274. image: {
  19275. source: "./media/characters/kassy/back.svg",
  19276. extra: 1280 / 1225,
  19277. bottom: 0.002
  19278. }
  19279. },
  19280. foot: {
  19281. height: math.unit(1.266, "feet"),
  19282. name: "Foot",
  19283. image: {
  19284. source: "./media/characters/kassy/foot.svg"
  19285. }
  19286. },
  19287. },
  19288. [
  19289. {
  19290. name: "Normal",
  19291. height: math.unit(5 + 7 / 12, "feet")
  19292. },
  19293. {
  19294. name: "Macro",
  19295. height: math.unit(137, "feet"),
  19296. default: true
  19297. },
  19298. {
  19299. name: "Megamacro",
  19300. height: math.unit(1, "mile")
  19301. },
  19302. ]
  19303. ))
  19304. characterMakers.push(() => makeCharacter(
  19305. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19306. {
  19307. front: {
  19308. height: math.unit(6 + 1 / 12, "feet"),
  19309. weight: math.unit(200, "lb"),
  19310. name: "Front",
  19311. image: {
  19312. source: "./media/characters/neil/front.svg",
  19313. extra: 1326 / 1250,
  19314. bottom: 0.023
  19315. }
  19316. },
  19317. },
  19318. [
  19319. {
  19320. name: "Normal",
  19321. height: math.unit(6 + 1 / 12, "feet"),
  19322. default: true
  19323. },
  19324. {
  19325. name: "Macro",
  19326. height: math.unit(200, "feet")
  19327. },
  19328. ]
  19329. ))
  19330. characterMakers.push(() => makeCharacter(
  19331. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19332. {
  19333. front: {
  19334. height: math.unit(5 + 9 / 12, "feet"),
  19335. weight: math.unit(190, "lb"),
  19336. name: "Front",
  19337. image: {
  19338. source: "./media/characters/atticus/front.svg",
  19339. extra: 2934 / 2785,
  19340. bottom: 0.025
  19341. }
  19342. },
  19343. },
  19344. [
  19345. {
  19346. name: "Normal",
  19347. height: math.unit(5 + 9 / 12, "feet"),
  19348. default: true
  19349. },
  19350. {
  19351. name: "Macro",
  19352. height: math.unit(180, "feet")
  19353. },
  19354. ]
  19355. ))
  19356. characterMakers.push(() => makeCharacter(
  19357. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19358. {
  19359. side: {
  19360. height: math.unit(9, "feet"),
  19361. weight: math.unit(650, "lb"),
  19362. name: "Side",
  19363. image: {
  19364. source: "./media/characters/milo/side.svg",
  19365. extra: 2644 / 2310,
  19366. bottom: 0.032
  19367. }
  19368. },
  19369. },
  19370. [
  19371. {
  19372. name: "Normal",
  19373. height: math.unit(9, "feet"),
  19374. default: true
  19375. },
  19376. {
  19377. name: "Macro",
  19378. height: math.unit(300, "feet")
  19379. },
  19380. ]
  19381. ))
  19382. characterMakers.push(() => makeCharacter(
  19383. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19384. {
  19385. side: {
  19386. height: math.unit(8, "meters"),
  19387. weight: math.unit(90000, "kg"),
  19388. name: "Side",
  19389. image: {
  19390. source: "./media/characters/ijzer/side.svg",
  19391. extra: 2756 / 1600,
  19392. bottom: 0.01
  19393. }
  19394. },
  19395. },
  19396. [
  19397. {
  19398. name: "Small",
  19399. height: math.unit(3, "meters")
  19400. },
  19401. {
  19402. name: "Normal",
  19403. height: math.unit(8, "meters"),
  19404. default: true
  19405. },
  19406. {
  19407. name: "Normal+",
  19408. height: math.unit(10, "meters")
  19409. },
  19410. {
  19411. name: "Bigger",
  19412. height: math.unit(24, "meters")
  19413. },
  19414. {
  19415. name: "Huge",
  19416. height: math.unit(80, "meters")
  19417. },
  19418. ]
  19419. ))
  19420. characterMakers.push(() => makeCharacter(
  19421. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19422. {
  19423. front: {
  19424. height: math.unit(6 + 2 / 12, "feet"),
  19425. weight: math.unit(153, "lb"),
  19426. name: "Front",
  19427. image: {
  19428. source: "./media/characters/luca-cervicum/front.svg",
  19429. extra: 370 / 327,
  19430. bottom: 0.015
  19431. }
  19432. },
  19433. back: {
  19434. height: math.unit(6 + 2 / 12, "feet"),
  19435. weight: math.unit(153, "lb"),
  19436. name: "Back",
  19437. image: {
  19438. source: "./media/characters/luca-cervicum/back.svg",
  19439. extra: 367 / 333,
  19440. bottom: 0.005
  19441. }
  19442. },
  19443. frontGear: {
  19444. height: math.unit(6 + 2 / 12, "feet"),
  19445. weight: math.unit(173, "lb"),
  19446. name: "Front (Gear)",
  19447. image: {
  19448. source: "./media/characters/luca-cervicum/front-gear.svg",
  19449. extra: 377 / 333,
  19450. bottom: 0.006
  19451. }
  19452. },
  19453. },
  19454. [
  19455. {
  19456. name: "Normal",
  19457. height: math.unit(6 + 2 / 12, "feet"),
  19458. default: true
  19459. },
  19460. ]
  19461. ))
  19462. characterMakers.push(() => makeCharacter(
  19463. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19464. {
  19465. front: {
  19466. height: math.unit(6 + 1 / 12, "feet"),
  19467. weight: math.unit(304, "lb"),
  19468. name: "Front",
  19469. image: {
  19470. source: "./media/characters/oliver/front.svg",
  19471. extra: 157 / 143,
  19472. bottom: 0.08
  19473. }
  19474. },
  19475. },
  19476. [
  19477. {
  19478. name: "Normal",
  19479. height: math.unit(6 + 1 / 12, "feet"),
  19480. default: true
  19481. },
  19482. ]
  19483. ))
  19484. characterMakers.push(() => makeCharacter(
  19485. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19486. {
  19487. front: {
  19488. height: math.unit(5 + 7 / 12, "feet"),
  19489. weight: math.unit(140, "lb"),
  19490. name: "Front",
  19491. image: {
  19492. source: "./media/characters/shane/front.svg",
  19493. extra: 304 / 289,
  19494. bottom: 0.005
  19495. }
  19496. },
  19497. },
  19498. [
  19499. {
  19500. name: "Normal",
  19501. height: math.unit(5 + 7 / 12, "feet"),
  19502. default: true
  19503. },
  19504. ]
  19505. ))
  19506. characterMakers.push(() => makeCharacter(
  19507. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19508. {
  19509. front: {
  19510. height: math.unit(5 + 9 / 12, "feet"),
  19511. weight: math.unit(178, "lb"),
  19512. name: "Front",
  19513. image: {
  19514. source: "./media/characters/shin/front.svg",
  19515. extra: 159 / 151,
  19516. bottom: 0.015
  19517. }
  19518. },
  19519. },
  19520. [
  19521. {
  19522. name: "Normal",
  19523. height: math.unit(5 + 9 / 12, "feet"),
  19524. default: true
  19525. },
  19526. ]
  19527. ))
  19528. characterMakers.push(() => makeCharacter(
  19529. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19530. {
  19531. front: {
  19532. height: math.unit(5 + 10 / 12, "feet"),
  19533. weight: math.unit(168, "lb"),
  19534. name: "Front",
  19535. image: {
  19536. source: "./media/characters/xerxes/front.svg",
  19537. extra: 282 / 260,
  19538. bottom: 0.045
  19539. }
  19540. },
  19541. },
  19542. [
  19543. {
  19544. name: "Normal",
  19545. height: math.unit(5 + 10 / 12, "feet"),
  19546. default: true
  19547. },
  19548. ]
  19549. ))
  19550. characterMakers.push(() => makeCharacter(
  19551. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19552. {
  19553. front: {
  19554. height: math.unit(6 + 7 / 12, "feet"),
  19555. weight: math.unit(208, "lb"),
  19556. name: "Front",
  19557. image: {
  19558. source: "./media/characters/chaska/front.svg",
  19559. extra: 332 / 319,
  19560. bottom: 0.015
  19561. }
  19562. },
  19563. },
  19564. [
  19565. {
  19566. name: "Normal",
  19567. height: math.unit(6 + 7 / 12, "feet"),
  19568. default: true
  19569. },
  19570. ]
  19571. ))
  19572. characterMakers.push(() => makeCharacter(
  19573. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19574. {
  19575. front: {
  19576. height: math.unit(5 + 8 / 12, "feet"),
  19577. weight: math.unit(208, "lb"),
  19578. name: "Front",
  19579. image: {
  19580. source: "./media/characters/enuk/front.svg",
  19581. extra: 437 / 406,
  19582. bottom: 0.02
  19583. }
  19584. },
  19585. },
  19586. [
  19587. {
  19588. name: "Normal",
  19589. height: math.unit(5 + 8 / 12, "feet"),
  19590. default: true
  19591. },
  19592. ]
  19593. ))
  19594. characterMakers.push(() => makeCharacter(
  19595. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19596. {
  19597. front: {
  19598. height: math.unit(5 + 10 / 12, "feet"),
  19599. weight: math.unit(252, "lb"),
  19600. name: "Front",
  19601. image: {
  19602. source: "./media/characters/bruun/front.svg",
  19603. extra: 197 / 187,
  19604. bottom: 0.012
  19605. }
  19606. },
  19607. },
  19608. [
  19609. {
  19610. name: "Normal",
  19611. height: math.unit(5 + 10 / 12, "feet"),
  19612. default: true
  19613. },
  19614. ]
  19615. ))
  19616. characterMakers.push(() => makeCharacter(
  19617. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19618. {
  19619. front: {
  19620. height: math.unit(6 + 10 / 12, "feet"),
  19621. weight: math.unit(255, "lb"),
  19622. name: "Front",
  19623. image: {
  19624. source: "./media/characters/alexeev/front.svg",
  19625. extra: 213 / 200,
  19626. bottom: 0.05
  19627. }
  19628. },
  19629. },
  19630. [
  19631. {
  19632. name: "Normal",
  19633. height: math.unit(6 + 10 / 12, "feet"),
  19634. default: true
  19635. },
  19636. ]
  19637. ))
  19638. characterMakers.push(() => makeCharacter(
  19639. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19640. {
  19641. front: {
  19642. height: math.unit(2 + 8 / 12, "feet"),
  19643. weight: math.unit(22, "lb"),
  19644. name: "Front",
  19645. image: {
  19646. source: "./media/characters/evelyn/front.svg",
  19647. extra: 208 / 180
  19648. }
  19649. },
  19650. },
  19651. [
  19652. {
  19653. name: "Normal",
  19654. height: math.unit(2 + 8 / 12, "feet"),
  19655. default: true
  19656. },
  19657. ]
  19658. ))
  19659. characterMakers.push(() => makeCharacter(
  19660. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19661. {
  19662. front: {
  19663. height: math.unit(5 + 9 / 12, "feet"),
  19664. weight: math.unit(139, "lb"),
  19665. name: "Front",
  19666. image: {
  19667. source: "./media/characters/inca/front.svg",
  19668. extra: 294 / 291,
  19669. bottom: 0.03
  19670. }
  19671. },
  19672. },
  19673. [
  19674. {
  19675. name: "Normal",
  19676. height: math.unit(5 + 9 / 12, "feet"),
  19677. default: true
  19678. },
  19679. ]
  19680. ))
  19681. characterMakers.push(() => makeCharacter(
  19682. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19683. {
  19684. front: {
  19685. height: math.unit(5 + 1 / 12, "feet"),
  19686. weight: math.unit(84, "lb"),
  19687. name: "Front",
  19688. image: {
  19689. source: "./media/characters/magdalene/front.svg",
  19690. extra: 293 / 273
  19691. }
  19692. },
  19693. },
  19694. [
  19695. {
  19696. name: "Normal",
  19697. height: math.unit(5 + 1 / 12, "feet"),
  19698. default: true
  19699. },
  19700. ]
  19701. ))
  19702. characterMakers.push(() => makeCharacter(
  19703. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19704. {
  19705. front: {
  19706. height: math.unit(6 + 3 / 12, "feet"),
  19707. weight: math.unit(185, "lb"),
  19708. name: "Front",
  19709. image: {
  19710. source: "./media/characters/mera/front.svg",
  19711. extra: 291 / 277,
  19712. bottom: 0.03
  19713. }
  19714. },
  19715. },
  19716. [
  19717. {
  19718. name: "Normal",
  19719. height: math.unit(6 + 3 / 12, "feet"),
  19720. default: true
  19721. },
  19722. ]
  19723. ))
  19724. characterMakers.push(() => makeCharacter(
  19725. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19726. {
  19727. front: {
  19728. height: math.unit(6 + 7 / 12, "feet"),
  19729. weight: math.unit(160, "lb"),
  19730. name: "Front",
  19731. image: {
  19732. source: "./media/characters/ceres/front.svg",
  19733. extra: 1023 / 950,
  19734. bottom: 0.027
  19735. }
  19736. },
  19737. back: {
  19738. height: math.unit(6 + 7 / 12, "feet"),
  19739. weight: math.unit(160, "lb"),
  19740. name: "Back",
  19741. image: {
  19742. source: "./media/characters/ceres/back.svg",
  19743. extra: 1023 / 950
  19744. }
  19745. },
  19746. },
  19747. [
  19748. {
  19749. name: "Normal",
  19750. height: math.unit(6 + 7 / 12, "feet"),
  19751. default: true
  19752. },
  19753. ]
  19754. ))
  19755. characterMakers.push(() => makeCharacter(
  19756. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19757. {
  19758. front: {
  19759. height: math.unit(5 + 10 / 12, "feet"),
  19760. weight: math.unit(150, "lb"),
  19761. name: "Front",
  19762. image: {
  19763. source: "./media/characters/kris/front.svg",
  19764. extra: 885 / 803,
  19765. bottom: 0.03
  19766. }
  19767. },
  19768. },
  19769. [
  19770. {
  19771. name: "Normal",
  19772. height: math.unit(5 + 10 / 12, "feet"),
  19773. default: true
  19774. },
  19775. ]
  19776. ))
  19777. characterMakers.push(() => makeCharacter(
  19778. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19779. {
  19780. front: {
  19781. height: math.unit(7, "feet"),
  19782. weight: math.unit(120, "kg"),
  19783. name: "Front",
  19784. image: {
  19785. source: "./media/characters/taluthus/front.svg",
  19786. extra: 903 / 833,
  19787. bottom: 0.015
  19788. }
  19789. },
  19790. },
  19791. [
  19792. {
  19793. name: "Normal",
  19794. height: math.unit(7, "feet"),
  19795. default: true
  19796. },
  19797. {
  19798. name: "Macro",
  19799. height: math.unit(300, "feet")
  19800. },
  19801. ]
  19802. ))
  19803. characterMakers.push(() => makeCharacter(
  19804. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19805. {
  19806. front: {
  19807. height: math.unit(5 + 9 / 12, "feet"),
  19808. weight: math.unit(145, "lb"),
  19809. name: "Front",
  19810. image: {
  19811. source: "./media/characters/dawn/front.svg",
  19812. extra: 2094 / 2016,
  19813. bottom: 0.025
  19814. }
  19815. },
  19816. back: {
  19817. height: math.unit(5 + 9 / 12, "feet"),
  19818. weight: math.unit(160, "lb"),
  19819. name: "Back",
  19820. image: {
  19821. source: "./media/characters/dawn/back.svg",
  19822. extra: 2112 / 2080,
  19823. bottom: 0.005
  19824. }
  19825. },
  19826. },
  19827. [
  19828. {
  19829. name: "Normal",
  19830. height: math.unit(6 + 7 / 12, "feet"),
  19831. default: true
  19832. },
  19833. ]
  19834. ))
  19835. characterMakers.push(() => makeCharacter(
  19836. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19837. {
  19838. anthro: {
  19839. height: math.unit(8 + 3 / 12, "feet"),
  19840. weight: math.unit(450, "lb"),
  19841. name: "Anthro",
  19842. image: {
  19843. source: "./media/characters/arador/anthro.svg",
  19844. extra: 1835 / 1718,
  19845. bottom: 0.025
  19846. }
  19847. },
  19848. feral: {
  19849. height: math.unit(4, "feet"),
  19850. weight: math.unit(200, "lb"),
  19851. name: "Feral",
  19852. image: {
  19853. source: "./media/characters/arador/feral.svg",
  19854. extra: 1683 / 1514,
  19855. bottom: 0.07
  19856. }
  19857. },
  19858. },
  19859. [
  19860. {
  19861. name: "Normal",
  19862. height: math.unit(8 + 3 / 12, "feet")
  19863. },
  19864. {
  19865. name: "Macro",
  19866. height: math.unit(82.5, "feet"),
  19867. default: true
  19868. },
  19869. ]
  19870. ))
  19871. characterMakers.push(() => makeCharacter(
  19872. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19873. {
  19874. front: {
  19875. height: math.unit(5 + 10 / 12, "feet"),
  19876. weight: math.unit(125, "lb"),
  19877. name: "Front",
  19878. image: {
  19879. source: "./media/characters/dharsi/front.svg",
  19880. extra: 716 / 630,
  19881. bottom: 0.035
  19882. }
  19883. },
  19884. },
  19885. [
  19886. {
  19887. name: "Nano",
  19888. height: math.unit(100, "nm")
  19889. },
  19890. {
  19891. name: "Micro",
  19892. height: math.unit(2, "inches")
  19893. },
  19894. {
  19895. name: "Normal",
  19896. height: math.unit(5 + 10 / 12, "feet"),
  19897. default: true
  19898. },
  19899. {
  19900. name: "Macro",
  19901. height: math.unit(1000, "feet")
  19902. },
  19903. {
  19904. name: "Megamacro",
  19905. height: math.unit(10, "miles")
  19906. },
  19907. {
  19908. name: "Gigamacro",
  19909. height: math.unit(3000, "miles")
  19910. },
  19911. {
  19912. name: "Teramacro",
  19913. height: math.unit(500000, "miles")
  19914. },
  19915. {
  19916. name: "Teramacro+",
  19917. height: math.unit(30, "galaxies")
  19918. },
  19919. ]
  19920. ))
  19921. characterMakers.push(() => makeCharacter(
  19922. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19923. {
  19924. front: {
  19925. height: math.unit(6, "feet"),
  19926. weight: math.unit(150, "lb"),
  19927. name: "Front",
  19928. image: {
  19929. source: "./media/characters/deathy/front.svg",
  19930. extra: 1552 / 1463,
  19931. bottom: 0.025
  19932. }
  19933. },
  19934. side: {
  19935. height: math.unit(6, "feet"),
  19936. weight: math.unit(150, "lb"),
  19937. name: "Side",
  19938. image: {
  19939. source: "./media/characters/deathy/side.svg",
  19940. extra: 1604 / 1455,
  19941. bottom: 0.025
  19942. }
  19943. },
  19944. back: {
  19945. height: math.unit(6, "feet"),
  19946. weight: math.unit(150, "lb"),
  19947. name: "Back",
  19948. image: {
  19949. source: "./media/characters/deathy/back.svg",
  19950. extra: 1580 / 1463,
  19951. bottom: 0.005
  19952. }
  19953. },
  19954. },
  19955. [
  19956. {
  19957. name: "Micro",
  19958. height: math.unit(5, "millimeters")
  19959. },
  19960. {
  19961. name: "Normal",
  19962. height: math.unit(6 + 5 / 12, "feet"),
  19963. default: true
  19964. },
  19965. ]
  19966. ))
  19967. characterMakers.push(() => makeCharacter(
  19968. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19969. {
  19970. front: {
  19971. height: math.unit(16, "feet"),
  19972. weight: math.unit(4000, "lb"),
  19973. name: "Front",
  19974. image: {
  19975. source: "./media/characters/juniper/front.svg",
  19976. bottom: 0.04
  19977. }
  19978. },
  19979. },
  19980. [
  19981. {
  19982. name: "Normal",
  19983. height: math.unit(16, "feet"),
  19984. default: true
  19985. },
  19986. ]
  19987. ))
  19988. characterMakers.push(() => makeCharacter(
  19989. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19990. {
  19991. front: {
  19992. height: math.unit(6, "feet"),
  19993. weight: math.unit(150, "lb"),
  19994. name: "Front",
  19995. image: {
  19996. source: "./media/characters/hipster/front.svg",
  19997. extra: 1312 / 1209,
  19998. bottom: 0.025
  19999. }
  20000. },
  20001. back: {
  20002. height: math.unit(6, "feet"),
  20003. weight: math.unit(150, "lb"),
  20004. name: "Back",
  20005. image: {
  20006. source: "./media/characters/hipster/back.svg",
  20007. extra: 1281 / 1196,
  20008. bottom: 0.01
  20009. }
  20010. },
  20011. },
  20012. [
  20013. {
  20014. name: "Micro",
  20015. height: math.unit(1, "mm")
  20016. },
  20017. {
  20018. name: "Normal",
  20019. height: math.unit(4, "inches"),
  20020. default: true
  20021. },
  20022. {
  20023. name: "Macro",
  20024. height: math.unit(500, "feet")
  20025. },
  20026. {
  20027. name: "Megamacro",
  20028. height: math.unit(1000, "miles")
  20029. },
  20030. ]
  20031. ))
  20032. characterMakers.push(() => makeCharacter(
  20033. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20034. {
  20035. front: {
  20036. height: math.unit(6, "feet"),
  20037. weight: math.unit(150, "lb"),
  20038. name: "Front",
  20039. image: {
  20040. source: "./media/characters/tendirmuldr/front.svg",
  20041. extra: 1878 / 1772,
  20042. bottom: 0.015
  20043. }
  20044. },
  20045. },
  20046. [
  20047. {
  20048. name: "Megamacro",
  20049. height: math.unit(1500, "miles"),
  20050. default: true
  20051. },
  20052. ]
  20053. ))
  20054. characterMakers.push(() => makeCharacter(
  20055. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20056. {
  20057. front: {
  20058. height: math.unit(14, "feet"),
  20059. weight: math.unit(12000, "lb"),
  20060. name: "Front",
  20061. image: {
  20062. source: "./media/characters/mort/front.svg",
  20063. extra: 365 / 318,
  20064. bottom: 0.01
  20065. }
  20066. },
  20067. side: {
  20068. height: math.unit(14, "feet"),
  20069. weight: math.unit(12000, "lb"),
  20070. name: "Side",
  20071. image: {
  20072. source: "./media/characters/mort/side.svg",
  20073. extra: 365 / 318,
  20074. bottom: 0.052
  20075. },
  20076. default: true
  20077. },
  20078. back: {
  20079. height: math.unit(14, "feet"),
  20080. weight: math.unit(12000, "lb"),
  20081. name: "Back",
  20082. image: {
  20083. source: "./media/characters/mort/back.svg",
  20084. extra: 371 / 332,
  20085. bottom: 0.18
  20086. }
  20087. },
  20088. },
  20089. [
  20090. {
  20091. name: "Normal",
  20092. height: math.unit(14, "feet"),
  20093. default: true
  20094. },
  20095. ]
  20096. ))
  20097. characterMakers.push(() => makeCharacter(
  20098. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20099. {
  20100. front: {
  20101. height: math.unit(8, "feet"),
  20102. weight: math.unit(1, "ton"),
  20103. name: "Front",
  20104. image: {
  20105. source: "./media/characters/lycoa/front.svg",
  20106. extra: 1875 / 1789,
  20107. bottom: 0.022
  20108. }
  20109. },
  20110. back: {
  20111. height: math.unit(8, "feet"),
  20112. weight: math.unit(1, "ton"),
  20113. name: "Back",
  20114. image: {
  20115. source: "./media/characters/lycoa/back.svg",
  20116. extra: 1835 / 1781,
  20117. bottom: 0.03
  20118. }
  20119. },
  20120. head: {
  20121. height: math.unit(2.1, "feet"),
  20122. name: "Head",
  20123. image: {
  20124. source: "./media/characters/lycoa/head.svg"
  20125. }
  20126. },
  20127. tailmaw: {
  20128. height: math.unit(1.9, "feet"),
  20129. name: "Tailmaw",
  20130. image: {
  20131. source: "./media/characters/lycoa/tailmaw.svg"
  20132. }
  20133. },
  20134. tentacles: {
  20135. height: math.unit(2.1, "feet"),
  20136. name: "Tentacles",
  20137. image: {
  20138. source: "./media/characters/lycoa/tentacles.svg"
  20139. }
  20140. },
  20141. dick: {
  20142. height: math.unit(1.73, "feet"),
  20143. name: "Dick",
  20144. image: {
  20145. source: "./media/characters/lycoa/dick.svg"
  20146. }
  20147. },
  20148. },
  20149. [
  20150. {
  20151. name: "Normal",
  20152. height: math.unit(8, "feet"),
  20153. default: true
  20154. },
  20155. {
  20156. name: "Macro",
  20157. height: math.unit(30, "feet")
  20158. },
  20159. ]
  20160. ))
  20161. characterMakers.push(() => makeCharacter(
  20162. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20163. {
  20164. front: {
  20165. height: math.unit(4 + 2 / 12, "feet"),
  20166. weight: math.unit(70, "lb"),
  20167. name: "Front",
  20168. image: {
  20169. source: "./media/characters/naldara/front.svg",
  20170. extra: 841 / 720,
  20171. bottom: 0.04
  20172. }
  20173. },
  20174. naga: {
  20175. height: math.unit(23, "feet"),
  20176. weight: math.unit(15000, "kg"),
  20177. name: "Naga",
  20178. image: {
  20179. source: "./media/characters/naldara/naga.svg",
  20180. extra: 3290 / 2959,
  20181. bottom: 124 / 3432
  20182. }
  20183. },
  20184. },
  20185. [
  20186. {
  20187. name: "Normal",
  20188. height: math.unit(4 + 2 / 12, "feet"),
  20189. default: true
  20190. },
  20191. ]
  20192. ))
  20193. characterMakers.push(() => makeCharacter(
  20194. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20195. {
  20196. front: {
  20197. height: math.unit(13 + 7 / 12, "feet"),
  20198. weight: math.unit(1500, "lb"),
  20199. name: "Front",
  20200. image: {
  20201. source: "./media/characters/briar/front.svg",
  20202. extra: 626 / 596,
  20203. bottom: 0.08
  20204. }
  20205. },
  20206. },
  20207. [
  20208. {
  20209. name: "Normal",
  20210. height: math.unit(13 + 7 / 12, "feet"),
  20211. default: true
  20212. },
  20213. ]
  20214. ))
  20215. characterMakers.push(() => makeCharacter(
  20216. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20217. {
  20218. side: {
  20219. height: math.unit(10, "feet"),
  20220. weight: math.unit(500, "lb"),
  20221. name: "Side",
  20222. image: {
  20223. source: "./media/characters/vanguard/side.svg",
  20224. extra: 502 / 425,
  20225. bottom: 0.087
  20226. }
  20227. },
  20228. },
  20229. [
  20230. {
  20231. name: "Normal",
  20232. height: math.unit(10, "feet"),
  20233. default: true
  20234. },
  20235. ]
  20236. ))
  20237. characterMakers.push(() => makeCharacter(
  20238. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20239. {
  20240. front: {
  20241. height: math.unit(7.5, "feet"),
  20242. weight: math.unit(2, "lb"),
  20243. name: "Front",
  20244. image: {
  20245. source: "./media/characters/artemis/front.svg",
  20246. extra: 1192 / 1075,
  20247. bottom: 0.07
  20248. }
  20249. },
  20250. frontNsfw: {
  20251. height: math.unit(7.5, "feet"),
  20252. weight: math.unit(2, "lb"),
  20253. name: "Front (NSFW)",
  20254. image: {
  20255. source: "./media/characters/artemis/front-nsfw.svg",
  20256. extra: 1192 / 1075,
  20257. bottom: 0.07
  20258. }
  20259. },
  20260. frontNsfwer: {
  20261. height: math.unit(7.5, "feet"),
  20262. weight: math.unit(2, "lb"),
  20263. name: "Front (NSFW-er)",
  20264. image: {
  20265. source: "./media/characters/artemis/front-nsfwer.svg",
  20266. extra: 1192 / 1075,
  20267. bottom: 0.07
  20268. }
  20269. },
  20270. side: {
  20271. height: math.unit(7.5, "feet"),
  20272. weight: math.unit(2, "lb"),
  20273. name: "Side",
  20274. image: {
  20275. source: "./media/characters/artemis/side.svg",
  20276. extra: 1192 / 1075,
  20277. bottom: 0.07
  20278. }
  20279. },
  20280. sideNsfw: {
  20281. height: math.unit(7.5, "feet"),
  20282. weight: math.unit(2, "lb"),
  20283. name: "Side (NSFW)",
  20284. image: {
  20285. source: "./media/characters/artemis/side-nsfw.svg",
  20286. extra: 1192 / 1075,
  20287. bottom: 0.07
  20288. }
  20289. },
  20290. sideNsfwer: {
  20291. height: math.unit(7.5, "feet"),
  20292. weight: math.unit(2, "lb"),
  20293. name: "Side (NSFW-er)",
  20294. image: {
  20295. source: "./media/characters/artemis/side-nsfwer.svg",
  20296. extra: 1192 / 1075,
  20297. bottom: 0.07
  20298. }
  20299. },
  20300. maw: {
  20301. height: math.unit(1.1, "feet"),
  20302. name: "Maw",
  20303. image: {
  20304. source: "./media/characters/artemis/maw.svg"
  20305. }
  20306. },
  20307. stomach: {
  20308. height: math.unit(0.95, "feet"),
  20309. name: "Stomach",
  20310. image: {
  20311. source: "./media/characters/artemis/stomach.svg"
  20312. }
  20313. },
  20314. dickCanine: {
  20315. height: math.unit(1, "feet"),
  20316. name: "Dick (Canine)",
  20317. image: {
  20318. source: "./media/characters/artemis/dick-canine.svg"
  20319. }
  20320. },
  20321. dickEquine: {
  20322. height: math.unit(0.85, "feet"),
  20323. name: "Dick (Equine)",
  20324. image: {
  20325. source: "./media/characters/artemis/dick-equine.svg"
  20326. }
  20327. },
  20328. dickExotic: {
  20329. height: math.unit(0.85, "feet"),
  20330. name: "Dick (Exotic)",
  20331. image: {
  20332. source: "./media/characters/artemis/dick-exotic.svg"
  20333. }
  20334. },
  20335. },
  20336. [
  20337. {
  20338. name: "Normal",
  20339. height: math.unit(7.5, "feet"),
  20340. default: true
  20341. },
  20342. {
  20343. name: "Enlarged",
  20344. height: math.unit(12, "feet")
  20345. },
  20346. ]
  20347. ))
  20348. characterMakers.push(() => makeCharacter(
  20349. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20350. {
  20351. front: {
  20352. height: math.unit(5 + 3 / 12, "feet"),
  20353. weight: math.unit(160, "lb"),
  20354. name: "Front",
  20355. image: {
  20356. source: "./media/characters/kira/front.svg",
  20357. extra: 906 / 786,
  20358. bottom: 0.01
  20359. }
  20360. },
  20361. back: {
  20362. height: math.unit(5 + 3 / 12, "feet"),
  20363. weight: math.unit(160, "lb"),
  20364. name: "Back",
  20365. image: {
  20366. source: "./media/characters/kira/back.svg",
  20367. extra: 882 / 757,
  20368. bottom: 0.005
  20369. }
  20370. },
  20371. frontDressed: {
  20372. height: math.unit(5 + 3 / 12, "feet"),
  20373. weight: math.unit(160, "lb"),
  20374. name: "Front (Dressed)",
  20375. image: {
  20376. source: "./media/characters/kira/front-dressed.svg",
  20377. extra: 906 / 786,
  20378. bottom: 0.01
  20379. }
  20380. },
  20381. beans: {
  20382. height: math.unit(0.92, "feet"),
  20383. name: "Beans",
  20384. image: {
  20385. source: "./media/characters/kira/beans.svg"
  20386. }
  20387. },
  20388. },
  20389. [
  20390. {
  20391. name: "Normal",
  20392. height: math.unit(5 + 3 / 12, "feet"),
  20393. default: true
  20394. },
  20395. ]
  20396. ))
  20397. characterMakers.push(() => makeCharacter(
  20398. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20399. {
  20400. front: {
  20401. height: math.unit(5 + 4 / 12, "feet"),
  20402. weight: math.unit(145, "lb"),
  20403. name: "Front",
  20404. image: {
  20405. source: "./media/characters/scramble/front.svg",
  20406. extra: 763 / 727,
  20407. bottom: 0.05
  20408. }
  20409. },
  20410. back: {
  20411. height: math.unit(5 + 4 / 12, "feet"),
  20412. weight: math.unit(145, "lb"),
  20413. name: "Back",
  20414. image: {
  20415. source: "./media/characters/scramble/back.svg",
  20416. extra: 826 / 737,
  20417. bottom: 0.002
  20418. }
  20419. },
  20420. },
  20421. [
  20422. {
  20423. name: "Normal",
  20424. height: math.unit(5 + 4 / 12, "feet"),
  20425. default: true
  20426. },
  20427. ]
  20428. ))
  20429. characterMakers.push(() => makeCharacter(
  20430. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20431. {
  20432. side: {
  20433. height: math.unit(6 + 2 / 12, "feet"),
  20434. weight: math.unit(190, "lb"),
  20435. name: "Side",
  20436. image: {
  20437. source: "./media/characters/biscuit/side.svg",
  20438. extra: 858 / 791,
  20439. bottom: 0.044
  20440. }
  20441. },
  20442. },
  20443. [
  20444. {
  20445. name: "Normal",
  20446. height: math.unit(6 + 2 / 12, "feet"),
  20447. default: true
  20448. },
  20449. ]
  20450. ))
  20451. characterMakers.push(() => makeCharacter(
  20452. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20453. {
  20454. front: {
  20455. height: math.unit(5 + 2 / 12, "feet"),
  20456. weight: math.unit(120, "lb"),
  20457. name: "Front",
  20458. image: {
  20459. source: "./media/characters/poffin/front.svg",
  20460. extra: 786 / 680,
  20461. bottom: 0.005
  20462. }
  20463. },
  20464. },
  20465. [
  20466. {
  20467. name: "Normal",
  20468. height: math.unit(5 + 2 / 12, "feet"),
  20469. default: true
  20470. },
  20471. ]
  20472. ))
  20473. characterMakers.push(() => makeCharacter(
  20474. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20475. {
  20476. front: {
  20477. height: math.unit(6 + 3 / 12, "feet"),
  20478. weight: math.unit(519, "lb"),
  20479. name: "Front",
  20480. image: {
  20481. source: "./media/characters/dhari/front.svg",
  20482. extra: 1048 / 946,
  20483. bottom: 0.015
  20484. }
  20485. },
  20486. back: {
  20487. height: math.unit(6 + 3 / 12, "feet"),
  20488. weight: math.unit(519, "lb"),
  20489. name: "Back",
  20490. image: {
  20491. source: "./media/characters/dhari/back.svg",
  20492. extra: 1048 / 931,
  20493. bottom: 0.005
  20494. }
  20495. },
  20496. frontDressed: {
  20497. height: math.unit(6 + 3 / 12, "feet"),
  20498. weight: math.unit(519, "lb"),
  20499. name: "Front (Dressed)",
  20500. image: {
  20501. source: "./media/characters/dhari/front-dressed.svg",
  20502. extra: 1713 / 1546,
  20503. bottom: 0.02
  20504. }
  20505. },
  20506. backDressed: {
  20507. height: math.unit(6 + 3 / 12, "feet"),
  20508. weight: math.unit(519, "lb"),
  20509. name: "Back (Dressed)",
  20510. image: {
  20511. source: "./media/characters/dhari/back-dressed.svg",
  20512. extra: 1699 / 1537,
  20513. bottom: 0.01
  20514. }
  20515. },
  20516. maw: {
  20517. height: math.unit(0.95, "feet"),
  20518. name: "Maw",
  20519. image: {
  20520. source: "./media/characters/dhari/maw.svg"
  20521. }
  20522. },
  20523. wereFront: {
  20524. height: math.unit(12 + 8 / 12, "feet"),
  20525. weight: math.unit(4000, "lb"),
  20526. name: "Front (Were)",
  20527. image: {
  20528. source: "./media/characters/dhari/were-front.svg",
  20529. extra: 1065 / 969,
  20530. bottom: 0.015
  20531. }
  20532. },
  20533. wereBack: {
  20534. height: math.unit(12 + 8 / 12, "feet"),
  20535. weight: math.unit(4000, "lb"),
  20536. name: "Back (Were)",
  20537. image: {
  20538. source: "./media/characters/dhari/were-back.svg",
  20539. extra: 1065 / 969,
  20540. bottom: 0.012
  20541. }
  20542. },
  20543. wereMaw: {
  20544. height: math.unit(0.625, "meters"),
  20545. name: "Maw (Were)",
  20546. image: {
  20547. source: "./media/characters/dhari/were-maw.svg"
  20548. }
  20549. },
  20550. },
  20551. [
  20552. {
  20553. name: "Normal",
  20554. height: math.unit(6 + 3 / 12, "feet"),
  20555. default: true
  20556. },
  20557. ]
  20558. ))
  20559. characterMakers.push(() => makeCharacter(
  20560. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20561. {
  20562. anthro: {
  20563. height: math.unit(5 + 7 / 12, "feet"),
  20564. weight: math.unit(175, "lb"),
  20565. name: "Anthro",
  20566. image: {
  20567. source: "./media/characters/rena-dyne/anthro.svg",
  20568. extra: 1849 / 1785,
  20569. bottom: 0.005
  20570. }
  20571. },
  20572. taur: {
  20573. height: math.unit(15 + 6 / 12, "feet"),
  20574. weight: math.unit(8000, "lb"),
  20575. name: "Taur",
  20576. image: {
  20577. source: "./media/characters/rena-dyne/taur.svg",
  20578. extra: 2315 / 2234,
  20579. bottom: 0.033
  20580. }
  20581. },
  20582. },
  20583. [
  20584. {
  20585. name: "Normal",
  20586. height: math.unit(5 + 7 / 12, "feet"),
  20587. default: true
  20588. },
  20589. ]
  20590. ))
  20591. characterMakers.push(() => makeCharacter(
  20592. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20593. {
  20594. front: {
  20595. height: math.unit(8, "feet"),
  20596. weight: math.unit(600, "lb"),
  20597. name: "Front",
  20598. image: {
  20599. source: "./media/characters/weremeep/front.svg",
  20600. extra: 967 / 862,
  20601. bottom: 0.01
  20602. }
  20603. },
  20604. },
  20605. [
  20606. {
  20607. name: "Normal",
  20608. height: math.unit(8, "feet"),
  20609. default: true
  20610. },
  20611. {
  20612. name: "Lorg",
  20613. height: math.unit(12, "feet")
  20614. },
  20615. {
  20616. name: "Oh Lawd She Comin'",
  20617. height: math.unit(20, "feet")
  20618. },
  20619. ]
  20620. ))
  20621. characterMakers.push(() => makeCharacter(
  20622. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20623. {
  20624. front: {
  20625. height: math.unit(4, "feet"),
  20626. weight: math.unit(90, "lb"),
  20627. name: "Front",
  20628. image: {
  20629. source: "./media/characters/reza/front.svg",
  20630. extra: 1183 / 1111,
  20631. bottom: 0.017
  20632. }
  20633. },
  20634. back: {
  20635. height: math.unit(4, "feet"),
  20636. weight: math.unit(90, "lb"),
  20637. name: "Back",
  20638. image: {
  20639. source: "./media/characters/reza/back.svg",
  20640. extra: 1183 / 1111,
  20641. bottom: 0.01
  20642. }
  20643. },
  20644. drake: {
  20645. height: math.unit(30, "feet"),
  20646. weight: math.unit(246960, "lb"),
  20647. name: "Drake",
  20648. image: {
  20649. source: "./media/characters/reza/drake.svg",
  20650. extra: 2350 / 2024,
  20651. bottom: 60.7 / 2403
  20652. }
  20653. },
  20654. },
  20655. [
  20656. {
  20657. name: "Normal",
  20658. height: math.unit(4, "feet"),
  20659. default: true
  20660. },
  20661. ]
  20662. ))
  20663. characterMakers.push(() => makeCharacter(
  20664. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20665. {
  20666. side: {
  20667. height: math.unit(15, "feet"),
  20668. weight: math.unit(14, "tons"),
  20669. name: "Side",
  20670. image: {
  20671. source: "./media/characters/athea/side.svg",
  20672. extra: 960 / 540,
  20673. bottom: 0.003
  20674. }
  20675. },
  20676. sitting: {
  20677. height: math.unit(6 * 2.85, "feet"),
  20678. weight: math.unit(14, "tons"),
  20679. name: "Sitting",
  20680. image: {
  20681. source: "./media/characters/athea/sitting.svg",
  20682. extra: 621 / 581,
  20683. bottom: 0.075
  20684. }
  20685. },
  20686. maw: {
  20687. height: math.unit(7.59498031496063, "feet"),
  20688. name: "Maw",
  20689. image: {
  20690. source: "./media/characters/athea/maw.svg"
  20691. }
  20692. },
  20693. },
  20694. [
  20695. {
  20696. name: "Lap Cat",
  20697. height: math.unit(2.5, "feet")
  20698. },
  20699. {
  20700. name: "Minimacro",
  20701. height: math.unit(15, "feet"),
  20702. default: true
  20703. },
  20704. {
  20705. name: "Macro",
  20706. height: math.unit(120, "feet")
  20707. },
  20708. {
  20709. name: "Macro+",
  20710. height: math.unit(640, "feet")
  20711. },
  20712. {
  20713. name: "Colossus",
  20714. height: math.unit(2.2, "miles")
  20715. },
  20716. ]
  20717. ))
  20718. characterMakers.push(() => makeCharacter(
  20719. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20720. {
  20721. front: {
  20722. height: math.unit(8 + 8 / 12, "feet"),
  20723. weight: math.unit(130, "kg"),
  20724. name: "Front",
  20725. image: {
  20726. source: "./media/characters/seroko/front.svg",
  20727. extra: 1385 / 1280,
  20728. bottom: 0.025
  20729. }
  20730. },
  20731. back: {
  20732. height: math.unit(8 + 8 / 12, "feet"),
  20733. weight: math.unit(130, "kg"),
  20734. name: "Back",
  20735. image: {
  20736. source: "./media/characters/seroko/back.svg",
  20737. extra: 1369 / 1238,
  20738. bottom: 0.018
  20739. }
  20740. },
  20741. frontDressed: {
  20742. height: math.unit(8 + 8 / 12, "feet"),
  20743. weight: math.unit(130, "kg"),
  20744. name: "Front (Dressed)",
  20745. image: {
  20746. source: "./media/characters/seroko/front-dressed.svg",
  20747. extra: 1366 / 1275,
  20748. bottom: 0.03
  20749. }
  20750. },
  20751. },
  20752. [
  20753. {
  20754. name: "Normal",
  20755. height: math.unit(8 + 8 / 12, "feet"),
  20756. default: true
  20757. },
  20758. ]
  20759. ))
  20760. characterMakers.push(() => makeCharacter(
  20761. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20762. {
  20763. front: {
  20764. height: math.unit(5.5, "feet"),
  20765. weight: math.unit(160, "lb"),
  20766. name: "Front",
  20767. image: {
  20768. source: "./media/characters/quatzi/front.svg",
  20769. extra: 2346 / 2242,
  20770. bottom: 0.015
  20771. }
  20772. },
  20773. },
  20774. [
  20775. {
  20776. name: "Normal",
  20777. height: math.unit(5.5, "feet"),
  20778. default: true
  20779. },
  20780. {
  20781. name: "Big",
  20782. height: math.unit(7.7, "feet")
  20783. },
  20784. ]
  20785. ))
  20786. characterMakers.push(() => makeCharacter(
  20787. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20788. {
  20789. front: {
  20790. height: math.unit(5 + 11 / 12, "feet"),
  20791. weight: math.unit(180, "lb"),
  20792. name: "Front",
  20793. image: {
  20794. source: "./media/characters/sen/front.svg",
  20795. extra: 1321 / 1254,
  20796. bottom: 0.015
  20797. }
  20798. },
  20799. side: {
  20800. height: math.unit(5 + 11 / 12, "feet"),
  20801. weight: math.unit(180, "lb"),
  20802. name: "Side",
  20803. image: {
  20804. source: "./media/characters/sen/side.svg",
  20805. extra: 1321 / 1254,
  20806. bottom: 0.007
  20807. }
  20808. },
  20809. back: {
  20810. height: math.unit(5 + 11 / 12, "feet"),
  20811. weight: math.unit(180, "lb"),
  20812. name: "Back",
  20813. image: {
  20814. source: "./media/characters/sen/back.svg",
  20815. extra: 1321 / 1254
  20816. }
  20817. },
  20818. },
  20819. [
  20820. {
  20821. name: "Normal",
  20822. height: math.unit(5 + 11 / 12, "feet"),
  20823. default: true
  20824. },
  20825. ]
  20826. ))
  20827. characterMakers.push(() => makeCharacter(
  20828. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20829. {
  20830. front: {
  20831. height: math.unit(166.6, "cm"),
  20832. weight: math.unit(66.6, "kg"),
  20833. name: "Front",
  20834. image: {
  20835. source: "./media/characters/fruity/front.svg",
  20836. extra: 1510 / 1386,
  20837. bottom: 0.04
  20838. }
  20839. },
  20840. back: {
  20841. height: math.unit(166.6, "cm"),
  20842. weight: math.unit(66.6, "lb"),
  20843. name: "Back",
  20844. image: {
  20845. source: "./media/characters/fruity/back.svg",
  20846. extra: 1563 / 1435,
  20847. bottom: 0.005
  20848. }
  20849. },
  20850. },
  20851. [
  20852. {
  20853. name: "Normal",
  20854. height: math.unit(166.6, "cm"),
  20855. default: true
  20856. },
  20857. {
  20858. name: "Demonic",
  20859. height: math.unit(166.6, "feet")
  20860. },
  20861. ]
  20862. ))
  20863. characterMakers.push(() => makeCharacter(
  20864. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20865. {
  20866. side: {
  20867. height: math.unit(10, "feet"),
  20868. weight: math.unit(500, "lb"),
  20869. name: "Side",
  20870. image: {
  20871. source: "./media/characters/zost/side.svg",
  20872. extra: 966 / 880,
  20873. bottom: 0.075
  20874. }
  20875. },
  20876. mawFront: {
  20877. height: math.unit(1.08, "meters"),
  20878. name: "Maw (Front)",
  20879. image: {
  20880. source: "./media/characters/zost/maw-front.svg"
  20881. }
  20882. },
  20883. mawSide: {
  20884. height: math.unit(2.66, "feet"),
  20885. name: "Maw (Side)",
  20886. image: {
  20887. source: "./media/characters/zost/maw-side.svg"
  20888. }
  20889. },
  20890. },
  20891. [
  20892. {
  20893. name: "Normal",
  20894. height: math.unit(10, "feet"),
  20895. default: true
  20896. },
  20897. ]
  20898. ))
  20899. characterMakers.push(() => makeCharacter(
  20900. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20901. {
  20902. front: {
  20903. height: math.unit(5 + 4 / 12, "feet"),
  20904. weight: math.unit(120, "lb"),
  20905. name: "Front",
  20906. image: {
  20907. source: "./media/characters/luci/front.svg",
  20908. extra: 1985 / 1884,
  20909. bottom: 0.04
  20910. }
  20911. },
  20912. back: {
  20913. height: math.unit(5 + 4 / 12, "feet"),
  20914. weight: math.unit(120, "lb"),
  20915. name: "Back",
  20916. image: {
  20917. source: "./media/characters/luci/back.svg",
  20918. extra: 1892 / 1791,
  20919. bottom: 0.002
  20920. }
  20921. },
  20922. },
  20923. [
  20924. {
  20925. name: "Normal",
  20926. height: math.unit(5 + 4 / 12, "feet"),
  20927. default: true
  20928. },
  20929. ]
  20930. ))
  20931. characterMakers.push(() => makeCharacter(
  20932. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20933. {
  20934. front: {
  20935. height: math.unit(1500, "feet"),
  20936. weight: math.unit(3.8e6, "tons"),
  20937. name: "Front",
  20938. image: {
  20939. source: "./media/characters/2th/front.svg",
  20940. extra: 3489 / 3350,
  20941. bottom: 0.1
  20942. }
  20943. },
  20944. foot: {
  20945. height: math.unit(461, "feet"),
  20946. name: "Foot",
  20947. image: {
  20948. source: "./media/characters/2th/foot.svg"
  20949. }
  20950. },
  20951. },
  20952. [
  20953. {
  20954. name: "\"Micro\"",
  20955. height: math.unit(15 + 7 / 12, "feet")
  20956. },
  20957. {
  20958. name: "Normal",
  20959. height: math.unit(1500, "feet"),
  20960. default: true
  20961. },
  20962. {
  20963. name: "Macro",
  20964. height: math.unit(5000, "feet")
  20965. },
  20966. {
  20967. name: "Megamacro",
  20968. height: math.unit(15, "miles")
  20969. },
  20970. {
  20971. name: "Gigamacro",
  20972. height: math.unit(4000, "miles")
  20973. },
  20974. {
  20975. name: "Galactic",
  20976. height: math.unit(50, "AU")
  20977. },
  20978. ]
  20979. ))
  20980. characterMakers.push(() => makeCharacter(
  20981. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20982. {
  20983. front: {
  20984. height: math.unit(5 + 6 / 12, "feet"),
  20985. weight: math.unit(220, "lb"),
  20986. name: "Front",
  20987. image: {
  20988. source: "./media/characters/amethyst/front.svg",
  20989. extra: 2078 / 2040,
  20990. bottom: 0.045
  20991. }
  20992. },
  20993. back: {
  20994. height: math.unit(5 + 6 / 12, "feet"),
  20995. weight: math.unit(220, "lb"),
  20996. name: "Back",
  20997. image: {
  20998. source: "./media/characters/amethyst/back.svg",
  20999. extra: 2021 / 1989,
  21000. bottom: 0.02
  21001. }
  21002. },
  21003. },
  21004. [
  21005. {
  21006. name: "Normal",
  21007. height: math.unit(5 + 6 / 12, "feet"),
  21008. default: true
  21009. },
  21010. ]
  21011. ))
  21012. characterMakers.push(() => makeCharacter(
  21013. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21014. {
  21015. front: {
  21016. height: math.unit(4 + 11 / 12, "feet"),
  21017. weight: math.unit(120, "lb"),
  21018. name: "Front",
  21019. image: {
  21020. source: "./media/characters/yumi-akiyama/front.svg",
  21021. extra: 1327 / 1235,
  21022. bottom: 0.02
  21023. }
  21024. },
  21025. back: {
  21026. height: math.unit(4 + 11 / 12, "feet"),
  21027. weight: math.unit(120, "lb"),
  21028. name: "Back",
  21029. image: {
  21030. source: "./media/characters/yumi-akiyama/back.svg",
  21031. extra: 1287 / 1245,
  21032. bottom: 0.002
  21033. }
  21034. },
  21035. },
  21036. [
  21037. {
  21038. name: "Galactic",
  21039. height: math.unit(50, "galaxies"),
  21040. default: true
  21041. },
  21042. {
  21043. name: "Universal",
  21044. height: math.unit(100, "universes")
  21045. },
  21046. ]
  21047. ))
  21048. characterMakers.push(() => makeCharacter(
  21049. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21050. {
  21051. front: {
  21052. height: math.unit(8, "feet"),
  21053. weight: math.unit(500, "lb"),
  21054. name: "Front",
  21055. image: {
  21056. source: "./media/characters/rifter-yrmori/front.svg",
  21057. extra: 1180 / 1125,
  21058. bottom: 0.02
  21059. }
  21060. },
  21061. back: {
  21062. height: math.unit(8, "feet"),
  21063. weight: math.unit(500, "lb"),
  21064. name: "Back",
  21065. image: {
  21066. source: "./media/characters/rifter-yrmori/back.svg",
  21067. extra: 1190 / 1145,
  21068. bottom: 0.001
  21069. }
  21070. },
  21071. wings: {
  21072. height: math.unit(7.75, "feet"),
  21073. weight: math.unit(500, "lb"),
  21074. name: "Wings",
  21075. image: {
  21076. source: "./media/characters/rifter-yrmori/wings.svg",
  21077. extra: 1357 / 1285
  21078. }
  21079. },
  21080. maw: {
  21081. height: math.unit(0.8, "feet"),
  21082. name: "Maw",
  21083. image: {
  21084. source: "./media/characters/rifter-yrmori/maw.svg"
  21085. }
  21086. },
  21087. mawfront: {
  21088. height: math.unit(1.45, "feet"),
  21089. name: "Maw (Front)",
  21090. image: {
  21091. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21092. }
  21093. },
  21094. },
  21095. [
  21096. {
  21097. name: "Normal",
  21098. height: math.unit(8, "feet"),
  21099. default: true
  21100. },
  21101. {
  21102. name: "Macro",
  21103. height: math.unit(42, "meters")
  21104. },
  21105. ]
  21106. ))
  21107. characterMakers.push(() => makeCharacter(
  21108. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21109. {
  21110. were: {
  21111. height: math.unit(25 + 6 / 12, "feet"),
  21112. weight: math.unit(10000, "lb"),
  21113. name: "Were",
  21114. image: {
  21115. source: "./media/characters/tahajin/were.svg",
  21116. extra: 801 / 770,
  21117. bottom: 0.042
  21118. }
  21119. },
  21120. aquatic: {
  21121. height: math.unit(6 + 4 / 12, "feet"),
  21122. weight: math.unit(160, "lb"),
  21123. name: "Aquatic",
  21124. image: {
  21125. source: "./media/characters/tahajin/aquatic.svg",
  21126. extra: 572 / 542,
  21127. bottom: 0.04
  21128. }
  21129. },
  21130. chow: {
  21131. height: math.unit(8 + 11 / 12, "feet"),
  21132. weight: math.unit(450, "lb"),
  21133. name: "Chow",
  21134. image: {
  21135. source: "./media/characters/tahajin/chow.svg",
  21136. extra: 660 / 640,
  21137. bottom: 0.015
  21138. }
  21139. },
  21140. demiNaga: {
  21141. height: math.unit(6 + 8 / 12, "feet"),
  21142. weight: math.unit(300, "lb"),
  21143. name: "Demi Naga",
  21144. image: {
  21145. source: "./media/characters/tahajin/demi-naga.svg",
  21146. extra: 643 / 615,
  21147. bottom: 0.1
  21148. }
  21149. },
  21150. data: {
  21151. height: math.unit(5, "inches"),
  21152. weight: math.unit(0.1, "lb"),
  21153. name: "Data",
  21154. image: {
  21155. source: "./media/characters/tahajin/data.svg"
  21156. }
  21157. },
  21158. fluu: {
  21159. height: math.unit(5 + 7 / 12, "feet"),
  21160. weight: math.unit(140, "lb"),
  21161. name: "Fluu",
  21162. image: {
  21163. source: "./media/characters/tahajin/fluu.svg",
  21164. extra: 628 / 592,
  21165. bottom: 0.02
  21166. }
  21167. },
  21168. starWarrior: {
  21169. height: math.unit(4 + 5 / 12, "feet"),
  21170. weight: math.unit(50, "lb"),
  21171. name: "Star Warrior",
  21172. image: {
  21173. source: "./media/characters/tahajin/star-warrior.svg"
  21174. }
  21175. },
  21176. },
  21177. [
  21178. {
  21179. name: "Normal",
  21180. height: math.unit(25 + 6 / 12, "feet"),
  21181. default: true
  21182. },
  21183. ]
  21184. ))
  21185. characterMakers.push(() => makeCharacter(
  21186. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21187. {
  21188. front: {
  21189. height: math.unit(8, "feet"),
  21190. weight: math.unit(350, "lb"),
  21191. name: "Front",
  21192. image: {
  21193. source: "./media/characters/gabira/front.svg",
  21194. extra: 608 / 580,
  21195. bottom: 0.03
  21196. }
  21197. },
  21198. back: {
  21199. height: math.unit(8, "feet"),
  21200. weight: math.unit(350, "lb"),
  21201. name: "Back",
  21202. image: {
  21203. source: "./media/characters/gabira/back.svg",
  21204. extra: 608 / 580,
  21205. bottom: 0.03
  21206. }
  21207. },
  21208. },
  21209. [
  21210. {
  21211. name: "Normal",
  21212. height: math.unit(8, "feet"),
  21213. default: true
  21214. },
  21215. ]
  21216. ))
  21217. characterMakers.push(() => makeCharacter(
  21218. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21219. {
  21220. front: {
  21221. height: math.unit(5 + 3 / 12, "feet"),
  21222. weight: math.unit(137, "lb"),
  21223. name: "Front",
  21224. image: {
  21225. source: "./media/characters/sasha-katraine/front.svg",
  21226. bottom: 0.045
  21227. }
  21228. },
  21229. },
  21230. [
  21231. {
  21232. name: "Micro",
  21233. height: math.unit(5, "inches")
  21234. },
  21235. {
  21236. name: "Normal",
  21237. height: math.unit(5 + 3 / 12, "feet"),
  21238. default: true
  21239. },
  21240. ]
  21241. ))
  21242. characterMakers.push(() => makeCharacter(
  21243. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21244. {
  21245. side: {
  21246. height: math.unit(4, "inches"),
  21247. weight: math.unit(200, "grams"),
  21248. name: "Side",
  21249. image: {
  21250. source: "./media/characters/der/side.svg",
  21251. extra: 719 / 400,
  21252. bottom: 30.6 / 749.9187
  21253. }
  21254. },
  21255. },
  21256. [
  21257. {
  21258. name: "Micro",
  21259. height: math.unit(4, "inches"),
  21260. default: true
  21261. },
  21262. ]
  21263. ))
  21264. characterMakers.push(() => makeCharacter(
  21265. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21266. {
  21267. side: {
  21268. height: math.unit(30, "meters"),
  21269. weight: math.unit(700, "tonnes"),
  21270. name: "Side",
  21271. image: {
  21272. source: "./media/characters/fixerdragon/side.svg",
  21273. extra: (1293.0514 - 116.03) / 1106.86,
  21274. bottom: 116.03 / 1293.0514
  21275. }
  21276. },
  21277. },
  21278. [
  21279. {
  21280. name: "Planck",
  21281. height: math.unit(1.6e-35, "meters")
  21282. },
  21283. {
  21284. name: "Micro",
  21285. height: math.unit(0.4, "meters")
  21286. },
  21287. {
  21288. name: "Normal",
  21289. height: math.unit(30, "meters"),
  21290. default: true
  21291. },
  21292. {
  21293. name: "Megamacro",
  21294. height: math.unit(1.2, "megameters")
  21295. },
  21296. {
  21297. name: "Teramacro",
  21298. height: math.unit(130, "terameters")
  21299. },
  21300. {
  21301. name: "Yottamacro",
  21302. height: math.unit(6200, "yottameters")
  21303. },
  21304. ]
  21305. ));
  21306. characterMakers.push(() => makeCharacter(
  21307. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21308. {
  21309. front: {
  21310. height: math.unit(8, "feet"),
  21311. weight: math.unit(250, "lb"),
  21312. name: "Front",
  21313. image: {
  21314. source: "./media/characters/kite/front.svg",
  21315. extra: 2796 / 2659,
  21316. bottom: 0.002
  21317. }
  21318. },
  21319. },
  21320. [
  21321. {
  21322. name: "Normal",
  21323. height: math.unit(8, "feet"),
  21324. default: true
  21325. },
  21326. {
  21327. name: "Macro",
  21328. height: math.unit(360, "feet")
  21329. },
  21330. {
  21331. name: "Megamacro",
  21332. height: math.unit(1500, "feet")
  21333. },
  21334. ]
  21335. ))
  21336. characterMakers.push(() => makeCharacter(
  21337. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21338. {
  21339. front: {
  21340. height: math.unit(5 + 10 / 12, "feet"),
  21341. weight: math.unit(150, "lb"),
  21342. name: "Front",
  21343. image: {
  21344. source: "./media/characters/poojawa-vynar/front.svg",
  21345. extra: (1506.1547 - 55) / 1356.6,
  21346. bottom: 55 / 1506.1547
  21347. }
  21348. },
  21349. frontTailless: {
  21350. height: math.unit(5 + 10 / 12, "feet"),
  21351. weight: math.unit(150, "lb"),
  21352. name: "Front (Tailless)",
  21353. image: {
  21354. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21355. extra: (1506.1547 - 55) / 1356.6,
  21356. bottom: 55 / 1506.1547
  21357. }
  21358. },
  21359. },
  21360. [
  21361. {
  21362. name: "Normal",
  21363. height: math.unit(5 + 10 / 12, "feet"),
  21364. default: true
  21365. },
  21366. ]
  21367. ))
  21368. characterMakers.push(() => makeCharacter(
  21369. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21370. {
  21371. front: {
  21372. height: math.unit(293, "meters"),
  21373. weight: math.unit(70400, "tons"),
  21374. name: "Front",
  21375. image: {
  21376. source: "./media/characters/violette/front.svg",
  21377. extra: 1227 / 1180,
  21378. bottom: 0.005
  21379. }
  21380. },
  21381. back: {
  21382. height: math.unit(293, "meters"),
  21383. weight: math.unit(70400, "tons"),
  21384. name: "Back",
  21385. image: {
  21386. source: "./media/characters/violette/back.svg",
  21387. extra: 1227 / 1180,
  21388. bottom: 0.005
  21389. }
  21390. },
  21391. },
  21392. [
  21393. {
  21394. name: "Macro",
  21395. height: math.unit(293, "meters"),
  21396. default: true
  21397. },
  21398. ]
  21399. ))
  21400. characterMakers.push(() => makeCharacter(
  21401. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21402. {
  21403. front: {
  21404. height: math.unit(1050, "feet"),
  21405. weight: math.unit(200000, "tons"),
  21406. name: "Front",
  21407. image: {
  21408. source: "./media/characters/alessandra/front.svg",
  21409. extra: 960 / 912,
  21410. bottom: 0.06
  21411. }
  21412. },
  21413. },
  21414. [
  21415. {
  21416. name: "Macro",
  21417. height: math.unit(1050, "feet")
  21418. },
  21419. {
  21420. name: "Macro+",
  21421. height: math.unit(900, "meters"),
  21422. default: true
  21423. },
  21424. ]
  21425. ))
  21426. characterMakers.push(() => makeCharacter(
  21427. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21428. {
  21429. front: {
  21430. height: math.unit(5, "feet"),
  21431. weight: math.unit(187, "lb"),
  21432. name: "Front",
  21433. image: {
  21434. source: "./media/characters/person/front.svg",
  21435. extra: 3087 / 2945,
  21436. bottom: 91 / 3181
  21437. }
  21438. },
  21439. },
  21440. [
  21441. {
  21442. name: "Micro",
  21443. height: math.unit(3, "inches")
  21444. },
  21445. {
  21446. name: "Normal",
  21447. height: math.unit(5, "feet"),
  21448. default: true
  21449. },
  21450. {
  21451. name: "Macro",
  21452. height: math.unit(90, "feet")
  21453. },
  21454. {
  21455. name: "Max Size",
  21456. height: math.unit(280, "feet")
  21457. },
  21458. ]
  21459. ))
  21460. characterMakers.push(() => makeCharacter(
  21461. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21462. {
  21463. front: {
  21464. height: math.unit(4.5, "meters"),
  21465. weight: math.unit(3200, "lb"),
  21466. name: "Front",
  21467. image: {
  21468. source: "./media/characters/ty/front.svg",
  21469. extra: 1038 / 960,
  21470. bottom: 31.156 / 1068
  21471. }
  21472. },
  21473. back: {
  21474. height: math.unit(4.5, "meters"),
  21475. weight: math.unit(3200, "lb"),
  21476. name: "Back",
  21477. image: {
  21478. source: "./media/characters/ty/back.svg",
  21479. extra: 1044 / 966,
  21480. bottom: 7.48 / 1049
  21481. }
  21482. },
  21483. },
  21484. [
  21485. {
  21486. name: "Normal",
  21487. height: math.unit(4.5, "meters"),
  21488. default: true
  21489. },
  21490. ]
  21491. ))
  21492. characterMakers.push(() => makeCharacter(
  21493. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21494. {
  21495. front: {
  21496. height: math.unit(5 + 4 / 12, "feet"),
  21497. weight: math.unit(115, "lb"),
  21498. name: "Front",
  21499. image: {
  21500. source: "./media/characters/rocky/front.svg",
  21501. extra: 1012 / 975,
  21502. bottom: 54 / 1066
  21503. }
  21504. },
  21505. },
  21506. [
  21507. {
  21508. name: "Normal",
  21509. height: math.unit(5 + 4 / 12, "feet"),
  21510. default: true
  21511. },
  21512. ]
  21513. ))
  21514. characterMakers.push(() => makeCharacter(
  21515. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21516. {
  21517. upright: {
  21518. height: math.unit(6, "meters"),
  21519. weight: math.unit(4000, "kg"),
  21520. name: "Upright",
  21521. image: {
  21522. source: "./media/characters/ruin/upright.svg",
  21523. extra: 668 / 661,
  21524. bottom: 42 / 799.8396
  21525. }
  21526. },
  21527. },
  21528. [
  21529. {
  21530. name: "Normal",
  21531. height: math.unit(6, "meters"),
  21532. default: true
  21533. },
  21534. ]
  21535. ))
  21536. characterMakers.push(() => makeCharacter(
  21537. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21538. {
  21539. front: {
  21540. height: math.unit(5, "feet"),
  21541. weight: math.unit(106, "lb"),
  21542. name: "Front",
  21543. image: {
  21544. source: "./media/characters/robin/front.svg",
  21545. extra: 862 / 799,
  21546. bottom: 42.4 / 914.8856
  21547. }
  21548. },
  21549. },
  21550. [
  21551. {
  21552. name: "Normal",
  21553. height: math.unit(5, "feet"),
  21554. default: true
  21555. },
  21556. ]
  21557. ))
  21558. characterMakers.push(() => makeCharacter(
  21559. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21560. {
  21561. side: {
  21562. height: math.unit(3, "feet"),
  21563. weight: math.unit(225, "lb"),
  21564. name: "Side",
  21565. image: {
  21566. source: "./media/characters/saian/side.svg",
  21567. extra: 566 / 356,
  21568. bottom: 79.7 / 643
  21569. }
  21570. },
  21571. maw: {
  21572. height: math.unit(2.85, "feet"),
  21573. name: "Maw",
  21574. image: {
  21575. source: "./media/characters/saian/maw.svg"
  21576. }
  21577. },
  21578. },
  21579. [
  21580. {
  21581. name: "Normal",
  21582. height: math.unit(3, "feet"),
  21583. default: true
  21584. },
  21585. ]
  21586. ))
  21587. characterMakers.push(() => makeCharacter(
  21588. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21589. {
  21590. side: {
  21591. height: math.unit(8, "feet"),
  21592. weight: math.unit(300, "lb"),
  21593. name: "Side",
  21594. image: {
  21595. source: "./media/characters/equus-silvermane/side.svg",
  21596. extra: 2176 / 2050,
  21597. bottom: 65.7 / 2245
  21598. }
  21599. },
  21600. front: {
  21601. height: math.unit(8, "feet"),
  21602. weight: math.unit(300, "lb"),
  21603. name: "Front",
  21604. image: {
  21605. source: "./media/characters/equus-silvermane/front.svg",
  21606. extra: 4633 / 4400,
  21607. bottom: 71.3 / 4706.915
  21608. }
  21609. },
  21610. sideStepping: {
  21611. height: math.unit(8, "feet"),
  21612. weight: math.unit(300, "lb"),
  21613. name: "Side (Stepping)",
  21614. image: {
  21615. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21616. extra: 1968 / 1860,
  21617. bottom: 16.4 / 1989
  21618. }
  21619. },
  21620. },
  21621. [
  21622. {
  21623. name: "Normal",
  21624. height: math.unit(8, "feet")
  21625. },
  21626. {
  21627. name: "Minimacro",
  21628. height: math.unit(75, "feet"),
  21629. default: true
  21630. },
  21631. {
  21632. name: "Macro",
  21633. height: math.unit(150, "feet")
  21634. },
  21635. {
  21636. name: "Macro+",
  21637. height: math.unit(1000, "feet")
  21638. },
  21639. {
  21640. name: "Megamacro",
  21641. height: math.unit(1, "mile")
  21642. },
  21643. ]
  21644. ))
  21645. characterMakers.push(() => makeCharacter(
  21646. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21647. {
  21648. side: {
  21649. height: math.unit(20, "feet"),
  21650. weight: math.unit(30000, "kg"),
  21651. name: "Side",
  21652. image: {
  21653. source: "./media/characters/windar/side.svg",
  21654. extra: 1491 / 1248,
  21655. bottom: 82.56 / 1568
  21656. }
  21657. },
  21658. },
  21659. [
  21660. {
  21661. name: "Normal",
  21662. height: math.unit(20, "feet"),
  21663. default: true
  21664. },
  21665. ]
  21666. ))
  21667. characterMakers.push(() => makeCharacter(
  21668. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21669. {
  21670. side: {
  21671. height: math.unit(15.66, "feet"),
  21672. weight: math.unit(150, "lb"),
  21673. name: "Side",
  21674. image: {
  21675. source: "./media/characters/melody/side.svg",
  21676. extra: 1097 / 944,
  21677. bottom: 11.8 / 1109
  21678. }
  21679. },
  21680. sideOutfit: {
  21681. height: math.unit(15.66, "feet"),
  21682. weight: math.unit(150, "lb"),
  21683. name: "Side (Outfit)",
  21684. image: {
  21685. source: "./media/characters/melody/side-outfit.svg",
  21686. extra: 1097 / 944,
  21687. bottom: 11.8 / 1109
  21688. }
  21689. },
  21690. },
  21691. [
  21692. {
  21693. name: "Normal",
  21694. height: math.unit(15.66, "feet"),
  21695. default: true
  21696. },
  21697. ]
  21698. ))
  21699. characterMakers.push(() => makeCharacter(
  21700. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21701. {
  21702. front: {
  21703. height: math.unit(8, "feet"),
  21704. weight: math.unit(325, "lb"),
  21705. name: "Front",
  21706. image: {
  21707. source: "./media/characters/windera/front.svg",
  21708. extra: 3180 / 2845,
  21709. bottom: 178 / 3365
  21710. }
  21711. },
  21712. },
  21713. [
  21714. {
  21715. name: "Normal",
  21716. height: math.unit(8, "feet"),
  21717. default: true
  21718. },
  21719. ]
  21720. ))
  21721. characterMakers.push(() => makeCharacter(
  21722. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21723. {
  21724. front: {
  21725. height: math.unit(28.75, "feet"),
  21726. weight: math.unit(2000, "kg"),
  21727. name: "Front",
  21728. image: {
  21729. source: "./media/characters/sonear/front.svg",
  21730. extra: 1041.1 / 964.9,
  21731. bottom: 53.7 / 1096.6
  21732. }
  21733. },
  21734. },
  21735. [
  21736. {
  21737. name: "Normal",
  21738. height: math.unit(28.75, "feet"),
  21739. default: true
  21740. },
  21741. ]
  21742. ))
  21743. characterMakers.push(() => makeCharacter(
  21744. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21745. {
  21746. side: {
  21747. height: math.unit(25.5, "feet"),
  21748. weight: math.unit(23000, "kg"),
  21749. name: "Side",
  21750. image: {
  21751. source: "./media/characters/kanara/side.svg"
  21752. }
  21753. },
  21754. },
  21755. [
  21756. {
  21757. name: "Normal",
  21758. height: math.unit(25.5, "feet"),
  21759. default: true
  21760. },
  21761. ]
  21762. ))
  21763. characterMakers.push(() => makeCharacter(
  21764. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21765. {
  21766. side: {
  21767. height: math.unit(10, "feet"),
  21768. weight: math.unit(1000, "kg"),
  21769. name: "Side",
  21770. image: {
  21771. source: "./media/characters/ereus/side.svg",
  21772. extra: 1157 / 959,
  21773. bottom: 153 / 1312.5
  21774. }
  21775. },
  21776. },
  21777. [
  21778. {
  21779. name: "Normal",
  21780. height: math.unit(10, "feet"),
  21781. default: true
  21782. },
  21783. ]
  21784. ))
  21785. characterMakers.push(() => makeCharacter(
  21786. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21787. {
  21788. side: {
  21789. height: math.unit(4.5, "feet"),
  21790. weight: math.unit(500, "lb"),
  21791. name: "Side",
  21792. image: {
  21793. source: "./media/characters/e-ter/side.svg",
  21794. extra: 1550 / 1248,
  21795. bottom: 146 / 1694
  21796. }
  21797. },
  21798. },
  21799. [
  21800. {
  21801. name: "Normal",
  21802. height: math.unit(4.5, "feet"),
  21803. default: true
  21804. },
  21805. ]
  21806. ))
  21807. characterMakers.push(() => makeCharacter(
  21808. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21809. {
  21810. side: {
  21811. height: math.unit(9.7, "feet"),
  21812. weight: math.unit(4000, "kg"),
  21813. name: "Side",
  21814. image: {
  21815. source: "./media/characters/yamie/side.svg"
  21816. }
  21817. },
  21818. },
  21819. [
  21820. {
  21821. name: "Normal",
  21822. height: math.unit(9.7, "feet"),
  21823. default: true
  21824. },
  21825. ]
  21826. ))
  21827. characterMakers.push(() => makeCharacter(
  21828. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21829. {
  21830. front: {
  21831. height: math.unit(50, "feet"),
  21832. weight: math.unit(50000, "kg"),
  21833. name: "Front",
  21834. image: {
  21835. source: "./media/characters/anders/front.svg",
  21836. extra: 570 / 539,
  21837. bottom: 14.7 / 586.7
  21838. }
  21839. },
  21840. },
  21841. [
  21842. {
  21843. name: "Large",
  21844. height: math.unit(50, "feet")
  21845. },
  21846. {
  21847. name: "Macro",
  21848. height: math.unit(2000, "feet"),
  21849. default: true
  21850. },
  21851. {
  21852. name: "Megamacro",
  21853. height: math.unit(12, "miles")
  21854. },
  21855. ]
  21856. ))
  21857. characterMakers.push(() => makeCharacter(
  21858. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21859. {
  21860. front: {
  21861. height: math.unit(7 + 2 / 12, "feet"),
  21862. weight: math.unit(300, "lb"),
  21863. name: "Front",
  21864. image: {
  21865. source: "./media/characters/reban/front.svg",
  21866. extra: 516 / 487,
  21867. bottom: 42.82 / 558.356
  21868. }
  21869. },
  21870. dick: {
  21871. height: math.unit(7 / 5, "feet"),
  21872. name: "Dick",
  21873. image: {
  21874. source: "./media/characters/reban/dick.svg"
  21875. }
  21876. },
  21877. },
  21878. [
  21879. {
  21880. name: "Natural Height",
  21881. height: math.unit(7 + 2 / 12, "feet")
  21882. },
  21883. {
  21884. name: "Macro",
  21885. height: math.unit(500, "feet"),
  21886. default: true
  21887. },
  21888. {
  21889. name: "Canon Height",
  21890. height: math.unit(50, "AU")
  21891. },
  21892. ]
  21893. ))
  21894. characterMakers.push(() => makeCharacter(
  21895. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21896. {
  21897. front: {
  21898. height: math.unit(6, "feet"),
  21899. weight: math.unit(150, "lb"),
  21900. name: "Front",
  21901. image: {
  21902. source: "./media/characters/terrance-keayes/front.svg",
  21903. extra: 1.005,
  21904. bottom: 151 / 1615
  21905. }
  21906. },
  21907. side: {
  21908. height: math.unit(6, "feet"),
  21909. weight: math.unit(150, "lb"),
  21910. name: "Side",
  21911. image: {
  21912. source: "./media/characters/terrance-keayes/side.svg",
  21913. extra: 1.005,
  21914. bottom: 129.4 / 1544
  21915. }
  21916. },
  21917. back: {
  21918. height: math.unit(6, "feet"),
  21919. weight: math.unit(150, "lb"),
  21920. name: "Back",
  21921. image: {
  21922. source: "./media/characters/terrance-keayes/back.svg",
  21923. extra: 1.005,
  21924. bottom: 58.4 / 1557.3
  21925. }
  21926. },
  21927. dick: {
  21928. height: math.unit(6 * 0.208, "feet"),
  21929. name: "Dick",
  21930. image: {
  21931. source: "./media/characters/terrance-keayes/dick.svg"
  21932. }
  21933. },
  21934. },
  21935. [
  21936. {
  21937. name: "Canon Height",
  21938. height: math.unit(35, "miles"),
  21939. default: true
  21940. },
  21941. ]
  21942. ))
  21943. characterMakers.push(() => makeCharacter(
  21944. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21945. {
  21946. front: {
  21947. height: math.unit(6, "feet"),
  21948. weight: math.unit(150, "lb"),
  21949. name: "Front",
  21950. image: {
  21951. source: "./media/characters/ofelia/front.svg",
  21952. extra: 546 / 541,
  21953. bottom: 39 / 583
  21954. }
  21955. },
  21956. back: {
  21957. height: math.unit(6, "feet"),
  21958. weight: math.unit(150, "lb"),
  21959. name: "Back",
  21960. image: {
  21961. source: "./media/characters/ofelia/back.svg",
  21962. extra: 564 / 559.5,
  21963. bottom: 8.69 / 573.02
  21964. }
  21965. },
  21966. maw: {
  21967. height: math.unit(1, "feet"),
  21968. name: "Maw",
  21969. image: {
  21970. source: "./media/characters/ofelia/maw.svg"
  21971. }
  21972. },
  21973. foot: {
  21974. height: math.unit(1.949, "feet"),
  21975. name: "Foot",
  21976. image: {
  21977. source: "./media/characters/ofelia/foot.svg"
  21978. }
  21979. },
  21980. },
  21981. [
  21982. {
  21983. name: "Canon Height",
  21984. height: math.unit(2000, "miles"),
  21985. default: true
  21986. },
  21987. ]
  21988. ))
  21989. characterMakers.push(() => makeCharacter(
  21990. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21991. {
  21992. front: {
  21993. height: math.unit(6, "feet"),
  21994. weight: math.unit(150, "lb"),
  21995. name: "Front",
  21996. image: {
  21997. source: "./media/characters/samuel/front.svg",
  21998. extra: 265 / 258,
  21999. bottom: 2 / 266.1566
  22000. }
  22001. },
  22002. },
  22003. [
  22004. {
  22005. name: "Macro",
  22006. height: math.unit(100, "feet"),
  22007. default: true
  22008. },
  22009. {
  22010. name: "Full Size",
  22011. height: math.unit(1000, "miles")
  22012. },
  22013. ]
  22014. ))
  22015. characterMakers.push(() => makeCharacter(
  22016. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22017. {
  22018. front: {
  22019. height: math.unit(6, "feet"),
  22020. weight: math.unit(300, "lb"),
  22021. name: "Front",
  22022. image: {
  22023. source: "./media/characters/beishir-kiel/front.svg",
  22024. extra: 569 / 547,
  22025. bottom: 41.9 / 609
  22026. }
  22027. },
  22028. maw: {
  22029. height: math.unit(6 * 0.202, "feet"),
  22030. name: "Maw",
  22031. image: {
  22032. source: "./media/characters/beishir-kiel/maw.svg"
  22033. }
  22034. },
  22035. },
  22036. [
  22037. {
  22038. name: "Macro",
  22039. height: math.unit(300, "feet"),
  22040. default: true
  22041. },
  22042. ]
  22043. ))
  22044. characterMakers.push(() => makeCharacter(
  22045. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22046. {
  22047. front: {
  22048. height: math.unit(5 + 7/12, "feet"),
  22049. weight: math.unit(120, "lb"),
  22050. name: "Front",
  22051. image: {
  22052. source: "./media/characters/logan-grey/front.svg",
  22053. extra: 1836/1738,
  22054. bottom: 108/1944
  22055. }
  22056. },
  22057. back: {
  22058. height: math.unit(5 + 7/12, "feet"),
  22059. weight: math.unit(120, "lb"),
  22060. name: "Back",
  22061. image: {
  22062. source: "./media/characters/logan-grey/back.svg",
  22063. extra: 1880/1794,
  22064. bottom: 24/1904
  22065. }
  22066. },
  22067. frontSfw: {
  22068. height: math.unit(5 + 7/12, "feet"),
  22069. weight: math.unit(120, "lb"),
  22070. name: "Front (SFW)",
  22071. image: {
  22072. source: "./media/characters/logan-grey/front-sfw.svg",
  22073. extra: 1836/1738,
  22074. bottom: 108/1944
  22075. }
  22076. },
  22077. backSfw: {
  22078. height: math.unit(5 + 7/12, "feet"),
  22079. weight: math.unit(120, "lb"),
  22080. name: "Back (SFW)",
  22081. image: {
  22082. source: "./media/characters/logan-grey/back-sfw.svg",
  22083. extra: 1880/1794,
  22084. bottom: 24/1904
  22085. }
  22086. },
  22087. hands: {
  22088. height: math.unit(0.84, "feet"),
  22089. name: "Hands",
  22090. image: {
  22091. source: "./media/characters/logan-grey/hands.svg"
  22092. }
  22093. },
  22094. paws: {
  22095. height: math.unit(0.72, "feet"),
  22096. name: "Paws",
  22097. image: {
  22098. source: "./media/characters/logan-grey/paws.svg"
  22099. }
  22100. },
  22101. cock: {
  22102. height: math.unit(1.45, "feet"),
  22103. name: "Cock",
  22104. image: {
  22105. source: "./media/characters/logan-grey/cock.svg"
  22106. }
  22107. },
  22108. cockAlt: {
  22109. height: math.unit(1.437, "feet"),
  22110. name: "Cock (alt)",
  22111. image: {
  22112. source: "./media/characters/logan-grey/cock-alt.svg"
  22113. }
  22114. },
  22115. },
  22116. [
  22117. {
  22118. name: "Normal",
  22119. height: math.unit(5 + 8 / 12, "feet")
  22120. },
  22121. {
  22122. name: "The 500 Foot Femboy",
  22123. height: math.unit(500, "feet"),
  22124. default: true
  22125. },
  22126. {
  22127. name: "Megmacro",
  22128. height: math.unit(20, "miles")
  22129. },
  22130. ]
  22131. ))
  22132. characterMakers.push(() => makeCharacter(
  22133. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22134. {
  22135. front: {
  22136. height: math.unit(8 + 2 / 12, "feet"),
  22137. weight: math.unit(275, "lb"),
  22138. name: "Front",
  22139. image: {
  22140. source: "./media/characters/draganta/front.svg",
  22141. extra: 1177 / 1135,
  22142. bottom: 33.46 / 1212.1
  22143. }
  22144. },
  22145. },
  22146. [
  22147. {
  22148. name: "Normal",
  22149. height: math.unit(8 + 6 / 12, "feet"),
  22150. default: true
  22151. },
  22152. {
  22153. name: "Macro",
  22154. height: math.unit(150, "feet")
  22155. },
  22156. {
  22157. name: "Megamacro",
  22158. height: math.unit(1000, "miles")
  22159. },
  22160. ]
  22161. ))
  22162. characterMakers.push(() => makeCharacter(
  22163. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22164. {
  22165. front: {
  22166. height: math.unit(1.72, "m"),
  22167. weight: math.unit(80, "lb"),
  22168. name: "Front",
  22169. image: {
  22170. source: "./media/characters/voski/front.svg",
  22171. extra: 2076.22 / 2022.4,
  22172. bottom: 102.7 / 2177.3866
  22173. }
  22174. },
  22175. frontNsfw: {
  22176. height: math.unit(1.72, "m"),
  22177. weight: math.unit(80, "lb"),
  22178. name: "Front (NSFW)",
  22179. image: {
  22180. source: "./media/characters/voski/front-nsfw.svg",
  22181. extra: 2076.22 / 2022.4,
  22182. bottom: 102.7 / 2177.3866
  22183. }
  22184. },
  22185. back: {
  22186. height: math.unit(1.72, "m"),
  22187. weight: math.unit(80, "lb"),
  22188. name: "Back",
  22189. image: {
  22190. source: "./media/characters/voski/back.svg",
  22191. extra: 2104 / 2051,
  22192. bottom: 10.45 / 2113.63
  22193. }
  22194. },
  22195. },
  22196. [
  22197. {
  22198. name: "Normal",
  22199. height: math.unit(1.72, "m")
  22200. },
  22201. {
  22202. name: "Macro",
  22203. height: math.unit(55, "m"),
  22204. default: true
  22205. },
  22206. {
  22207. name: "Macro+",
  22208. height: math.unit(300, "m")
  22209. },
  22210. {
  22211. name: "Macro++",
  22212. height: math.unit(700, "m")
  22213. },
  22214. {
  22215. name: "Macro+++",
  22216. height: math.unit(4500, "m")
  22217. },
  22218. {
  22219. name: "Macro++++",
  22220. height: math.unit(45, "km")
  22221. },
  22222. {
  22223. name: "Macro+++++",
  22224. height: math.unit(1220, "km")
  22225. },
  22226. ]
  22227. ))
  22228. characterMakers.push(() => makeCharacter(
  22229. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22230. {
  22231. front: {
  22232. height: math.unit(2.3, "m"),
  22233. weight: math.unit(304, "kg"),
  22234. name: "Front",
  22235. image: {
  22236. source: "./media/characters/icowom-lee/front.svg",
  22237. extra: 985 / 955,
  22238. bottom: 25.4 / 1012
  22239. }
  22240. },
  22241. fronttentacles: {
  22242. height: math.unit(2.3, "m"),
  22243. weight: math.unit(304, "kg"),
  22244. name: "Front-tentacles",
  22245. image: {
  22246. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22247. extra: 985 / 955,
  22248. bottom: 25.4 / 1012
  22249. }
  22250. },
  22251. back: {
  22252. height: math.unit(2.3, "m"),
  22253. weight: math.unit(304, "kg"),
  22254. name: "Back",
  22255. image: {
  22256. source: "./media/characters/icowom-lee/back.svg",
  22257. extra: 975 / 954,
  22258. bottom: 9.5 / 985
  22259. }
  22260. },
  22261. backtentacles: {
  22262. height: math.unit(2.3, "m"),
  22263. weight: math.unit(304, "kg"),
  22264. name: "Back-tentacles",
  22265. image: {
  22266. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22267. extra: 975 / 954,
  22268. bottom: 9.5 / 985
  22269. }
  22270. },
  22271. frontDressed: {
  22272. height: math.unit(2.3, "m"),
  22273. weight: math.unit(304, "kg"),
  22274. name: "Front (Dressed)",
  22275. image: {
  22276. source: "./media/characters/icowom-lee/front-dressed.svg",
  22277. extra: 3076 / 2933,
  22278. bottom: 51.4 / 3125.1889
  22279. }
  22280. },
  22281. rump: {
  22282. height: math.unit(0.776, "meters"),
  22283. name: "Rump",
  22284. image: {
  22285. source: "./media/characters/icowom-lee/rump.svg"
  22286. }
  22287. },
  22288. genitals: {
  22289. height: math.unit(0.78, "meters"),
  22290. name: "Genitals",
  22291. image: {
  22292. source: "./media/characters/icowom-lee/genitals.svg"
  22293. }
  22294. },
  22295. },
  22296. [
  22297. {
  22298. name: "Normal",
  22299. height: math.unit(2.3, "meters"),
  22300. default: true
  22301. },
  22302. {
  22303. name: "Macro",
  22304. height: math.unit(94, "meters"),
  22305. default: true
  22306. },
  22307. ]
  22308. ))
  22309. characterMakers.push(() => makeCharacter(
  22310. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22311. {
  22312. front: {
  22313. height: math.unit(22, "meters"),
  22314. weight: math.unit(21000, "kg"),
  22315. name: "Front",
  22316. image: {
  22317. source: "./media/characters/shock-diamond/front.svg",
  22318. extra: 2204 / 2053,
  22319. bottom: 65 / 2239.47
  22320. }
  22321. },
  22322. frontNude: {
  22323. height: math.unit(22, "meters"),
  22324. weight: math.unit(21000, "kg"),
  22325. name: "Front (Nude)",
  22326. image: {
  22327. source: "./media/characters/shock-diamond/front-nude.svg",
  22328. extra: 2514 / 2285,
  22329. bottom: 13 / 2527.56
  22330. }
  22331. },
  22332. },
  22333. [
  22334. {
  22335. name: "Normal",
  22336. height: math.unit(3, "meters")
  22337. },
  22338. {
  22339. name: "Macro",
  22340. height: math.unit(22, "meters"),
  22341. default: true
  22342. },
  22343. ]
  22344. ))
  22345. characterMakers.push(() => makeCharacter(
  22346. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22347. {
  22348. front: {
  22349. height: math.unit(5 + 4 / 12, "feet"),
  22350. weight: math.unit(120, "lb"),
  22351. name: "Front",
  22352. image: {
  22353. source: "./media/characters/rory/front.svg",
  22354. extra: 1318/1241,
  22355. bottom: 42/1360
  22356. }
  22357. },
  22358. back: {
  22359. height: math.unit(5 + 4 / 12, "feet"),
  22360. weight: math.unit(120, "lb"),
  22361. name: "Back",
  22362. image: {
  22363. source: "./media/characters/rory/back.svg",
  22364. extra: 1318/1241,
  22365. bottom: 42/1360
  22366. }
  22367. },
  22368. butt: {
  22369. height: math.unit(1.74, "feet"),
  22370. name: "Butt",
  22371. image: {
  22372. source: "./media/characters/rory/butt.svg"
  22373. }
  22374. },
  22375. dick: {
  22376. height: math.unit(1.02, "feet"),
  22377. name: "Dick",
  22378. image: {
  22379. source: "./media/characters/rory/dick.svg"
  22380. }
  22381. },
  22382. paws: {
  22383. height: math.unit(1, "feet"),
  22384. name: "Paws",
  22385. image: {
  22386. source: "./media/characters/rory/paws.svg"
  22387. }
  22388. },
  22389. frontAlt: {
  22390. height: math.unit(5 + 4 / 12, "feet"),
  22391. weight: math.unit(120, "lb"),
  22392. name: "Front (Alt)",
  22393. image: {
  22394. source: "./media/characters/rory/front-alt.svg",
  22395. extra: 589 / 556,
  22396. bottom: 45.7 / 635.76
  22397. }
  22398. },
  22399. frontAltNude: {
  22400. height: math.unit(5 + 4 / 12, "feet"),
  22401. weight: math.unit(120, "lb"),
  22402. name: "Front (Alt, Nude)",
  22403. image: {
  22404. source: "./media/characters/rory/front-alt-nude.svg",
  22405. extra: 589 / 556,
  22406. bottom: 45.7 / 635.76
  22407. }
  22408. },
  22409. side: {
  22410. height: math.unit(5 + 4 / 12, "feet"),
  22411. weight: math.unit(120, "lb"),
  22412. name: "Side",
  22413. image: {
  22414. source: "./media/characters/rory/side.svg",
  22415. extra: 597 / 564,
  22416. bottom: 55 / 653
  22417. }
  22418. },
  22419. backAlt: {
  22420. height: math.unit(5 + 4 / 12, "feet"),
  22421. weight: math.unit(120, "lb"),
  22422. name: "Back (Alt)",
  22423. image: {
  22424. source: "./media/characters/rory/back-alt.svg",
  22425. extra: 620 / 585,
  22426. bottom: 8.86 / 630.43
  22427. }
  22428. },
  22429. dickAlt: {
  22430. height: math.unit(0.86, "feet"),
  22431. name: "Dick (Alt)",
  22432. image: {
  22433. source: "./media/characters/rory/dick-alt.svg"
  22434. }
  22435. },
  22436. },
  22437. [
  22438. {
  22439. name: "Normal",
  22440. height: math.unit(5 + 4 / 12, "feet"),
  22441. default: true
  22442. },
  22443. {
  22444. name: "Macro",
  22445. height: math.unit(100, "feet")
  22446. },
  22447. {
  22448. name: "Macro+",
  22449. height: math.unit(140, "feet")
  22450. },
  22451. {
  22452. name: "Macro++",
  22453. height: math.unit(300, "feet")
  22454. },
  22455. ]
  22456. ))
  22457. characterMakers.push(() => makeCharacter(
  22458. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22459. {
  22460. front: {
  22461. height: math.unit(5 + 9 / 12, "feet"),
  22462. weight: math.unit(190, "lb"),
  22463. name: "Front",
  22464. image: {
  22465. source: "./media/characters/sprisk/front.svg",
  22466. extra: 1225 / 1180,
  22467. bottom: 42.7 / 1266.4
  22468. }
  22469. },
  22470. frontNsfw: {
  22471. height: math.unit(5 + 9 / 12, "feet"),
  22472. weight: math.unit(190, "lb"),
  22473. name: "Front (NSFW)",
  22474. image: {
  22475. source: "./media/characters/sprisk/front-nsfw.svg",
  22476. extra: 1225 / 1180,
  22477. bottom: 42.7 / 1266.4
  22478. }
  22479. },
  22480. back: {
  22481. height: math.unit(5 + 9 / 12, "feet"),
  22482. weight: math.unit(190, "lb"),
  22483. name: "Back",
  22484. image: {
  22485. source: "./media/characters/sprisk/back.svg",
  22486. extra: 1247 / 1200,
  22487. bottom: 5.6 / 1253.04
  22488. }
  22489. },
  22490. },
  22491. [
  22492. {
  22493. name: "Tiny",
  22494. height: math.unit(2, "inches")
  22495. },
  22496. {
  22497. name: "Normal",
  22498. height: math.unit(5 + 9 / 12, "feet"),
  22499. default: true
  22500. },
  22501. {
  22502. name: "Mini Macro",
  22503. height: math.unit(18, "feet")
  22504. },
  22505. {
  22506. name: "Macro",
  22507. height: math.unit(100, "feet")
  22508. },
  22509. {
  22510. name: "MACRO",
  22511. height: math.unit(50, "miles")
  22512. },
  22513. {
  22514. name: "M A C R O",
  22515. height: math.unit(300, "miles")
  22516. },
  22517. ]
  22518. ))
  22519. characterMakers.push(() => makeCharacter(
  22520. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22521. {
  22522. side: {
  22523. height: math.unit(15.6, "meters"),
  22524. weight: math.unit(700000, "kg"),
  22525. name: "Side",
  22526. image: {
  22527. source: "./media/characters/bunsen/side.svg",
  22528. extra: 1644 / 358
  22529. }
  22530. },
  22531. foot: {
  22532. height: math.unit(1.611 * 1644 / 358, "meter"),
  22533. name: "Foot",
  22534. image: {
  22535. source: "./media/characters/bunsen/foot.svg"
  22536. }
  22537. },
  22538. },
  22539. [
  22540. {
  22541. name: "Small",
  22542. height: math.unit(10, "feet")
  22543. },
  22544. {
  22545. name: "Normal",
  22546. height: math.unit(15.6, "meters"),
  22547. default: true
  22548. },
  22549. ]
  22550. ))
  22551. characterMakers.push(() => makeCharacter(
  22552. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22553. {
  22554. front: {
  22555. height: math.unit(4 + 11 / 12, "feet"),
  22556. weight: math.unit(140, "lb"),
  22557. name: "Front",
  22558. image: {
  22559. source: "./media/characters/sesh/front.svg",
  22560. extra: 3420 / 3231,
  22561. bottom: 72 / 3949.5
  22562. }
  22563. },
  22564. },
  22565. [
  22566. {
  22567. name: "Normal",
  22568. height: math.unit(4 + 11 / 12, "feet")
  22569. },
  22570. {
  22571. name: "Grown",
  22572. height: math.unit(15, "feet"),
  22573. default: true
  22574. },
  22575. {
  22576. name: "Macro",
  22577. height: math.unit(1500, "feet")
  22578. },
  22579. {
  22580. name: "Megamacro",
  22581. height: math.unit(30, "miles")
  22582. },
  22583. {
  22584. name: "Continental",
  22585. height: math.unit(3000, "miles")
  22586. },
  22587. {
  22588. name: "Gravity Mass",
  22589. height: math.unit(300000, "miles")
  22590. },
  22591. {
  22592. name: "Planet Buster",
  22593. height: math.unit(30000000, "miles")
  22594. },
  22595. {
  22596. name: "Big",
  22597. height: math.unit(3000000000, "miles")
  22598. },
  22599. ]
  22600. ))
  22601. characterMakers.push(() => makeCharacter(
  22602. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22603. {
  22604. front: {
  22605. height: math.unit(9, "feet"),
  22606. weight: math.unit(350, "lb"),
  22607. name: "Front",
  22608. image: {
  22609. source: "./media/characters/pepper/front.svg",
  22610. extra: 1448 / 1312,
  22611. bottom: 9.4 / 1457.88
  22612. }
  22613. },
  22614. back: {
  22615. height: math.unit(9, "feet"),
  22616. weight: math.unit(350, "lb"),
  22617. name: "Back",
  22618. image: {
  22619. source: "./media/characters/pepper/back.svg",
  22620. extra: 1423 / 1300,
  22621. bottom: 4.6 / 1429
  22622. }
  22623. },
  22624. maw: {
  22625. height: math.unit(0.932, "feet"),
  22626. name: "Maw",
  22627. image: {
  22628. source: "./media/characters/pepper/maw.svg"
  22629. }
  22630. },
  22631. },
  22632. [
  22633. {
  22634. name: "Normal",
  22635. height: math.unit(9, "feet"),
  22636. default: true
  22637. },
  22638. ]
  22639. ))
  22640. characterMakers.push(() => makeCharacter(
  22641. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22642. {
  22643. front: {
  22644. height: math.unit(6, "feet"),
  22645. weight: math.unit(150, "lb"),
  22646. name: "Front",
  22647. image: {
  22648. source: "./media/characters/maelstrom/front.svg",
  22649. extra: 2100 / 1883,
  22650. bottom: 94 / 2196.7
  22651. }
  22652. },
  22653. },
  22654. [
  22655. {
  22656. name: "Less Kaiju",
  22657. height: math.unit(200, "feet")
  22658. },
  22659. {
  22660. name: "Kaiju",
  22661. height: math.unit(400, "feet"),
  22662. default: true
  22663. },
  22664. {
  22665. name: "Kaiju-er",
  22666. height: math.unit(600, "feet")
  22667. },
  22668. ]
  22669. ))
  22670. characterMakers.push(() => makeCharacter(
  22671. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22672. {
  22673. front: {
  22674. height: math.unit(6 + 5 / 12, "feet"),
  22675. weight: math.unit(180, "lb"),
  22676. name: "Front",
  22677. image: {
  22678. source: "./media/characters/lexir/front.svg",
  22679. extra: 180 / 172,
  22680. bottom: 12 / 192
  22681. }
  22682. },
  22683. back: {
  22684. height: math.unit(6 + 5 / 12, "feet"),
  22685. weight: math.unit(180, "lb"),
  22686. name: "Back",
  22687. image: {
  22688. source: "./media/characters/lexir/back.svg",
  22689. extra: 183.84 / 175.5,
  22690. bottom: 3.1 / 187
  22691. }
  22692. },
  22693. },
  22694. [
  22695. {
  22696. name: "Very Smal",
  22697. height: math.unit(1, "nm")
  22698. },
  22699. {
  22700. name: "Normal",
  22701. height: math.unit(6 + 5 / 12, "feet"),
  22702. default: true
  22703. },
  22704. {
  22705. name: "Macro",
  22706. height: math.unit(1, "mile")
  22707. },
  22708. {
  22709. name: "Megamacro",
  22710. height: math.unit(50, "miles")
  22711. },
  22712. ]
  22713. ))
  22714. characterMakers.push(() => makeCharacter(
  22715. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22716. {
  22717. front: {
  22718. height: math.unit(1.5, "meters"),
  22719. weight: math.unit(100, "lb"),
  22720. name: "Front",
  22721. image: {
  22722. source: "./media/characters/maksio/front.svg",
  22723. extra: 1549 / 1531,
  22724. bottom: 123.7 / 1674.5429
  22725. }
  22726. },
  22727. back: {
  22728. height: math.unit(1.5, "meters"),
  22729. weight: math.unit(100, "lb"),
  22730. name: "Back",
  22731. image: {
  22732. source: "./media/characters/maksio/back.svg",
  22733. extra: 1541 / 1509,
  22734. bottom: 97 / 1639
  22735. }
  22736. },
  22737. hand: {
  22738. height: math.unit(0.621, "feet"),
  22739. name: "Hand",
  22740. image: {
  22741. source: "./media/characters/maksio/hand.svg"
  22742. }
  22743. },
  22744. foot: {
  22745. height: math.unit(1.611, "feet"),
  22746. name: "Foot",
  22747. image: {
  22748. source: "./media/characters/maksio/foot.svg"
  22749. }
  22750. },
  22751. },
  22752. [
  22753. {
  22754. name: "Shrunken",
  22755. height: math.unit(10, "cm")
  22756. },
  22757. {
  22758. name: "Normal",
  22759. height: math.unit(150, "cm"),
  22760. default: true
  22761. },
  22762. ]
  22763. ))
  22764. characterMakers.push(() => makeCharacter(
  22765. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22766. {
  22767. front: {
  22768. height: math.unit(100, "feet"),
  22769. name: "Front",
  22770. image: {
  22771. source: "./media/characters/erza-bear/front.svg",
  22772. extra: 2449 / 2390,
  22773. bottom: 46 / 2494
  22774. }
  22775. },
  22776. back: {
  22777. height: math.unit(100, "feet"),
  22778. name: "Back",
  22779. image: {
  22780. source: "./media/characters/erza-bear/back.svg",
  22781. extra: 2489 / 2430,
  22782. bottom: 85.4 / 2480
  22783. }
  22784. },
  22785. tail: {
  22786. height: math.unit(42, "feet"),
  22787. name: "Tail",
  22788. image: {
  22789. source: "./media/characters/erza-bear/tail.svg"
  22790. }
  22791. },
  22792. tongue: {
  22793. height: math.unit(8, "feet"),
  22794. name: "Tongue",
  22795. image: {
  22796. source: "./media/characters/erza-bear/tongue.svg"
  22797. }
  22798. },
  22799. dick: {
  22800. height: math.unit(10.5, "feet"),
  22801. name: "Dick",
  22802. image: {
  22803. source: "./media/characters/erza-bear/dick.svg"
  22804. }
  22805. },
  22806. dickVertical: {
  22807. height: math.unit(16.9, "feet"),
  22808. name: "Dick (Vertical)",
  22809. image: {
  22810. source: "./media/characters/erza-bear/dick-vertical.svg"
  22811. }
  22812. },
  22813. },
  22814. [
  22815. {
  22816. name: "Macro",
  22817. height: math.unit(100, "feet"),
  22818. default: true
  22819. },
  22820. ]
  22821. ))
  22822. characterMakers.push(() => makeCharacter(
  22823. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22824. {
  22825. front: {
  22826. height: math.unit(172, "cm"),
  22827. weight: math.unit(73, "kg"),
  22828. name: "Front",
  22829. image: {
  22830. source: "./media/characters/violet-flor/front.svg",
  22831. extra: 1530 / 1442,
  22832. bottom: 61.9 / 1588.8
  22833. }
  22834. },
  22835. back: {
  22836. height: math.unit(180, "cm"),
  22837. weight: math.unit(73, "kg"),
  22838. name: "Back",
  22839. image: {
  22840. source: "./media/characters/violet-flor/back.svg",
  22841. extra: 1692 / 1630,
  22842. bottom: 20 / 1712
  22843. }
  22844. },
  22845. },
  22846. [
  22847. {
  22848. name: "Normal",
  22849. height: math.unit(172, "cm"),
  22850. default: true
  22851. },
  22852. ]
  22853. ))
  22854. characterMakers.push(() => makeCharacter(
  22855. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22856. {
  22857. front: {
  22858. height: math.unit(6, "feet"),
  22859. weight: math.unit(220, "lb"),
  22860. name: "Front",
  22861. image: {
  22862. source: "./media/characters/lynn-rhea/front.svg",
  22863. extra: 310 / 273
  22864. }
  22865. },
  22866. back: {
  22867. height: math.unit(6, "feet"),
  22868. weight: math.unit(220, "lb"),
  22869. name: "Back",
  22870. image: {
  22871. source: "./media/characters/lynn-rhea/back.svg",
  22872. extra: 310 / 273
  22873. }
  22874. },
  22875. dicks: {
  22876. height: math.unit(0.9, "feet"),
  22877. name: "Dicks",
  22878. image: {
  22879. source: "./media/characters/lynn-rhea/dicks.svg"
  22880. }
  22881. },
  22882. slit: {
  22883. height: math.unit(0.4, "feet"),
  22884. name: "Slit",
  22885. image: {
  22886. source: "./media/characters/lynn-rhea/slit.svg"
  22887. }
  22888. },
  22889. },
  22890. [
  22891. {
  22892. name: "Micro",
  22893. height: math.unit(1, "inch")
  22894. },
  22895. {
  22896. name: "Macro",
  22897. height: math.unit(60, "feet"),
  22898. default: true
  22899. },
  22900. {
  22901. name: "Megamacro",
  22902. height: math.unit(2, "miles")
  22903. },
  22904. {
  22905. name: "Gigamacro",
  22906. height: math.unit(3, "earths")
  22907. },
  22908. {
  22909. name: "Galactic",
  22910. height: math.unit(0.8, "galaxies")
  22911. },
  22912. ]
  22913. ))
  22914. characterMakers.push(() => makeCharacter(
  22915. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22916. {
  22917. front: {
  22918. height: math.unit(1600, "feet"),
  22919. weight: math.unit(85758785169, "kg"),
  22920. name: "Front",
  22921. image: {
  22922. source: "./media/characters/valathos/front.svg",
  22923. extra: 1451 / 1339
  22924. }
  22925. },
  22926. },
  22927. [
  22928. {
  22929. name: "Macro",
  22930. height: math.unit(1600, "feet"),
  22931. default: true
  22932. },
  22933. ]
  22934. ))
  22935. characterMakers.push(() => makeCharacter(
  22936. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22937. {
  22938. front: {
  22939. height: math.unit(7 + 5 / 12, "feet"),
  22940. weight: math.unit(300, "lb"),
  22941. name: "Front",
  22942. image: {
  22943. source: "./media/characters/azula/front.svg",
  22944. extra: 3208 / 2880,
  22945. bottom: 80.2 / 3277
  22946. }
  22947. },
  22948. back: {
  22949. height: math.unit(7 + 5 / 12, "feet"),
  22950. weight: math.unit(300, "lb"),
  22951. name: "Back",
  22952. image: {
  22953. source: "./media/characters/azula/back.svg",
  22954. extra: 3169 / 2822,
  22955. bottom: 150.6 / 3321
  22956. }
  22957. },
  22958. },
  22959. [
  22960. {
  22961. name: "Normal",
  22962. height: math.unit(7 + 5 / 12, "feet"),
  22963. default: true
  22964. },
  22965. {
  22966. name: "Big",
  22967. height: math.unit(20, "feet")
  22968. },
  22969. ]
  22970. ))
  22971. characterMakers.push(() => makeCharacter(
  22972. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22973. {
  22974. front: {
  22975. height: math.unit(5 + 1 / 12, "feet"),
  22976. weight: math.unit(110, "lb"),
  22977. name: "Front",
  22978. image: {
  22979. source: "./media/characters/rupert/front.svg",
  22980. extra: 1549 / 1495,
  22981. bottom: 54.2 / 1604.4
  22982. }
  22983. },
  22984. },
  22985. [
  22986. {
  22987. name: "Normal",
  22988. height: math.unit(5 + 1 / 12, "feet"),
  22989. default: true
  22990. },
  22991. ]
  22992. ))
  22993. characterMakers.push(() => makeCharacter(
  22994. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22995. {
  22996. front: {
  22997. height: math.unit(8 + 4 / 12, "feet"),
  22998. weight: math.unit(350, "lb"),
  22999. name: "Front",
  23000. image: {
  23001. source: "./media/characters/sheera-castellar/front.svg",
  23002. extra: 1957 / 1894,
  23003. bottom: 26.97 / 1975.017
  23004. }
  23005. },
  23006. side: {
  23007. height: math.unit(8 + 4 / 12, "feet"),
  23008. weight: math.unit(350, "lb"),
  23009. name: "Side",
  23010. image: {
  23011. source: "./media/characters/sheera-castellar/side.svg",
  23012. extra: 1957 / 1894
  23013. }
  23014. },
  23015. back: {
  23016. height: math.unit(8 + 4 / 12, "feet"),
  23017. weight: math.unit(350, "lb"),
  23018. name: "Back",
  23019. image: {
  23020. source: "./media/characters/sheera-castellar/back.svg",
  23021. extra: 1957 / 1894
  23022. }
  23023. },
  23024. angled: {
  23025. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23026. weight: math.unit(350, "lb"),
  23027. name: "Angled",
  23028. image: {
  23029. source: "./media/characters/sheera-castellar/angled.svg",
  23030. extra: 1807 / 1707,
  23031. bottom: 68 / 1875
  23032. }
  23033. },
  23034. genitals: {
  23035. height: math.unit(2.2, "feet"),
  23036. name: "Genitals",
  23037. image: {
  23038. source: "./media/characters/sheera-castellar/genitals.svg"
  23039. }
  23040. },
  23041. taur: {
  23042. height: math.unit(10 + 6/12, "feet"),
  23043. name: "Taur",
  23044. image: {
  23045. source: "./media/characters/sheera-castellar/taur.svg",
  23046. extra: 2017/1909,
  23047. bottom: 185/2202
  23048. }
  23049. },
  23050. },
  23051. [
  23052. {
  23053. name: "Normal",
  23054. height: math.unit(8 + 4 / 12, "feet")
  23055. },
  23056. {
  23057. name: "Macro",
  23058. height: math.unit(150, "feet"),
  23059. default: true
  23060. },
  23061. {
  23062. name: "Macro+",
  23063. height: math.unit(800, "feet")
  23064. },
  23065. ]
  23066. ))
  23067. characterMakers.push(() => makeCharacter(
  23068. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23069. {
  23070. front: {
  23071. height: math.unit(6, "feet"),
  23072. weight: math.unit(150, "lb"),
  23073. name: "Front",
  23074. image: {
  23075. source: "./media/characters/jaipur/front.svg",
  23076. extra: 3860 / 3731,
  23077. bottom: 287 / 4140
  23078. }
  23079. },
  23080. back: {
  23081. height: math.unit(6, "feet"),
  23082. weight: math.unit(150, "lb"),
  23083. name: "Back",
  23084. image: {
  23085. source: "./media/characters/jaipur/back.svg",
  23086. extra: 4060 / 3930,
  23087. bottom: 151 / 4200
  23088. }
  23089. },
  23090. },
  23091. [
  23092. {
  23093. name: "Normal",
  23094. height: math.unit(1.85, "meters"),
  23095. default: true
  23096. },
  23097. {
  23098. name: "Macro",
  23099. height: math.unit(150, "meters")
  23100. },
  23101. {
  23102. name: "Macro+",
  23103. height: math.unit(0.5, "miles")
  23104. },
  23105. {
  23106. name: "Macro++",
  23107. height: math.unit(2.5, "miles")
  23108. },
  23109. {
  23110. name: "Macro+++",
  23111. height: math.unit(12, "miles")
  23112. },
  23113. {
  23114. name: "Macro++++",
  23115. height: math.unit(120, "miles")
  23116. },
  23117. {
  23118. name: "Macro+++++",
  23119. height: math.unit(1200, "miles")
  23120. },
  23121. ]
  23122. ))
  23123. characterMakers.push(() => makeCharacter(
  23124. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23125. {
  23126. front: {
  23127. height: math.unit(6, "feet"),
  23128. weight: math.unit(150, "lb"),
  23129. name: "Front",
  23130. image: {
  23131. source: "./media/characters/sheila-wolf/front.svg",
  23132. extra: 1931 / 1808,
  23133. bottom: 29.5 / 1960
  23134. }
  23135. },
  23136. dick: {
  23137. height: math.unit(1.464, "feet"),
  23138. name: "Dick",
  23139. image: {
  23140. source: "./media/characters/sheila-wolf/dick.svg"
  23141. }
  23142. },
  23143. muzzle: {
  23144. height: math.unit(0.513, "feet"),
  23145. name: "Muzzle",
  23146. image: {
  23147. source: "./media/characters/sheila-wolf/muzzle.svg"
  23148. }
  23149. },
  23150. },
  23151. [
  23152. {
  23153. name: "Macro",
  23154. height: math.unit(70, "feet"),
  23155. default: true
  23156. },
  23157. ]
  23158. ))
  23159. characterMakers.push(() => makeCharacter(
  23160. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23161. {
  23162. front: {
  23163. height: math.unit(32, "meters"),
  23164. weight: math.unit(300000, "kg"),
  23165. name: "Front",
  23166. image: {
  23167. source: "./media/characters/almor/front.svg",
  23168. extra: 1408 / 1322,
  23169. bottom: 94.6 / 1506.5
  23170. }
  23171. },
  23172. },
  23173. [
  23174. {
  23175. name: "Macro",
  23176. height: math.unit(32, "meters"),
  23177. default: true
  23178. },
  23179. ]
  23180. ))
  23181. characterMakers.push(() => makeCharacter(
  23182. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23183. {
  23184. front: {
  23185. height: math.unit(7, "feet"),
  23186. weight: math.unit(200, "lb"),
  23187. name: "Front",
  23188. image: {
  23189. source: "./media/characters/silver/front.svg",
  23190. extra: 472.1 / 450.5,
  23191. bottom: 26.5 / 499.424
  23192. }
  23193. },
  23194. },
  23195. [
  23196. {
  23197. name: "Normal",
  23198. height: math.unit(7, "feet"),
  23199. default: true
  23200. },
  23201. {
  23202. name: "Macro",
  23203. height: math.unit(800, "feet")
  23204. },
  23205. {
  23206. name: "Megamacro",
  23207. height: math.unit(250, "miles")
  23208. },
  23209. ]
  23210. ))
  23211. characterMakers.push(() => makeCharacter(
  23212. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23213. {
  23214. front: {
  23215. height: math.unit(6, "feet"),
  23216. weight: math.unit(150, "lb"),
  23217. name: "Front",
  23218. image: {
  23219. source: "./media/characters/pliskin/front.svg",
  23220. extra: 1469 / 1359,
  23221. bottom: 70 / 1540
  23222. }
  23223. },
  23224. },
  23225. [
  23226. {
  23227. name: "Micro",
  23228. height: math.unit(3, "inches")
  23229. },
  23230. {
  23231. name: "Normal",
  23232. height: math.unit(5 + 11 / 12, "feet"),
  23233. default: true
  23234. },
  23235. {
  23236. name: "Macro",
  23237. height: math.unit(120, "feet")
  23238. },
  23239. ]
  23240. ))
  23241. characterMakers.push(() => makeCharacter(
  23242. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23243. {
  23244. front: {
  23245. height: math.unit(6, "feet"),
  23246. weight: math.unit(150, "lb"),
  23247. name: "Front",
  23248. image: {
  23249. source: "./media/characters/sammy/front.svg",
  23250. extra: 1193 / 1089,
  23251. bottom: 30.5 / 1226
  23252. }
  23253. },
  23254. },
  23255. [
  23256. {
  23257. name: "Macro",
  23258. height: math.unit(1700, "feet"),
  23259. default: true
  23260. },
  23261. {
  23262. name: "Examacro",
  23263. height: math.unit(2.5e9, "lightyears")
  23264. },
  23265. ]
  23266. ))
  23267. characterMakers.push(() => makeCharacter(
  23268. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23269. {
  23270. front: {
  23271. height: math.unit(21, "meters"),
  23272. weight: math.unit(12, "tonnes"),
  23273. name: "Front",
  23274. image: {
  23275. source: "./media/characters/kuru/front.svg",
  23276. extra: 4301 / 3785,
  23277. bottom: 371.3 / 4691
  23278. }
  23279. },
  23280. },
  23281. [
  23282. {
  23283. name: "Macro",
  23284. height: math.unit(21, "meters"),
  23285. default: true
  23286. },
  23287. ]
  23288. ))
  23289. characterMakers.push(() => makeCharacter(
  23290. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23291. {
  23292. front: {
  23293. height: math.unit(23, "meters"),
  23294. weight: math.unit(12.2, "tonnes"),
  23295. name: "Front",
  23296. image: {
  23297. source: "./media/characters/rakka/front.svg",
  23298. extra: 4670 / 4169,
  23299. bottom: 301 / 4968.7
  23300. }
  23301. },
  23302. },
  23303. [
  23304. {
  23305. name: "Macro",
  23306. height: math.unit(23, "meters"),
  23307. default: true
  23308. },
  23309. ]
  23310. ))
  23311. characterMakers.push(() => makeCharacter(
  23312. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23313. {
  23314. front: {
  23315. height: math.unit(6, "feet"),
  23316. weight: math.unit(150, "lb"),
  23317. name: "Front",
  23318. image: {
  23319. source: "./media/characters/rhys-feline/front.svg",
  23320. extra: 2488 / 2308,
  23321. bottom: 35.67 / 2519.19
  23322. }
  23323. },
  23324. },
  23325. [
  23326. {
  23327. name: "Really Small",
  23328. height: math.unit(1, "nm")
  23329. },
  23330. {
  23331. name: "Micro",
  23332. height: math.unit(4, "inches")
  23333. },
  23334. {
  23335. name: "Normal",
  23336. height: math.unit(4 + 10 / 12, "feet"),
  23337. default: true
  23338. },
  23339. {
  23340. name: "Macro",
  23341. height: math.unit(100, "feet")
  23342. },
  23343. {
  23344. name: "Megamacto",
  23345. height: math.unit(50, "miles")
  23346. },
  23347. ]
  23348. ))
  23349. characterMakers.push(() => makeCharacter(
  23350. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23351. {
  23352. side: {
  23353. height: math.unit(30, "feet"),
  23354. weight: math.unit(35000, "kg"),
  23355. name: "Side",
  23356. image: {
  23357. source: "./media/characters/alydar/side.svg",
  23358. extra: 234 / 222,
  23359. bottom: 6.5 / 241
  23360. }
  23361. },
  23362. front: {
  23363. height: math.unit(30, "feet"),
  23364. weight: math.unit(35000, "kg"),
  23365. name: "Front",
  23366. image: {
  23367. source: "./media/characters/alydar/front.svg",
  23368. extra: 223.37 / 210.2,
  23369. bottom: 22.3 / 246.76
  23370. }
  23371. },
  23372. top: {
  23373. height: math.unit(64.54, "feet"),
  23374. weight: math.unit(35000, "kg"),
  23375. name: "Top",
  23376. image: {
  23377. source: "./media/characters/alydar/top.svg"
  23378. }
  23379. },
  23380. anthro: {
  23381. height: math.unit(30, "feet"),
  23382. weight: math.unit(9000, "kg"),
  23383. name: "Anthro",
  23384. image: {
  23385. source: "./media/characters/alydar/anthro.svg",
  23386. extra: 432 / 421,
  23387. bottom: 7.18 / 440
  23388. }
  23389. },
  23390. maw: {
  23391. height: math.unit(11.693, "feet"),
  23392. name: "Maw",
  23393. image: {
  23394. source: "./media/characters/alydar/maw.svg"
  23395. }
  23396. },
  23397. head: {
  23398. height: math.unit(11.693, "feet"),
  23399. name: "Head",
  23400. image: {
  23401. source: "./media/characters/alydar/head.svg"
  23402. }
  23403. },
  23404. headAlt: {
  23405. height: math.unit(12.861, "feet"),
  23406. name: "Head (Alt)",
  23407. image: {
  23408. source: "./media/characters/alydar/head-alt.svg"
  23409. }
  23410. },
  23411. wing: {
  23412. height: math.unit(20.712, "feet"),
  23413. name: "Wing",
  23414. image: {
  23415. source: "./media/characters/alydar/wing.svg"
  23416. }
  23417. },
  23418. wingFeather: {
  23419. height: math.unit(9.662, "feet"),
  23420. name: "Wing Feather",
  23421. image: {
  23422. source: "./media/characters/alydar/wing-feather.svg"
  23423. }
  23424. },
  23425. countourFeather: {
  23426. height: math.unit(4.154, "feet"),
  23427. name: "Contour Feather",
  23428. image: {
  23429. source: "./media/characters/alydar/contour-feather.svg"
  23430. }
  23431. },
  23432. },
  23433. [
  23434. {
  23435. name: "Diplomatic",
  23436. height: math.unit(13, "feet"),
  23437. default: true
  23438. },
  23439. {
  23440. name: "Small",
  23441. height: math.unit(30, "feet")
  23442. },
  23443. {
  23444. name: "Normal",
  23445. height: math.unit(95, "feet"),
  23446. default: true
  23447. },
  23448. {
  23449. name: "Large",
  23450. height: math.unit(285, "feet")
  23451. },
  23452. {
  23453. name: "Incomprehensible",
  23454. height: math.unit(450, "megameters")
  23455. },
  23456. ]
  23457. ))
  23458. characterMakers.push(() => makeCharacter(
  23459. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23460. {
  23461. side: {
  23462. height: math.unit(11, "feet"),
  23463. weight: math.unit(1750, "kg"),
  23464. name: "Side",
  23465. image: {
  23466. source: "./media/characters/selicia/side.svg",
  23467. extra: 440 / 396,
  23468. bottom: 24.8 / 465.979
  23469. }
  23470. },
  23471. maw: {
  23472. height: math.unit(4.665, "feet"),
  23473. name: "Maw",
  23474. image: {
  23475. source: "./media/characters/selicia/maw.svg"
  23476. }
  23477. },
  23478. },
  23479. [
  23480. {
  23481. name: "Normal",
  23482. height: math.unit(11, "feet"),
  23483. default: true
  23484. },
  23485. ]
  23486. ))
  23487. characterMakers.push(() => makeCharacter(
  23488. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23489. {
  23490. side: {
  23491. height: math.unit(2 + 6 / 12, "feet"),
  23492. weight: math.unit(30, "lb"),
  23493. name: "Side",
  23494. image: {
  23495. source: "./media/characters/layla/side.svg",
  23496. extra: 244 / 188,
  23497. bottom: 18.2 / 262.1
  23498. }
  23499. },
  23500. back: {
  23501. height: math.unit(2 + 6 / 12, "feet"),
  23502. weight: math.unit(30, "lb"),
  23503. name: "Back",
  23504. image: {
  23505. source: "./media/characters/layla/back.svg",
  23506. extra: 308 / 241.5,
  23507. bottom: 8.9 / 316.8
  23508. }
  23509. },
  23510. cumming: {
  23511. height: math.unit(2 + 6 / 12, "feet"),
  23512. weight: math.unit(30, "lb"),
  23513. name: "Cumming",
  23514. image: {
  23515. source: "./media/characters/layla/cumming.svg",
  23516. extra: 342 / 279,
  23517. bottom: 595 / 938
  23518. }
  23519. },
  23520. dickFlaccid: {
  23521. height: math.unit(2.595, "feet"),
  23522. name: "Flaccid Genitals",
  23523. image: {
  23524. source: "./media/characters/layla/dick-flaccid.svg"
  23525. }
  23526. },
  23527. dickErect: {
  23528. height: math.unit(2.359, "feet"),
  23529. name: "Erect Genitals",
  23530. image: {
  23531. source: "./media/characters/layla/dick-erect.svg"
  23532. }
  23533. },
  23534. dragon: {
  23535. height: math.unit(40, "feet"),
  23536. name: "Dragon",
  23537. image: {
  23538. source: "./media/characters/layla/dragon.svg",
  23539. extra: 610/535,
  23540. bottom: 367/977
  23541. }
  23542. },
  23543. taur: {
  23544. height: math.unit(30, "feet"),
  23545. name: "Taur",
  23546. image: {
  23547. source: "./media/characters/layla/taur.svg",
  23548. extra: 1268/1199,
  23549. bottom: 112/1380
  23550. }
  23551. },
  23552. },
  23553. [
  23554. {
  23555. name: "Micro",
  23556. height: math.unit(1, "inch")
  23557. },
  23558. {
  23559. name: "Small",
  23560. height: math.unit(1, "foot")
  23561. },
  23562. {
  23563. name: "Normal",
  23564. height: math.unit(2 + 6 / 12, "feet"),
  23565. default: true
  23566. },
  23567. {
  23568. name: "Macro",
  23569. height: math.unit(200, "feet")
  23570. },
  23571. {
  23572. name: "Megamacro",
  23573. height: math.unit(1000, "miles")
  23574. },
  23575. {
  23576. name: "Planetary",
  23577. height: math.unit(8000, "miles")
  23578. },
  23579. {
  23580. name: "True Layla",
  23581. height: math.unit(200000 * 7, "multiverses")
  23582. },
  23583. ]
  23584. ))
  23585. characterMakers.push(() => makeCharacter(
  23586. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23587. {
  23588. back: {
  23589. height: math.unit(10.5, "feet"),
  23590. weight: math.unit(800, "lb"),
  23591. name: "Back",
  23592. image: {
  23593. source: "./media/characters/knox/back.svg",
  23594. extra: 1486 / 1089,
  23595. bottom: 107 / 1601.4
  23596. }
  23597. },
  23598. side: {
  23599. height: math.unit(10.5, "feet"),
  23600. weight: math.unit(800, "lb"),
  23601. name: "Side",
  23602. image: {
  23603. source: "./media/characters/knox/side.svg",
  23604. extra: 244 / 218,
  23605. bottom: 14 / 260
  23606. }
  23607. },
  23608. },
  23609. [
  23610. {
  23611. name: "Compact",
  23612. height: math.unit(10.5, "feet"),
  23613. default: true
  23614. },
  23615. {
  23616. name: "Dynamax",
  23617. height: math.unit(210, "feet")
  23618. },
  23619. {
  23620. name: "Full Macro",
  23621. height: math.unit(850, "feet")
  23622. },
  23623. ]
  23624. ))
  23625. characterMakers.push(() => makeCharacter(
  23626. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23627. {
  23628. front: {
  23629. height: math.unit(6, "feet"),
  23630. weight: math.unit(152, "lb"),
  23631. name: "Front",
  23632. image: {
  23633. source: "./media/characters/shin-pikachu/front.svg",
  23634. extra: 1854/1602,
  23635. bottom: 166/2020
  23636. }
  23637. },
  23638. hand: {
  23639. height: math.unit(1.055, "feet"),
  23640. name: "Hand",
  23641. image: {
  23642. source: "./media/characters/shin-pikachu/hand.svg"
  23643. }
  23644. },
  23645. foot: {
  23646. height: math.unit(1.1, "feet"),
  23647. name: "Foot",
  23648. image: {
  23649. source: "./media/characters/shin-pikachu/foot.svg"
  23650. }
  23651. },
  23652. collar: {
  23653. height: math.unit(0.386, "feet"),
  23654. name: "Collar",
  23655. image: {
  23656. source: "./media/characters/shin-pikachu/collar.svg"
  23657. }
  23658. },
  23659. },
  23660. [
  23661. {
  23662. name: "Smallest",
  23663. height: math.unit(0.5, "inches")
  23664. },
  23665. {
  23666. name: "Micro",
  23667. height: math.unit(6, "inches")
  23668. },
  23669. {
  23670. name: "Normal",
  23671. height: math.unit(6, "feet"),
  23672. default: true
  23673. },
  23674. {
  23675. name: "Macro",
  23676. height: math.unit(150, "feet")
  23677. },
  23678. ]
  23679. ))
  23680. characterMakers.push(() => makeCharacter(
  23681. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23682. {
  23683. front: {
  23684. height: math.unit(28, "feet"),
  23685. weight: math.unit(10500, "lb"),
  23686. name: "Front",
  23687. image: {
  23688. source: "./media/characters/kayda/front.svg",
  23689. extra: 1536 / 1428,
  23690. bottom: 68.7 / 1603
  23691. }
  23692. },
  23693. back: {
  23694. height: math.unit(28, "feet"),
  23695. weight: math.unit(10500, "lb"),
  23696. name: "Back",
  23697. image: {
  23698. source: "./media/characters/kayda/back.svg",
  23699. extra: 1557 / 1464,
  23700. bottom: 39.5 / 1597.49
  23701. }
  23702. },
  23703. dick: {
  23704. height: math.unit(3.858, "feet"),
  23705. name: "Dick",
  23706. image: {
  23707. source: "./media/characters/kayda/dick.svg"
  23708. }
  23709. },
  23710. },
  23711. [
  23712. {
  23713. name: "Macro",
  23714. height: math.unit(28, "feet"),
  23715. default: true
  23716. },
  23717. ]
  23718. ))
  23719. characterMakers.push(() => makeCharacter(
  23720. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23721. {
  23722. front: {
  23723. height: math.unit(10 + 11 / 12, "feet"),
  23724. weight: math.unit(1400, "lb"),
  23725. name: "Front",
  23726. image: {
  23727. source: "./media/characters/brian/front.svg",
  23728. extra: 737 / 692,
  23729. bottom: 55.4 / 785
  23730. }
  23731. },
  23732. },
  23733. [
  23734. {
  23735. name: "Normal",
  23736. height: math.unit(10 + 11 / 12, "feet"),
  23737. default: true
  23738. },
  23739. ]
  23740. ))
  23741. characterMakers.push(() => makeCharacter(
  23742. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23743. {
  23744. front: {
  23745. height: math.unit(5 + 8 / 12, "feet"),
  23746. weight: math.unit(140, "lb"),
  23747. name: "Front",
  23748. image: {
  23749. source: "./media/characters/khemri/front.svg",
  23750. extra: 4780 / 4059,
  23751. bottom: 80.1 / 4859.25
  23752. }
  23753. },
  23754. },
  23755. [
  23756. {
  23757. name: "Micro",
  23758. height: math.unit(6, "inches")
  23759. },
  23760. {
  23761. name: "Normal",
  23762. height: math.unit(5 + 8 / 12, "feet"),
  23763. default: true
  23764. },
  23765. ]
  23766. ))
  23767. characterMakers.push(() => makeCharacter(
  23768. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23769. {
  23770. front: {
  23771. height: math.unit(13, "feet"),
  23772. weight: math.unit(1700, "lb"),
  23773. name: "Front",
  23774. image: {
  23775. source: "./media/characters/felix-braveheart/front.svg",
  23776. extra: 1222 / 1157,
  23777. bottom: 53.2 / 1280
  23778. }
  23779. },
  23780. back: {
  23781. height: math.unit(13, "feet"),
  23782. weight: math.unit(1700, "lb"),
  23783. name: "Back",
  23784. image: {
  23785. source: "./media/characters/felix-braveheart/back.svg",
  23786. extra: 1277 / 1203,
  23787. bottom: 50.2 / 1327
  23788. }
  23789. },
  23790. feral: {
  23791. height: math.unit(6, "feet"),
  23792. weight: math.unit(400, "lb"),
  23793. name: "Feral",
  23794. image: {
  23795. source: "./media/characters/felix-braveheart/feral.svg",
  23796. extra: 682 / 625,
  23797. bottom: 6.9 / 688
  23798. }
  23799. },
  23800. },
  23801. [
  23802. {
  23803. name: "Normal",
  23804. height: math.unit(13, "feet"),
  23805. default: true
  23806. },
  23807. ]
  23808. ))
  23809. characterMakers.push(() => makeCharacter(
  23810. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23811. {
  23812. side: {
  23813. height: math.unit(5 + 11 / 12, "feet"),
  23814. weight: math.unit(1400, "lb"),
  23815. name: "Side",
  23816. image: {
  23817. source: "./media/characters/shadow-blade/side.svg",
  23818. extra: 1726 / 1267,
  23819. bottom: 58.4 / 1785
  23820. }
  23821. },
  23822. },
  23823. [
  23824. {
  23825. name: "Normal",
  23826. height: math.unit(5 + 11 / 12, "feet"),
  23827. default: true
  23828. },
  23829. ]
  23830. ))
  23831. characterMakers.push(() => makeCharacter(
  23832. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23833. {
  23834. front: {
  23835. height: math.unit(1 + 6 / 12, "feet"),
  23836. weight: math.unit(25, "lb"),
  23837. name: "Front",
  23838. image: {
  23839. source: "./media/characters/karla-halldor/front.svg",
  23840. extra: 1459 / 1383,
  23841. bottom: 12 / 1472
  23842. }
  23843. },
  23844. },
  23845. [
  23846. {
  23847. name: "Normal",
  23848. height: math.unit(1 + 6 / 12, "feet"),
  23849. default: true
  23850. },
  23851. ]
  23852. ))
  23853. characterMakers.push(() => makeCharacter(
  23854. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23855. {
  23856. front: {
  23857. height: math.unit(6 + 2 / 12, "feet"),
  23858. weight: math.unit(160, "lb"),
  23859. name: "Front",
  23860. image: {
  23861. source: "./media/characters/ariam/front.svg",
  23862. extra: 714 / 617,
  23863. bottom: 23.4 / 737,
  23864. }
  23865. },
  23866. squatting: {
  23867. height: math.unit(4.1, "feet"),
  23868. weight: math.unit(160, "lb"),
  23869. name: "Squatting",
  23870. image: {
  23871. source: "./media/characters/ariam/squatting.svg",
  23872. extra: 2617 / 2112,
  23873. bottom: 61.2 / 2681,
  23874. }
  23875. },
  23876. },
  23877. [
  23878. {
  23879. name: "Normal",
  23880. height: math.unit(6 + 2 / 12, "feet"),
  23881. default: true
  23882. },
  23883. {
  23884. name: "Normal+",
  23885. height: math.unit(4, "meters")
  23886. },
  23887. {
  23888. name: "Macro",
  23889. height: math.unit(50, "meters")
  23890. },
  23891. {
  23892. name: "Macro+",
  23893. height: math.unit(100, "meters")
  23894. },
  23895. {
  23896. name: "Megamacro",
  23897. height: math.unit(20, "km")
  23898. },
  23899. ]
  23900. ))
  23901. characterMakers.push(() => makeCharacter(
  23902. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23903. {
  23904. front: {
  23905. height: math.unit(1.67, "meters"),
  23906. weight: math.unit(140, "lb"),
  23907. name: "Front",
  23908. image: {
  23909. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23910. extra: 438 / 410,
  23911. bottom: 0.75 / 439
  23912. }
  23913. },
  23914. },
  23915. [
  23916. {
  23917. name: "Shrunken",
  23918. height: math.unit(7.6, "cm")
  23919. },
  23920. {
  23921. name: "Human Scale",
  23922. height: math.unit(1.67, "meters")
  23923. },
  23924. {
  23925. name: "Wolxi Scale",
  23926. height: math.unit(36.7, "meters"),
  23927. default: true
  23928. },
  23929. ]
  23930. ))
  23931. characterMakers.push(() => makeCharacter(
  23932. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23933. {
  23934. front: {
  23935. height: math.unit(1.73, "meters"),
  23936. weight: math.unit(240, "lb"),
  23937. name: "Front",
  23938. image: {
  23939. source: "./media/characters/izue-two-mothers/front.svg",
  23940. extra: 469 / 437,
  23941. bottom: 1.24 / 470.6
  23942. }
  23943. },
  23944. },
  23945. [
  23946. {
  23947. name: "Shrunken",
  23948. height: math.unit(7.86, "cm")
  23949. },
  23950. {
  23951. name: "Human Scale",
  23952. height: math.unit(1.73, "meters")
  23953. },
  23954. {
  23955. name: "Wolxi Scale",
  23956. height: math.unit(38, "meters"),
  23957. default: true
  23958. },
  23959. ]
  23960. ))
  23961. characterMakers.push(() => makeCharacter(
  23962. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23963. {
  23964. front: {
  23965. height: math.unit(1.55, "meters"),
  23966. weight: math.unit(120, "lb"),
  23967. name: "Front",
  23968. image: {
  23969. source: "./media/characters/teeku-love-shack/front.svg",
  23970. extra: 387 / 362,
  23971. bottom: 1.51 / 388
  23972. }
  23973. },
  23974. },
  23975. [
  23976. {
  23977. name: "Shrunken",
  23978. height: math.unit(7, "cm")
  23979. },
  23980. {
  23981. name: "Human Scale",
  23982. height: math.unit(1.55, "meters")
  23983. },
  23984. {
  23985. name: "Wolxi Scale",
  23986. height: math.unit(34.1, "meters"),
  23987. default: true
  23988. },
  23989. ]
  23990. ))
  23991. characterMakers.push(() => makeCharacter(
  23992. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23993. {
  23994. front: {
  23995. height: math.unit(1.83, "meters"),
  23996. weight: math.unit(135, "lb"),
  23997. name: "Front",
  23998. image: {
  23999. source: "./media/characters/dejma-the-red/front.svg",
  24000. extra: 480 / 458,
  24001. bottom: 1.8 / 482
  24002. }
  24003. },
  24004. },
  24005. [
  24006. {
  24007. name: "Shrunken",
  24008. height: math.unit(8.3, "cm")
  24009. },
  24010. {
  24011. name: "Human Scale",
  24012. height: math.unit(1.83, "meters")
  24013. },
  24014. {
  24015. name: "Wolxi Scale",
  24016. height: math.unit(40, "meters"),
  24017. default: true
  24018. },
  24019. ]
  24020. ))
  24021. characterMakers.push(() => makeCharacter(
  24022. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24023. {
  24024. front: {
  24025. height: math.unit(1.78, "meters"),
  24026. weight: math.unit(65, "kg"),
  24027. name: "Front",
  24028. image: {
  24029. source: "./media/characters/aki/front.svg",
  24030. extra: 452 / 415
  24031. }
  24032. },
  24033. frontNsfw: {
  24034. height: math.unit(1.78, "meters"),
  24035. weight: math.unit(65, "kg"),
  24036. name: "Front (NSFW)",
  24037. image: {
  24038. source: "./media/characters/aki/front-nsfw.svg",
  24039. extra: 452 / 415
  24040. }
  24041. },
  24042. back: {
  24043. height: math.unit(1.78, "meters"),
  24044. weight: math.unit(65, "kg"),
  24045. name: "Back",
  24046. image: {
  24047. source: "./media/characters/aki/back.svg",
  24048. extra: 452 / 415
  24049. }
  24050. },
  24051. rump: {
  24052. height: math.unit(2.05, "feet"),
  24053. name: "Rump",
  24054. image: {
  24055. source: "./media/characters/aki/rump.svg"
  24056. }
  24057. },
  24058. dick: {
  24059. height: math.unit(0.95, "feet"),
  24060. name: "Dick",
  24061. image: {
  24062. source: "./media/characters/aki/dick.svg"
  24063. }
  24064. },
  24065. },
  24066. [
  24067. {
  24068. name: "Micro",
  24069. height: math.unit(15, "cm")
  24070. },
  24071. {
  24072. name: "Normal",
  24073. height: math.unit(178, "cm"),
  24074. default: true
  24075. },
  24076. {
  24077. name: "Macro",
  24078. height: math.unit(214, "m")
  24079. },
  24080. {
  24081. name: "Macro+",
  24082. height: math.unit(534, "m")
  24083. },
  24084. ]
  24085. ))
  24086. characterMakers.push(() => makeCharacter(
  24087. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24088. {
  24089. front: {
  24090. height: math.unit(5 + 5 / 12, "feet"),
  24091. weight: math.unit(120, "lb"),
  24092. name: "Front",
  24093. image: {
  24094. source: "./media/characters/ari/front.svg",
  24095. extra: 714.5 / 682,
  24096. bottom: 8 / 722.5
  24097. }
  24098. },
  24099. },
  24100. [
  24101. {
  24102. name: "Normal",
  24103. height: math.unit(5 + 5 / 12, "feet")
  24104. },
  24105. {
  24106. name: "Macro",
  24107. height: math.unit(100, "feet"),
  24108. default: true
  24109. },
  24110. {
  24111. name: "Megamacro",
  24112. height: math.unit(100, "miles")
  24113. },
  24114. {
  24115. name: "Gigamacro",
  24116. height: math.unit(80000, "miles")
  24117. },
  24118. ]
  24119. ))
  24120. characterMakers.push(() => makeCharacter(
  24121. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24122. {
  24123. side: {
  24124. height: math.unit(9, "feet"),
  24125. weight: math.unit(400, "kg"),
  24126. name: "Side",
  24127. image: {
  24128. source: "./media/characters/bolt/side.svg",
  24129. extra: 1126 / 896,
  24130. bottom: 60 / 1187.3,
  24131. }
  24132. },
  24133. },
  24134. [
  24135. {
  24136. name: "Micro",
  24137. height: math.unit(5, "inches")
  24138. },
  24139. {
  24140. name: "Normal",
  24141. height: math.unit(9, "feet"),
  24142. default: true
  24143. },
  24144. {
  24145. name: "Macro",
  24146. height: math.unit(700, "feet")
  24147. },
  24148. {
  24149. name: "Max Size",
  24150. height: math.unit(1.52e22, "yottameters")
  24151. },
  24152. ]
  24153. ))
  24154. characterMakers.push(() => makeCharacter(
  24155. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24156. {
  24157. front: {
  24158. height: math.unit(4.53, "meters"),
  24159. weight: math.unit(3, "tons"),
  24160. name: "Front",
  24161. image: {
  24162. source: "./media/characters/draekon-sylviar/front.svg",
  24163. extra: 1228 / 1068,
  24164. bottom: 41 / 1270
  24165. }
  24166. },
  24167. tail: {
  24168. height: math.unit(1.772, "meter"),
  24169. name: "Tail",
  24170. image: {
  24171. source: "./media/characters/draekon-sylviar/tail.svg"
  24172. }
  24173. },
  24174. head: {
  24175. height: math.unit(1.331, "meter"),
  24176. name: "Head",
  24177. image: {
  24178. source: "./media/characters/draekon-sylviar/head.svg"
  24179. }
  24180. },
  24181. hand: {
  24182. height: math.unit(0.564, "meter"),
  24183. name: "Hand",
  24184. image: {
  24185. source: "./media/characters/draekon-sylviar/hand.svg"
  24186. }
  24187. },
  24188. foot: {
  24189. height: math.unit(0.621, "meter"),
  24190. name: "Foot",
  24191. image: {
  24192. source: "./media/characters/draekon-sylviar/foot.svg",
  24193. bottom: 32 / 324
  24194. }
  24195. },
  24196. dick: {
  24197. height: math.unit(61, "cm"),
  24198. name: "Dick",
  24199. image: {
  24200. source: "./media/characters/draekon-sylviar/dick.svg"
  24201. }
  24202. },
  24203. dickseparated: {
  24204. height: math.unit(61, "cm"),
  24205. name: "Dick-separated",
  24206. image: {
  24207. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24208. }
  24209. },
  24210. },
  24211. [
  24212. {
  24213. name: "Small",
  24214. height: math.unit(4.53 / 2, "meters"),
  24215. default: true
  24216. },
  24217. {
  24218. name: "Normal",
  24219. height: math.unit(4.53, "meters"),
  24220. default: true
  24221. },
  24222. {
  24223. name: "Large",
  24224. height: math.unit(4.53 * 2, "meters"),
  24225. },
  24226. ]
  24227. ))
  24228. characterMakers.push(() => makeCharacter(
  24229. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24230. {
  24231. front: {
  24232. height: math.unit(6 + 2 / 12, "feet"),
  24233. weight: math.unit(180, "lb"),
  24234. name: "Front",
  24235. image: {
  24236. source: "./media/characters/brawler/front.svg",
  24237. extra: 3301 / 3027,
  24238. bottom: 138 / 3439
  24239. }
  24240. },
  24241. },
  24242. [
  24243. {
  24244. name: "Normal",
  24245. height: math.unit(6 + 2 / 12, "feet"),
  24246. default: true
  24247. },
  24248. ]
  24249. ))
  24250. characterMakers.push(() => makeCharacter(
  24251. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24252. {
  24253. front: {
  24254. height: math.unit(11, "feet"),
  24255. weight: math.unit(1000, "lb"),
  24256. name: "Front",
  24257. image: {
  24258. source: "./media/characters/alex/front.svg",
  24259. bottom: 44.5 / 620
  24260. }
  24261. },
  24262. },
  24263. [
  24264. {
  24265. name: "Micro",
  24266. height: math.unit(5, "inches")
  24267. },
  24268. {
  24269. name: "Normal",
  24270. height: math.unit(11, "feet"),
  24271. default: true
  24272. },
  24273. {
  24274. name: "Macro",
  24275. height: math.unit(9.5e9, "feet")
  24276. },
  24277. {
  24278. name: "Max Size",
  24279. height: math.unit(1.4e283, "yottameters")
  24280. },
  24281. ]
  24282. ))
  24283. characterMakers.push(() => makeCharacter(
  24284. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24285. {
  24286. female: {
  24287. height: math.unit(29.9, "m"),
  24288. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24289. name: "Female",
  24290. image: {
  24291. source: "./media/characters/zenari/female.svg",
  24292. extra: 3281.6 / 3217,
  24293. bottom: 72.2 / 3353
  24294. }
  24295. },
  24296. male: {
  24297. height: math.unit(27.7, "m"),
  24298. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24299. name: "Male",
  24300. image: {
  24301. source: "./media/characters/zenari/male.svg",
  24302. extra: 3008 / 2991,
  24303. bottom: 54.6 / 3069
  24304. }
  24305. },
  24306. },
  24307. [
  24308. {
  24309. name: "Macro",
  24310. height: math.unit(29.7, "meters"),
  24311. default: true
  24312. },
  24313. ]
  24314. ))
  24315. characterMakers.push(() => makeCharacter(
  24316. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24317. {
  24318. female: {
  24319. height: math.unit(23.8, "m"),
  24320. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24321. name: "Female",
  24322. image: {
  24323. source: "./media/characters/mactarian/female.svg",
  24324. extra: 2662 / 2569,
  24325. bottom: 73 / 2736
  24326. }
  24327. },
  24328. male: {
  24329. height: math.unit(23.8, "m"),
  24330. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24331. name: "Male",
  24332. image: {
  24333. source: "./media/characters/mactarian/male.svg",
  24334. extra: 2673 / 2600,
  24335. bottom: 76 / 2750
  24336. }
  24337. },
  24338. },
  24339. [
  24340. {
  24341. name: "Macro",
  24342. height: math.unit(23.8, "meters"),
  24343. default: true
  24344. },
  24345. ]
  24346. ))
  24347. characterMakers.push(() => makeCharacter(
  24348. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24349. {
  24350. female: {
  24351. height: math.unit(19.3, "m"),
  24352. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24353. name: "Female",
  24354. image: {
  24355. source: "./media/characters/umok/female.svg",
  24356. extra: 2186 / 2078,
  24357. bottom: 87 / 2277
  24358. }
  24359. },
  24360. male: {
  24361. height: math.unit(19.5, "m"),
  24362. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24363. name: "Male",
  24364. image: {
  24365. source: "./media/characters/umok/male.svg",
  24366. extra: 2233 / 2140,
  24367. bottom: 24.4 / 2258
  24368. }
  24369. },
  24370. },
  24371. [
  24372. {
  24373. name: "Macro",
  24374. height: math.unit(19.3, "meters"),
  24375. default: true
  24376. },
  24377. ]
  24378. ))
  24379. characterMakers.push(() => makeCharacter(
  24380. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24381. {
  24382. female: {
  24383. height: math.unit(26.15, "m"),
  24384. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24385. name: "Female",
  24386. image: {
  24387. source: "./media/characters/joraxian/female.svg",
  24388. extra: 2912 / 2824,
  24389. bottom: 36 / 2956
  24390. }
  24391. },
  24392. male: {
  24393. height: math.unit(25.4, "m"),
  24394. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24395. name: "Male",
  24396. image: {
  24397. source: "./media/characters/joraxian/male.svg",
  24398. extra: 2877 / 2721,
  24399. bottom: 82 / 2967
  24400. }
  24401. },
  24402. },
  24403. [
  24404. {
  24405. name: "Macro",
  24406. height: math.unit(26.15, "meters"),
  24407. default: true
  24408. },
  24409. ]
  24410. ))
  24411. characterMakers.push(() => makeCharacter(
  24412. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24413. {
  24414. female: {
  24415. height: math.unit(21.6, "m"),
  24416. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24417. name: "Female",
  24418. image: {
  24419. source: "./media/characters/sthara/female.svg",
  24420. extra: 2516 / 2347,
  24421. bottom: 21.5 / 2537
  24422. }
  24423. },
  24424. male: {
  24425. height: math.unit(24, "m"),
  24426. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24427. name: "Male",
  24428. image: {
  24429. source: "./media/characters/sthara/male.svg",
  24430. extra: 2732 / 2607,
  24431. bottom: 23 / 2732
  24432. }
  24433. },
  24434. },
  24435. [
  24436. {
  24437. name: "Macro",
  24438. height: math.unit(21.6, "meters"),
  24439. default: true
  24440. },
  24441. ]
  24442. ))
  24443. characterMakers.push(() => makeCharacter(
  24444. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24445. {
  24446. front: {
  24447. height: math.unit(6 + 4 / 12, "feet"),
  24448. weight: math.unit(175, "lb"),
  24449. name: "Front",
  24450. image: {
  24451. source: "./media/characters/luka-bryzant/front.svg",
  24452. extra: 311 / 289,
  24453. bottom: 4 / 315
  24454. }
  24455. },
  24456. back: {
  24457. height: math.unit(6 + 4 / 12, "feet"),
  24458. weight: math.unit(175, "lb"),
  24459. name: "Back",
  24460. image: {
  24461. source: "./media/characters/luka-bryzant/back.svg",
  24462. extra: 311 / 289,
  24463. bottom: 3.8 / 313.7
  24464. }
  24465. },
  24466. },
  24467. [
  24468. {
  24469. name: "Micro",
  24470. height: math.unit(10, "inches")
  24471. },
  24472. {
  24473. name: "Normal",
  24474. height: math.unit(6 + 4 / 12, "feet"),
  24475. default: true
  24476. },
  24477. {
  24478. name: "Large",
  24479. height: math.unit(12, "feet")
  24480. },
  24481. ]
  24482. ))
  24483. characterMakers.push(() => makeCharacter(
  24484. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24485. {
  24486. front: {
  24487. height: math.unit(5 + 7 / 12, "feet"),
  24488. weight: math.unit(185, "lb"),
  24489. name: "Front",
  24490. image: {
  24491. source: "./media/characters/aman-aquila/front.svg",
  24492. extra: 1013 / 976,
  24493. bottom: 45.6 / 1057
  24494. }
  24495. },
  24496. side: {
  24497. height: math.unit(5 + 7 / 12, "feet"),
  24498. weight: math.unit(185, "lb"),
  24499. name: "Side",
  24500. image: {
  24501. source: "./media/characters/aman-aquila/side.svg",
  24502. extra: 1054 / 1011,
  24503. bottom: 15 / 1070
  24504. }
  24505. },
  24506. back: {
  24507. height: math.unit(5 + 7 / 12, "feet"),
  24508. weight: math.unit(185, "lb"),
  24509. name: "Back",
  24510. image: {
  24511. source: "./media/characters/aman-aquila/back.svg",
  24512. extra: 1026 / 970,
  24513. bottom: 12 / 1039
  24514. }
  24515. },
  24516. head: {
  24517. height: math.unit(1.211, "feet"),
  24518. name: "Head",
  24519. image: {
  24520. source: "./media/characters/aman-aquila/head.svg",
  24521. }
  24522. },
  24523. },
  24524. [
  24525. {
  24526. name: "Minimicro",
  24527. height: math.unit(0.057, "inches")
  24528. },
  24529. {
  24530. name: "Micro",
  24531. height: math.unit(7, "inches")
  24532. },
  24533. {
  24534. name: "Mini",
  24535. height: math.unit(3 + 7 / 12, "feet")
  24536. },
  24537. {
  24538. name: "Normal",
  24539. height: math.unit(5 + 7 / 12, "feet"),
  24540. default: true
  24541. },
  24542. {
  24543. name: "Macro",
  24544. height: math.unit(157 + 7 / 12, "feet")
  24545. },
  24546. {
  24547. name: "Megamacro",
  24548. height: math.unit(1557 + 7 / 12, "feet")
  24549. },
  24550. {
  24551. name: "Gigamacro",
  24552. height: math.unit(15557 + 7 / 12, "feet")
  24553. },
  24554. ]
  24555. ))
  24556. characterMakers.push(() => makeCharacter(
  24557. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24558. {
  24559. front: {
  24560. height: math.unit(3 + 2 / 12, "inches"),
  24561. weight: math.unit(0.3, "ounces"),
  24562. name: "Front",
  24563. image: {
  24564. source: "./media/characters/hiphae/front.svg",
  24565. extra: 1931 / 1683,
  24566. bottom: 24 / 1955
  24567. }
  24568. },
  24569. },
  24570. [
  24571. {
  24572. name: "Normal",
  24573. height: math.unit(3 + 1 / 2, "inches"),
  24574. default: true
  24575. },
  24576. ]
  24577. ))
  24578. characterMakers.push(() => makeCharacter(
  24579. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24580. {
  24581. front: {
  24582. height: math.unit(5 + 10 / 12, "feet"),
  24583. weight: math.unit(165, "lb"),
  24584. name: "Front",
  24585. image: {
  24586. source: "./media/characters/nicky/front.svg",
  24587. extra: 3144 / 2886,
  24588. bottom: 45.6 / 3192
  24589. }
  24590. },
  24591. back: {
  24592. height: math.unit(5 + 10 / 12, "feet"),
  24593. weight: math.unit(165, "lb"),
  24594. name: "Back",
  24595. image: {
  24596. source: "./media/characters/nicky/back.svg",
  24597. extra: 3055 / 2804,
  24598. bottom: 28.4 / 3087
  24599. }
  24600. },
  24601. frontclothed: {
  24602. height: math.unit(5 + 10 / 12, "feet"),
  24603. weight: math.unit(165, "lb"),
  24604. name: "Front-clothed",
  24605. image: {
  24606. source: "./media/characters/nicky/front-clothed.svg",
  24607. extra: 3184.9 / 2926.9,
  24608. bottom: 86.5 / 3239.9
  24609. }
  24610. },
  24611. foot: {
  24612. height: math.unit(1.16, "feet"),
  24613. name: "Foot",
  24614. image: {
  24615. source: "./media/characters/nicky/foot.svg"
  24616. }
  24617. },
  24618. feet: {
  24619. height: math.unit(1.34, "feet"),
  24620. name: "Feet",
  24621. image: {
  24622. source: "./media/characters/nicky/feet.svg"
  24623. }
  24624. },
  24625. maw: {
  24626. height: math.unit(0.9, "feet"),
  24627. name: "Maw",
  24628. image: {
  24629. source: "./media/characters/nicky/maw.svg"
  24630. }
  24631. },
  24632. },
  24633. [
  24634. {
  24635. name: "Normal",
  24636. height: math.unit(5 + 10 / 12, "feet"),
  24637. default: true
  24638. },
  24639. {
  24640. name: "Macro",
  24641. height: math.unit(60, "feet")
  24642. },
  24643. {
  24644. name: "Megamacro",
  24645. height: math.unit(1, "mile")
  24646. },
  24647. ]
  24648. ))
  24649. characterMakers.push(() => makeCharacter(
  24650. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24651. {
  24652. side: {
  24653. height: math.unit(10, "feet"),
  24654. weight: math.unit(600, "lb"),
  24655. name: "Side",
  24656. image: {
  24657. source: "./media/characters/blair/side.svg",
  24658. bottom: 16.6 / 475,
  24659. extra: 458 / 431
  24660. }
  24661. },
  24662. },
  24663. [
  24664. {
  24665. name: "Micro",
  24666. height: math.unit(8, "inches")
  24667. },
  24668. {
  24669. name: "Normal",
  24670. height: math.unit(10, "feet"),
  24671. default: true
  24672. },
  24673. {
  24674. name: "Macro",
  24675. height: math.unit(180, "feet")
  24676. },
  24677. ]
  24678. ))
  24679. characterMakers.push(() => makeCharacter(
  24680. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24681. {
  24682. front: {
  24683. height: math.unit(5 + 4 / 12, "feet"),
  24684. weight: math.unit(125, "lb"),
  24685. name: "Front",
  24686. image: {
  24687. source: "./media/characters/fisher/front.svg",
  24688. extra: 444 / 390,
  24689. bottom: 2 / 444.8
  24690. }
  24691. },
  24692. },
  24693. [
  24694. {
  24695. name: "Micro",
  24696. height: math.unit(4, "inches")
  24697. },
  24698. {
  24699. name: "Normal",
  24700. height: math.unit(5 + 4 / 12, "feet"),
  24701. default: true
  24702. },
  24703. {
  24704. name: "Macro",
  24705. height: math.unit(100, "feet")
  24706. },
  24707. ]
  24708. ))
  24709. characterMakers.push(() => makeCharacter(
  24710. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24711. {
  24712. front: {
  24713. height: math.unit(6.71, "feet"),
  24714. weight: math.unit(200, "lb"),
  24715. capacity: math.unit(1000000, "people"),
  24716. name: "Front",
  24717. image: {
  24718. source: "./media/characters/gliss/front.svg",
  24719. extra: 2347 / 2231,
  24720. bottom: 113 / 2462
  24721. }
  24722. },
  24723. hammerspaceSize: {
  24724. height: math.unit(6.71 * 717, "feet"),
  24725. weight: math.unit(200, "lb"),
  24726. capacity: math.unit(1000000, "people"),
  24727. name: "Hammerspace Size",
  24728. image: {
  24729. source: "./media/characters/gliss/front.svg",
  24730. extra: 2347 / 2231,
  24731. bottom: 113 / 2462
  24732. }
  24733. },
  24734. },
  24735. [
  24736. {
  24737. name: "Normal",
  24738. height: math.unit(6.71, "feet"),
  24739. default: true
  24740. },
  24741. ]
  24742. ))
  24743. characterMakers.push(() => makeCharacter(
  24744. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24745. {
  24746. side: {
  24747. height: math.unit(1.44, "m"),
  24748. weight: math.unit(80, "kg"),
  24749. name: "Side",
  24750. image: {
  24751. source: "./media/characters/dune-anderson/side.svg",
  24752. bottom: 49 / 1426
  24753. }
  24754. },
  24755. },
  24756. [
  24757. {
  24758. name: "Wolf-sized",
  24759. height: math.unit(1.44, "meters")
  24760. },
  24761. {
  24762. name: "Normal",
  24763. height: math.unit(5.05, "meters"),
  24764. default: true
  24765. },
  24766. {
  24767. name: "Big",
  24768. height: math.unit(14.4, "meters")
  24769. },
  24770. {
  24771. name: "Huge",
  24772. height: math.unit(144, "meters")
  24773. },
  24774. ]
  24775. ))
  24776. characterMakers.push(() => makeCharacter(
  24777. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24778. {
  24779. front: {
  24780. height: math.unit(7, "feet"),
  24781. weight: math.unit(425, "lb"),
  24782. name: "Front",
  24783. image: {
  24784. source: "./media/characters/hind/front.svg",
  24785. extra: 2091 / 1860,
  24786. bottom: 129 / 2220
  24787. }
  24788. },
  24789. back: {
  24790. height: math.unit(7, "feet"),
  24791. weight: math.unit(425, "lb"),
  24792. name: "Back",
  24793. image: {
  24794. source: "./media/characters/hind/back.svg",
  24795. extra: 2091 / 1860,
  24796. bottom: 24.6 / 2309
  24797. }
  24798. },
  24799. tail: {
  24800. height: math.unit(2.8, "feet"),
  24801. name: "Tail",
  24802. image: {
  24803. source: "./media/characters/hind/tail.svg"
  24804. }
  24805. },
  24806. head: {
  24807. height: math.unit(2.55, "feet"),
  24808. name: "Head",
  24809. image: {
  24810. source: "./media/characters/hind/head.svg"
  24811. }
  24812. },
  24813. },
  24814. [
  24815. {
  24816. name: "XS",
  24817. height: math.unit(0.7, "feet")
  24818. },
  24819. {
  24820. name: "Normal",
  24821. height: math.unit(7, "feet"),
  24822. default: true
  24823. },
  24824. {
  24825. name: "XL",
  24826. height: math.unit(70, "feet")
  24827. },
  24828. ]
  24829. ))
  24830. characterMakers.push(() => makeCharacter(
  24831. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  24832. {
  24833. front: {
  24834. height: math.unit(6, "feet"),
  24835. weight: math.unit(150, "lb"),
  24836. name: "Front",
  24837. image: {
  24838. source: "./media/characters/tharquench-sizestealer/front.svg",
  24839. extra: 2318 / 2063,
  24840. bottom: 93.4 / 2410
  24841. }
  24842. },
  24843. },
  24844. [
  24845. {
  24846. name: "Nano",
  24847. height: math.unit(1, "mm")
  24848. },
  24849. {
  24850. name: "Micro",
  24851. height: math.unit(1, "cm")
  24852. },
  24853. {
  24854. name: "Normal",
  24855. height: math.unit(2.1, "meters"),
  24856. default: true
  24857. },
  24858. ]
  24859. ))
  24860. characterMakers.push(() => makeCharacter(
  24861. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24862. {
  24863. front: {
  24864. height: math.unit(7 + 5 / 12, "feet"),
  24865. weight: math.unit(357, "lb"),
  24866. name: "Front",
  24867. image: {
  24868. source: "./media/characters/solex-draconov/front.svg",
  24869. extra: 1993 / 1865,
  24870. bottom: 117 / 2111
  24871. }
  24872. },
  24873. },
  24874. [
  24875. {
  24876. name: "Natural Height",
  24877. height: math.unit(7 + 5 / 12, "feet"),
  24878. default: true
  24879. },
  24880. {
  24881. name: "Macro",
  24882. height: math.unit(350, "feet")
  24883. },
  24884. {
  24885. name: "Macro+",
  24886. height: math.unit(1000, "feet")
  24887. },
  24888. {
  24889. name: "Megamacro",
  24890. height: math.unit(20, "km")
  24891. },
  24892. {
  24893. name: "Megamacro+",
  24894. height: math.unit(1000, "km")
  24895. },
  24896. {
  24897. name: "Gigamacro",
  24898. height: math.unit(2.5, "Gm")
  24899. },
  24900. {
  24901. name: "Teramacro",
  24902. height: math.unit(15, "Tm")
  24903. },
  24904. {
  24905. name: "Galactic",
  24906. height: math.unit(30, "Zm")
  24907. },
  24908. {
  24909. name: "Universal",
  24910. height: math.unit(21000, "Ym")
  24911. },
  24912. {
  24913. name: "Omniversal",
  24914. height: math.unit(9.861e50, "Ym")
  24915. },
  24916. {
  24917. name: "Existential",
  24918. height: math.unit(1e300, "meters")
  24919. },
  24920. ]
  24921. ))
  24922. characterMakers.push(() => makeCharacter(
  24923. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24924. {
  24925. side: {
  24926. height: math.unit(25, "feet"),
  24927. weight: math.unit(90000, "lb"),
  24928. name: "Side",
  24929. image: {
  24930. source: "./media/characters/mandarax/side.svg",
  24931. extra: 614 / 332,
  24932. bottom: 55 / 630
  24933. }
  24934. },
  24935. head: {
  24936. height: math.unit(11.4, "feet"),
  24937. name: "Head",
  24938. image: {
  24939. source: "./media/characters/mandarax/head.svg"
  24940. }
  24941. },
  24942. belly: {
  24943. height: math.unit(33, "feet"),
  24944. name: "Belly",
  24945. capacity: math.unit(500, "people"),
  24946. image: {
  24947. source: "./media/characters/mandarax/belly.svg"
  24948. }
  24949. },
  24950. dick: {
  24951. height: math.unit(8.46, "feet"),
  24952. name: "Dick",
  24953. image: {
  24954. source: "./media/characters/mandarax/dick.svg"
  24955. }
  24956. },
  24957. top: {
  24958. height: math.unit(28, "meters"),
  24959. name: "Top",
  24960. image: {
  24961. source: "./media/characters/mandarax/top.svg"
  24962. }
  24963. },
  24964. },
  24965. [
  24966. {
  24967. name: "Normal",
  24968. height: math.unit(25, "feet"),
  24969. default: true
  24970. },
  24971. ]
  24972. ))
  24973. characterMakers.push(() => makeCharacter(
  24974. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24975. {
  24976. front: {
  24977. height: math.unit(5, "feet"),
  24978. weight: math.unit(90, "lb"),
  24979. name: "Front",
  24980. image: {
  24981. source: "./media/characters/pixil/front.svg",
  24982. extra: 2000 / 1618,
  24983. bottom: 12.3 / 2011
  24984. }
  24985. },
  24986. },
  24987. [
  24988. {
  24989. name: "Normal",
  24990. height: math.unit(5, "feet"),
  24991. default: true
  24992. },
  24993. {
  24994. name: "Megamacro",
  24995. height: math.unit(10, "miles"),
  24996. },
  24997. ]
  24998. ))
  24999. characterMakers.push(() => makeCharacter(
  25000. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25001. {
  25002. front: {
  25003. height: math.unit(7 + 2 / 12, "feet"),
  25004. weight: math.unit(200, "lb"),
  25005. name: "Front",
  25006. image: {
  25007. source: "./media/characters/angel/front.svg",
  25008. extra: 1830 / 1737,
  25009. bottom: 22.6 / 1854,
  25010. }
  25011. },
  25012. },
  25013. [
  25014. {
  25015. name: "Normal",
  25016. height: math.unit(7 + 2 / 12, "feet"),
  25017. default: true
  25018. },
  25019. {
  25020. name: "Macro",
  25021. height: math.unit(1000, "feet")
  25022. },
  25023. {
  25024. name: "Megamacro",
  25025. height: math.unit(2, "miles")
  25026. },
  25027. {
  25028. name: "Gigamacro",
  25029. height: math.unit(20, "earths")
  25030. },
  25031. ]
  25032. ))
  25033. characterMakers.push(() => makeCharacter(
  25034. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25035. {
  25036. front: {
  25037. height: math.unit(5, "feet"),
  25038. weight: math.unit(180, "lb"),
  25039. name: "Front",
  25040. image: {
  25041. source: "./media/characters/mekana/front.svg",
  25042. extra: 1671 / 1605,
  25043. bottom: 3.5 / 1691
  25044. }
  25045. },
  25046. side: {
  25047. height: math.unit(5, "feet"),
  25048. weight: math.unit(180, "lb"),
  25049. name: "Side",
  25050. image: {
  25051. source: "./media/characters/mekana/side.svg",
  25052. extra: 1671 / 1605,
  25053. bottom: 3.5 / 1691
  25054. }
  25055. },
  25056. back: {
  25057. height: math.unit(5, "feet"),
  25058. weight: math.unit(180, "lb"),
  25059. name: "Back",
  25060. image: {
  25061. source: "./media/characters/mekana/back.svg",
  25062. extra: 1671 / 1605,
  25063. bottom: 3.5 / 1691
  25064. }
  25065. },
  25066. },
  25067. [
  25068. {
  25069. name: "Normal",
  25070. height: math.unit(5, "feet"),
  25071. default: true
  25072. },
  25073. ]
  25074. ))
  25075. characterMakers.push(() => makeCharacter(
  25076. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25077. {
  25078. front: {
  25079. height: math.unit(4 + 6 / 12, "feet"),
  25080. weight: math.unit(80, "lb"),
  25081. name: "Front",
  25082. image: {
  25083. source: "./media/characters/pixie/front.svg",
  25084. extra: 1924 / 1825,
  25085. bottom: 22.4 / 1946
  25086. }
  25087. },
  25088. },
  25089. [
  25090. {
  25091. name: "Normal",
  25092. height: math.unit(4 + 6 / 12, "feet"),
  25093. default: true
  25094. },
  25095. {
  25096. name: "Macro",
  25097. height: math.unit(40, "feet")
  25098. },
  25099. ]
  25100. ))
  25101. characterMakers.push(() => makeCharacter(
  25102. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25103. {
  25104. front: {
  25105. height: math.unit(2.1, "meters"),
  25106. weight: math.unit(200, "lb"),
  25107. name: "Front",
  25108. image: {
  25109. source: "./media/characters/the-lascivious/front.svg",
  25110. extra: 1 / 0.893,
  25111. bottom: 3.5 / 573.7
  25112. }
  25113. },
  25114. },
  25115. [
  25116. {
  25117. name: "Human Scale",
  25118. height: math.unit(2.1, "meters")
  25119. },
  25120. {
  25121. name: "Wolxi Scale",
  25122. height: math.unit(46.2, "m"),
  25123. default: true
  25124. },
  25125. {
  25126. name: "Boinker of Buildings",
  25127. height: math.unit(10, "km")
  25128. },
  25129. {
  25130. name: "Shagger of Skyscrapers",
  25131. height: math.unit(40, "km")
  25132. },
  25133. {
  25134. name: "Banger of Boroughs",
  25135. height: math.unit(4000, "km")
  25136. },
  25137. {
  25138. name: "Screwer of States",
  25139. height: math.unit(100000, "km")
  25140. },
  25141. {
  25142. name: "Pounder of Planets",
  25143. height: math.unit(2000000, "km")
  25144. },
  25145. ]
  25146. ))
  25147. characterMakers.push(() => makeCharacter(
  25148. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25149. {
  25150. front: {
  25151. height: math.unit(6, "feet"),
  25152. weight: math.unit(150, "lb"),
  25153. name: "Front",
  25154. image: {
  25155. source: "./media/characters/aj/front.svg",
  25156. extra: 2039 / 1562,
  25157. bottom: 40 / 2079
  25158. }
  25159. },
  25160. },
  25161. [
  25162. {
  25163. name: "Normal",
  25164. height: math.unit(11 + 6 / 12, "feet"),
  25165. default: true
  25166. },
  25167. {
  25168. name: "Megamacro",
  25169. height: math.unit(60, "megameters")
  25170. },
  25171. ]
  25172. ))
  25173. characterMakers.push(() => makeCharacter(
  25174. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25175. {
  25176. side: {
  25177. height: math.unit(31 + 8 / 12, "feet"),
  25178. weight: math.unit(75000, "kg"),
  25179. name: "Side",
  25180. image: {
  25181. source: "./media/characters/koros/side.svg",
  25182. extra: 1442 / 1297,
  25183. bottom: 122.7 / 1562
  25184. }
  25185. },
  25186. dicksKingsCrown: {
  25187. height: math.unit(6, "feet"),
  25188. name: "Dicks (King's Crown)",
  25189. image: {
  25190. source: "./media/characters/koros/dicks-kings-crown.svg"
  25191. }
  25192. },
  25193. dicksTailSet: {
  25194. height: math.unit(3, "feet"),
  25195. name: "Dicks (Tail Set)",
  25196. image: {
  25197. source: "./media/characters/koros/dicks-tail-set.svg"
  25198. }
  25199. },
  25200. dickCumming: {
  25201. height: math.unit(7.98, "feet"),
  25202. name: "Dick (Cumming)",
  25203. image: {
  25204. source: "./media/characters/koros/dick-cumming.svg"
  25205. }
  25206. },
  25207. dicksBack: {
  25208. height: math.unit(5.9, "feet"),
  25209. name: "Dicks (Back)",
  25210. image: {
  25211. source: "./media/characters/koros/dicks-back.svg"
  25212. }
  25213. },
  25214. dicksFront: {
  25215. height: math.unit(3.72, "feet"),
  25216. name: "Dicks (Front)",
  25217. image: {
  25218. source: "./media/characters/koros/dicks-front.svg"
  25219. }
  25220. },
  25221. dicksPeeking: {
  25222. height: math.unit(3.0, "feet"),
  25223. name: "Dicks (Peeking)",
  25224. image: {
  25225. source: "./media/characters/koros/dicks-peeking.svg"
  25226. }
  25227. },
  25228. eye: {
  25229. height: math.unit(1.7, "feet"),
  25230. name: "Eye",
  25231. image: {
  25232. source: "./media/characters/koros/eye.svg"
  25233. }
  25234. },
  25235. headFront: {
  25236. height: math.unit(11.69, "feet"),
  25237. name: "Head (Front)",
  25238. image: {
  25239. source: "./media/characters/koros/head-front.svg"
  25240. }
  25241. },
  25242. headSide: {
  25243. height: math.unit(14, "feet"),
  25244. name: "Head (Side)",
  25245. image: {
  25246. source: "./media/characters/koros/head-side.svg"
  25247. }
  25248. },
  25249. leg: {
  25250. height: math.unit(17, "feet"),
  25251. name: "Leg",
  25252. image: {
  25253. source: "./media/characters/koros/leg.svg"
  25254. }
  25255. },
  25256. mawSide: {
  25257. height: math.unit(12.8, "feet"),
  25258. name: "Maw (Side)",
  25259. image: {
  25260. source: "./media/characters/koros/maw-side.svg"
  25261. }
  25262. },
  25263. mawSpitting: {
  25264. height: math.unit(17, "feet"),
  25265. name: "Maw (Spitting)",
  25266. image: {
  25267. source: "./media/characters/koros/maw-spitting.svg"
  25268. }
  25269. },
  25270. slit: {
  25271. height: math.unit(2.8, "feet"),
  25272. name: "Slit",
  25273. image: {
  25274. source: "./media/characters/koros/slit.svg"
  25275. }
  25276. },
  25277. stomach: {
  25278. height: math.unit(6.8, "feet"),
  25279. capacity: math.unit(20, "people"),
  25280. name: "Stomach",
  25281. image: {
  25282. source: "./media/characters/koros/stomach.svg"
  25283. }
  25284. },
  25285. wingspanBottom: {
  25286. height: math.unit(114, "feet"),
  25287. name: "Wingspan (Bottom)",
  25288. image: {
  25289. source: "./media/characters/koros/wingspan-bottom.svg"
  25290. }
  25291. },
  25292. wingspanTop: {
  25293. height: math.unit(104, "feet"),
  25294. name: "Wingspan (Top)",
  25295. image: {
  25296. source: "./media/characters/koros/wingspan-top.svg"
  25297. }
  25298. },
  25299. },
  25300. [
  25301. {
  25302. name: "Normal",
  25303. height: math.unit(31 + 8 / 12, "feet"),
  25304. default: true
  25305. },
  25306. ]
  25307. ))
  25308. characterMakers.push(() => makeCharacter(
  25309. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25310. {
  25311. front: {
  25312. height: math.unit(18 + 5 / 12, "feet"),
  25313. weight: math.unit(3750, "kg"),
  25314. name: "Front",
  25315. image: {
  25316. source: "./media/characters/vexx/front.svg",
  25317. extra: 426 / 396,
  25318. bottom: 31.5 / 458
  25319. }
  25320. },
  25321. maw: {
  25322. height: math.unit(6, "feet"),
  25323. name: "Maw",
  25324. image: {
  25325. source: "./media/characters/vexx/maw.svg"
  25326. }
  25327. },
  25328. },
  25329. [
  25330. {
  25331. name: "Normal",
  25332. height: math.unit(18 + 5 / 12, "feet"),
  25333. default: true
  25334. },
  25335. ]
  25336. ))
  25337. characterMakers.push(() => makeCharacter(
  25338. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25339. {
  25340. front: {
  25341. height: math.unit(17 + 6 / 12, "feet"),
  25342. weight: math.unit(150, "lb"),
  25343. name: "Front",
  25344. image: {
  25345. source: "./media/characters/baadra/front.svg",
  25346. extra: 3137 / 2890,
  25347. bottom: 168.4 / 3305
  25348. }
  25349. },
  25350. back: {
  25351. height: math.unit(17 + 6 / 12, "feet"),
  25352. weight: math.unit(150, "lb"),
  25353. name: "Back",
  25354. image: {
  25355. source: "./media/characters/baadra/back.svg",
  25356. extra: 3142 / 2890,
  25357. bottom: 220 / 3371
  25358. }
  25359. },
  25360. head: {
  25361. height: math.unit(5.45, "feet"),
  25362. name: "Head",
  25363. image: {
  25364. source: "./media/characters/baadra/head.svg"
  25365. }
  25366. },
  25367. headAngry: {
  25368. height: math.unit(4.95, "feet"),
  25369. name: "Head (Angry)",
  25370. image: {
  25371. source: "./media/characters/baadra/head-angry.svg"
  25372. }
  25373. },
  25374. headOpen: {
  25375. height: math.unit(6, "feet"),
  25376. name: "Head (Open)",
  25377. image: {
  25378. source: "./media/characters/baadra/head-open.svg"
  25379. }
  25380. },
  25381. },
  25382. [
  25383. {
  25384. name: "Normal",
  25385. height: math.unit(17 + 6 / 12, "feet"),
  25386. default: true
  25387. },
  25388. ]
  25389. ))
  25390. characterMakers.push(() => makeCharacter(
  25391. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25392. {
  25393. front: {
  25394. height: math.unit(7 + 3 / 12, "feet"),
  25395. weight: math.unit(180, "lb"),
  25396. name: "Front",
  25397. image: {
  25398. source: "./media/characters/juri/front.svg",
  25399. extra: 1401 / 1237,
  25400. bottom: 18.5 / 1418
  25401. }
  25402. },
  25403. side: {
  25404. height: math.unit(7 + 3 / 12, "feet"),
  25405. weight: math.unit(180, "lb"),
  25406. name: "Side",
  25407. image: {
  25408. source: "./media/characters/juri/side.svg",
  25409. extra: 1424 / 1242,
  25410. bottom: 18.5 / 1447
  25411. }
  25412. },
  25413. sitting: {
  25414. height: math.unit(6, "feet"),
  25415. weight: math.unit(180, "lb"),
  25416. name: "Sitting",
  25417. image: {
  25418. source: "./media/characters/juri/sitting.svg",
  25419. extra: 1270 / 1143,
  25420. bottom: 100 / 1343
  25421. }
  25422. },
  25423. back: {
  25424. height: math.unit(7 + 3 / 12, "feet"),
  25425. weight: math.unit(180, "lb"),
  25426. name: "Back",
  25427. image: {
  25428. source: "./media/characters/juri/back.svg",
  25429. extra: 1377 / 1240,
  25430. bottom: 23.7 / 1405
  25431. }
  25432. },
  25433. maw: {
  25434. height: math.unit(2.8, "feet"),
  25435. name: "Maw",
  25436. image: {
  25437. source: "./media/characters/juri/maw.svg"
  25438. }
  25439. },
  25440. stomach: {
  25441. height: math.unit(0.89, "feet"),
  25442. capacity: math.unit(4, "liters"),
  25443. name: "Stomach",
  25444. image: {
  25445. source: "./media/characters/juri/stomach.svg"
  25446. }
  25447. },
  25448. },
  25449. [
  25450. {
  25451. name: "Normal",
  25452. height: math.unit(7 + 3 / 12, "feet"),
  25453. default: true
  25454. },
  25455. ]
  25456. ))
  25457. characterMakers.push(() => makeCharacter(
  25458. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25459. {
  25460. fox: {
  25461. height: math.unit(5 + 6 / 12, "feet"),
  25462. weight: math.unit(140, "lb"),
  25463. name: "Fox",
  25464. image: {
  25465. source: "./media/characters/maxene-sita/fox.svg",
  25466. extra: 146 / 138,
  25467. bottom: 2.1 / 148.19
  25468. }
  25469. },
  25470. foxLaying: {
  25471. height: math.unit(1.70, "feet"),
  25472. weight: math.unit(140, "lb"),
  25473. name: "Fox (Laying)",
  25474. image: {
  25475. source: "./media/characters/maxene-sita/fox-laying.svg",
  25476. extra: 910 / 572,
  25477. bottom: 71 / 981
  25478. }
  25479. },
  25480. kitsune: {
  25481. height: math.unit(10, "feet"),
  25482. weight: math.unit(800, "lb"),
  25483. name: "Kitsune",
  25484. image: {
  25485. source: "./media/characters/maxene-sita/kitsune.svg",
  25486. extra: 185 / 176,
  25487. bottom: 4.7 / 189.9
  25488. }
  25489. },
  25490. hellhound: {
  25491. height: math.unit(10, "feet"),
  25492. weight: math.unit(700, "lb"),
  25493. name: "Hellhound",
  25494. image: {
  25495. source: "./media/characters/maxene-sita/hellhound.svg",
  25496. extra: 1600 / 1545,
  25497. bottom: 81 / 1681
  25498. }
  25499. },
  25500. },
  25501. [
  25502. {
  25503. name: "Normal",
  25504. height: math.unit(5 + 6 / 12, "feet"),
  25505. default: true
  25506. },
  25507. ]
  25508. ))
  25509. characterMakers.push(() => makeCharacter(
  25510. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25511. {
  25512. front: {
  25513. height: math.unit(3 + 4 / 12, "feet"),
  25514. weight: math.unit(70, "lb"),
  25515. name: "Front",
  25516. image: {
  25517. source: "./media/characters/maia/front.svg",
  25518. extra: 227 / 219.5,
  25519. bottom: 40 / 267
  25520. }
  25521. },
  25522. back: {
  25523. height: math.unit(3 + 4 / 12, "feet"),
  25524. weight: math.unit(70, "lb"),
  25525. name: "Back",
  25526. image: {
  25527. source: "./media/characters/maia/back.svg",
  25528. extra: 237 / 225
  25529. }
  25530. },
  25531. },
  25532. [
  25533. {
  25534. name: "Normal",
  25535. height: math.unit(3 + 4 / 12, "feet"),
  25536. default: true
  25537. },
  25538. ]
  25539. ))
  25540. characterMakers.push(() => makeCharacter(
  25541. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25542. {
  25543. front: {
  25544. height: math.unit(5 + 10 / 12, "feet"),
  25545. weight: math.unit(197, "lb"),
  25546. name: "Front",
  25547. image: {
  25548. source: "./media/characters/jabaro/front.svg",
  25549. extra: 225 / 216,
  25550. bottom: 5.06 / 230
  25551. }
  25552. },
  25553. back: {
  25554. height: math.unit(5 + 10 / 12, "feet"),
  25555. weight: math.unit(197, "lb"),
  25556. name: "Back",
  25557. image: {
  25558. source: "./media/characters/jabaro/back.svg",
  25559. extra: 225 / 219,
  25560. bottom: 1.9 / 227
  25561. }
  25562. },
  25563. },
  25564. [
  25565. {
  25566. name: "Normal",
  25567. height: math.unit(5 + 10 / 12, "feet"),
  25568. default: true
  25569. },
  25570. ]
  25571. ))
  25572. characterMakers.push(() => makeCharacter(
  25573. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25574. {
  25575. front: {
  25576. height: math.unit(5 + 8 / 12, "feet"),
  25577. weight: math.unit(139, "lb"),
  25578. name: "Front",
  25579. image: {
  25580. source: "./media/characters/risa/front.svg",
  25581. extra: 270 / 260,
  25582. bottom: 11.2 / 282
  25583. }
  25584. },
  25585. back: {
  25586. height: math.unit(5 + 8 / 12, "feet"),
  25587. weight: math.unit(139, "lb"),
  25588. name: "Back",
  25589. image: {
  25590. source: "./media/characters/risa/back.svg",
  25591. extra: 264 / 255,
  25592. bottom: 4 / 268
  25593. }
  25594. },
  25595. },
  25596. [
  25597. {
  25598. name: "Normal",
  25599. height: math.unit(5 + 8 / 12, "feet"),
  25600. default: true
  25601. },
  25602. ]
  25603. ))
  25604. characterMakers.push(() => makeCharacter(
  25605. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25606. {
  25607. front: {
  25608. height: math.unit(2 + 11 / 12, "feet"),
  25609. weight: math.unit(30, "lb"),
  25610. name: "Front",
  25611. image: {
  25612. source: "./media/characters/weatley/front.svg",
  25613. bottom: 10.7 / 414,
  25614. extra: 403.5 / 362
  25615. }
  25616. },
  25617. back: {
  25618. height: math.unit(2 + 11 / 12, "feet"),
  25619. weight: math.unit(30, "lb"),
  25620. name: "Back",
  25621. image: {
  25622. source: "./media/characters/weatley/back.svg",
  25623. bottom: 10.7 / 414,
  25624. extra: 403.5 / 362
  25625. }
  25626. },
  25627. },
  25628. [
  25629. {
  25630. name: "Normal",
  25631. height: math.unit(2 + 11 / 12, "feet"),
  25632. default: true
  25633. },
  25634. ]
  25635. ))
  25636. characterMakers.push(() => makeCharacter(
  25637. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25638. {
  25639. front: {
  25640. height: math.unit(5 + 2 / 12, "feet"),
  25641. weight: math.unit(50, "kg"),
  25642. name: "Front",
  25643. image: {
  25644. source: "./media/characters/mercury-crescent/front.svg",
  25645. extra: 1088 / 1033,
  25646. bottom: 18.9 / 1109
  25647. }
  25648. },
  25649. },
  25650. [
  25651. {
  25652. name: "Normal",
  25653. height: math.unit(5 + 2 / 12, "feet"),
  25654. default: true
  25655. },
  25656. ]
  25657. ))
  25658. characterMakers.push(() => makeCharacter(
  25659. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25660. {
  25661. front: {
  25662. height: math.unit(2, "feet"),
  25663. weight: math.unit(15, "kg"),
  25664. name: "Front",
  25665. image: {
  25666. source: "./media/characters/diamond-jones/front.svg",
  25667. extra: 727/723,
  25668. bottom: 46/773
  25669. }
  25670. },
  25671. },
  25672. [
  25673. {
  25674. name: "Normal",
  25675. height: math.unit(2, "feet"),
  25676. default: true
  25677. },
  25678. ]
  25679. ))
  25680. characterMakers.push(() => makeCharacter(
  25681. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25682. {
  25683. front: {
  25684. height: math.unit(3, "feet"),
  25685. weight: math.unit(30, "kg"),
  25686. name: "Front",
  25687. image: {
  25688. source: "./media/characters/sweet-bit/front.svg",
  25689. extra: 675 / 567,
  25690. bottom: 27.7 / 703
  25691. }
  25692. },
  25693. },
  25694. [
  25695. {
  25696. name: "Normal",
  25697. height: math.unit(3, "feet"),
  25698. default: true
  25699. },
  25700. ]
  25701. ))
  25702. characterMakers.push(() => makeCharacter(
  25703. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25704. {
  25705. side: {
  25706. height: math.unit(9.178, "feet"),
  25707. weight: math.unit(500, "lb"),
  25708. name: "Side",
  25709. image: {
  25710. source: "./media/characters/umbrazen/side.svg",
  25711. extra: 1730 / 1473,
  25712. bottom: 34.6 / 1765
  25713. }
  25714. },
  25715. },
  25716. [
  25717. {
  25718. name: "Normal",
  25719. height: math.unit(9.178, "feet"),
  25720. default: true
  25721. },
  25722. ]
  25723. ))
  25724. characterMakers.push(() => makeCharacter(
  25725. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25726. {
  25727. front: {
  25728. height: math.unit(10, "feet"),
  25729. weight: math.unit(750, "lb"),
  25730. name: "Front",
  25731. image: {
  25732. source: "./media/characters/arlist/front.svg",
  25733. extra: 961 / 778,
  25734. bottom: 6.2 / 986
  25735. }
  25736. },
  25737. },
  25738. [
  25739. {
  25740. name: "Normal",
  25741. height: math.unit(10, "feet"),
  25742. default: true
  25743. },
  25744. ]
  25745. ))
  25746. characterMakers.push(() => makeCharacter(
  25747. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25748. {
  25749. front: {
  25750. height: math.unit(5 + 1 / 12, "feet"),
  25751. weight: math.unit(110, "lb"),
  25752. name: "Front",
  25753. image: {
  25754. source: "./media/characters/aradel/front.svg",
  25755. extra: 324 / 303,
  25756. bottom: 3.6 / 329.4
  25757. }
  25758. },
  25759. },
  25760. [
  25761. {
  25762. name: "Normal",
  25763. height: math.unit(5 + 1 / 12, "feet"),
  25764. default: true
  25765. },
  25766. ]
  25767. ))
  25768. characterMakers.push(() => makeCharacter(
  25769. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25770. {
  25771. front: {
  25772. height: math.unit(3 + 8 / 12, "feet"),
  25773. weight: math.unit(50, "lb"),
  25774. name: "Front",
  25775. image: {
  25776. source: "./media/characters/serryn/front.svg",
  25777. extra: 1792 / 1656,
  25778. bottom: 43.5 / 1840
  25779. }
  25780. },
  25781. },
  25782. [
  25783. {
  25784. name: "Normal",
  25785. height: math.unit(3 + 8 / 12, "feet"),
  25786. default: true
  25787. },
  25788. ]
  25789. ))
  25790. characterMakers.push(() => makeCharacter(
  25791. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25792. {
  25793. front: {
  25794. height: math.unit(7 + 10 / 12, "feet"),
  25795. weight: math.unit(255, "lb"),
  25796. name: "Front",
  25797. image: {
  25798. source: "./media/characters/xavier-thyme/front.svg",
  25799. extra: 3733 / 3642,
  25800. bottom: 131 / 3869
  25801. }
  25802. },
  25803. frontRaven: {
  25804. height: math.unit(7 + 10 / 12, "feet"),
  25805. weight: math.unit(255, "lb"),
  25806. name: "Front (Raven)",
  25807. image: {
  25808. source: "./media/characters/xavier-thyme/front-raven.svg",
  25809. extra: 4385 / 3642,
  25810. bottom: 131 / 4517
  25811. }
  25812. },
  25813. },
  25814. [
  25815. {
  25816. name: "Normal",
  25817. height: math.unit(7 + 10 / 12, "feet"),
  25818. default: true
  25819. },
  25820. ]
  25821. ))
  25822. characterMakers.push(() => makeCharacter(
  25823. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25824. {
  25825. front: {
  25826. height: math.unit(1.6, "m"),
  25827. weight: math.unit(50, "kg"),
  25828. name: "Front",
  25829. image: {
  25830. source: "./media/characters/kiki/front.svg",
  25831. extra: 4682 / 3610,
  25832. bottom: 115 / 4777
  25833. }
  25834. },
  25835. },
  25836. [
  25837. {
  25838. name: "Normal",
  25839. height: math.unit(1.6, "meters"),
  25840. default: true
  25841. },
  25842. ]
  25843. ))
  25844. characterMakers.push(() => makeCharacter(
  25845. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25846. {
  25847. front: {
  25848. height: math.unit(50, "m"),
  25849. weight: math.unit(500, "tonnes"),
  25850. name: "Front",
  25851. image: {
  25852. source: "./media/characters/ryoko/front.svg",
  25853. extra: 4632 / 3926,
  25854. bottom: 193 / 4823
  25855. }
  25856. },
  25857. },
  25858. [
  25859. {
  25860. name: "Normal",
  25861. height: math.unit(50, "meters"),
  25862. default: true
  25863. },
  25864. ]
  25865. ))
  25866. characterMakers.push(() => makeCharacter(
  25867. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25868. {
  25869. front: {
  25870. height: math.unit(30, "m"),
  25871. weight: math.unit(22, "tonnes"),
  25872. name: "Front",
  25873. image: {
  25874. source: "./media/characters/elio/front.svg",
  25875. extra: 4582 / 3720,
  25876. bottom: 236 / 4828
  25877. }
  25878. },
  25879. },
  25880. [
  25881. {
  25882. name: "Normal",
  25883. height: math.unit(30, "meters"),
  25884. default: true
  25885. },
  25886. ]
  25887. ))
  25888. characterMakers.push(() => makeCharacter(
  25889. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25890. {
  25891. front: {
  25892. height: math.unit(6 + 3 / 12, "feet"),
  25893. weight: math.unit(120, "lb"),
  25894. name: "Front",
  25895. image: {
  25896. source: "./media/characters/azura/front.svg",
  25897. extra: 1149 / 1135,
  25898. bottom: 45 / 1194
  25899. }
  25900. },
  25901. frontClothed: {
  25902. height: math.unit(6 + 3 / 12, "feet"),
  25903. weight: math.unit(120, "lb"),
  25904. name: "Front (Clothed)",
  25905. image: {
  25906. source: "./media/characters/azura/front-clothed.svg",
  25907. extra: 1149 / 1135,
  25908. bottom: 45 / 1194
  25909. }
  25910. },
  25911. },
  25912. [
  25913. {
  25914. name: "Normal",
  25915. height: math.unit(6 + 3 / 12, "feet"),
  25916. default: true
  25917. },
  25918. {
  25919. name: "Macro",
  25920. height: math.unit(20 + 6 / 12, "feet")
  25921. },
  25922. {
  25923. name: "Megamacro",
  25924. height: math.unit(12, "miles")
  25925. },
  25926. {
  25927. name: "Gigamacro",
  25928. height: math.unit(10000, "miles")
  25929. },
  25930. {
  25931. name: "Teramacro",
  25932. height: math.unit(900000, "miles")
  25933. },
  25934. ]
  25935. ))
  25936. characterMakers.push(() => makeCharacter(
  25937. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25938. {
  25939. front: {
  25940. height: math.unit(12, "feet"),
  25941. weight: math.unit(1, "ton"),
  25942. capacity: math.unit(660000, "gallons"),
  25943. name: "Front",
  25944. image: {
  25945. source: "./media/characters/zeus/front.svg",
  25946. extra: 5005 / 4717,
  25947. bottom: 363 / 5388
  25948. }
  25949. },
  25950. },
  25951. [
  25952. {
  25953. name: "Normal",
  25954. height: math.unit(12, "feet")
  25955. },
  25956. {
  25957. name: "Preferred Size",
  25958. height: math.unit(0.5, "miles"),
  25959. default: true
  25960. },
  25961. {
  25962. name: "Giga Horse",
  25963. height: math.unit(300, "miles")
  25964. },
  25965. {
  25966. name: "Riding Planets",
  25967. height: math.unit(30, "megameters")
  25968. },
  25969. {
  25970. name: "Cosmic Giant",
  25971. height: math.unit(3, "zettameters")
  25972. },
  25973. {
  25974. name: "Breeding God",
  25975. height: math.unit(9.92e22, "yottameters")
  25976. },
  25977. ]
  25978. ))
  25979. characterMakers.push(() => makeCharacter(
  25980. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25981. {
  25982. side: {
  25983. height: math.unit(9, "feet"),
  25984. weight: math.unit(1500, "kg"),
  25985. name: "Side",
  25986. image: {
  25987. source: "./media/characters/fang/side.svg",
  25988. extra: 924 / 866,
  25989. bottom: 47.5 / 972.3
  25990. }
  25991. },
  25992. },
  25993. [
  25994. {
  25995. name: "Normal",
  25996. height: math.unit(9, "feet"),
  25997. default: true
  25998. },
  25999. {
  26000. name: "Macro",
  26001. height: math.unit(75 + 6 / 12, "feet")
  26002. },
  26003. {
  26004. name: "Teramacro",
  26005. height: math.unit(50000, "miles")
  26006. },
  26007. ]
  26008. ))
  26009. characterMakers.push(() => makeCharacter(
  26010. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26011. {
  26012. front: {
  26013. height: math.unit(10, "feet"),
  26014. weight: math.unit(2, "tons"),
  26015. name: "Front",
  26016. image: {
  26017. source: "./media/characters/rekhit/front.svg",
  26018. extra: 2796 / 2590,
  26019. bottom: 225 / 3022
  26020. }
  26021. },
  26022. },
  26023. [
  26024. {
  26025. name: "Normal",
  26026. height: math.unit(10, "feet"),
  26027. default: true
  26028. },
  26029. {
  26030. name: "Macro",
  26031. height: math.unit(500, "feet")
  26032. },
  26033. ]
  26034. ))
  26035. characterMakers.push(() => makeCharacter(
  26036. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26037. {
  26038. front: {
  26039. height: math.unit(7 + 6.451 / 12, "feet"),
  26040. weight: math.unit(310, "lb"),
  26041. name: "Front",
  26042. image: {
  26043. source: "./media/characters/dahlia-verrick/front.svg",
  26044. extra: 1488 / 1365,
  26045. bottom: 6.2 / 1495
  26046. }
  26047. },
  26048. back: {
  26049. height: math.unit(7 + 6.451 / 12, "feet"),
  26050. weight: math.unit(310, "lb"),
  26051. name: "Back",
  26052. image: {
  26053. source: "./media/characters/dahlia-verrick/back.svg",
  26054. extra: 1472 / 1351,
  26055. bottom: 5.28 / 1477
  26056. }
  26057. },
  26058. frontBusiness: {
  26059. height: math.unit(7 + 6.451 / 12, "feet"),
  26060. weight: math.unit(200, "lb"),
  26061. name: "Front (Business)",
  26062. image: {
  26063. source: "./media/characters/dahlia-verrick/front-business.svg",
  26064. extra: 1478 / 1381,
  26065. bottom: 5.5 / 1484
  26066. }
  26067. },
  26068. frontCasual: {
  26069. height: math.unit(7 + 6.451 / 12, "feet"),
  26070. weight: math.unit(200, "lb"),
  26071. name: "Front (Casual)",
  26072. image: {
  26073. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26074. extra: 1478 / 1381,
  26075. bottom: 5.5 / 1484
  26076. }
  26077. },
  26078. },
  26079. [
  26080. {
  26081. name: "Travel-Sized",
  26082. height: math.unit(7.45, "inches")
  26083. },
  26084. {
  26085. name: "Normal",
  26086. height: math.unit(7 + 6.451 / 12, "feet"),
  26087. default: true
  26088. },
  26089. {
  26090. name: "Hitting the Town",
  26091. height: math.unit(37 + 8 / 12, "feet")
  26092. },
  26093. {
  26094. name: "Stomp in the Suburbs",
  26095. height: math.unit(964 + 9.728 / 12, "feet")
  26096. },
  26097. {
  26098. name: "Sit on the City",
  26099. height: math.unit(61747 + 10.592 / 12, "feet")
  26100. },
  26101. {
  26102. name: "Glomp the Globe",
  26103. height: math.unit(252919327 + 4.832 / 12, "feet")
  26104. },
  26105. ]
  26106. ))
  26107. characterMakers.push(() => makeCharacter(
  26108. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26109. {
  26110. front: {
  26111. height: math.unit(6 + 4 / 12, "feet"),
  26112. weight: math.unit(320, "lb"),
  26113. name: "Front",
  26114. image: {
  26115. source: "./media/characters/balina-mahigan/front.svg",
  26116. extra: 447 / 428,
  26117. bottom: 18 / 466
  26118. }
  26119. },
  26120. back: {
  26121. height: math.unit(6 + 4 / 12, "feet"),
  26122. weight: math.unit(320, "lb"),
  26123. name: "Back",
  26124. image: {
  26125. source: "./media/characters/balina-mahigan/back.svg",
  26126. extra: 445 / 428,
  26127. bottom: 4.07 / 448
  26128. }
  26129. },
  26130. arm: {
  26131. height: math.unit(1.88, "feet"),
  26132. name: "Arm",
  26133. image: {
  26134. source: "./media/characters/balina-mahigan/arm.svg"
  26135. }
  26136. },
  26137. backPort: {
  26138. height: math.unit(0.685, "feet"),
  26139. name: "Back Port",
  26140. image: {
  26141. source: "./media/characters/balina-mahigan/back-port.svg"
  26142. }
  26143. },
  26144. hoofpaw: {
  26145. height: math.unit(1.41, "feet"),
  26146. name: "Hoofpaw",
  26147. image: {
  26148. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26149. }
  26150. },
  26151. leftHandBack: {
  26152. height: math.unit(0.938, "feet"),
  26153. name: "Left Hand (Back)",
  26154. image: {
  26155. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26156. }
  26157. },
  26158. leftHandFront: {
  26159. height: math.unit(0.938, "feet"),
  26160. name: "Left Hand (Front)",
  26161. image: {
  26162. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26163. }
  26164. },
  26165. rightHandBack: {
  26166. height: math.unit(0.95, "feet"),
  26167. name: "Right Hand (Back)",
  26168. image: {
  26169. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26170. }
  26171. },
  26172. rightHandFront: {
  26173. height: math.unit(0.95, "feet"),
  26174. name: "Right Hand (Front)",
  26175. image: {
  26176. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26177. }
  26178. },
  26179. },
  26180. [
  26181. {
  26182. name: "Normal",
  26183. height: math.unit(6 + 4 / 12, "feet"),
  26184. default: true
  26185. },
  26186. ]
  26187. ))
  26188. characterMakers.push(() => makeCharacter(
  26189. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26190. {
  26191. front: {
  26192. height: math.unit(6, "feet"),
  26193. weight: math.unit(320, "lb"),
  26194. name: "Front",
  26195. image: {
  26196. source: "./media/characters/balina-mejeri/front.svg",
  26197. extra: 517 / 488,
  26198. bottom: 44.2 / 561
  26199. }
  26200. },
  26201. },
  26202. [
  26203. {
  26204. name: "Normal",
  26205. height: math.unit(6 + 4 / 12, "feet")
  26206. },
  26207. {
  26208. name: "Business",
  26209. height: math.unit(155, "feet"),
  26210. default: true
  26211. },
  26212. ]
  26213. ))
  26214. characterMakers.push(() => makeCharacter(
  26215. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26216. {
  26217. kneeling: {
  26218. height: math.unit(6 + 4 / 12, "feet"),
  26219. weight: math.unit(300 * 20, "lb"),
  26220. name: "Kneeling",
  26221. image: {
  26222. source: "./media/characters/balbarian/kneeling.svg",
  26223. extra: 922 / 862,
  26224. bottom: 42.4 / 965
  26225. }
  26226. },
  26227. },
  26228. [
  26229. {
  26230. name: "Normal",
  26231. height: math.unit(6 + 4 / 12, "feet")
  26232. },
  26233. {
  26234. name: "Treasured",
  26235. height: math.unit(18 + 9 / 12, "feet"),
  26236. default: true
  26237. },
  26238. {
  26239. name: "Macro",
  26240. height: math.unit(900, "feet")
  26241. },
  26242. ]
  26243. ))
  26244. characterMakers.push(() => makeCharacter(
  26245. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26246. {
  26247. front: {
  26248. height: math.unit(6 + 4 / 12, "feet"),
  26249. weight: math.unit(325, "lb"),
  26250. name: "Front",
  26251. image: {
  26252. source: "./media/characters/balina-amarini/front.svg",
  26253. extra: 415 / 403,
  26254. bottom: 19 / 433.4
  26255. }
  26256. },
  26257. back: {
  26258. height: math.unit(6 + 4 / 12, "feet"),
  26259. weight: math.unit(325, "lb"),
  26260. name: "Back",
  26261. image: {
  26262. source: "./media/characters/balina-amarini/back.svg",
  26263. extra: 415 / 403,
  26264. bottom: 13.5 / 432
  26265. }
  26266. },
  26267. overdrive: {
  26268. height: math.unit(6 + 4 / 12, "feet"),
  26269. weight: math.unit(400, "lb"),
  26270. name: "Overdrive",
  26271. image: {
  26272. source: "./media/characters/balina-amarini/overdrive.svg",
  26273. extra: 269 / 259,
  26274. bottom: 12 / 282
  26275. }
  26276. },
  26277. },
  26278. [
  26279. {
  26280. name: "Boom",
  26281. height: math.unit(9 + 10 / 12, "feet"),
  26282. default: true
  26283. },
  26284. {
  26285. name: "Macro",
  26286. height: math.unit(280, "feet")
  26287. },
  26288. ]
  26289. ))
  26290. characterMakers.push(() => makeCharacter(
  26291. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26292. {
  26293. goddess: {
  26294. height: math.unit(600, "feet"),
  26295. weight: math.unit(2000000, "tons"),
  26296. name: "Goddess",
  26297. image: {
  26298. source: "./media/characters/lady-kubwa/goddess.svg",
  26299. extra: 1240.5 / 1223,
  26300. bottom: 22 / 1263
  26301. }
  26302. },
  26303. goddesser: {
  26304. height: math.unit(900, "feet"),
  26305. weight: math.unit(20000000, "lb"),
  26306. name: "Goddess-er",
  26307. image: {
  26308. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26309. extra: 899 / 888,
  26310. bottom: 12.6 / 912
  26311. }
  26312. },
  26313. },
  26314. [
  26315. {
  26316. name: "Macro",
  26317. height: math.unit(600, "feet"),
  26318. default: true
  26319. },
  26320. {
  26321. name: "Megamacro",
  26322. height: math.unit(250, "miles")
  26323. },
  26324. ]
  26325. ))
  26326. characterMakers.push(() => makeCharacter(
  26327. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26328. {
  26329. front: {
  26330. height: math.unit(7 + 7 / 12, "feet"),
  26331. weight: math.unit(250, "lb"),
  26332. name: "Front",
  26333. image: {
  26334. source: "./media/characters/tala-grovehorn/front.svg",
  26335. extra: 2636 / 2525,
  26336. bottom: 147 / 2781
  26337. }
  26338. },
  26339. back: {
  26340. height: math.unit(7 + 7 / 12, "feet"),
  26341. weight: math.unit(250, "lb"),
  26342. name: "Back",
  26343. image: {
  26344. source: "./media/characters/tala-grovehorn/back.svg",
  26345. extra: 2635 / 2539,
  26346. bottom: 100 / 2732.8
  26347. }
  26348. },
  26349. mouth: {
  26350. height: math.unit(1.15, "feet"),
  26351. name: "Mouth",
  26352. image: {
  26353. source: "./media/characters/tala-grovehorn/mouth.svg"
  26354. }
  26355. },
  26356. dick: {
  26357. height: math.unit(2.36, "feet"),
  26358. name: "Dick",
  26359. image: {
  26360. source: "./media/characters/tala-grovehorn/dick.svg"
  26361. }
  26362. },
  26363. slit: {
  26364. height: math.unit(0.61, "feet"),
  26365. name: "Slit",
  26366. image: {
  26367. source: "./media/characters/tala-grovehorn/slit.svg"
  26368. }
  26369. },
  26370. },
  26371. [
  26372. ]
  26373. ))
  26374. characterMakers.push(() => makeCharacter(
  26375. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26376. {
  26377. front: {
  26378. height: math.unit(7 + 7 / 12, "feet"),
  26379. weight: math.unit(225, "lb"),
  26380. name: "Front",
  26381. image: {
  26382. source: "./media/characters/epona/front.svg",
  26383. extra: 2445 / 2290,
  26384. bottom: 251 / 2696
  26385. }
  26386. },
  26387. back: {
  26388. height: math.unit(7 + 7 / 12, "feet"),
  26389. weight: math.unit(225, "lb"),
  26390. name: "Back",
  26391. image: {
  26392. source: "./media/characters/epona/back.svg",
  26393. extra: 2546 / 2408,
  26394. bottom: 44 / 2589
  26395. }
  26396. },
  26397. genitals: {
  26398. height: math.unit(1.5, "feet"),
  26399. name: "Genitals",
  26400. image: {
  26401. source: "./media/characters/epona/genitals.svg"
  26402. }
  26403. },
  26404. },
  26405. [
  26406. {
  26407. name: "Normal",
  26408. height: math.unit(7 + 7 / 12, "feet"),
  26409. default: true
  26410. },
  26411. ]
  26412. ))
  26413. characterMakers.push(() => makeCharacter(
  26414. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26415. {
  26416. front: {
  26417. height: math.unit(7, "feet"),
  26418. weight: math.unit(518, "lb"),
  26419. name: "Front",
  26420. image: {
  26421. source: "./media/characters/avia-bloodbourn/front.svg",
  26422. extra: 1466 / 1350,
  26423. bottom: 65 / 1527
  26424. }
  26425. },
  26426. },
  26427. [
  26428. ]
  26429. ))
  26430. characterMakers.push(() => makeCharacter(
  26431. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26432. {
  26433. front: {
  26434. height: math.unit(9.35, "feet"),
  26435. weight: math.unit(600, "lb"),
  26436. name: "Front",
  26437. image: {
  26438. source: "./media/characters/amera/front.svg",
  26439. extra: 891 / 818,
  26440. bottom: 30 / 922.7
  26441. }
  26442. },
  26443. back: {
  26444. height: math.unit(9.35, "feet"),
  26445. weight: math.unit(600, "lb"),
  26446. name: "Back",
  26447. image: {
  26448. source: "./media/characters/amera/back.svg",
  26449. extra: 876 / 824,
  26450. bottom: 6.8 / 884
  26451. }
  26452. },
  26453. dick: {
  26454. height: math.unit(2.14, "feet"),
  26455. name: "Dick",
  26456. image: {
  26457. source: "./media/characters/amera/dick.svg"
  26458. }
  26459. },
  26460. },
  26461. [
  26462. {
  26463. name: "Normal",
  26464. height: math.unit(9.35, "feet"),
  26465. default: true
  26466. },
  26467. ]
  26468. ))
  26469. characterMakers.push(() => makeCharacter(
  26470. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26471. {
  26472. kneeling: {
  26473. height: math.unit(3 + 4 / 12, "feet"),
  26474. weight: math.unit(90, "lb"),
  26475. name: "Kneeling",
  26476. image: {
  26477. source: "./media/characters/rosewen/kneeling.svg",
  26478. extra: 1835 / 1571,
  26479. bottom: 27.7 / 1862
  26480. }
  26481. },
  26482. },
  26483. [
  26484. {
  26485. name: "Normal",
  26486. height: math.unit(3 + 4 / 12, "feet"),
  26487. default: true
  26488. },
  26489. ]
  26490. ))
  26491. characterMakers.push(() => makeCharacter(
  26492. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26493. {
  26494. front: {
  26495. height: math.unit(5 + 10 / 12, "feet"),
  26496. weight: math.unit(200, "lb"),
  26497. name: "Front",
  26498. image: {
  26499. source: "./media/characters/sabah/front.svg",
  26500. extra: 849 / 763,
  26501. bottom: 33.9 / 881
  26502. }
  26503. },
  26504. },
  26505. [
  26506. {
  26507. name: "Normal",
  26508. height: math.unit(5 + 10 / 12, "feet"),
  26509. default: true
  26510. },
  26511. ]
  26512. ))
  26513. characterMakers.push(() => makeCharacter(
  26514. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26515. {
  26516. front: {
  26517. height: math.unit(3 + 5 / 12, "feet"),
  26518. weight: math.unit(40, "kg"),
  26519. name: "Front",
  26520. image: {
  26521. source: "./media/characters/purple-flame/front.svg",
  26522. extra: 1577 / 1412,
  26523. bottom: 97 / 1694
  26524. }
  26525. },
  26526. frontDressed: {
  26527. height: math.unit(3 + 5 / 12, "feet"),
  26528. weight: math.unit(40, "kg"),
  26529. name: "Front (Dressed)",
  26530. image: {
  26531. source: "./media/characters/purple-flame/front-dressed.svg",
  26532. extra: 1577 / 1412,
  26533. bottom: 97 / 1694
  26534. }
  26535. },
  26536. headphones: {
  26537. height: math.unit(0.85, "feet"),
  26538. name: "Headphones",
  26539. image: {
  26540. source: "./media/characters/purple-flame/headphones.svg"
  26541. }
  26542. },
  26543. },
  26544. [
  26545. {
  26546. name: "Really Small",
  26547. height: math.unit(5, "cm")
  26548. },
  26549. {
  26550. name: "Micro",
  26551. height: math.unit(1 + 5 / 12, "feet")
  26552. },
  26553. {
  26554. name: "Normal",
  26555. height: math.unit(3 + 5 / 12, "feet"),
  26556. default: true
  26557. },
  26558. {
  26559. name: "Minimacro",
  26560. height: math.unit(125, "feet")
  26561. },
  26562. {
  26563. name: "Macro",
  26564. height: math.unit(0.5, "miles")
  26565. },
  26566. {
  26567. name: "Megamacro",
  26568. height: math.unit(50, "miles")
  26569. },
  26570. {
  26571. name: "Gigantic",
  26572. height: math.unit(750, "miles")
  26573. },
  26574. {
  26575. name: "Planetary",
  26576. height: math.unit(15000, "miles")
  26577. },
  26578. ]
  26579. ))
  26580. characterMakers.push(() => makeCharacter(
  26581. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26582. {
  26583. front: {
  26584. height: math.unit(14, "feet"),
  26585. weight: math.unit(959, "lb"),
  26586. name: "Front",
  26587. image: {
  26588. source: "./media/characters/arsenal/front.svg",
  26589. extra: 2357 / 2157,
  26590. bottom: 93 / 2458
  26591. }
  26592. },
  26593. },
  26594. [
  26595. {
  26596. name: "Normal",
  26597. height: math.unit(14, "feet"),
  26598. default: true
  26599. },
  26600. ]
  26601. ))
  26602. characterMakers.push(() => makeCharacter(
  26603. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26604. {
  26605. front: {
  26606. height: math.unit(6, "feet"),
  26607. weight: math.unit(150, "lb"),
  26608. name: "Front",
  26609. image: {
  26610. source: "./media/characters/adira/front.svg",
  26611. extra: 1078 / 1029,
  26612. bottom: 87 / 1166
  26613. }
  26614. },
  26615. },
  26616. [
  26617. {
  26618. name: "Micro",
  26619. height: math.unit(4, "inches"),
  26620. default: true
  26621. },
  26622. {
  26623. name: "Macro",
  26624. height: math.unit(50, "feet")
  26625. },
  26626. ]
  26627. ))
  26628. characterMakers.push(() => makeCharacter(
  26629. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26630. {
  26631. front: {
  26632. height: math.unit(16, "feet"),
  26633. weight: math.unit(1000, "lb"),
  26634. name: "Front",
  26635. image: {
  26636. source: "./media/characters/grim/front.svg",
  26637. extra: 622 / 614,
  26638. bottom: 18.1 / 642
  26639. }
  26640. },
  26641. back: {
  26642. height: math.unit(16, "feet"),
  26643. weight: math.unit(1000, "lb"),
  26644. name: "Back",
  26645. image: {
  26646. source: "./media/characters/grim/back.svg",
  26647. extra: 610.6 / 602,
  26648. bottom: 40.8 / 652
  26649. }
  26650. },
  26651. hunched: {
  26652. height: math.unit(9.75, "feet"),
  26653. weight: math.unit(1000, "lb"),
  26654. name: "Hunched",
  26655. image: {
  26656. source: "./media/characters/grim/hunched.svg",
  26657. extra: 304 / 297,
  26658. bottom: 35.4 / 394
  26659. }
  26660. },
  26661. },
  26662. [
  26663. {
  26664. name: "Normal",
  26665. height: math.unit(16, "feet"),
  26666. default: true
  26667. },
  26668. ]
  26669. ))
  26670. characterMakers.push(() => makeCharacter(
  26671. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26672. {
  26673. front: {
  26674. height: math.unit(2.3, "meters"),
  26675. weight: math.unit(300, "lb"),
  26676. name: "Front",
  26677. image: {
  26678. source: "./media/characters/sinja/front-sfw.svg",
  26679. extra: 1393 / 1294,
  26680. bottom: 70 / 1463
  26681. }
  26682. },
  26683. frontNsfw: {
  26684. height: math.unit(2.3, "meters"),
  26685. weight: math.unit(300, "lb"),
  26686. name: "Front (NSFW)",
  26687. image: {
  26688. source: "./media/characters/sinja/front-nsfw.svg",
  26689. extra: 1393 / 1294,
  26690. bottom: 70 / 1463
  26691. }
  26692. },
  26693. back: {
  26694. height: math.unit(2.3, "meters"),
  26695. weight: math.unit(300, "lb"),
  26696. name: "Back",
  26697. image: {
  26698. source: "./media/characters/sinja/back.svg",
  26699. extra: 1393 / 1294,
  26700. bottom: 70 / 1463
  26701. }
  26702. },
  26703. head: {
  26704. height: math.unit(1.771, "feet"),
  26705. name: "Head",
  26706. image: {
  26707. source: "./media/characters/sinja/head.svg"
  26708. }
  26709. },
  26710. slit: {
  26711. height: math.unit(0.8, "feet"),
  26712. name: "Slit",
  26713. image: {
  26714. source: "./media/characters/sinja/slit.svg"
  26715. }
  26716. },
  26717. },
  26718. [
  26719. {
  26720. name: "Normal",
  26721. height: math.unit(2.3, "meters")
  26722. },
  26723. {
  26724. name: "Macro",
  26725. height: math.unit(91, "meters"),
  26726. default: true
  26727. },
  26728. {
  26729. name: "Megamacro",
  26730. height: math.unit(91440, "meters")
  26731. },
  26732. {
  26733. name: "Gigamacro",
  26734. height: math.unit(60960000, "meters")
  26735. },
  26736. {
  26737. name: "Teramacro",
  26738. height: math.unit(9144000000, "meters")
  26739. },
  26740. ]
  26741. ))
  26742. characterMakers.push(() => makeCharacter(
  26743. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26744. {
  26745. front: {
  26746. height: math.unit(1.7, "meters"),
  26747. weight: math.unit(130, "lb"),
  26748. name: "Front",
  26749. image: {
  26750. source: "./media/characters/kyu/front.svg",
  26751. extra: 415 / 395,
  26752. bottom: 5 / 420
  26753. }
  26754. },
  26755. head: {
  26756. height: math.unit(1.75, "feet"),
  26757. name: "Head",
  26758. image: {
  26759. source: "./media/characters/kyu/head.svg"
  26760. }
  26761. },
  26762. foot: {
  26763. height: math.unit(0.81, "feet"),
  26764. name: "Foot",
  26765. image: {
  26766. source: "./media/characters/kyu/foot.svg"
  26767. }
  26768. },
  26769. },
  26770. [
  26771. {
  26772. name: "Normal",
  26773. height: math.unit(1.7, "meters")
  26774. },
  26775. {
  26776. name: "Macro",
  26777. height: math.unit(131, "feet"),
  26778. default: true
  26779. },
  26780. {
  26781. name: "Megamacro",
  26782. height: math.unit(91440, "meters")
  26783. },
  26784. {
  26785. name: "Gigamacro",
  26786. height: math.unit(60960000, "meters")
  26787. },
  26788. {
  26789. name: "Teramacro",
  26790. height: math.unit(9144000000, "meters")
  26791. },
  26792. ]
  26793. ))
  26794. characterMakers.push(() => makeCharacter(
  26795. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26796. {
  26797. front: {
  26798. height: math.unit(7 + 1 / 12, "feet"),
  26799. weight: math.unit(250, "lb"),
  26800. name: "Front",
  26801. image: {
  26802. source: "./media/characters/joey/front.svg",
  26803. extra: 1791 / 1537,
  26804. bottom: 28 / 1816
  26805. }
  26806. },
  26807. },
  26808. [
  26809. {
  26810. name: "Micro",
  26811. height: math.unit(3, "inches")
  26812. },
  26813. {
  26814. name: "Normal",
  26815. height: math.unit(7 + 1 / 12, "feet"),
  26816. default: true
  26817. },
  26818. ]
  26819. ))
  26820. characterMakers.push(() => makeCharacter(
  26821. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26822. {
  26823. front: {
  26824. height: math.unit(165, "cm"),
  26825. weight: math.unit(140, "lb"),
  26826. name: "Front",
  26827. image: {
  26828. source: "./media/characters/sam-evans/front.svg",
  26829. extra: 3417 / 3230,
  26830. bottom: 41.3 / 3417
  26831. }
  26832. },
  26833. frontSixTails: {
  26834. height: math.unit(165, "cm"),
  26835. weight: math.unit(140, "lb"),
  26836. name: "Front-six-tails",
  26837. image: {
  26838. source: "./media/characters/sam-evans/front-six-tails.svg",
  26839. extra: 3417 / 3230,
  26840. bottom: 41.3 / 3417
  26841. }
  26842. },
  26843. back: {
  26844. height: math.unit(165, "cm"),
  26845. weight: math.unit(140, "lb"),
  26846. name: "Back",
  26847. image: {
  26848. source: "./media/characters/sam-evans/back.svg",
  26849. extra: 3227 / 3032,
  26850. bottom: 6.8 / 3234
  26851. }
  26852. },
  26853. face: {
  26854. height: math.unit(0.68, "feet"),
  26855. name: "Face",
  26856. image: {
  26857. source: "./media/characters/sam-evans/face.svg"
  26858. }
  26859. },
  26860. },
  26861. [
  26862. {
  26863. name: "Normal",
  26864. height: math.unit(165, "cm"),
  26865. default: true
  26866. },
  26867. {
  26868. name: "Macro",
  26869. height: math.unit(100, "meters")
  26870. },
  26871. {
  26872. name: "Macro+",
  26873. height: math.unit(800, "meters")
  26874. },
  26875. {
  26876. name: "Macro++",
  26877. height: math.unit(3, "km")
  26878. },
  26879. {
  26880. name: "Macro+++",
  26881. height: math.unit(30, "km")
  26882. },
  26883. ]
  26884. ))
  26885. characterMakers.push(() => makeCharacter(
  26886. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26887. {
  26888. front: {
  26889. height: math.unit(10, "feet"),
  26890. weight: math.unit(750, "lb"),
  26891. name: "Front",
  26892. image: {
  26893. source: "./media/characters/juliet-a/front.svg",
  26894. extra: 1766 / 1720,
  26895. bottom: 43 / 1809
  26896. }
  26897. },
  26898. back: {
  26899. height: math.unit(10, "feet"),
  26900. weight: math.unit(750, "lb"),
  26901. name: "Back",
  26902. image: {
  26903. source: "./media/characters/juliet-a/back.svg",
  26904. extra: 1781 / 1734,
  26905. bottom: 35 / 1810,
  26906. }
  26907. },
  26908. },
  26909. [
  26910. {
  26911. name: "Normal",
  26912. height: math.unit(10, "feet"),
  26913. default: true
  26914. },
  26915. {
  26916. name: "Dragon Form",
  26917. height: math.unit(250, "feet")
  26918. },
  26919. {
  26920. name: "Macro",
  26921. height: math.unit(1000, "feet")
  26922. },
  26923. {
  26924. name: "Megamacro",
  26925. height: math.unit(10000, "feet")
  26926. }
  26927. ]
  26928. ))
  26929. characterMakers.push(() => makeCharacter(
  26930. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26931. {
  26932. regular: {
  26933. height: math.unit(7 + 3 / 12, "feet"),
  26934. weight: math.unit(260, "lb"),
  26935. name: "Regular",
  26936. image: {
  26937. source: "./media/characters/wild/regular.svg",
  26938. extra: 97.45 / 92,
  26939. bottom: 6.8 / 104.3
  26940. }
  26941. },
  26942. biggums: {
  26943. height: math.unit(8 + 6 / 12, "feet"),
  26944. weight: math.unit(425, "lb"),
  26945. name: "Biggums",
  26946. image: {
  26947. source: "./media/characters/wild/biggums.svg",
  26948. extra: 97.45 / 92,
  26949. bottom: 7.5 / 132.34
  26950. }
  26951. },
  26952. mawRegular: {
  26953. height: math.unit(1.24, "feet"),
  26954. name: "Maw (Regular)",
  26955. image: {
  26956. source: "./media/characters/wild/maw.svg"
  26957. }
  26958. },
  26959. mawBiggums: {
  26960. height: math.unit(1.47, "feet"),
  26961. name: "Maw (Biggums)",
  26962. image: {
  26963. source: "./media/characters/wild/maw.svg"
  26964. }
  26965. },
  26966. },
  26967. [
  26968. {
  26969. name: "Normal",
  26970. height: math.unit(7 + 3 / 12, "feet"),
  26971. default: true
  26972. },
  26973. ]
  26974. ))
  26975. characterMakers.push(() => makeCharacter(
  26976. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26977. {
  26978. front: {
  26979. height: math.unit(2.5, "meters"),
  26980. weight: math.unit(200, "kg"),
  26981. name: "Front",
  26982. image: {
  26983. source: "./media/characters/vidar/front.svg",
  26984. extra: 2994 / 2795,
  26985. bottom: 56 / 3061
  26986. }
  26987. },
  26988. back: {
  26989. height: math.unit(2.5, "meters"),
  26990. weight: math.unit(200, "kg"),
  26991. name: "Back",
  26992. image: {
  26993. source: "./media/characters/vidar/back.svg",
  26994. extra: 3131 / 2928,
  26995. bottom: 13.5 / 3141.5
  26996. }
  26997. },
  26998. feral: {
  26999. height: math.unit(2.5, "meters"),
  27000. weight: math.unit(2000, "kg"),
  27001. name: "Feral",
  27002. image: {
  27003. source: "./media/characters/vidar/feral.svg",
  27004. extra: 2790 / 1765,
  27005. bottom: 6 / 2796
  27006. }
  27007. },
  27008. },
  27009. [
  27010. {
  27011. name: "Normal",
  27012. height: math.unit(2.5, "meters"),
  27013. default: true
  27014. },
  27015. {
  27016. name: "Macro",
  27017. height: math.unit(100, "meters")
  27018. },
  27019. ]
  27020. ))
  27021. characterMakers.push(() => makeCharacter(
  27022. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27023. {
  27024. front: {
  27025. height: math.unit(5 + 9 / 12, "feet"),
  27026. weight: math.unit(120, "lb"),
  27027. name: "Front",
  27028. image: {
  27029. source: "./media/characters/ash/front.svg",
  27030. extra: 2189 / 1961,
  27031. bottom: 5.2 / 2194
  27032. }
  27033. },
  27034. },
  27035. [
  27036. {
  27037. name: "Normal",
  27038. height: math.unit(5 + 9 / 12, "feet"),
  27039. default: true
  27040. },
  27041. ]
  27042. ))
  27043. characterMakers.push(() => makeCharacter(
  27044. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27045. {
  27046. front: {
  27047. height: math.unit(9, "feet"),
  27048. weight: math.unit(10000, "lb"),
  27049. name: "Front",
  27050. image: {
  27051. source: "./media/characters/gygabite/front.svg",
  27052. bottom: 31.7 / 537.8,
  27053. extra: 505 / 370
  27054. }
  27055. },
  27056. },
  27057. [
  27058. {
  27059. name: "Normal",
  27060. height: math.unit(9, "feet"),
  27061. default: true
  27062. },
  27063. ]
  27064. ))
  27065. characterMakers.push(() => makeCharacter(
  27066. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27067. {
  27068. front: {
  27069. height: math.unit(12, "feet"),
  27070. weight: math.unit(35000, "lb"),
  27071. name: "Front",
  27072. image: {
  27073. source: "./media/characters/p0tat0/front.svg",
  27074. extra: 1065 / 921,
  27075. bottom: 55.7 / 1121.25
  27076. }
  27077. },
  27078. },
  27079. [
  27080. {
  27081. name: "Normal",
  27082. height: math.unit(12, "feet"),
  27083. default: true
  27084. },
  27085. ]
  27086. ))
  27087. characterMakers.push(() => makeCharacter(
  27088. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27089. {
  27090. side: {
  27091. height: math.unit(6.5, "feet"),
  27092. weight: math.unit(800, "lb"),
  27093. name: "Side",
  27094. image: {
  27095. source: "./media/characters/dusk/side.svg",
  27096. extra: 615 / 373,
  27097. bottom: 53 / 664
  27098. }
  27099. },
  27100. sitting: {
  27101. height: math.unit(7, "feet"),
  27102. weight: math.unit(800, "lb"),
  27103. name: "Sitting",
  27104. image: {
  27105. source: "./media/characters/dusk/sitting.svg",
  27106. extra: 753 / 425,
  27107. bottom: 33 / 774
  27108. }
  27109. },
  27110. head: {
  27111. height: math.unit(6.1, "feet"),
  27112. name: "Head",
  27113. image: {
  27114. source: "./media/characters/dusk/head.svg"
  27115. }
  27116. },
  27117. },
  27118. [
  27119. {
  27120. name: "Normal",
  27121. height: math.unit(7, "feet"),
  27122. default: true
  27123. },
  27124. ]
  27125. ))
  27126. characterMakers.push(() => makeCharacter(
  27127. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27128. {
  27129. front: {
  27130. height: math.unit(15, "feet"),
  27131. weight: math.unit(7000, "lb"),
  27132. name: "Front",
  27133. image: {
  27134. source: "./media/characters/jay-direwolf/front.svg",
  27135. extra: 1810 / 1732,
  27136. bottom: 66 / 1892
  27137. }
  27138. },
  27139. },
  27140. [
  27141. {
  27142. name: "Normal",
  27143. height: math.unit(15, "feet"),
  27144. default: true
  27145. },
  27146. ]
  27147. ))
  27148. characterMakers.push(() => makeCharacter(
  27149. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27150. {
  27151. front: {
  27152. height: math.unit(4 + 9 / 12, "feet"),
  27153. weight: math.unit(130, "lb"),
  27154. name: "Front",
  27155. image: {
  27156. source: "./media/characters/anchovie/front.svg",
  27157. extra: 382 / 350,
  27158. bottom: 25 / 409
  27159. }
  27160. },
  27161. back: {
  27162. height: math.unit(4 + 9 / 12, "feet"),
  27163. weight: math.unit(130, "lb"),
  27164. name: "Back",
  27165. image: {
  27166. source: "./media/characters/anchovie/back.svg",
  27167. extra: 385 / 352,
  27168. bottom: 16.6 / 402
  27169. }
  27170. },
  27171. frontDressed: {
  27172. height: math.unit(4 + 9 / 12, "feet"),
  27173. weight: math.unit(130, "lb"),
  27174. name: "Front (Dressed)",
  27175. image: {
  27176. source: "./media/characters/anchovie/front-dressed.svg",
  27177. extra: 382 / 350,
  27178. bottom: 25 / 409
  27179. }
  27180. },
  27181. backDressed: {
  27182. height: math.unit(4 + 9 / 12, "feet"),
  27183. weight: math.unit(130, "lb"),
  27184. name: "Back (Dressed)",
  27185. image: {
  27186. source: "./media/characters/anchovie/back-dressed.svg",
  27187. extra: 385 / 352,
  27188. bottom: 16.6 / 402
  27189. }
  27190. },
  27191. },
  27192. [
  27193. {
  27194. name: "Micro",
  27195. height: math.unit(6.4, "inches")
  27196. },
  27197. {
  27198. name: "Normal",
  27199. height: math.unit(4 + 9 / 12, "feet"),
  27200. default: true
  27201. },
  27202. ]
  27203. ))
  27204. characterMakers.push(() => makeCharacter(
  27205. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27206. {
  27207. front: {
  27208. height: math.unit(2, "meters"),
  27209. weight: math.unit(180, "lb"),
  27210. name: "Front",
  27211. image: {
  27212. source: "./media/characters/acidrenamon/front.svg",
  27213. extra: 987 / 890,
  27214. bottom: 22.8 / 1009
  27215. }
  27216. },
  27217. back: {
  27218. height: math.unit(2, "meters"),
  27219. weight: math.unit(180, "lb"),
  27220. name: "Back",
  27221. image: {
  27222. source: "./media/characters/acidrenamon/back.svg",
  27223. extra: 983 / 891,
  27224. bottom: 8.4 / 992
  27225. }
  27226. },
  27227. head: {
  27228. height: math.unit(1.92, "feet"),
  27229. name: "Head",
  27230. image: {
  27231. source: "./media/characters/acidrenamon/head.svg"
  27232. }
  27233. },
  27234. rump: {
  27235. height: math.unit(1.72, "feet"),
  27236. name: "Rump",
  27237. image: {
  27238. source: "./media/characters/acidrenamon/rump.svg"
  27239. }
  27240. },
  27241. tail: {
  27242. height: math.unit(4.2, "feet"),
  27243. name: "Tail",
  27244. image: {
  27245. source: "./media/characters/acidrenamon/tail.svg"
  27246. }
  27247. },
  27248. },
  27249. [
  27250. {
  27251. name: "Normal",
  27252. height: math.unit(2, "meters"),
  27253. default: true
  27254. },
  27255. {
  27256. name: "Minimacro",
  27257. height: math.unit(7, "meters")
  27258. },
  27259. {
  27260. name: "Macro",
  27261. height: math.unit(200, "meters")
  27262. },
  27263. {
  27264. name: "Gigamacro",
  27265. height: math.unit(0.2, "earths")
  27266. },
  27267. ]
  27268. ))
  27269. characterMakers.push(() => makeCharacter(
  27270. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27271. {
  27272. front: {
  27273. height: math.unit(6, "feet"),
  27274. weight: math.unit(150, "lb"),
  27275. name: "Front",
  27276. image: {
  27277. source: "./media/characters/kenzie-lee/front.svg",
  27278. extra: 1525 / 1465,
  27279. bottom: 45 / 1570
  27280. }
  27281. },
  27282. side: {
  27283. height: math.unit(6, "feet"),
  27284. weight: math.unit(150, "lb"),
  27285. name: "Side",
  27286. image: {
  27287. source: "./media/characters/kenzie-lee/side.svg",
  27288. extra: 5505 / 5383,
  27289. bottom: 60 / 5573
  27290. }
  27291. },
  27292. paw: {
  27293. height: math.unit(0.57, "feet"),
  27294. name: "Paw",
  27295. image: {
  27296. source: "./media/characters/kenzie-lee/paw.svg"
  27297. }
  27298. },
  27299. },
  27300. [
  27301. {
  27302. name: "Normal",
  27303. height: math.unit(152, "feet"),
  27304. default: true
  27305. },
  27306. {
  27307. name: "Megamacro",
  27308. height: math.unit(7, "miles")
  27309. },
  27310. {
  27311. name: "Gigamacro",
  27312. height: math.unit(8000, "miles")
  27313. },
  27314. ]
  27315. ))
  27316. characterMakers.push(() => makeCharacter(
  27317. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27318. {
  27319. side: {
  27320. height: math.unit(6, "feet"),
  27321. weight: math.unit(150, "lb"),
  27322. name: "Side",
  27323. image: {
  27324. source: "./media/characters/withers/side.svg",
  27325. extra: 1830 / 1728,
  27326. bottom: 96 / 1927
  27327. }
  27328. },
  27329. front: {
  27330. height: math.unit(6, "feet"),
  27331. weight: math.unit(150, "lb"),
  27332. name: "Front",
  27333. image: {
  27334. source: "./media/characters/withers/front.svg",
  27335. extra: 1514 / 1438,
  27336. bottom: 118 / 1632
  27337. }
  27338. },
  27339. },
  27340. [
  27341. {
  27342. name: "Macro",
  27343. height: math.unit(168, "feet"),
  27344. default: true
  27345. },
  27346. {
  27347. name: "Megamacro",
  27348. height: math.unit(15, "miles")
  27349. }
  27350. ]
  27351. ))
  27352. characterMakers.push(() => makeCharacter(
  27353. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27354. {
  27355. front: {
  27356. height: math.unit(6 + 7 / 12, "feet"),
  27357. weight: math.unit(250, "lb"),
  27358. name: "Front",
  27359. image: {
  27360. source: "./media/characters/nemoskii/front.svg",
  27361. extra: 2270 / 1734,
  27362. bottom: 86 / 2354
  27363. }
  27364. },
  27365. back: {
  27366. height: math.unit(6 + 7 / 12, "feet"),
  27367. weight: math.unit(250, "lb"),
  27368. name: "Back",
  27369. image: {
  27370. source: "./media/characters/nemoskii/back.svg",
  27371. extra: 1845 / 1788,
  27372. bottom: 10.5 / 1852
  27373. }
  27374. },
  27375. head: {
  27376. height: math.unit(1.31, "feet"),
  27377. name: "Head",
  27378. image: {
  27379. source: "./media/characters/nemoskii/head.svg"
  27380. }
  27381. },
  27382. },
  27383. [
  27384. {
  27385. name: "Micro",
  27386. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27387. },
  27388. {
  27389. name: "Normal",
  27390. height: math.unit(6 + 7 / 12, "feet"),
  27391. default: true
  27392. },
  27393. {
  27394. name: "Macro",
  27395. height: math.unit((6 + 7 / 12) * 150, "feet")
  27396. },
  27397. {
  27398. name: "Macro+",
  27399. height: math.unit((6 + 7 / 12) * 500, "feet")
  27400. },
  27401. {
  27402. name: "Megamacro",
  27403. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27404. },
  27405. ]
  27406. ))
  27407. characterMakers.push(() => makeCharacter(
  27408. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27409. {
  27410. front: {
  27411. height: math.unit(1, "mile"),
  27412. weight: math.unit(265261.9, "lb"),
  27413. name: "Front",
  27414. image: {
  27415. source: "./media/characters/shui/front.svg",
  27416. extra: 1633 / 1564,
  27417. bottom: 91.5 / 1726
  27418. }
  27419. },
  27420. },
  27421. [
  27422. {
  27423. name: "Macro",
  27424. height: math.unit(1, "mile"),
  27425. default: true
  27426. },
  27427. ]
  27428. ))
  27429. characterMakers.push(() => makeCharacter(
  27430. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27431. {
  27432. front: {
  27433. height: math.unit(12 + 6 / 12, "feet"),
  27434. weight: math.unit(1342, "lb"),
  27435. name: "Front",
  27436. image: {
  27437. source: "./media/characters/arokh-takakura/front.svg",
  27438. extra: 1089 / 1043,
  27439. bottom: 77.4 / 1176.7
  27440. }
  27441. },
  27442. back: {
  27443. height: math.unit(12 + 6 / 12, "feet"),
  27444. weight: math.unit(1342, "lb"),
  27445. name: "Back",
  27446. image: {
  27447. source: "./media/characters/arokh-takakura/back.svg",
  27448. extra: 1046 / 1019,
  27449. bottom: 102 / 1150
  27450. }
  27451. },
  27452. },
  27453. [
  27454. {
  27455. name: "Big",
  27456. height: math.unit(12 + 6 / 12, "feet"),
  27457. default: true
  27458. },
  27459. ]
  27460. ))
  27461. characterMakers.push(() => makeCharacter(
  27462. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27463. {
  27464. front: {
  27465. height: math.unit(5 + 6 / 12, "feet"),
  27466. weight: math.unit(150, "lb"),
  27467. name: "Front",
  27468. image: {
  27469. source: "./media/characters/theo/front.svg",
  27470. extra: 1184 / 1131,
  27471. bottom: 7.4 / 1191
  27472. }
  27473. },
  27474. },
  27475. [
  27476. {
  27477. name: "Micro",
  27478. height: math.unit(5, "inches")
  27479. },
  27480. {
  27481. name: "Normal",
  27482. height: math.unit(5 + 6 / 12, "feet"),
  27483. default: true
  27484. },
  27485. ]
  27486. ))
  27487. characterMakers.push(() => makeCharacter(
  27488. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27489. {
  27490. front: {
  27491. height: math.unit(5 + 9 / 12, "feet"),
  27492. weight: math.unit(130, "lb"),
  27493. name: "Front",
  27494. image: {
  27495. source: "./media/characters/cecelia-swift/front.svg",
  27496. extra: 502 / 484,
  27497. bottom: 23 / 523
  27498. }
  27499. },
  27500. back: {
  27501. height: math.unit(5 + 9 / 12, "feet"),
  27502. weight: math.unit(130, "lb"),
  27503. name: "Back",
  27504. image: {
  27505. source: "./media/characters/cecelia-swift/back.svg",
  27506. extra: 499 / 485,
  27507. bottom: 12 / 511
  27508. }
  27509. },
  27510. head: {
  27511. height: math.unit(0.90, "feet"),
  27512. name: "Head",
  27513. image: {
  27514. source: "./media/characters/cecelia-swift/head.svg"
  27515. }
  27516. },
  27517. rump: {
  27518. height: math.unit(1.75, "feet"),
  27519. name: "Rump",
  27520. image: {
  27521. source: "./media/characters/cecelia-swift/rump.svg"
  27522. }
  27523. },
  27524. },
  27525. [
  27526. {
  27527. name: "Normal",
  27528. height: math.unit(5 + 9 / 12, "feet"),
  27529. default: true
  27530. },
  27531. {
  27532. name: "Big",
  27533. height: math.unit(50, "feet")
  27534. },
  27535. {
  27536. name: "Macro",
  27537. height: math.unit(100, "feet")
  27538. },
  27539. {
  27540. name: "Macro+",
  27541. height: math.unit(500, "feet")
  27542. },
  27543. {
  27544. name: "Macro++",
  27545. height: math.unit(1000, "feet")
  27546. },
  27547. ]
  27548. ))
  27549. characterMakers.push(() => makeCharacter(
  27550. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27551. {
  27552. front: {
  27553. height: math.unit(6, "feet"),
  27554. weight: math.unit(150, "lb"),
  27555. name: "Front",
  27556. image: {
  27557. source: "./media/characters/kaunan/front.svg",
  27558. extra: 2890 / 2523,
  27559. bottom: 49 / 2939
  27560. }
  27561. },
  27562. },
  27563. [
  27564. {
  27565. name: "Macro",
  27566. height: math.unit(150, "feet"),
  27567. default: true
  27568. },
  27569. ]
  27570. ))
  27571. characterMakers.push(() => makeCharacter(
  27572. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27573. {
  27574. front: {
  27575. height: math.unit(175, "cm"),
  27576. weight: math.unit(60, "kg"),
  27577. name: "Front",
  27578. image: {
  27579. source: "./media/characters/fei/front.svg",
  27580. extra: 1873/1723,
  27581. bottom: 53/1926
  27582. }
  27583. },
  27584. },
  27585. [
  27586. {
  27587. name: "Mortal",
  27588. height: math.unit(175, "cm")
  27589. },
  27590. {
  27591. name: "Normal",
  27592. height: math.unit(3500, "m"),
  27593. default: true
  27594. },
  27595. {
  27596. name: "Stroll",
  27597. height: math.unit(17.5, "km")
  27598. },
  27599. {
  27600. name: "Showoff",
  27601. height: math.unit(175, "km")
  27602. },
  27603. ]
  27604. ))
  27605. characterMakers.push(() => makeCharacter(
  27606. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27607. {
  27608. front: {
  27609. height: math.unit(7, "feet"),
  27610. weight: math.unit(1000, "kg"),
  27611. name: "Front",
  27612. image: {
  27613. source: "./media/characters/edrax/front.svg",
  27614. extra: 2838 / 2550,
  27615. bottom: 130 / 2968
  27616. }
  27617. },
  27618. },
  27619. [
  27620. {
  27621. name: "Small",
  27622. height: math.unit(7, "feet")
  27623. },
  27624. {
  27625. name: "Normal",
  27626. height: math.unit(1500, "meters")
  27627. },
  27628. {
  27629. name: "Mega",
  27630. height: math.unit(12000000, "km"),
  27631. default: true
  27632. },
  27633. {
  27634. name: "Megamacro",
  27635. height: math.unit(10600000, "lightyears")
  27636. },
  27637. {
  27638. name: "Hypermacro",
  27639. height: math.unit(256, "yottameters")
  27640. },
  27641. ]
  27642. ))
  27643. characterMakers.push(() => makeCharacter(
  27644. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27645. {
  27646. front: {
  27647. height: math.unit(10, "feet"),
  27648. weight: math.unit(750, "lb"),
  27649. name: "Front",
  27650. image: {
  27651. source: "./media/characters/clove/front.svg",
  27652. extra: 2031 / 1860,
  27653. bottom: 47.8 / 2080
  27654. }
  27655. },
  27656. back: {
  27657. height: math.unit(10, "feet"),
  27658. weight: math.unit(750, "lb"),
  27659. name: "Back",
  27660. image: {
  27661. source: "./media/characters/clove/back.svg",
  27662. extra: 2025 / 1859,
  27663. bottom: 46 / 2071
  27664. }
  27665. },
  27666. },
  27667. [
  27668. {
  27669. name: "Normal",
  27670. height: math.unit(10, "feet"),
  27671. default: true
  27672. },
  27673. ]
  27674. ))
  27675. characterMakers.push(() => makeCharacter(
  27676. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27677. {
  27678. front: {
  27679. height: math.unit(4, "feet"),
  27680. weight: math.unit(50, "lb"),
  27681. name: "Front",
  27682. image: {
  27683. source: "./media/characters/alex-rabbit/front.svg",
  27684. extra: 507 / 458,
  27685. bottom: 18.5 / 527
  27686. }
  27687. },
  27688. back: {
  27689. height: math.unit(4, "feet"),
  27690. weight: math.unit(50, "lb"),
  27691. name: "Back",
  27692. image: {
  27693. source: "./media/characters/alex-rabbit/back.svg",
  27694. extra: 502 / 460,
  27695. bottom: 18.9 / 521
  27696. }
  27697. },
  27698. },
  27699. [
  27700. {
  27701. name: "Normal",
  27702. height: math.unit(4, "feet"),
  27703. default: true
  27704. },
  27705. ]
  27706. ))
  27707. characterMakers.push(() => makeCharacter(
  27708. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27709. {
  27710. front: {
  27711. height: math.unit(1 + 3 / 12, "feet"),
  27712. weight: math.unit(80, "lb"),
  27713. name: "Front",
  27714. image: {
  27715. source: "./media/characters/zander-rose/front.svg",
  27716. extra: 916 / 797,
  27717. bottom: 17 / 933
  27718. }
  27719. },
  27720. back: {
  27721. height: math.unit(1 + 3 / 12, "feet"),
  27722. weight: math.unit(80, "lb"),
  27723. name: "Back",
  27724. image: {
  27725. source: "./media/characters/zander-rose/back.svg",
  27726. extra: 903 / 779,
  27727. bottom: 31 / 934
  27728. }
  27729. },
  27730. },
  27731. [
  27732. {
  27733. name: "Normal",
  27734. height: math.unit(1 + 3 / 12, "feet"),
  27735. default: true
  27736. },
  27737. ]
  27738. ))
  27739. characterMakers.push(() => makeCharacter(
  27740. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27741. {
  27742. anthro: {
  27743. height: math.unit(6, "feet"),
  27744. weight: math.unit(150, "lb"),
  27745. name: "Anthro",
  27746. image: {
  27747. source: "./media/characters/razz/anthro.svg",
  27748. extra: 1437 / 1343,
  27749. bottom: 48 / 1485
  27750. }
  27751. },
  27752. feral: {
  27753. height: math.unit(6, "feet"),
  27754. weight: math.unit(150, "lb"),
  27755. name: "Feral",
  27756. image: {
  27757. source: "./media/characters/razz/feral.svg",
  27758. extra: 2569 / 1385,
  27759. bottom: 95 / 2664
  27760. }
  27761. },
  27762. },
  27763. [
  27764. {
  27765. name: "Normal",
  27766. height: math.unit(6, "feet"),
  27767. default: true
  27768. },
  27769. ]
  27770. ))
  27771. characterMakers.push(() => makeCharacter(
  27772. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27773. {
  27774. front: {
  27775. height: math.unit(9 + 4 / 12, "feet"),
  27776. weight: math.unit(500, "lb"),
  27777. name: "Front",
  27778. image: {
  27779. source: "./media/characters/morrigan/front.svg",
  27780. extra: 2707 / 2579,
  27781. bottom: 156 / 2863
  27782. }
  27783. },
  27784. },
  27785. [
  27786. {
  27787. name: "Normal",
  27788. height: math.unit(9 + 4 / 12, "feet"),
  27789. default: true
  27790. },
  27791. ]
  27792. ))
  27793. characterMakers.push(() => makeCharacter(
  27794. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27795. {
  27796. front: {
  27797. height: math.unit(5, "stories"),
  27798. weight: math.unit(4000, "lb"),
  27799. name: "Front",
  27800. image: {
  27801. source: "./media/characters/jenene/front.svg",
  27802. extra: 1780 / 1710,
  27803. bottom: 57 / 1837
  27804. }
  27805. },
  27806. },
  27807. [
  27808. {
  27809. name: "Normal",
  27810. height: math.unit(5, "stories"),
  27811. default: true
  27812. },
  27813. ]
  27814. ))
  27815. characterMakers.push(() => makeCharacter(
  27816. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27817. {
  27818. taurSfw: {
  27819. height: math.unit(10, "meters"),
  27820. weight: math.unit(17500, "kg"),
  27821. name: "Taur",
  27822. image: {
  27823. source: "./media/characters/faey/taur-sfw.svg",
  27824. extra: 1200 / 968,
  27825. bottom: 41 / 1241
  27826. }
  27827. },
  27828. chestmaw: {
  27829. height: math.unit(2.01, "meters"),
  27830. name: "Chestmaw",
  27831. image: {
  27832. source: "./media/characters/faey/chestmaw.svg"
  27833. }
  27834. },
  27835. foot: {
  27836. height: math.unit(2.43, "meters"),
  27837. name: "Foot",
  27838. image: {
  27839. source: "./media/characters/faey/foot.svg"
  27840. }
  27841. },
  27842. jaws: {
  27843. height: math.unit(1.66, "meters"),
  27844. name: "Jaws",
  27845. image: {
  27846. source: "./media/characters/faey/jaws.svg"
  27847. }
  27848. },
  27849. tongues: {
  27850. height: math.unit(2.01, "meters"),
  27851. name: "Tongues",
  27852. image: {
  27853. source: "./media/characters/faey/tongues.svg"
  27854. }
  27855. },
  27856. },
  27857. [
  27858. {
  27859. name: "Small",
  27860. height: math.unit(10, "meters"),
  27861. default: true
  27862. },
  27863. {
  27864. name: "Big",
  27865. height: math.unit(500000, "km")
  27866. },
  27867. ]
  27868. ))
  27869. characterMakers.push(() => makeCharacter(
  27870. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27871. {
  27872. front: {
  27873. height: math.unit(7, "feet"),
  27874. weight: math.unit(275, "lb"),
  27875. name: "Front",
  27876. image: {
  27877. source: "./media/characters/roku/front.svg",
  27878. extra: 903 / 878,
  27879. bottom: 37 / 940
  27880. }
  27881. },
  27882. },
  27883. [
  27884. {
  27885. name: "Normal",
  27886. height: math.unit(7, "feet"),
  27887. default: true
  27888. },
  27889. {
  27890. name: "Macro",
  27891. height: math.unit(500, "feet")
  27892. },
  27893. {
  27894. name: "Megamacro",
  27895. height: math.unit(200, "miles")
  27896. },
  27897. ]
  27898. ))
  27899. characterMakers.push(() => makeCharacter(
  27900. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27901. {
  27902. front: {
  27903. height: math.unit(6 + 2 / 12, "feet"),
  27904. weight: math.unit(150, "lb"),
  27905. name: "Front",
  27906. image: {
  27907. source: "./media/characters/lira/front.svg",
  27908. extra: 1727 / 1605,
  27909. bottom: 26 / 1753
  27910. }
  27911. },
  27912. back: {
  27913. height: math.unit(6 + 2 / 12, "feet"),
  27914. weight: math.unit(150, "lb"),
  27915. name: "Back",
  27916. image: {
  27917. source: "./media/characters/lira/back.svg",
  27918. extra: 1713/1621,
  27919. bottom: 20/1733
  27920. }
  27921. },
  27922. hand: {
  27923. height: math.unit(0.75, "feet"),
  27924. name: "Hand",
  27925. image: {
  27926. source: "./media/characters/lira/hand.svg"
  27927. }
  27928. },
  27929. maw: {
  27930. height: math.unit(0.65, "feet"),
  27931. name: "Maw",
  27932. image: {
  27933. source: "./media/characters/lira/maw.svg"
  27934. }
  27935. },
  27936. pawDigi: {
  27937. height: math.unit(1.6, "feet"),
  27938. name: "Paw Digi",
  27939. image: {
  27940. source: "./media/characters/lira/paw-digi.svg"
  27941. }
  27942. },
  27943. pawPlanti: {
  27944. height: math.unit(1.4, "feet"),
  27945. name: "Paw Planti",
  27946. image: {
  27947. source: "./media/characters/lira/paw-planti.svg"
  27948. }
  27949. },
  27950. },
  27951. [
  27952. {
  27953. name: "Normal",
  27954. height: math.unit(6 + 2 / 12, "feet"),
  27955. default: true
  27956. },
  27957. {
  27958. name: "Macro",
  27959. height: math.unit(100, "feet")
  27960. },
  27961. {
  27962. name: "Macro²",
  27963. height: math.unit(1600, "feet")
  27964. },
  27965. {
  27966. name: "Planetary",
  27967. height: math.unit(20, "earths")
  27968. },
  27969. ]
  27970. ))
  27971. characterMakers.push(() => makeCharacter(
  27972. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27973. {
  27974. front: {
  27975. height: math.unit(6, "feet"),
  27976. weight: math.unit(150, "lb"),
  27977. name: "Front",
  27978. image: {
  27979. source: "./media/characters/hadjet/front.svg",
  27980. extra: 1480 / 1346,
  27981. bottom: 26 / 1506
  27982. }
  27983. },
  27984. frontNsfw: {
  27985. height: math.unit(6, "feet"),
  27986. weight: math.unit(150, "lb"),
  27987. name: "Front (NSFW)",
  27988. image: {
  27989. source: "./media/characters/hadjet/front-nsfw.svg",
  27990. extra: 1440 / 1358,
  27991. bottom: 52 / 1492
  27992. }
  27993. },
  27994. },
  27995. [
  27996. {
  27997. name: "Macro",
  27998. height: math.unit(10, "stories"),
  27999. default: true
  28000. },
  28001. {
  28002. name: "Megamacro",
  28003. height: math.unit(1.5, "miles")
  28004. },
  28005. {
  28006. name: "Megamacro+",
  28007. height: math.unit(5, "miles")
  28008. },
  28009. ]
  28010. ))
  28011. characterMakers.push(() => makeCharacter(
  28012. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28013. {
  28014. side: {
  28015. height: math.unit(106, "feet"),
  28016. weight: math.unit(500, "tonnes"),
  28017. name: "Side",
  28018. image: {
  28019. source: "./media/characters/kodran/side.svg",
  28020. extra: 553 / 480,
  28021. bottom: 33 / 586
  28022. }
  28023. },
  28024. front: {
  28025. height: math.unit(132, "feet"),
  28026. weight: math.unit(500, "tonnes"),
  28027. name: "Front",
  28028. image: {
  28029. source: "./media/characters/kodran/front.svg",
  28030. extra: 667 / 643,
  28031. bottom: 42 / 709
  28032. }
  28033. },
  28034. flying: {
  28035. height: math.unit(350, "feet"),
  28036. weight: math.unit(500, "tonnes"),
  28037. name: "Flying",
  28038. image: {
  28039. source: "./media/characters/kodran/flying.svg"
  28040. }
  28041. },
  28042. foot: {
  28043. height: math.unit(33, "feet"),
  28044. name: "Foot",
  28045. image: {
  28046. source: "./media/characters/kodran/foot.svg"
  28047. }
  28048. },
  28049. footFront: {
  28050. height: math.unit(19, "feet"),
  28051. name: "Foot (Front)",
  28052. image: {
  28053. source: "./media/characters/kodran/foot-front.svg",
  28054. extra: 261 / 261,
  28055. bottom: 91 / 352
  28056. }
  28057. },
  28058. headFront: {
  28059. height: math.unit(53, "feet"),
  28060. name: "Head (Front)",
  28061. image: {
  28062. source: "./media/characters/kodran/head-front.svg"
  28063. }
  28064. },
  28065. headSide: {
  28066. height: math.unit(65, "feet"),
  28067. name: "Head (Side)",
  28068. image: {
  28069. source: "./media/characters/kodran/head-side.svg"
  28070. }
  28071. },
  28072. throat: {
  28073. height: math.unit(79, "feet"),
  28074. name: "Throat",
  28075. image: {
  28076. source: "./media/characters/kodran/throat.svg"
  28077. }
  28078. },
  28079. },
  28080. [
  28081. {
  28082. name: "Large",
  28083. height: math.unit(106, "feet"),
  28084. default: true
  28085. },
  28086. ]
  28087. ))
  28088. characterMakers.push(() => makeCharacter(
  28089. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28090. {
  28091. side: {
  28092. height: math.unit(11, "feet"),
  28093. weight: math.unit(150, "lb"),
  28094. name: "Side",
  28095. image: {
  28096. source: "./media/characters/pyxaron/side.svg",
  28097. extra: 305 / 195,
  28098. bottom: 17 / 322
  28099. }
  28100. },
  28101. },
  28102. [
  28103. {
  28104. name: "Normal",
  28105. height: math.unit(11, "feet"),
  28106. default: true
  28107. },
  28108. ]
  28109. ))
  28110. characterMakers.push(() => makeCharacter(
  28111. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28112. {
  28113. front: {
  28114. height: math.unit(6, "feet"),
  28115. weight: math.unit(150, "lb"),
  28116. name: "Front",
  28117. image: {
  28118. source: "./media/characters/meep/front.svg",
  28119. extra: 88 / 80,
  28120. bottom: 6 / 94
  28121. }
  28122. },
  28123. },
  28124. [
  28125. {
  28126. name: "Fun Sized",
  28127. height: math.unit(2, "inches"),
  28128. default: true
  28129. },
  28130. {
  28131. name: "Friend Sized",
  28132. height: math.unit(8, "inches")
  28133. },
  28134. ]
  28135. ))
  28136. characterMakers.push(() => makeCharacter(
  28137. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28138. {
  28139. front: {
  28140. height: math.unit(15, "feet"),
  28141. weight: math.unit(2500, "lb"),
  28142. name: "Front",
  28143. image: {
  28144. source: "./media/characters/holly-rabbit/front.svg",
  28145. extra: 1433 / 1233,
  28146. bottom: 125 / 1558
  28147. }
  28148. },
  28149. dick: {
  28150. height: math.unit(4.6, "feet"),
  28151. name: "Dick",
  28152. image: {
  28153. source: "./media/characters/holly-rabbit/dick.svg"
  28154. }
  28155. },
  28156. },
  28157. [
  28158. {
  28159. name: "Normal",
  28160. height: math.unit(15, "feet"),
  28161. default: true
  28162. },
  28163. {
  28164. name: "Macro",
  28165. height: math.unit(250, "feet")
  28166. },
  28167. {
  28168. name: "Macro+",
  28169. height: math.unit(2500, "feet")
  28170. },
  28171. ]
  28172. ))
  28173. characterMakers.push(() => makeCharacter(
  28174. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28175. {
  28176. front: {
  28177. height: math.unit(3.02, "meters"),
  28178. weight: math.unit(500, "kg"),
  28179. name: "Front",
  28180. image: {
  28181. source: "./media/characters/drena/front.svg",
  28182. extra: 282 / 243,
  28183. bottom: 8 / 290
  28184. }
  28185. },
  28186. side: {
  28187. height: math.unit(3.02, "meters"),
  28188. weight: math.unit(500, "kg"),
  28189. name: "Side",
  28190. image: {
  28191. source: "./media/characters/drena/side.svg",
  28192. extra: 280 / 245,
  28193. bottom: 10 / 290
  28194. }
  28195. },
  28196. back: {
  28197. height: math.unit(3.02, "meters"),
  28198. weight: math.unit(500, "kg"),
  28199. name: "Back",
  28200. image: {
  28201. source: "./media/characters/drena/back.svg",
  28202. extra: 278 / 243,
  28203. bottom: 2 / 280
  28204. }
  28205. },
  28206. foot: {
  28207. height: math.unit(0.75, "meters"),
  28208. name: "Foot",
  28209. image: {
  28210. source: "./media/characters/drena/foot.svg"
  28211. }
  28212. },
  28213. maw: {
  28214. height: math.unit(0.82, "meters"),
  28215. name: "Maw",
  28216. image: {
  28217. source: "./media/characters/drena/maw.svg"
  28218. }
  28219. },
  28220. rump: {
  28221. height: math.unit(0.93, "meters"),
  28222. name: "Rump",
  28223. image: {
  28224. source: "./media/characters/drena/rump.svg"
  28225. }
  28226. },
  28227. },
  28228. [
  28229. {
  28230. name: "Normal",
  28231. height: math.unit(3.02, "meters"),
  28232. default: true
  28233. },
  28234. ]
  28235. ))
  28236. characterMakers.push(() => makeCharacter(
  28237. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28238. {
  28239. front: {
  28240. height: math.unit(6 + 4 / 12, "feet"),
  28241. weight: math.unit(250, "lb"),
  28242. name: "Front",
  28243. image: {
  28244. source: "./media/characters/remmyzilla/front.svg",
  28245. extra: 4033 / 3588,
  28246. bottom: 123 / 4156
  28247. }
  28248. },
  28249. back: {
  28250. height: math.unit(6 + 4 / 12, "feet"),
  28251. weight: math.unit(250, "lb"),
  28252. name: "Back",
  28253. image: {
  28254. source: "./media/characters/remmyzilla/back.svg",
  28255. extra: 2687 / 2555,
  28256. bottom: 48 / 2735
  28257. }
  28258. },
  28259. paw: {
  28260. height: math.unit(1.73, "feet"),
  28261. name: "Paw",
  28262. image: {
  28263. source: "./media/characters/remmyzilla/paw.svg"
  28264. }
  28265. },
  28266. maw: {
  28267. height: math.unit(1.73, "feet"),
  28268. name: "Maw",
  28269. image: {
  28270. source: "./media/characters/remmyzilla/maw.svg"
  28271. }
  28272. },
  28273. },
  28274. [
  28275. {
  28276. name: "Normal",
  28277. height: math.unit(6 + 4 / 12, "feet")
  28278. },
  28279. {
  28280. name: "Minimacro",
  28281. height: math.unit(12 + 8 / 12, "feet")
  28282. },
  28283. {
  28284. name: "Normal",
  28285. height: math.unit(640, "feet"),
  28286. default: true
  28287. },
  28288. {
  28289. name: "Megamacro",
  28290. height: math.unit(6400, "feet")
  28291. },
  28292. {
  28293. name: "Gigamacro",
  28294. height: math.unit(64000, "miles")
  28295. },
  28296. ]
  28297. ))
  28298. characterMakers.push(() => makeCharacter(
  28299. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28300. {
  28301. front: {
  28302. height: math.unit(2.5, "meters"),
  28303. weight: math.unit(300, "lb"),
  28304. name: "Front",
  28305. image: {
  28306. source: "./media/characters/lawrence/front.svg",
  28307. extra: 357 / 335,
  28308. bottom: 30 / 387
  28309. }
  28310. },
  28311. back: {
  28312. height: math.unit(2.5, "meters"),
  28313. weight: math.unit(300, "lb"),
  28314. name: "Back",
  28315. image: {
  28316. source: "./media/characters/lawrence/back.svg",
  28317. extra: 357 / 338,
  28318. bottom: 16 / 373
  28319. }
  28320. },
  28321. head: {
  28322. height: math.unit(0.9, "meter"),
  28323. name: "Head",
  28324. image: {
  28325. source: "./media/characters/lawrence/head.svg"
  28326. }
  28327. },
  28328. maw: {
  28329. height: math.unit(0.7, "meter"),
  28330. name: "Maw",
  28331. image: {
  28332. source: "./media/characters/lawrence/maw.svg"
  28333. }
  28334. },
  28335. footBottom: {
  28336. height: math.unit(0.5, "meter"),
  28337. name: "Foot (Bottom)",
  28338. image: {
  28339. source: "./media/characters/lawrence/foot-bottom.svg"
  28340. }
  28341. },
  28342. footTop: {
  28343. height: math.unit(0.5, "meter"),
  28344. name: "Foot (Top)",
  28345. image: {
  28346. source: "./media/characters/lawrence/foot-top.svg"
  28347. }
  28348. },
  28349. },
  28350. [
  28351. {
  28352. name: "Normal",
  28353. height: math.unit(2.5, "meters"),
  28354. default: true
  28355. },
  28356. {
  28357. name: "Macro",
  28358. height: math.unit(95, "meters")
  28359. },
  28360. {
  28361. name: "Megamacro",
  28362. height: math.unit(150, "km")
  28363. },
  28364. ]
  28365. ))
  28366. characterMakers.push(() => makeCharacter(
  28367. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28368. {
  28369. front: {
  28370. height: math.unit(4.2, "meters"),
  28371. name: "Front",
  28372. image: {
  28373. source: "./media/characters/sydney/front.svg",
  28374. extra: 1323 / 1277,
  28375. bottom: 111 / 1434
  28376. }
  28377. },
  28378. },
  28379. [
  28380. {
  28381. name: "Normal",
  28382. height: math.unit(4.2, "meters"),
  28383. default: true
  28384. },
  28385. ]
  28386. ))
  28387. characterMakers.push(() => makeCharacter(
  28388. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28389. {
  28390. back: {
  28391. height: math.unit(201, "feet"),
  28392. name: "Back",
  28393. image: {
  28394. source: "./media/characters/jessica/back.svg",
  28395. extra: 273 / 259,
  28396. bottom: 7 / 280
  28397. }
  28398. },
  28399. },
  28400. [
  28401. {
  28402. name: "Normal",
  28403. height: math.unit(201, "feet"),
  28404. default: true
  28405. },
  28406. {
  28407. name: "Megamacro",
  28408. height: math.unit(8, "miles")
  28409. },
  28410. ]
  28411. ))
  28412. characterMakers.push(() => makeCharacter(
  28413. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28414. {
  28415. side: {
  28416. height: math.unit(320, "cm"),
  28417. name: "Side",
  28418. image: {
  28419. source: "./media/characters/victoria/side.svg",
  28420. extra: 778 / 346,
  28421. bottom: 56 / 834
  28422. }
  28423. },
  28424. maw: {
  28425. height: math.unit(5.9, "feet"),
  28426. name: "Maw",
  28427. image: {
  28428. source: "./media/characters/victoria/maw.svg"
  28429. }
  28430. },
  28431. },
  28432. [
  28433. {
  28434. name: "Normal",
  28435. height: math.unit(320, "cm"),
  28436. default: true
  28437. },
  28438. ]
  28439. ))
  28440. characterMakers.push(() => makeCharacter(
  28441. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28442. {
  28443. front: {
  28444. height: math.unit(5 + 6 / 12, "feet"),
  28445. name: "Front",
  28446. image: {
  28447. source: "./media/characters/cat/front.svg",
  28448. extra: 1449/1295,
  28449. bottom: 34/1483
  28450. }
  28451. },
  28452. back: {
  28453. height: math.unit(5 + 6 / 12, "feet"),
  28454. name: "Back",
  28455. image: {
  28456. source: "./media/characters/cat/back.svg",
  28457. extra: 1466/1301,
  28458. bottom: 19/1485
  28459. }
  28460. },
  28461. taur: {
  28462. height: math.unit(7, "feet"),
  28463. name: "Taur",
  28464. image: {
  28465. source: "./media/characters/cat/taur.svg",
  28466. extra: 1389/1233,
  28467. bottom: 83/1472
  28468. }
  28469. },
  28470. lucarioFront: {
  28471. height: math.unit(4, "feet"),
  28472. name: "Lucario (Front)",
  28473. image: {
  28474. source: "./media/characters/cat/lucario-front.svg",
  28475. extra: 1149/1019,
  28476. bottom: 84/1233
  28477. }
  28478. },
  28479. lucarioBack: {
  28480. height: math.unit(4, "feet"),
  28481. name: "Lucario (Back)",
  28482. image: {
  28483. source: "./media/characters/cat/lucario-back.svg",
  28484. extra: 1190/1059,
  28485. bottom: 33/1223
  28486. }
  28487. },
  28488. megaLucario: {
  28489. height: math.unit(4, "feet"),
  28490. name: "Mega Lucario",
  28491. image: {
  28492. source: "./media/characters/cat/mega-lucario.svg",
  28493. extra: 1515 / 1319,
  28494. bottom: 63 / 1578
  28495. }
  28496. },
  28497. nickit: {
  28498. height: math.unit(2, "feet"),
  28499. name: "Nickit",
  28500. image: {
  28501. source: "./media/characters/cat/nickit.svg",
  28502. extra: 1980 / 1585,
  28503. bottom: 102 / 2082
  28504. }
  28505. },
  28506. lopunnyFront: {
  28507. height: math.unit(5, "feet"),
  28508. name: "Lopunny (Front)",
  28509. image: {
  28510. source: "./media/characters/cat/lopunny-front.svg",
  28511. extra: 1782 / 1469,
  28512. bottom: 38 / 1820
  28513. }
  28514. },
  28515. lopunnyBack: {
  28516. height: math.unit(5, "feet"),
  28517. name: "Lopunny (Back)",
  28518. image: {
  28519. source: "./media/characters/cat/lopunny-back.svg",
  28520. extra: 1660 / 1490,
  28521. bottom: 25 / 1685
  28522. }
  28523. },
  28524. },
  28525. [
  28526. {
  28527. name: "Really small",
  28528. height: math.unit(1, "nm")
  28529. },
  28530. {
  28531. name: "Micro",
  28532. height: math.unit(5, "inches")
  28533. },
  28534. {
  28535. name: "Normal",
  28536. height: math.unit(5 + 6 / 12, "feet"),
  28537. default: true
  28538. },
  28539. {
  28540. name: "Macro",
  28541. height: math.unit(50, "feet")
  28542. },
  28543. {
  28544. name: "Macro+",
  28545. height: math.unit(150, "feet")
  28546. },
  28547. {
  28548. name: "Megamacro",
  28549. height: math.unit(100, "miles")
  28550. },
  28551. ]
  28552. ))
  28553. characterMakers.push(() => makeCharacter(
  28554. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28555. {
  28556. front: {
  28557. height: math.unit(63.4, "meters"),
  28558. weight: math.unit(3.28349e+6, "kilograms"),
  28559. name: "Front",
  28560. image: {
  28561. source: "./media/characters/kirina-violet/front.svg",
  28562. extra: 2812 / 2725,
  28563. bottom: 0 / 2812
  28564. }
  28565. },
  28566. back: {
  28567. height: math.unit(63.4, "meters"),
  28568. weight: math.unit(3.28349e+6, "kilograms"),
  28569. name: "Back",
  28570. image: {
  28571. source: "./media/characters/kirina-violet/back.svg",
  28572. extra: 2812 / 2725,
  28573. bottom: 0 / 2812
  28574. }
  28575. },
  28576. mouth: {
  28577. height: math.unit(4.35, "meters"),
  28578. name: "Mouth",
  28579. image: {
  28580. source: "./media/characters/kirina-violet/mouth.svg"
  28581. }
  28582. },
  28583. paw: {
  28584. height: math.unit(5.6, "meters"),
  28585. name: "Paw",
  28586. image: {
  28587. source: "./media/characters/kirina-violet/paw.svg"
  28588. }
  28589. },
  28590. tail: {
  28591. height: math.unit(18, "meters"),
  28592. name: "Tail",
  28593. image: {
  28594. source: "./media/characters/kirina-violet/tail.svg"
  28595. }
  28596. },
  28597. },
  28598. [
  28599. {
  28600. name: "Macro",
  28601. height: math.unit(63.4, "meters"),
  28602. default: true
  28603. },
  28604. ]
  28605. ))
  28606. characterMakers.push(() => makeCharacter(
  28607. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28608. {
  28609. front: {
  28610. height: math.unit(75, "feet"),
  28611. name: "Front",
  28612. image: {
  28613. source: "./media/characters/cat-gigachu/front.svg",
  28614. extra: 1239/1027,
  28615. bottom: 32/1271
  28616. }
  28617. },
  28618. back: {
  28619. height: math.unit(75, "feet"),
  28620. name: "Back",
  28621. image: {
  28622. source: "./media/characters/cat-gigachu/back.svg",
  28623. extra: 1229/1030,
  28624. bottom: 9/1238
  28625. }
  28626. },
  28627. },
  28628. [
  28629. {
  28630. name: "Dynamax",
  28631. height: math.unit(75, "feet"),
  28632. default: true
  28633. },
  28634. ]
  28635. ))
  28636. characterMakers.push(() => makeCharacter(
  28637. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28638. {
  28639. front: {
  28640. height: math.unit(6, "feet"),
  28641. weight: math.unit(150, "lb"),
  28642. name: "Front",
  28643. image: {
  28644. source: "./media/characters/sfaiyan/front.svg",
  28645. extra: 999 / 978,
  28646. bottom: 5 / 1004
  28647. }
  28648. },
  28649. },
  28650. [
  28651. {
  28652. name: "Normal",
  28653. height: math.unit(1.82, "meters")
  28654. },
  28655. {
  28656. name: "Giant",
  28657. height: math.unit(2.27, "km"),
  28658. default: true
  28659. },
  28660. ]
  28661. ))
  28662. characterMakers.push(() => makeCharacter(
  28663. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28664. {
  28665. front: {
  28666. height: math.unit(179, "cm"),
  28667. weight: math.unit(100, "kg"),
  28668. name: "Front",
  28669. image: {
  28670. source: "./media/characters/raunehkeli/front.svg",
  28671. extra: 1934 / 1926,
  28672. bottom: 0 / 1934
  28673. }
  28674. },
  28675. },
  28676. [
  28677. {
  28678. name: "Normal",
  28679. height: math.unit(179, "cm")
  28680. },
  28681. {
  28682. name: "Maximum",
  28683. height: math.unit(575, "meters"),
  28684. default: true
  28685. },
  28686. ]
  28687. ))
  28688. characterMakers.push(() => makeCharacter(
  28689. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28690. {
  28691. front: {
  28692. height: math.unit(6, "feet"),
  28693. weight: math.unit(150, "lb"),
  28694. name: "Front",
  28695. image: {
  28696. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28697. extra: 2625 / 2518,
  28698. bottom: 60 / 2685
  28699. }
  28700. },
  28701. },
  28702. [
  28703. {
  28704. name: "Normal",
  28705. height: math.unit(6 + 2 / 12, "feet")
  28706. },
  28707. {
  28708. name: "Macro",
  28709. height: math.unit(1180, "feet"),
  28710. default: true
  28711. },
  28712. ]
  28713. ))
  28714. characterMakers.push(() => makeCharacter(
  28715. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28716. {
  28717. front: {
  28718. height: math.unit(5 + 6 / 12, "feet"),
  28719. weight: math.unit(108, "lb"),
  28720. name: "Front",
  28721. image: {
  28722. source: "./media/characters/lilith-zott/front.svg",
  28723. extra: 2510 / 2238,
  28724. bottom: 100 / 2610
  28725. }
  28726. },
  28727. frontDressed: {
  28728. height: math.unit(5 + 6 / 12, "feet"),
  28729. weight: math.unit(108, "lb"),
  28730. name: "Front (Dressed)",
  28731. image: {
  28732. source: "./media/characters/lilith-zott/front-dressed.svg",
  28733. extra: 2510 / 2238,
  28734. bottom: 100 / 2610
  28735. }
  28736. },
  28737. },
  28738. [
  28739. {
  28740. name: "Normal",
  28741. height: math.unit(5 + 6 / 12, "feet")
  28742. },
  28743. {
  28744. name: "Macro",
  28745. height: math.unit(1030, "feet"),
  28746. default: true
  28747. },
  28748. ]
  28749. ))
  28750. characterMakers.push(() => makeCharacter(
  28751. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28752. {
  28753. front: {
  28754. height: math.unit(6, "feet"),
  28755. weight: math.unit(150, "lb"),
  28756. name: "Front",
  28757. image: {
  28758. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28759. extra: 2567 / 2435,
  28760. bottom: 39 / 2606
  28761. }
  28762. },
  28763. frontSuper: {
  28764. height: math.unit(6, "feet"),
  28765. name: "Front (Super)",
  28766. image: {
  28767. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28768. extra: 2567 / 2435,
  28769. bottom: 39 / 2606
  28770. }
  28771. },
  28772. },
  28773. [
  28774. {
  28775. name: "Normal",
  28776. height: math.unit(5 + 10 / 12, "feet")
  28777. },
  28778. {
  28779. name: "Macro",
  28780. height: math.unit(1100, "feet"),
  28781. default: true
  28782. },
  28783. ]
  28784. ))
  28785. characterMakers.push(() => makeCharacter(
  28786. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28787. {
  28788. front: {
  28789. height: math.unit(100, "miles"),
  28790. name: "Front",
  28791. image: {
  28792. source: "./media/characters/sona/front.svg",
  28793. extra: 2433 / 2201,
  28794. bottom: 53 / 2486
  28795. }
  28796. },
  28797. foot: {
  28798. height: math.unit(16.1, "miles"),
  28799. name: "Foot",
  28800. image: {
  28801. source: "./media/characters/sona/foot.svg"
  28802. }
  28803. },
  28804. },
  28805. [
  28806. {
  28807. name: "Macro",
  28808. height: math.unit(100, "miles"),
  28809. default: true
  28810. },
  28811. ]
  28812. ))
  28813. characterMakers.push(() => makeCharacter(
  28814. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28815. {
  28816. front: {
  28817. height: math.unit(6, "feet"),
  28818. weight: math.unit(150, "lb"),
  28819. name: "Front",
  28820. image: {
  28821. source: "./media/characters/bailey/front.svg",
  28822. extra: 1778 / 1724,
  28823. bottom: 30 / 1808
  28824. }
  28825. },
  28826. },
  28827. [
  28828. {
  28829. name: "Micro",
  28830. height: math.unit(4, "inches")
  28831. },
  28832. {
  28833. name: "Normal",
  28834. height: math.unit(5 + 5 / 12, "feet"),
  28835. default: true
  28836. },
  28837. {
  28838. name: "Macro",
  28839. height: math.unit(250, "feet")
  28840. },
  28841. {
  28842. name: "Megamacro",
  28843. height: math.unit(100, "miles")
  28844. },
  28845. ]
  28846. ))
  28847. characterMakers.push(() => makeCharacter(
  28848. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28849. {
  28850. front: {
  28851. height: math.unit(5 + 2 / 12, "feet"),
  28852. weight: math.unit(120, "lb"),
  28853. name: "Front",
  28854. image: {
  28855. source: "./media/characters/snaps/front.svg",
  28856. extra: 2370 / 2177,
  28857. bottom: 48 / 2418
  28858. }
  28859. },
  28860. back: {
  28861. height: math.unit(5 + 2 / 12, "feet"),
  28862. weight: math.unit(120, "lb"),
  28863. name: "Back",
  28864. image: {
  28865. source: "./media/characters/snaps/back.svg",
  28866. extra: 2408 / 2258,
  28867. bottom: 15 / 2423
  28868. }
  28869. },
  28870. },
  28871. [
  28872. {
  28873. name: "Micro",
  28874. height: math.unit(9, "inches")
  28875. },
  28876. {
  28877. name: "Normal",
  28878. height: math.unit(5 + 2 / 12, "feet"),
  28879. default: true
  28880. },
  28881. {
  28882. name: "Mini Macro",
  28883. height: math.unit(10, "feet")
  28884. },
  28885. ]
  28886. ))
  28887. characterMakers.push(() => makeCharacter(
  28888. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28889. {
  28890. front: {
  28891. height: math.unit(1.8, "meters"),
  28892. weight: math.unit(85, "kg"),
  28893. name: "Front",
  28894. image: {
  28895. source: "./media/characters/azteck/front.svg",
  28896. extra: 2815 / 2625,
  28897. bottom: 89 / 2904
  28898. }
  28899. },
  28900. back: {
  28901. height: math.unit(1.8, "meters"),
  28902. weight: math.unit(85, "kg"),
  28903. name: "Back",
  28904. image: {
  28905. source: "./media/characters/azteck/back.svg",
  28906. extra: 2856 / 2648,
  28907. bottom: 85 / 2941
  28908. }
  28909. },
  28910. frontDressed: {
  28911. height: math.unit(1.8, "meters"),
  28912. weight: math.unit(85, "kg"),
  28913. name: "Front (Dressed)",
  28914. image: {
  28915. source: "./media/characters/azteck/front-dressed.svg",
  28916. extra: 2147 / 2003,
  28917. bottom: 68 / 2215
  28918. }
  28919. },
  28920. head: {
  28921. height: math.unit(0.47, "meters"),
  28922. weight: math.unit(85, "kg"),
  28923. name: "Head",
  28924. image: {
  28925. source: "./media/characters/azteck/head.svg"
  28926. }
  28927. },
  28928. },
  28929. [
  28930. {
  28931. name: "Bite sized",
  28932. height: math.unit(16, "cm")
  28933. },
  28934. {
  28935. name: "Normal",
  28936. height: math.unit(1.8, "meters"),
  28937. default: true
  28938. },
  28939. ]
  28940. ))
  28941. characterMakers.push(() => makeCharacter(
  28942. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28943. {
  28944. front: {
  28945. height: math.unit(6, "feet"),
  28946. weight: math.unit(150, "lb"),
  28947. name: "Front",
  28948. image: {
  28949. source: "./media/characters/pidge/front.svg",
  28950. extra: 620 / 588,
  28951. bottom: 9 / 629
  28952. }
  28953. },
  28954. back: {
  28955. height: math.unit(6, "feet"),
  28956. weight: math.unit(150, "lb"),
  28957. name: "Back",
  28958. image: {
  28959. source: "./media/characters/pidge/back.svg",
  28960. extra: 620 / 588,
  28961. bottom: 9 / 629
  28962. }
  28963. },
  28964. },
  28965. [
  28966. {
  28967. name: "Macro",
  28968. height: math.unit(1, "mile"),
  28969. default: true
  28970. },
  28971. ]
  28972. ))
  28973. characterMakers.push(() => makeCharacter(
  28974. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28975. {
  28976. front: {
  28977. height: math.unit(6, "feet"),
  28978. weight: math.unit(150, "lb"),
  28979. name: "Front",
  28980. image: {
  28981. source: "./media/characters/en/front.svg",
  28982. extra: 1697 / 1563,
  28983. bottom: 103 / 1800
  28984. }
  28985. },
  28986. back: {
  28987. height: math.unit(6, "feet"),
  28988. weight: math.unit(150, "lb"),
  28989. name: "Back",
  28990. image: {
  28991. source: "./media/characters/en/back.svg",
  28992. extra: 1700 / 1570,
  28993. bottom: 51 / 1751
  28994. }
  28995. },
  28996. frontDressed: {
  28997. height: math.unit(6, "feet"),
  28998. weight: math.unit(150, "lb"),
  28999. name: "Front (Dressed)",
  29000. image: {
  29001. source: "./media/characters/en/front-dressed.svg",
  29002. extra: 1697 / 1563,
  29003. bottom: 103 / 1800
  29004. }
  29005. },
  29006. backDressed: {
  29007. height: math.unit(6, "feet"),
  29008. weight: math.unit(150, "lb"),
  29009. name: "Back (Dressed)",
  29010. image: {
  29011. source: "./media/characters/en/back-dressed.svg",
  29012. extra: 1700 / 1570,
  29013. bottom: 51 / 1751
  29014. }
  29015. },
  29016. },
  29017. [
  29018. {
  29019. name: "Macro",
  29020. height: math.unit(210, "feet"),
  29021. default: true
  29022. },
  29023. ]
  29024. ))
  29025. characterMakers.push(() => makeCharacter(
  29026. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29027. {
  29028. front: {
  29029. height: math.unit(6, "feet"),
  29030. weight: math.unit(150, "lb"),
  29031. name: "Front",
  29032. image: {
  29033. source: "./media/characters/haze-orris/front.svg",
  29034. extra: 3975 / 3525,
  29035. bottom: 137 / 4112
  29036. }
  29037. },
  29038. },
  29039. [
  29040. {
  29041. name: "Micro",
  29042. height: math.unit(150, "mm"),
  29043. default: true
  29044. },
  29045. ]
  29046. ))
  29047. characterMakers.push(() => makeCharacter(
  29048. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29049. {
  29050. front: {
  29051. height: math.unit(6, "feet"),
  29052. weight: math.unit(150, "lb"),
  29053. name: "Front",
  29054. image: {
  29055. source: "./media/characters/casselene-yaro/front.svg",
  29056. extra: 4721 / 4541,
  29057. bottom: 82 / 4803
  29058. }
  29059. },
  29060. back: {
  29061. height: math.unit(6, "feet"),
  29062. weight: math.unit(150, "lb"),
  29063. name: "Back",
  29064. image: {
  29065. source: "./media/characters/casselene-yaro/back.svg",
  29066. extra: 4569 / 4377,
  29067. bottom: 69 / 4638
  29068. }
  29069. },
  29070. frontDressed: {
  29071. height: math.unit(6, "feet"),
  29072. weight: math.unit(150, "lb"),
  29073. name: "Front-dressed",
  29074. image: {
  29075. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29076. extra: 4721 / 4541,
  29077. bottom: 82 / 4803
  29078. }
  29079. },
  29080. },
  29081. [
  29082. {
  29083. name: "Macro",
  29084. height: math.unit(190, "feet"),
  29085. default: true
  29086. },
  29087. ]
  29088. ))
  29089. characterMakers.push(() => makeCharacter(
  29090. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29091. {
  29092. front: {
  29093. height: math.unit(6, "feet"),
  29094. weight: math.unit(150, "lb"),
  29095. name: "Front",
  29096. image: {
  29097. source: "./media/characters/myra-rue-delore/front.svg",
  29098. extra: 1340 / 1308,
  29099. bottom: 67 / 1407
  29100. }
  29101. },
  29102. back: {
  29103. height: math.unit(6, "feet"),
  29104. weight: math.unit(150, "lb"),
  29105. name: "Back",
  29106. image: {
  29107. source: "./media/characters/myra-rue-delore/back.svg",
  29108. extra: 1341 / 1310,
  29109. bottom: 40 / 1381
  29110. }
  29111. },
  29112. frontDressed: {
  29113. height: math.unit(6, "feet"),
  29114. weight: math.unit(150, "lb"),
  29115. name: "Front (Dressed)",
  29116. image: {
  29117. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29118. extra: 1340 / 1308,
  29119. bottom: 67 / 1407
  29120. }
  29121. },
  29122. },
  29123. [
  29124. {
  29125. name: "Macro",
  29126. height: math.unit(150, "feet"),
  29127. default: true
  29128. },
  29129. ]
  29130. ))
  29131. characterMakers.push(() => makeCharacter(
  29132. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29133. {
  29134. front: {
  29135. height: math.unit(10, "feet"),
  29136. weight: math.unit(15015, "lb"),
  29137. name: "Front",
  29138. image: {
  29139. source: "./media/characters/fem!plat/front.svg",
  29140. extra: 2799 / 2604,
  29141. bottom: 149 / 2948
  29142. }
  29143. },
  29144. },
  29145. [
  29146. {
  29147. name: "Normal",
  29148. height: math.unit(10, "feet"),
  29149. default: true
  29150. },
  29151. {
  29152. name: "Macro",
  29153. height: math.unit(100, "feet")
  29154. },
  29155. {
  29156. name: "Megamacro",
  29157. height: math.unit(1000, "feet")
  29158. },
  29159. ]
  29160. ))
  29161. characterMakers.push(() => makeCharacter(
  29162. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29163. {
  29164. front: {
  29165. height: math.unit(15 + 5 / 12, "feet"),
  29166. weight: math.unit(4600, "lb"),
  29167. name: "Front",
  29168. image: {
  29169. source: "./media/characters/neapolitan-ananassa/front.svg",
  29170. extra: 2903 / 2736,
  29171. bottom: 0 / 2903
  29172. }
  29173. },
  29174. side: {
  29175. height: math.unit(15 + 5 / 12, "feet"),
  29176. weight: math.unit(4600, "lb"),
  29177. name: "Side",
  29178. image: {
  29179. source: "./media/characters/neapolitan-ananassa/side.svg",
  29180. extra: 2925 / 2719,
  29181. bottom: 0 / 2925
  29182. }
  29183. },
  29184. back: {
  29185. height: math.unit(15 + 5 / 12, "feet"),
  29186. weight: math.unit(4600, "lb"),
  29187. name: "Back",
  29188. image: {
  29189. source: "./media/characters/neapolitan-ananassa/back.svg",
  29190. extra: 2903 / 2736,
  29191. bottom: 0 / 2903
  29192. }
  29193. },
  29194. },
  29195. [
  29196. {
  29197. name: "Normal",
  29198. height: math.unit(15 + 5 / 12, "feet"),
  29199. default: true
  29200. },
  29201. {
  29202. name: "Post-Millenium",
  29203. height: math.unit(35 + 5 / 12, "feet")
  29204. },
  29205. {
  29206. name: "Post-Era",
  29207. height: math.unit(450 + 5 / 12, "feet")
  29208. },
  29209. ]
  29210. ))
  29211. characterMakers.push(() => makeCharacter(
  29212. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29213. {
  29214. front: {
  29215. height: math.unit(300, "meters"),
  29216. weight: math.unit(125000, "tonnes"),
  29217. name: "Front",
  29218. image: {
  29219. source: "./media/characters/pazuzu/front.svg",
  29220. extra: 877 / 794,
  29221. bottom: 47 / 924
  29222. }
  29223. },
  29224. },
  29225. [
  29226. {
  29227. name: "Macro",
  29228. height: math.unit(300, "meters"),
  29229. default: true
  29230. },
  29231. ]
  29232. ))
  29233. characterMakers.push(() => makeCharacter(
  29234. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29235. {
  29236. side: {
  29237. height: math.unit(10 + 7 / 12, "feet"),
  29238. weight: math.unit(2.5, "tons"),
  29239. name: "Side",
  29240. image: {
  29241. source: "./media/characters/aasha/side.svg",
  29242. extra: 1345 / 1245,
  29243. bottom: 111 / 1456
  29244. }
  29245. },
  29246. back: {
  29247. height: math.unit(10 + 7 / 12, "feet"),
  29248. weight: math.unit(2.5, "tons"),
  29249. name: "Back",
  29250. image: {
  29251. source: "./media/characters/aasha/back.svg",
  29252. extra: 1133 / 1057,
  29253. bottom: 257 / 1390
  29254. }
  29255. },
  29256. },
  29257. [
  29258. {
  29259. name: "Normal",
  29260. height: math.unit(10 + 7 / 12, "feet"),
  29261. default: true
  29262. },
  29263. ]
  29264. ))
  29265. characterMakers.push(() => makeCharacter(
  29266. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29267. {
  29268. front: {
  29269. height: math.unit(6 + 3 / 12, "feet"),
  29270. name: "Front",
  29271. image: {
  29272. source: "./media/characters/nevan/front.svg",
  29273. extra: 704 / 704,
  29274. bottom: 28 / 732
  29275. }
  29276. },
  29277. back: {
  29278. height: math.unit(6 + 3 / 12, "feet"),
  29279. name: "Back",
  29280. image: {
  29281. source: "./media/characters/nevan/back.svg",
  29282. extra: 714 / 714,
  29283. bottom: 21 / 735
  29284. }
  29285. },
  29286. frontFlaccid: {
  29287. height: math.unit(6 + 3 / 12, "feet"),
  29288. name: "Front (Flaccid)",
  29289. image: {
  29290. source: "./media/characters/nevan/front-flaccid.svg",
  29291. extra: 704 / 704,
  29292. bottom: 28 / 732
  29293. }
  29294. },
  29295. frontErect: {
  29296. height: math.unit(6 + 3 / 12, "feet"),
  29297. name: "Front (Erect)",
  29298. image: {
  29299. source: "./media/characters/nevan/front-erect.svg",
  29300. extra: 704 / 704,
  29301. bottom: 28 / 732
  29302. }
  29303. },
  29304. backFlaccid: {
  29305. height: math.unit(6 + 3 / 12, "feet"),
  29306. name: "Back (Flaccid)",
  29307. image: {
  29308. source: "./media/characters/nevan/back-flaccid.svg",
  29309. extra: 714 / 714,
  29310. bottom: 21 / 735
  29311. }
  29312. },
  29313. },
  29314. [
  29315. {
  29316. name: "Normal",
  29317. height: math.unit(6 + 3 / 12, "feet"),
  29318. default: true
  29319. },
  29320. ]
  29321. ))
  29322. characterMakers.push(() => makeCharacter(
  29323. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29324. {
  29325. front: {
  29326. height: math.unit(4, "feet"),
  29327. name: "Front",
  29328. image: {
  29329. source: "./media/characters/arhan/front.svg",
  29330. extra: 3368 / 3133,
  29331. bottom: 0 / 3368
  29332. }
  29333. },
  29334. side: {
  29335. height: math.unit(4, "feet"),
  29336. name: "Side",
  29337. image: {
  29338. source: "./media/characters/arhan/side.svg",
  29339. extra: 3347 / 3105,
  29340. bottom: 0 / 3347
  29341. }
  29342. },
  29343. tongue: {
  29344. height: math.unit(1.42, "feet"),
  29345. name: "Tongue",
  29346. image: {
  29347. source: "./media/characters/arhan/tongue.svg"
  29348. }
  29349. },
  29350. head: {
  29351. height: math.unit(0.85, "feet"),
  29352. name: "Head",
  29353. image: {
  29354. source: "./media/characters/arhan/head.svg"
  29355. }
  29356. },
  29357. },
  29358. [
  29359. {
  29360. name: "Normal",
  29361. height: math.unit(4, "feet"),
  29362. default: true
  29363. },
  29364. ]
  29365. ))
  29366. characterMakers.push(() => makeCharacter(
  29367. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29368. {
  29369. front: {
  29370. height: math.unit(5 + 7.5 / 12, "feet"),
  29371. weight: math.unit(120, "lb"),
  29372. name: "Front",
  29373. image: {
  29374. source: "./media/characters/digi-duncan/front.svg",
  29375. extra: 330 / 326,
  29376. bottom: 16 / 346
  29377. }
  29378. },
  29379. side: {
  29380. height: math.unit(5 + 7.5 / 12, "feet"),
  29381. weight: math.unit(120, "lb"),
  29382. name: "Side",
  29383. image: {
  29384. source: "./media/characters/digi-duncan/side.svg",
  29385. extra: 341 / 337,
  29386. bottom: 1 / 342
  29387. }
  29388. },
  29389. back: {
  29390. height: math.unit(5 + 7.5 / 12, "feet"),
  29391. weight: math.unit(120, "lb"),
  29392. name: "Back",
  29393. image: {
  29394. source: "./media/characters/digi-duncan/back.svg",
  29395. extra: 330 / 326,
  29396. bottom: 12 / 342
  29397. }
  29398. },
  29399. },
  29400. [
  29401. {
  29402. name: "Speck",
  29403. height: math.unit(0.25, "mm")
  29404. },
  29405. {
  29406. name: "Micro",
  29407. height: math.unit(5, "mm")
  29408. },
  29409. {
  29410. name: "Tiny",
  29411. height: math.unit(0.5, "inches"),
  29412. default: true
  29413. },
  29414. {
  29415. name: "Human",
  29416. height: math.unit(5 + 7.5 / 12, "feet")
  29417. },
  29418. {
  29419. name: "Minigiant",
  29420. height: math.unit(8 + 5.25, "feet")
  29421. },
  29422. {
  29423. name: "Giant",
  29424. height: math.unit(2000, "feet")
  29425. },
  29426. {
  29427. name: "Mega",
  29428. height: math.unit(371.1, "miles")
  29429. },
  29430. ]
  29431. ))
  29432. characterMakers.push(() => makeCharacter(
  29433. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29434. {
  29435. front: {
  29436. height: math.unit(2, "meters"),
  29437. weight: math.unit(350, "kg"),
  29438. name: "Front",
  29439. image: {
  29440. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29441. extra: 898 / 838,
  29442. bottom: 9 / 907
  29443. }
  29444. },
  29445. },
  29446. [
  29447. {
  29448. name: "Micro",
  29449. height: math.unit(8, "meters")
  29450. },
  29451. {
  29452. name: "Normal",
  29453. height: math.unit(50, "meters"),
  29454. default: true
  29455. },
  29456. {
  29457. name: "Macro",
  29458. height: math.unit(500, "meters")
  29459. },
  29460. ]
  29461. ))
  29462. characterMakers.push(() => makeCharacter(
  29463. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29464. {
  29465. front: {
  29466. height: math.unit(6 + 6 / 12, "feet"),
  29467. name: "Front",
  29468. image: {
  29469. source: "./media/characters/khardesh/front.svg",
  29470. extra: 888 / 797,
  29471. bottom: 25 / 913
  29472. }
  29473. },
  29474. },
  29475. [
  29476. {
  29477. name: "Normal",
  29478. height: math.unit(6 + 6 / 12, "feet"),
  29479. default: true
  29480. },
  29481. {
  29482. name: "Normal+",
  29483. height: math.unit(4, "meters")
  29484. },
  29485. {
  29486. name: "Macro",
  29487. height: math.unit(50, "meters")
  29488. },
  29489. {
  29490. name: "Macro+",
  29491. height: math.unit(100, "meters")
  29492. },
  29493. {
  29494. name: "Megamacro",
  29495. height: math.unit(20, "km")
  29496. },
  29497. ]
  29498. ))
  29499. characterMakers.push(() => makeCharacter(
  29500. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29501. {
  29502. front: {
  29503. height: math.unit(6, "feet"),
  29504. weight: math.unit(150, "lb"),
  29505. name: "Front",
  29506. image: {
  29507. source: "./media/characters/kosho/front.svg",
  29508. extra: 1847 / 1847,
  29509. bottom: 86 / 1933
  29510. }
  29511. },
  29512. },
  29513. [
  29514. {
  29515. name: "Second-stage micro",
  29516. height: math.unit(0.5, "inches")
  29517. },
  29518. {
  29519. name: "First-stage micro",
  29520. height: math.unit(6, "inches")
  29521. },
  29522. {
  29523. name: "Normal",
  29524. height: math.unit(6, "feet"),
  29525. default: true
  29526. },
  29527. {
  29528. name: "First-stage macro",
  29529. height: math.unit(72, "feet")
  29530. },
  29531. {
  29532. name: "Second-stage macro",
  29533. height: math.unit(864, "feet")
  29534. },
  29535. ]
  29536. ))
  29537. characterMakers.push(() => makeCharacter(
  29538. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29539. {
  29540. normal: {
  29541. height: math.unit(4 + 6 / 12, "feet"),
  29542. name: "Normal",
  29543. image: {
  29544. source: "./media/characters/hydra/normal.svg",
  29545. extra: 2833 / 2634,
  29546. bottom: 68 / 2901
  29547. }
  29548. },
  29549. smol: {
  29550. height: math.unit(0.705, "inches"),
  29551. name: "Smol",
  29552. image: {
  29553. source: "./media/characters/hydra/smol.svg",
  29554. extra: 2715 / 2540,
  29555. bottom: 0 / 2715
  29556. }
  29557. },
  29558. },
  29559. [
  29560. {
  29561. name: "Normal",
  29562. height: math.unit(4 + 6 / 12, "feet"),
  29563. default: true
  29564. }
  29565. ]
  29566. ))
  29567. characterMakers.push(() => makeCharacter(
  29568. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29569. {
  29570. front: {
  29571. height: math.unit(0.6, "cm"),
  29572. name: "Front",
  29573. image: {
  29574. source: "./media/characters/daz/front.svg",
  29575. extra: 1682 / 1164,
  29576. bottom: 42 / 1724
  29577. }
  29578. },
  29579. },
  29580. [
  29581. {
  29582. name: "Normal",
  29583. height: math.unit(0.6, "cm"),
  29584. default: true
  29585. },
  29586. ]
  29587. ))
  29588. characterMakers.push(() => makeCharacter(
  29589. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29590. {
  29591. front: {
  29592. height: math.unit(6, "feet"),
  29593. weight: math.unit(235, "lb"),
  29594. name: "Front",
  29595. image: {
  29596. source: "./media/characters/theo-pangolin/front.svg",
  29597. extra: 1996 / 1969,
  29598. bottom: 115 / 2111
  29599. }
  29600. },
  29601. back: {
  29602. height: math.unit(6, "feet"),
  29603. weight: math.unit(235, "lb"),
  29604. name: "Back",
  29605. image: {
  29606. source: "./media/characters/theo-pangolin/back.svg",
  29607. extra: 1979 / 1979,
  29608. bottom: 40 / 2019
  29609. }
  29610. },
  29611. feral: {
  29612. height: math.unit(2, "feet"),
  29613. weight: math.unit(30, "lb"),
  29614. name: "Feral",
  29615. image: {
  29616. source: "./media/characters/theo-pangolin/feral.svg",
  29617. extra: 803 / 791,
  29618. bottom: 181 / 984
  29619. }
  29620. },
  29621. footFive: {
  29622. height: math.unit(1.43, "feet"),
  29623. name: "Foot (Five Toes)",
  29624. image: {
  29625. source: "./media/characters/theo-pangolin/foot-five.svg"
  29626. }
  29627. },
  29628. footFour: {
  29629. height: math.unit(1.43, "feet"),
  29630. name: "Foot (Four Toes)",
  29631. image: {
  29632. source: "./media/characters/theo-pangolin/foot-four.svg"
  29633. }
  29634. },
  29635. handFour: {
  29636. height: math.unit(0.81, "feet"),
  29637. name: "Hand (Four Fingers)",
  29638. image: {
  29639. source: "./media/characters/theo-pangolin/hand-four.svg"
  29640. }
  29641. },
  29642. handThree: {
  29643. height: math.unit(0.81, "feet"),
  29644. name: "Hand (Three Fingers)",
  29645. image: {
  29646. source: "./media/characters/theo-pangolin/hand-three.svg"
  29647. }
  29648. },
  29649. headFront: {
  29650. height: math.unit(1.37, "feet"),
  29651. name: "Head (Front)",
  29652. image: {
  29653. source: "./media/characters/theo-pangolin/head-front.svg"
  29654. }
  29655. },
  29656. headSide: {
  29657. height: math.unit(1.43, "feet"),
  29658. name: "Head (Side)",
  29659. image: {
  29660. source: "./media/characters/theo-pangolin/head-side.svg"
  29661. }
  29662. },
  29663. tongue: {
  29664. height: math.unit(2.29, "feet"),
  29665. name: "Tongue",
  29666. image: {
  29667. source: "./media/characters/theo-pangolin/tongue.svg"
  29668. }
  29669. },
  29670. },
  29671. [
  29672. {
  29673. name: "Normal",
  29674. height: math.unit(6, "feet")
  29675. },
  29676. {
  29677. name: "Macro",
  29678. height: math.unit(400, "feet"),
  29679. default: true
  29680. },
  29681. ]
  29682. ))
  29683. characterMakers.push(() => makeCharacter(
  29684. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29685. {
  29686. front: {
  29687. height: math.unit(6, "inches"),
  29688. weight: math.unit(0.036, "kg"),
  29689. name: "Front",
  29690. image: {
  29691. source: "./media/characters/renée/front.svg",
  29692. extra: 900 / 886,
  29693. bottom: 8 / 908
  29694. }
  29695. },
  29696. },
  29697. [
  29698. {
  29699. name: "Nano",
  29700. height: math.unit(1, "nm")
  29701. },
  29702. {
  29703. name: "Micro",
  29704. height: math.unit(1, "mm")
  29705. },
  29706. {
  29707. name: "Normal",
  29708. height: math.unit(6, "inches")
  29709. },
  29710. {
  29711. name: "Macro",
  29712. height: math.unit(2000, "feet"),
  29713. default: true
  29714. },
  29715. {
  29716. name: "Megamacro",
  29717. height: math.unit(2, "km")
  29718. },
  29719. {
  29720. name: "Gigamacro",
  29721. height: math.unit(2000, "km")
  29722. },
  29723. {
  29724. name: "Teramacro",
  29725. height: math.unit(250000, "km")
  29726. },
  29727. ]
  29728. ))
  29729. characterMakers.push(() => makeCharacter(
  29730. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29731. {
  29732. front: {
  29733. height: math.unit(4, "meters"),
  29734. weight: math.unit(150, "kg"),
  29735. name: "Front",
  29736. image: {
  29737. source: "./media/characters/caledvwlch/front.svg",
  29738. extra: 1760 / 1551,
  29739. bottom: 28 / 1788
  29740. }
  29741. },
  29742. side: {
  29743. height: math.unit(4, "meters"),
  29744. weight: math.unit(150, "kg"),
  29745. name: "Side",
  29746. image: {
  29747. source: "./media/characters/caledvwlch/side.svg",
  29748. extra: 1605 / 1536,
  29749. bottom: 31 / 1636
  29750. }
  29751. },
  29752. back: {
  29753. height: math.unit(4, "meters"),
  29754. weight: math.unit(150, "kg"),
  29755. name: "Back",
  29756. image: {
  29757. source: "./media/characters/caledvwlch/back.svg",
  29758. extra: 1635 / 1565,
  29759. bottom: 27 / 1662
  29760. }
  29761. },
  29762. },
  29763. [
  29764. {
  29765. name: "\"Incognito\"",
  29766. height: math.unit(4, "meters")
  29767. },
  29768. {
  29769. name: "Small rampage",
  29770. height: math.unit(600, "meters")
  29771. },
  29772. {
  29773. name: "Mega",
  29774. height: math.unit(30, "km")
  29775. },
  29776. {
  29777. name: "Home-size",
  29778. height: math.unit(50, "km"),
  29779. default: true
  29780. },
  29781. {
  29782. name: "Giga",
  29783. height: math.unit(300, "km")
  29784. },
  29785. {
  29786. name: "Lounging",
  29787. height: math.unit(11000, "km")
  29788. },
  29789. {
  29790. name: "Planet snacking",
  29791. height: math.unit(2000000, "km")
  29792. },
  29793. ]
  29794. ))
  29795. characterMakers.push(() => makeCharacter(
  29796. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29797. {
  29798. front: {
  29799. height: math.unit(6, "feet"),
  29800. weight: math.unit(215, "lb"),
  29801. name: "Front",
  29802. image: {
  29803. source: "./media/characters/sapphire-svell/front.svg",
  29804. extra: 495 / 455,
  29805. bottom: 20 / 515
  29806. }
  29807. },
  29808. back: {
  29809. height: math.unit(6, "feet"),
  29810. weight: math.unit(216, "lb"),
  29811. name: "Back",
  29812. image: {
  29813. source: "./media/characters/sapphire-svell/back.svg",
  29814. extra: 497 / 477,
  29815. bottom: 7 / 504
  29816. }
  29817. },
  29818. maw: {
  29819. height: math.unit(1.57, "feet"),
  29820. name: "Maw",
  29821. image: {
  29822. source: "./media/characters/sapphire-svell/maw.svg"
  29823. }
  29824. },
  29825. foot: {
  29826. height: math.unit(1.07, "feet"),
  29827. name: "Foot",
  29828. image: {
  29829. source: "./media/characters/sapphire-svell/foot.svg"
  29830. }
  29831. },
  29832. toering: {
  29833. height: math.unit(1.7, "inch"),
  29834. name: "Toering",
  29835. image: {
  29836. source: "./media/characters/sapphire-svell/toering.svg"
  29837. }
  29838. },
  29839. },
  29840. [
  29841. {
  29842. name: "Normal",
  29843. height: math.unit(300, "feet"),
  29844. default: true
  29845. },
  29846. {
  29847. name: "Augmented",
  29848. height: math.unit(1250, "feet")
  29849. },
  29850. {
  29851. name: "Unleashed",
  29852. height: math.unit(3000, "feet")
  29853. },
  29854. ]
  29855. ))
  29856. characterMakers.push(() => makeCharacter(
  29857. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29858. {
  29859. side: {
  29860. height: math.unit(2 + 3 / 12, "feet"),
  29861. weight: math.unit(110, "lb"),
  29862. name: "Side",
  29863. image: {
  29864. source: "./media/characters/glitch-flux/side.svg",
  29865. extra: 997 / 805,
  29866. bottom: 20 / 1017
  29867. }
  29868. },
  29869. },
  29870. [
  29871. {
  29872. name: "Normal",
  29873. height: math.unit(2 + 3 / 12, "feet"),
  29874. default: true
  29875. },
  29876. ]
  29877. ))
  29878. characterMakers.push(() => makeCharacter(
  29879. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29880. {
  29881. front: {
  29882. height: math.unit(4, "meters"),
  29883. name: "Front",
  29884. image: {
  29885. source: "./media/characters/mid/front.svg",
  29886. extra: 507 / 476,
  29887. bottom: 17 / 524
  29888. }
  29889. },
  29890. back: {
  29891. height: math.unit(4, "meters"),
  29892. name: "Back",
  29893. image: {
  29894. source: "./media/characters/mid/back.svg",
  29895. extra: 519 / 487,
  29896. bottom: 7 / 526
  29897. }
  29898. },
  29899. stuck: {
  29900. height: math.unit(2.2, "meters"),
  29901. name: "Stuck",
  29902. image: {
  29903. source: "./media/characters/mid/stuck.svg",
  29904. extra: 1951 / 1869,
  29905. bottom: 88 / 2039
  29906. }
  29907. }
  29908. },
  29909. [
  29910. {
  29911. name: "Normal",
  29912. height: math.unit(4, "meters"),
  29913. default: true
  29914. },
  29915. {
  29916. name: "Big",
  29917. height: math.unit(10, "meters")
  29918. },
  29919. {
  29920. name: "Macro",
  29921. height: math.unit(800, "meters")
  29922. },
  29923. {
  29924. name: "Megamacro",
  29925. height: math.unit(100, "km")
  29926. },
  29927. {
  29928. name: "Overgrown",
  29929. height: math.unit(1, "parsec")
  29930. },
  29931. ]
  29932. ))
  29933. characterMakers.push(() => makeCharacter(
  29934. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29935. {
  29936. front: {
  29937. height: math.unit(2.5, "meters"),
  29938. weight: math.unit(225, "kg"),
  29939. name: "Front",
  29940. image: {
  29941. source: "./media/characters/iris/front.svg",
  29942. extra: 3348 / 3251,
  29943. bottom: 205 / 3553
  29944. }
  29945. },
  29946. maw: {
  29947. height: math.unit(0.56, "meter"),
  29948. name: "Maw",
  29949. image: {
  29950. source: "./media/characters/iris/maw.svg"
  29951. }
  29952. },
  29953. },
  29954. [
  29955. {
  29956. name: "Mewter cat",
  29957. height: math.unit(1.2, "meters")
  29958. },
  29959. {
  29960. name: "Minimacro",
  29961. height: math.unit(2.5, "meters"),
  29962. default: true
  29963. },
  29964. {
  29965. name: "Macro",
  29966. height: math.unit(180, "meters")
  29967. },
  29968. {
  29969. name: "Megamacro",
  29970. height: math.unit(2746, "meters")
  29971. },
  29972. ]
  29973. ))
  29974. characterMakers.push(() => makeCharacter(
  29975. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29976. {
  29977. front: {
  29978. height: math.unit(6, "feet"),
  29979. weight: math.unit(135, "lb"),
  29980. name: "Front",
  29981. image: {
  29982. source: "./media/characters/axel/front.svg",
  29983. extra: 908 / 908,
  29984. bottom: 58 / 966
  29985. }
  29986. },
  29987. side: {
  29988. height: math.unit(6, "feet"),
  29989. weight: math.unit(135, "lb"),
  29990. name: "Side",
  29991. image: {
  29992. source: "./media/characters/axel/side.svg",
  29993. extra: 958 / 958,
  29994. bottom: 11 / 969
  29995. }
  29996. },
  29997. back: {
  29998. height: math.unit(6, "feet"),
  29999. weight: math.unit(135, "lb"),
  30000. name: "Back",
  30001. image: {
  30002. source: "./media/characters/axel/back.svg",
  30003. extra: 887 / 887,
  30004. bottom: 34 / 921
  30005. }
  30006. },
  30007. head: {
  30008. height: math.unit(1.07, "feet"),
  30009. name: "Head",
  30010. image: {
  30011. source: "./media/characters/axel/head.svg"
  30012. }
  30013. },
  30014. beak: {
  30015. height: math.unit(1.4, "feet"),
  30016. name: "Beak",
  30017. image: {
  30018. source: "./media/characters/axel/beak.svg"
  30019. }
  30020. },
  30021. beakSide: {
  30022. height: math.unit(1.4, "feet"),
  30023. name: "Beak Side",
  30024. image: {
  30025. source: "./media/characters/axel/beak-side.svg"
  30026. }
  30027. },
  30028. sheath: {
  30029. height: math.unit(0.5, "feet"),
  30030. name: "Sheath",
  30031. image: {
  30032. source: "./media/characters/axel/sheath.svg"
  30033. }
  30034. },
  30035. dick: {
  30036. height: math.unit(0.98, "feet"),
  30037. name: "Dick",
  30038. image: {
  30039. source: "./media/characters/axel/dick.svg"
  30040. }
  30041. },
  30042. },
  30043. [
  30044. {
  30045. name: "Macro",
  30046. height: math.unit(68, "meters"),
  30047. default: true
  30048. },
  30049. ]
  30050. ))
  30051. characterMakers.push(() => makeCharacter(
  30052. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30053. {
  30054. front: {
  30055. height: math.unit(3.5, "meters"),
  30056. weight: math.unit(1200, "kg"),
  30057. name: "Front",
  30058. image: {
  30059. source: "./media/characters/joanna/front.svg",
  30060. extra: 1596 / 1488,
  30061. bottom: 29 / 1625
  30062. }
  30063. },
  30064. back: {
  30065. height: math.unit(3.5, "meters"),
  30066. weight: math.unit(1200, "kg"),
  30067. name: "Back",
  30068. image: {
  30069. source: "./media/characters/joanna/back.svg",
  30070. extra: 1594 / 1495,
  30071. bottom: 26 / 1620
  30072. }
  30073. },
  30074. frontShorts: {
  30075. height: math.unit(3.5, "meters"),
  30076. weight: math.unit(1200, "kg"),
  30077. name: "Front (Shorts)",
  30078. image: {
  30079. source: "./media/characters/joanna/front-shorts.svg",
  30080. extra: 1596 / 1488,
  30081. bottom: 29 / 1625
  30082. }
  30083. },
  30084. frontBiker: {
  30085. height: math.unit(3.5, "meters"),
  30086. weight: math.unit(1200, "kg"),
  30087. name: "Front (Biker)",
  30088. image: {
  30089. source: "./media/characters/joanna/front-biker.svg",
  30090. extra: 1596 / 1488,
  30091. bottom: 29 / 1625
  30092. }
  30093. },
  30094. backBiker: {
  30095. height: math.unit(3.5, "meters"),
  30096. weight: math.unit(1200, "kg"),
  30097. name: "Back (Biker)",
  30098. image: {
  30099. source: "./media/characters/joanna/back-biker.svg",
  30100. extra: 1594 / 1495,
  30101. bottom: 88 / 1682
  30102. }
  30103. },
  30104. bikeLeft: {
  30105. height: math.unit(2.4, "meters"),
  30106. weight: math.unit(1600, "kg"),
  30107. name: "Bike (Left)",
  30108. image: {
  30109. source: "./media/characters/joanna/bike-left.svg",
  30110. extra: 720 / 720,
  30111. bottom: 8 / 728
  30112. }
  30113. },
  30114. bikeRight: {
  30115. height: math.unit(2.4, "meters"),
  30116. weight: math.unit(1600, "kg"),
  30117. name: "Bike (Right)",
  30118. image: {
  30119. source: "./media/characters/joanna/bike-right.svg",
  30120. extra: 720 / 720,
  30121. bottom: 8 / 728
  30122. }
  30123. },
  30124. },
  30125. [
  30126. {
  30127. name: "Incognito",
  30128. height: math.unit(3.5, "meters")
  30129. },
  30130. {
  30131. name: "Casual Big",
  30132. height: math.unit(200, "meters")
  30133. },
  30134. {
  30135. name: "Macro",
  30136. height: math.unit(600, "meters")
  30137. },
  30138. {
  30139. name: "Original",
  30140. height: math.unit(20, "km"),
  30141. default: true
  30142. },
  30143. {
  30144. name: "Giga",
  30145. height: math.unit(400, "km")
  30146. },
  30147. {
  30148. name: "Lounging",
  30149. height: math.unit(1500, "km")
  30150. },
  30151. {
  30152. name: "Planetary",
  30153. height: math.unit(200000, "km")
  30154. },
  30155. ]
  30156. ))
  30157. characterMakers.push(() => makeCharacter(
  30158. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30159. {
  30160. front: {
  30161. height: math.unit(6, "feet"),
  30162. weight: math.unit(150, "lb"),
  30163. name: "Front",
  30164. image: {
  30165. source: "./media/characters/hugo-sigil/front.svg",
  30166. extra: 522 / 500,
  30167. bottom: 2 / 524
  30168. }
  30169. },
  30170. back: {
  30171. height: math.unit(6, "feet"),
  30172. weight: math.unit(150, "lb"),
  30173. name: "Back",
  30174. image: {
  30175. source: "./media/characters/hugo-sigil/back.svg",
  30176. extra: 519 / 495,
  30177. bottom: 5 / 524
  30178. }
  30179. },
  30180. maw: {
  30181. height: math.unit(1.4, "feet"),
  30182. weight: math.unit(150, "lb"),
  30183. name: "Maw",
  30184. image: {
  30185. source: "./media/characters/hugo-sigil/maw.svg"
  30186. }
  30187. },
  30188. feet: {
  30189. height: math.unit(1.56, "feet"),
  30190. weight: math.unit(150, "lb"),
  30191. name: "Feet",
  30192. image: {
  30193. source: "./media/characters/hugo-sigil/feet.svg",
  30194. extra: 177 / 177,
  30195. bottom: 12 / 189
  30196. }
  30197. },
  30198. },
  30199. [
  30200. {
  30201. name: "Normal",
  30202. height: math.unit(6, "feet")
  30203. },
  30204. {
  30205. name: "Macro",
  30206. height: math.unit(200, "feet"),
  30207. default: true
  30208. },
  30209. ]
  30210. ))
  30211. characterMakers.push(() => makeCharacter(
  30212. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30213. {
  30214. front: {
  30215. height: math.unit(6, "feet"),
  30216. weight: math.unit(150, "lb"),
  30217. name: "Front",
  30218. image: {
  30219. source: "./media/characters/peri/front.svg",
  30220. extra: 2354 / 2233,
  30221. bottom: 49 / 2403
  30222. }
  30223. },
  30224. },
  30225. [
  30226. {
  30227. name: "Really Small",
  30228. height: math.unit(1, "nm")
  30229. },
  30230. {
  30231. name: "Micro",
  30232. height: math.unit(4, "inches")
  30233. },
  30234. {
  30235. name: "Normal",
  30236. height: math.unit(7, "inches"),
  30237. default: true
  30238. },
  30239. {
  30240. name: "Macro",
  30241. height: math.unit(400, "feet")
  30242. },
  30243. {
  30244. name: "Megamacro",
  30245. height: math.unit(100, "miles")
  30246. },
  30247. ]
  30248. ))
  30249. characterMakers.push(() => makeCharacter(
  30250. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30251. {
  30252. frontSlim: {
  30253. height: math.unit(7, "feet"),
  30254. name: "Front (Slim)",
  30255. image: {
  30256. source: "./media/characters/issilora/front-slim.svg",
  30257. extra: 529 / 449,
  30258. bottom: 53 / 582
  30259. }
  30260. },
  30261. sideSlim: {
  30262. height: math.unit(7, "feet"),
  30263. name: "Side (Slim)",
  30264. image: {
  30265. source: "./media/characters/issilora/side-slim.svg",
  30266. extra: 570 / 480,
  30267. bottom: 30 / 600
  30268. }
  30269. },
  30270. backSlim: {
  30271. height: math.unit(7, "feet"),
  30272. name: "Back (Slim)",
  30273. image: {
  30274. source: "./media/characters/issilora/back-slim.svg",
  30275. extra: 537 / 455,
  30276. bottom: 46 / 583
  30277. }
  30278. },
  30279. frontBuff: {
  30280. height: math.unit(7, "feet"),
  30281. name: "Front (Buff)",
  30282. image: {
  30283. source: "./media/characters/issilora/front-buff.svg",
  30284. extra: 2310 / 2035,
  30285. bottom: 335 / 2645
  30286. }
  30287. },
  30288. head: {
  30289. height: math.unit(1.94, "feet"),
  30290. name: "Head",
  30291. image: {
  30292. source: "./media/characters/issilora/head.svg"
  30293. }
  30294. },
  30295. },
  30296. [
  30297. {
  30298. name: "Minimum",
  30299. height: math.unit(7, "feet")
  30300. },
  30301. {
  30302. name: "Comfortable",
  30303. height: math.unit(17, "feet")
  30304. },
  30305. {
  30306. name: "Fun Size",
  30307. height: math.unit(47, "feet")
  30308. },
  30309. {
  30310. name: "Natural Macro",
  30311. height: math.unit(137, "feet"),
  30312. default: true
  30313. },
  30314. {
  30315. name: "Maximum Kaiju",
  30316. height: math.unit(397, "feet")
  30317. },
  30318. ]
  30319. ))
  30320. characterMakers.push(() => makeCharacter(
  30321. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30322. {
  30323. front: {
  30324. height: math.unit(50 + 9/12, "feet"),
  30325. weight: math.unit(32.8, "tons"),
  30326. name: "Front",
  30327. image: {
  30328. source: "./media/characters/irb'iiritaahn/front.svg",
  30329. extra: 1878/1826,
  30330. bottom: 326/2204
  30331. }
  30332. },
  30333. back: {
  30334. height: math.unit(50 + 9/12, "feet"),
  30335. weight: math.unit(32.8, "tons"),
  30336. name: "Back",
  30337. image: {
  30338. source: "./media/characters/irb'iiritaahn/back.svg",
  30339. extra: 2052/2018,
  30340. bottom: 152/2204
  30341. }
  30342. },
  30343. head: {
  30344. height: math.unit(12.86, "feet"),
  30345. name: "Head",
  30346. image: {
  30347. source: "./media/characters/irb'iiritaahn/head.svg"
  30348. }
  30349. },
  30350. maw: {
  30351. height: math.unit(9.66, "feet"),
  30352. name: "Maw",
  30353. image: {
  30354. source: "./media/characters/irb'iiritaahn/maw.svg"
  30355. }
  30356. },
  30357. frontDick: {
  30358. height: math.unit(8.78461, "feet"),
  30359. name: "Front Dick",
  30360. image: {
  30361. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30362. }
  30363. },
  30364. rearDick: {
  30365. height: math.unit(8.78461, "feet"),
  30366. name: "Rear Dick",
  30367. image: {
  30368. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30369. }
  30370. },
  30371. rearDickUnfolded: {
  30372. height: math.unit(8.78, "feet"),
  30373. name: "Rear Dick (Unfolded)",
  30374. image: {
  30375. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30376. }
  30377. },
  30378. wings: {
  30379. height: math.unit(43, "feet"),
  30380. name: "Wings",
  30381. image: {
  30382. source: "./media/characters/irb'iiritaahn/wings.svg"
  30383. }
  30384. },
  30385. },
  30386. [
  30387. {
  30388. name: "Macro",
  30389. height: math.unit(50 + 9/12, "feet"),
  30390. default: true
  30391. },
  30392. ]
  30393. ))
  30394. characterMakers.push(() => makeCharacter(
  30395. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30396. {
  30397. front: {
  30398. height: math.unit(205, "cm"),
  30399. weight: math.unit(102, "kg"),
  30400. name: "Front",
  30401. image: {
  30402. source: "./media/characters/irbisgreif/front.svg",
  30403. extra: 785/706,
  30404. bottom: 13/798
  30405. }
  30406. },
  30407. back: {
  30408. height: math.unit(205, "cm"),
  30409. weight: math.unit(102, "kg"),
  30410. name: "Back",
  30411. image: {
  30412. source: "./media/characters/irbisgreif/back.svg",
  30413. extra: 713/701,
  30414. bottom: 26/739
  30415. }
  30416. },
  30417. frontDressed: {
  30418. height: math.unit(216, "cm"),
  30419. weight: math.unit(102, "kg"),
  30420. name: "Front-dressed",
  30421. image: {
  30422. source: "./media/characters/irbisgreif/front-dressed.svg",
  30423. extra: 902/776,
  30424. bottom: 14/916
  30425. }
  30426. },
  30427. sideDressed: {
  30428. height: math.unit(195, "cm"),
  30429. weight: math.unit(102, "kg"),
  30430. name: "Side-dressed",
  30431. image: {
  30432. source: "./media/characters/irbisgreif/side-dressed.svg",
  30433. extra: 788/688,
  30434. bottom: 21/809
  30435. }
  30436. },
  30437. backDressed: {
  30438. height: math.unit(216, "cm"),
  30439. weight: math.unit(102, "kg"),
  30440. name: "Back-dressed",
  30441. image: {
  30442. source: "./media/characters/irbisgreif/back-dressed.svg",
  30443. extra: 901/783,
  30444. bottom: 10/911
  30445. }
  30446. },
  30447. dick: {
  30448. height: math.unit(0.49, "feet"),
  30449. name: "Dick",
  30450. image: {
  30451. source: "./media/characters/irbisgreif/dick.svg"
  30452. }
  30453. },
  30454. wingTop: {
  30455. height: math.unit(1.93 , "feet"),
  30456. name: "Wing-top",
  30457. image: {
  30458. source: "./media/characters/irbisgreif/wing-top.svg"
  30459. }
  30460. },
  30461. wingBottom: {
  30462. height: math.unit(1.93 , "feet"),
  30463. name: "Wing-bottom",
  30464. image: {
  30465. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30466. }
  30467. },
  30468. },
  30469. [
  30470. {
  30471. name: "Normal",
  30472. height: math.unit(216, "cm"),
  30473. default: true
  30474. },
  30475. ]
  30476. ))
  30477. characterMakers.push(() => makeCharacter(
  30478. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30479. {
  30480. front: {
  30481. height: math.unit(6, "feet"),
  30482. weight: math.unit(150, "lb"),
  30483. name: "Front",
  30484. image: {
  30485. source: "./media/characters/pride/front.svg",
  30486. extra: 1299/1230,
  30487. bottom: 18/1317
  30488. }
  30489. },
  30490. },
  30491. [
  30492. {
  30493. name: "Normal",
  30494. height: math.unit(7, "feet")
  30495. },
  30496. {
  30497. name: "Mini-macro",
  30498. height: math.unit(11, "feet")
  30499. },
  30500. {
  30501. name: "Macro",
  30502. height: math.unit(15, "meters"),
  30503. default: true
  30504. },
  30505. {
  30506. name: "Macro+",
  30507. height: math.unit(40, "meters")
  30508. },
  30509. ]
  30510. ))
  30511. characterMakers.push(() => makeCharacter(
  30512. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30513. {
  30514. front: {
  30515. height: math.unit(4 + 2 / 12, "feet"),
  30516. weight: math.unit(95, "lb"),
  30517. name: "Front",
  30518. image: {
  30519. source: "./media/characters/vaelophis-nyx/front.svg",
  30520. extra: 2532/2330,
  30521. bottom: 0/2532
  30522. }
  30523. },
  30524. back: {
  30525. height: math.unit(4 + 2 / 12, "feet"),
  30526. weight: math.unit(95, "lb"),
  30527. name: "Back",
  30528. image: {
  30529. source: "./media/characters/vaelophis-nyx/back.svg",
  30530. extra: 2484/2361,
  30531. bottom: 0/2484
  30532. }
  30533. },
  30534. feralSide: {
  30535. height: math.unit(2 + 1/12, "feet"),
  30536. weight: math.unit(20, "lb"),
  30537. name: "Feral (Side)",
  30538. image: {
  30539. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30540. extra: 1721/1581,
  30541. bottom: 70/1791
  30542. }
  30543. },
  30544. feralLazing: {
  30545. height: math.unit(1.08, "feet"),
  30546. weight: math.unit(20, "lb"),
  30547. name: "Feral (Lazing)",
  30548. image: {
  30549. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30550. extra: 822/822,
  30551. bottom: 248/1070
  30552. }
  30553. },
  30554. ear: {
  30555. height: math.unit(0.416, "feet"),
  30556. name: "Ear",
  30557. image: {
  30558. source: "./media/characters/vaelophis-nyx/ear.svg"
  30559. }
  30560. },
  30561. eye: {
  30562. height: math.unit(0.0748, "feet"),
  30563. name: "Eye",
  30564. image: {
  30565. source: "./media/characters/vaelophis-nyx/eye.svg"
  30566. }
  30567. },
  30568. mouth: {
  30569. height: math.unit(0.378, "feet"),
  30570. name: "Mouth",
  30571. image: {
  30572. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30573. }
  30574. },
  30575. spade: {
  30576. height: math.unit(0.55, "feet"),
  30577. name: "Spade",
  30578. image: {
  30579. source: "./media/characters/vaelophis-nyx/spade.svg"
  30580. }
  30581. },
  30582. },
  30583. [
  30584. {
  30585. name: "Normal",
  30586. height: math.unit(4 + 2/12, "feet"),
  30587. default: true
  30588. },
  30589. ]
  30590. ))
  30591. characterMakers.push(() => makeCharacter(
  30592. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30593. {
  30594. front: {
  30595. height: math.unit(7, "feet"),
  30596. weight: math.unit(231, "lb"),
  30597. name: "Front",
  30598. image: {
  30599. source: "./media/characters/flux/front.svg",
  30600. extra: 919/871,
  30601. bottom: 0/919
  30602. }
  30603. },
  30604. back: {
  30605. height: math.unit(7, "feet"),
  30606. weight: math.unit(231, "lb"),
  30607. name: "Back",
  30608. image: {
  30609. source: "./media/characters/flux/back.svg",
  30610. extra: 1040/992,
  30611. bottom: 0/1040
  30612. }
  30613. },
  30614. frontDressed: {
  30615. height: math.unit(7, "feet"),
  30616. weight: math.unit(231, "lb"),
  30617. name: "Front (Dressed)",
  30618. image: {
  30619. source: "./media/characters/flux/front-dressed.svg",
  30620. extra: 919/871,
  30621. bottom: 0/919
  30622. }
  30623. },
  30624. feralSide: {
  30625. height: math.unit(5, "feet"),
  30626. weight: math.unit(150, "lb"),
  30627. name: "Feral (Side)",
  30628. image: {
  30629. source: "./media/characters/flux/feral-side.svg",
  30630. extra: 598/528,
  30631. bottom: 28/626
  30632. }
  30633. },
  30634. head: {
  30635. height: math.unit(1.585, "feet"),
  30636. name: "Head",
  30637. image: {
  30638. source: "./media/characters/flux/head.svg"
  30639. }
  30640. },
  30641. headSide: {
  30642. height: math.unit(1.74, "feet"),
  30643. name: "Head (Side)",
  30644. image: {
  30645. source: "./media/characters/flux/head-side.svg"
  30646. }
  30647. },
  30648. headSideFire: {
  30649. height: math.unit(1.76, "feet"),
  30650. name: "Head (Side, Fire)",
  30651. image: {
  30652. source: "./media/characters/flux/head-side-fire.svg"
  30653. }
  30654. },
  30655. },
  30656. [
  30657. {
  30658. name: "Normal",
  30659. height: math.unit(7, "feet"),
  30660. default: true
  30661. },
  30662. ]
  30663. ))
  30664. characterMakers.push(() => makeCharacter(
  30665. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30666. {
  30667. front: {
  30668. height: math.unit(9, "feet"),
  30669. weight: math.unit(1012, "lb"),
  30670. name: "Front",
  30671. image: {
  30672. source: "./media/characters/ulfra-lupae/front.svg",
  30673. extra: 1083/1011,
  30674. bottom: 67/1150
  30675. }
  30676. },
  30677. },
  30678. [
  30679. {
  30680. name: "Micro",
  30681. height: math.unit(6, "inches")
  30682. },
  30683. {
  30684. name: "Socializing",
  30685. height: math.unit(6 + 5/12, "feet")
  30686. },
  30687. {
  30688. name: "Normal",
  30689. height: math.unit(9, "feet"),
  30690. default: true
  30691. },
  30692. {
  30693. name: "Macro",
  30694. height: math.unit(150, "feet")
  30695. },
  30696. ]
  30697. ))
  30698. characterMakers.push(() => makeCharacter(
  30699. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30700. {
  30701. front: {
  30702. height: math.unit(5 + 2/12, "feet"),
  30703. weight: math.unit(120, "lb"),
  30704. name: "Front",
  30705. image: {
  30706. source: "./media/characters/timber/front.svg",
  30707. extra: 2814/2705,
  30708. bottom: 181/2995
  30709. }
  30710. },
  30711. },
  30712. [
  30713. {
  30714. name: "Normal",
  30715. height: math.unit(5 + 2/12, "feet"),
  30716. default: true
  30717. },
  30718. ]
  30719. ))
  30720. characterMakers.push(() => makeCharacter(
  30721. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30722. {
  30723. front: {
  30724. height: math.unit(5 + 7/12, "feet"),
  30725. weight: math.unit(220, "lb"),
  30726. name: "Front",
  30727. image: {
  30728. source: "./media/characters/nicki/front.svg",
  30729. extra: 453/419,
  30730. bottom: 7/460
  30731. }
  30732. },
  30733. frontAlt: {
  30734. height: math.unit(5 + 7/12, "feet"),
  30735. weight: math.unit(220, "lb"),
  30736. name: "Front-alt",
  30737. image: {
  30738. source: "./media/characters/nicki/front-alt.svg",
  30739. extra: 435/411,
  30740. bottom: 12/447
  30741. }
  30742. },
  30743. back: {
  30744. height: math.unit(5 + 7/12, "feet"),
  30745. weight: math.unit(220, "lb"),
  30746. name: "Back",
  30747. image: {
  30748. source: "./media/characters/nicki/back.svg",
  30749. extra: 440/413,
  30750. bottom: 19/459
  30751. }
  30752. },
  30753. taur: {
  30754. height: math.unit(7 + 6/12, "feet"),
  30755. weight: math.unit(700, "lb"),
  30756. name: "Taur",
  30757. image: {
  30758. source: "./media/characters/nicki/taur.svg",
  30759. extra: 975/773,
  30760. bottom: 0/975
  30761. }
  30762. },
  30763. frontNsfw: {
  30764. height: math.unit(5 + 7/12, "feet"),
  30765. weight: math.unit(220, "lb"),
  30766. name: "Front (NSFW)",
  30767. image: {
  30768. source: "./media/characters/nicki/front-nsfw.svg",
  30769. extra: 453/419,
  30770. bottom: 7/460
  30771. }
  30772. },
  30773. frontNsfwAlt: {
  30774. height: math.unit(5 + 7/12, "feet"),
  30775. weight: math.unit(220, "lb"),
  30776. name: "Front (Alt, NSFW)",
  30777. image: {
  30778. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30779. extra: 435/411,
  30780. bottom: 12/447
  30781. }
  30782. },
  30783. backNsfw: {
  30784. height: math.unit(5 + 7/12, "feet"),
  30785. weight: math.unit(220, "lb"),
  30786. name: "Back (NSFW)",
  30787. image: {
  30788. source: "./media/characters/nicki/back-nsfw.svg",
  30789. extra: 440/413,
  30790. bottom: 19/459
  30791. }
  30792. },
  30793. head: {
  30794. height: math.unit(2.1, "feet"),
  30795. name: "Head",
  30796. image: {
  30797. source: "./media/characters/nicki/head.svg"
  30798. }
  30799. },
  30800. paw: {
  30801. height: math.unit(1.88, "feet"),
  30802. name: "Paw",
  30803. image: {
  30804. source: "./media/characters/nicki/paw.svg"
  30805. }
  30806. },
  30807. },
  30808. [
  30809. {
  30810. name: "Normal",
  30811. height: math.unit(5 + 7/12, "feet"),
  30812. default: true
  30813. },
  30814. ]
  30815. ))
  30816. characterMakers.push(() => makeCharacter(
  30817. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30818. {
  30819. front: {
  30820. height: math.unit(7 + 10/12, "feet"),
  30821. weight: math.unit(3.5, "tons"),
  30822. name: "Front",
  30823. image: {
  30824. source: "./media/characters/lee/front.svg",
  30825. extra: 1773/1615,
  30826. bottom: 86/1859
  30827. }
  30828. },
  30829. hand: {
  30830. height: math.unit(1.78, "feet"),
  30831. name: "Hand",
  30832. image: {
  30833. source: "./media/characters/lee/hand.svg"
  30834. }
  30835. },
  30836. maw: {
  30837. height: math.unit(1.18, "feet"),
  30838. name: "Maw",
  30839. image: {
  30840. source: "./media/characters/lee/maw.svg"
  30841. }
  30842. },
  30843. },
  30844. [
  30845. {
  30846. name: "Normal",
  30847. height: math.unit(7 + 10/12, "feet"),
  30848. default: true
  30849. },
  30850. ]
  30851. ))
  30852. characterMakers.push(() => makeCharacter(
  30853. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30854. {
  30855. front: {
  30856. height: math.unit(9, "feet"),
  30857. name: "Front",
  30858. image: {
  30859. source: "./media/characters/guti/front.svg",
  30860. extra: 4551/4355,
  30861. bottom: 123/4674
  30862. }
  30863. },
  30864. tongue: {
  30865. height: math.unit(1, "feet"),
  30866. name: "Tongue",
  30867. image: {
  30868. source: "./media/characters/guti/tongue.svg"
  30869. }
  30870. },
  30871. paw: {
  30872. height: math.unit(1.18, "feet"),
  30873. name: "Paw",
  30874. image: {
  30875. source: "./media/characters/guti/paw.svg"
  30876. }
  30877. },
  30878. },
  30879. [
  30880. {
  30881. name: "Normal",
  30882. height: math.unit(9, "feet"),
  30883. default: true
  30884. },
  30885. ]
  30886. ))
  30887. characterMakers.push(() => makeCharacter(
  30888. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30889. {
  30890. side: {
  30891. height: math.unit(5, "meters"),
  30892. name: "Side",
  30893. image: {
  30894. source: "./media/characters/vesper/side.svg",
  30895. extra: 1605/1518,
  30896. bottom: 0/1605
  30897. }
  30898. },
  30899. },
  30900. [
  30901. {
  30902. name: "Small",
  30903. height: math.unit(5, "meters")
  30904. },
  30905. {
  30906. name: "Sage",
  30907. height: math.unit(100, "meters"),
  30908. default: true
  30909. },
  30910. {
  30911. name: "Fun Size",
  30912. height: math.unit(600, "meters")
  30913. },
  30914. {
  30915. name: "Goddess",
  30916. height: math.unit(20000, "km")
  30917. },
  30918. {
  30919. name: "Maximum",
  30920. height: math.unit(5, "galaxies")
  30921. },
  30922. ]
  30923. ))
  30924. characterMakers.push(() => makeCharacter(
  30925. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30926. {
  30927. front: {
  30928. height: math.unit(6 + 3/12, "feet"),
  30929. weight: math.unit(190, "lb"),
  30930. name: "Front",
  30931. image: {
  30932. source: "./media/characters/gawain/front.svg",
  30933. extra: 2222/2139,
  30934. bottom: 90/2312
  30935. }
  30936. },
  30937. back: {
  30938. height: math.unit(6 + 3/12, "feet"),
  30939. weight: math.unit(190, "lb"),
  30940. name: "Back",
  30941. image: {
  30942. source: "./media/characters/gawain/back.svg",
  30943. extra: 2199/2111,
  30944. bottom: 73/2272
  30945. }
  30946. },
  30947. },
  30948. [
  30949. {
  30950. name: "Normal",
  30951. height: math.unit(6 + 3/12, "feet"),
  30952. default: true
  30953. },
  30954. ]
  30955. ))
  30956. characterMakers.push(() => makeCharacter(
  30957. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30958. {
  30959. side: {
  30960. height: math.unit(3.5, "meters"),
  30961. weight: math.unit(16000, "lb"),
  30962. name: "Side",
  30963. image: {
  30964. source: "./media/characters/dascalti/side.svg",
  30965. extra: 392/273,
  30966. bottom: 47/439
  30967. }
  30968. },
  30969. breath: {
  30970. height: math.unit(7.4, "feet"),
  30971. name: "Breath",
  30972. image: {
  30973. source: "./media/characters/dascalti/breath.svg"
  30974. }
  30975. },
  30976. fed: {
  30977. height: math.unit(3.6, "meters"),
  30978. weight: math.unit(16000, "lb"),
  30979. name: "Fed",
  30980. image: {
  30981. source: "./media/characters/dascalti/fed.svg",
  30982. extra: 1419/820,
  30983. bottom: 95/1514
  30984. }
  30985. },
  30986. },
  30987. [
  30988. {
  30989. name: "Normal",
  30990. height: math.unit(3.5, "meters"),
  30991. default: true
  30992. },
  30993. ]
  30994. ))
  30995. characterMakers.push(() => makeCharacter(
  30996. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30997. {
  30998. front: {
  30999. height: math.unit(3 + 5/12, "feet"),
  31000. name: "Front",
  31001. image: {
  31002. source: "./media/characters/mauve/front.svg",
  31003. extra: 1126/1033,
  31004. bottom: 65/1191
  31005. }
  31006. },
  31007. side: {
  31008. height: math.unit(3 + 5/12, "feet"),
  31009. name: "Side",
  31010. image: {
  31011. source: "./media/characters/mauve/side.svg",
  31012. extra: 1089/1001,
  31013. bottom: 29/1118
  31014. }
  31015. },
  31016. back: {
  31017. height: math.unit(3 + 5/12, "feet"),
  31018. name: "Back",
  31019. image: {
  31020. source: "./media/characters/mauve/back.svg",
  31021. extra: 1173/1053,
  31022. bottom: 109/1282
  31023. }
  31024. },
  31025. },
  31026. [
  31027. {
  31028. name: "Normal",
  31029. height: math.unit(3 + 5/12, "feet"),
  31030. default: true
  31031. },
  31032. ]
  31033. ))
  31034. characterMakers.push(() => makeCharacter(
  31035. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31036. {
  31037. front: {
  31038. height: math.unit(6 + 3/12, "feet"),
  31039. weight: math.unit(430, "lb"),
  31040. name: "Front",
  31041. image: {
  31042. source: "./media/characters/carlos/front.svg",
  31043. extra: 1964/1913,
  31044. bottom: 70/2034
  31045. }
  31046. },
  31047. },
  31048. [
  31049. {
  31050. name: "Normal",
  31051. height: math.unit(6 + 3/12, "feet"),
  31052. default: true
  31053. },
  31054. ]
  31055. ))
  31056. characterMakers.push(() => makeCharacter(
  31057. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31058. {
  31059. back: {
  31060. height: math.unit(5 + 10/12, "feet"),
  31061. weight: math.unit(200, "lb"),
  31062. name: "Back",
  31063. image: {
  31064. source: "./media/characters/jax/back.svg",
  31065. extra: 764/739,
  31066. bottom: 25/789
  31067. }
  31068. },
  31069. },
  31070. [
  31071. {
  31072. name: "Normal",
  31073. height: math.unit(5 + 10/12, "feet"),
  31074. default: true
  31075. },
  31076. ]
  31077. ))
  31078. characterMakers.push(() => makeCharacter(
  31079. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31080. {
  31081. front: {
  31082. height: math.unit(8, "feet"),
  31083. weight: math.unit(250, "lb"),
  31084. name: "Front",
  31085. image: {
  31086. source: "./media/characters/eikthynir/front.svg",
  31087. extra: 1332/1166,
  31088. bottom: 82/1414
  31089. }
  31090. },
  31091. back: {
  31092. height: math.unit(8, "feet"),
  31093. weight: math.unit(250, "lb"),
  31094. name: "Back",
  31095. image: {
  31096. source: "./media/characters/eikthynir/back.svg",
  31097. extra: 1342/1190,
  31098. bottom: 19/1361
  31099. }
  31100. },
  31101. dick: {
  31102. height: math.unit(2.35, "feet"),
  31103. name: "Dick",
  31104. image: {
  31105. source: "./media/characters/eikthynir/dick.svg"
  31106. }
  31107. },
  31108. },
  31109. [
  31110. {
  31111. name: "Normal",
  31112. height: math.unit(8, "feet"),
  31113. default: true
  31114. },
  31115. ]
  31116. ))
  31117. characterMakers.push(() => makeCharacter(
  31118. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31119. {
  31120. front: {
  31121. height: math.unit(99, "meters"),
  31122. weight: math.unit(13000, "tons"),
  31123. name: "Front",
  31124. image: {
  31125. source: "./media/characters/zlmos/front.svg",
  31126. extra: 2202/1992,
  31127. bottom: 315/2517
  31128. }
  31129. },
  31130. },
  31131. [
  31132. {
  31133. name: "Macro",
  31134. height: math.unit(99, "meters"),
  31135. default: true
  31136. },
  31137. ]
  31138. ))
  31139. characterMakers.push(() => makeCharacter(
  31140. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31141. {
  31142. front: {
  31143. height: math.unit(6 + 5/12, "feet"),
  31144. name: "Front",
  31145. image: {
  31146. source: "./media/characters/purri/front.svg",
  31147. extra: 1698/1610,
  31148. bottom: 32/1730
  31149. }
  31150. },
  31151. frontAlt: {
  31152. height: math.unit(6 + 5/12, "feet"),
  31153. name: "Front (Alt)",
  31154. image: {
  31155. source: "./media/characters/purri/front-alt.svg",
  31156. extra: 450/420,
  31157. bottom: 26/476
  31158. }
  31159. },
  31160. boots: {
  31161. height: math.unit(5.5, "feet"),
  31162. name: "Boots",
  31163. image: {
  31164. source: "./media/characters/purri/boots.svg",
  31165. extra: 905/853,
  31166. bottom: 18/923
  31167. }
  31168. },
  31169. lying: {
  31170. height: math.unit(2, "feet"),
  31171. name: "Lying",
  31172. image: {
  31173. source: "./media/characters/purri/lying.svg",
  31174. extra: 940/843,
  31175. bottom: 146/1086
  31176. }
  31177. },
  31178. devious: {
  31179. height: math.unit(1.77, "feet"),
  31180. name: "Devious",
  31181. image: {
  31182. source: "./media/characters/purri/devious.svg",
  31183. extra: 1440/1155,
  31184. bottom: 147/1587
  31185. }
  31186. },
  31187. bean: {
  31188. height: math.unit(1.94, "feet"),
  31189. name: "Bean",
  31190. image: {
  31191. source: "./media/characters/purri/bean.svg"
  31192. }
  31193. },
  31194. },
  31195. [
  31196. {
  31197. name: "Micro",
  31198. height: math.unit(1, "mm")
  31199. },
  31200. {
  31201. name: "Normal",
  31202. height: math.unit(6 + 5/12, "feet"),
  31203. default: true
  31204. },
  31205. {
  31206. name: "Macro :3c",
  31207. height: math.unit(2, "miles")
  31208. },
  31209. ]
  31210. ))
  31211. characterMakers.push(() => makeCharacter(
  31212. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31213. {
  31214. front: {
  31215. height: math.unit(6 + 2/12, "feet"),
  31216. weight: math.unit(250, "lb"),
  31217. name: "Front",
  31218. image: {
  31219. source: "./media/characters/moonlight/front.svg",
  31220. extra: 1044/908,
  31221. bottom: 56/1100
  31222. }
  31223. },
  31224. feral: {
  31225. height: math.unit(3 + 1/12, "feet"),
  31226. weight: math.unit(50, "kg"),
  31227. name: "Feral",
  31228. image: {
  31229. source: "./media/characters/moonlight/feral.svg",
  31230. extra: 3705/2791,
  31231. bottom: 145/3850
  31232. }
  31233. },
  31234. paw: {
  31235. height: math.unit(1, "feet"),
  31236. name: "Paw",
  31237. image: {
  31238. source: "./media/characters/moonlight/paw.svg"
  31239. }
  31240. },
  31241. paws: {
  31242. height: math.unit(0.98, "feet"),
  31243. name: "Paws",
  31244. image: {
  31245. source: "./media/characters/moonlight/paws.svg",
  31246. extra: 939/939,
  31247. bottom: 50/989
  31248. }
  31249. },
  31250. mouth: {
  31251. height: math.unit(0.48, "feet"),
  31252. name: "Mouth",
  31253. image: {
  31254. source: "./media/characters/moonlight/mouth.svg"
  31255. }
  31256. },
  31257. dick: {
  31258. height: math.unit(1.46, "feet"),
  31259. name: "Dick",
  31260. image: {
  31261. source: "./media/characters/moonlight/dick.svg"
  31262. }
  31263. },
  31264. },
  31265. [
  31266. {
  31267. name: "Normal",
  31268. height: math.unit(6 + 2/12, "feet"),
  31269. default: true
  31270. },
  31271. {
  31272. name: "Macro",
  31273. height: math.unit(300, "feet")
  31274. },
  31275. {
  31276. name: "Macro+",
  31277. height: math.unit(1, "mile")
  31278. },
  31279. {
  31280. name: "Mt. Moon",
  31281. height: math.unit(5, "miles")
  31282. },
  31283. {
  31284. name: "Megamacro",
  31285. height: math.unit(15, "miles")
  31286. },
  31287. ]
  31288. ))
  31289. characterMakers.push(() => makeCharacter(
  31290. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31291. {
  31292. back: {
  31293. height: math.unit(6, "feet"),
  31294. weight: math.unit(150, "lb"),
  31295. name: "Back",
  31296. image: {
  31297. source: "./media/characters/sylen/back.svg",
  31298. extra: 1335/1273,
  31299. bottom: 107/1442
  31300. }
  31301. },
  31302. },
  31303. [
  31304. {
  31305. name: "Normal",
  31306. height: math.unit(5 + 5/12, "feet")
  31307. },
  31308. {
  31309. name: "Megamacro",
  31310. height: math.unit(3, "miles"),
  31311. default: true
  31312. },
  31313. ]
  31314. ))
  31315. characterMakers.push(() => makeCharacter(
  31316. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31317. {
  31318. front: {
  31319. height: math.unit(6, "feet"),
  31320. weight: math.unit(190, "lb"),
  31321. name: "Front",
  31322. image: {
  31323. source: "./media/characters/huttser/front.svg",
  31324. extra: 1152/1058,
  31325. bottom: 23/1175
  31326. }
  31327. },
  31328. side: {
  31329. height: math.unit(6, "feet"),
  31330. weight: math.unit(190, "lb"),
  31331. name: "Side",
  31332. image: {
  31333. source: "./media/characters/huttser/side.svg",
  31334. extra: 1174/1065,
  31335. bottom: 18/1192
  31336. }
  31337. },
  31338. back: {
  31339. height: math.unit(6, "feet"),
  31340. weight: math.unit(190, "lb"),
  31341. name: "Back",
  31342. image: {
  31343. source: "./media/characters/huttser/back.svg",
  31344. extra: 1158/1056,
  31345. bottom: 12/1170
  31346. }
  31347. },
  31348. },
  31349. [
  31350. ]
  31351. ))
  31352. characterMakers.push(() => makeCharacter(
  31353. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31354. {
  31355. side: {
  31356. height: math.unit(12 + 9/12, "feet"),
  31357. weight: math.unit(15000, "lb"),
  31358. name: "Side",
  31359. image: {
  31360. source: "./media/characters/faan/side.svg",
  31361. extra: 2747/2697,
  31362. bottom: 0/2747
  31363. }
  31364. },
  31365. front: {
  31366. height: math.unit(12 + 9/12, "feet"),
  31367. weight: math.unit(15000, "lb"),
  31368. name: "Front",
  31369. image: {
  31370. source: "./media/characters/faan/front.svg",
  31371. extra: 607/571,
  31372. bottom: 24/631
  31373. }
  31374. },
  31375. head: {
  31376. height: math.unit(2.85, "feet"),
  31377. name: "Head",
  31378. image: {
  31379. source: "./media/characters/faan/head.svg"
  31380. }
  31381. },
  31382. headAlt: {
  31383. height: math.unit(3.13, "feet"),
  31384. name: "Head-alt",
  31385. image: {
  31386. source: "./media/characters/faan/head-alt.svg"
  31387. }
  31388. },
  31389. },
  31390. [
  31391. {
  31392. name: "Normal",
  31393. height: math.unit(12 + 9/12, "feet"),
  31394. default: true
  31395. },
  31396. ]
  31397. ))
  31398. characterMakers.push(() => makeCharacter(
  31399. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31400. {
  31401. front: {
  31402. height: math.unit(6, "feet"),
  31403. weight: math.unit(300, "lb"),
  31404. name: "Front",
  31405. image: {
  31406. source: "./media/characters/tanio/front.svg",
  31407. extra: 711/673,
  31408. bottom: 25/736
  31409. }
  31410. },
  31411. },
  31412. [
  31413. {
  31414. name: "Normal",
  31415. height: math.unit(6, "feet"),
  31416. default: true
  31417. },
  31418. ]
  31419. ))
  31420. characterMakers.push(() => makeCharacter(
  31421. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31422. {
  31423. front: {
  31424. height: math.unit(3, "inches"),
  31425. name: "Front",
  31426. image: {
  31427. source: "./media/characters/noboru/front.svg",
  31428. extra: 1039/932,
  31429. bottom: 18/1057
  31430. }
  31431. },
  31432. },
  31433. [
  31434. {
  31435. name: "Micro",
  31436. height: math.unit(3, "inches"),
  31437. default: true
  31438. },
  31439. ]
  31440. ))
  31441. characterMakers.push(() => makeCharacter(
  31442. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31443. {
  31444. front: {
  31445. height: math.unit(1.85, "meters"),
  31446. weight: math.unit(80, "kg"),
  31447. name: "Front",
  31448. image: {
  31449. source: "./media/characters/daniel-barrett/front.svg",
  31450. extra: 355/337,
  31451. bottom: 9/364
  31452. }
  31453. },
  31454. },
  31455. [
  31456. {
  31457. name: "Pico",
  31458. height: math.unit(0.0433, "mm")
  31459. },
  31460. {
  31461. name: "Nano",
  31462. height: math.unit(1.5, "mm")
  31463. },
  31464. {
  31465. name: "Micro",
  31466. height: math.unit(5.3, "cm"),
  31467. default: true
  31468. },
  31469. {
  31470. name: "Normal",
  31471. height: math.unit(1.85, "meters")
  31472. },
  31473. {
  31474. name: "Macro",
  31475. height: math.unit(64.7, "meters")
  31476. },
  31477. {
  31478. name: "Megamacro",
  31479. height: math.unit(2.26, "km")
  31480. },
  31481. {
  31482. name: "Gigamacro",
  31483. height: math.unit(79, "km")
  31484. },
  31485. {
  31486. name: "Teramacro",
  31487. height: math.unit(2765, "km")
  31488. },
  31489. {
  31490. name: "Petamacro",
  31491. height: math.unit(96678, "km")
  31492. },
  31493. ]
  31494. ))
  31495. characterMakers.push(() => makeCharacter(
  31496. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31497. {
  31498. front: {
  31499. height: math.unit(30, "meters"),
  31500. weight: math.unit(400, "tons"),
  31501. name: "Front",
  31502. image: {
  31503. source: "./media/characters/zeel/front.svg",
  31504. extra: 2599/2599,
  31505. bottom: 226/2825
  31506. }
  31507. },
  31508. },
  31509. [
  31510. {
  31511. name: "Macro",
  31512. height: math.unit(30, "meters"),
  31513. default: true
  31514. },
  31515. ]
  31516. ))
  31517. characterMakers.push(() => makeCharacter(
  31518. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31519. {
  31520. front: {
  31521. height: math.unit(6 + 7/12, "feet"),
  31522. weight: math.unit(210, "lb"),
  31523. name: "Front",
  31524. image: {
  31525. source: "./media/characters/tarn/front.svg",
  31526. extra: 3517/3220,
  31527. bottom: 91/3608
  31528. }
  31529. },
  31530. back: {
  31531. height: math.unit(6 + 7/12, "feet"),
  31532. weight: math.unit(210, "lb"),
  31533. name: "Back",
  31534. image: {
  31535. source: "./media/characters/tarn/back.svg",
  31536. extra: 3566/3241,
  31537. bottom: 34/3600
  31538. }
  31539. },
  31540. dick: {
  31541. height: math.unit(1.65, "feet"),
  31542. name: "Dick",
  31543. image: {
  31544. source: "./media/characters/tarn/dick.svg"
  31545. }
  31546. },
  31547. paw: {
  31548. height: math.unit(1.80, "feet"),
  31549. name: "Paw",
  31550. image: {
  31551. source: "./media/characters/tarn/paw.svg"
  31552. }
  31553. },
  31554. tongue: {
  31555. height: math.unit(0.97, "feet"),
  31556. name: "Tongue",
  31557. image: {
  31558. source: "./media/characters/tarn/tongue.svg"
  31559. }
  31560. },
  31561. },
  31562. [
  31563. {
  31564. name: "Micro",
  31565. height: math.unit(4, "inches")
  31566. },
  31567. {
  31568. name: "Normal",
  31569. height: math.unit(6 + 7/12, "feet"),
  31570. default: true
  31571. },
  31572. {
  31573. name: "Macro",
  31574. height: math.unit(300, "feet")
  31575. },
  31576. ]
  31577. ))
  31578. characterMakers.push(() => makeCharacter(
  31579. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31580. {
  31581. front: {
  31582. height: math.unit(5 + 7/12, "feet"),
  31583. weight: math.unit(80, "kg"),
  31584. name: "Front",
  31585. image: {
  31586. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31587. extra: 3023/2865,
  31588. bottom: 33/3056
  31589. }
  31590. },
  31591. back: {
  31592. height: math.unit(5 + 7/12, "feet"),
  31593. weight: math.unit(80, "kg"),
  31594. name: "Back",
  31595. image: {
  31596. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31597. extra: 3020/2886,
  31598. bottom: 30/3050
  31599. }
  31600. },
  31601. dick: {
  31602. height: math.unit(0.98, "feet"),
  31603. name: "Dick",
  31604. image: {
  31605. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31606. }
  31607. },
  31608. anatomy: {
  31609. height: math.unit(2.86, "feet"),
  31610. name: "Anatomy",
  31611. image: {
  31612. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31613. }
  31614. },
  31615. },
  31616. [
  31617. {
  31618. name: "Really Small",
  31619. height: math.unit(2, "inches")
  31620. },
  31621. {
  31622. name: "Micro",
  31623. height: math.unit(5.583, "inches")
  31624. },
  31625. {
  31626. name: "Normal",
  31627. height: math.unit(5 + 7/12, "feet"),
  31628. default: true
  31629. },
  31630. {
  31631. name: "Macro",
  31632. height: math.unit(67, "feet")
  31633. },
  31634. {
  31635. name: "Megamacro",
  31636. height: math.unit(134, "feet")
  31637. },
  31638. ]
  31639. ))
  31640. characterMakers.push(() => makeCharacter(
  31641. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31642. {
  31643. front: {
  31644. height: math.unit(9, "feet"),
  31645. weight: math.unit(120, "lb"),
  31646. name: "Front",
  31647. image: {
  31648. source: "./media/characters/sally/front.svg",
  31649. extra: 1506/1349,
  31650. bottom: 66/1572
  31651. }
  31652. },
  31653. },
  31654. [
  31655. {
  31656. name: "Normal",
  31657. height: math.unit(9, "feet"),
  31658. default: true
  31659. },
  31660. ]
  31661. ))
  31662. characterMakers.push(() => makeCharacter(
  31663. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31664. {
  31665. front: {
  31666. height: math.unit(8, "feet"),
  31667. weight: math.unit(900, "lb"),
  31668. name: "Front",
  31669. image: {
  31670. source: "./media/characters/owen/front.svg",
  31671. extra: 1761/1657,
  31672. bottom: 74/1835
  31673. }
  31674. },
  31675. side: {
  31676. height: math.unit(8, "feet"),
  31677. weight: math.unit(900, "lb"),
  31678. name: "Side",
  31679. image: {
  31680. source: "./media/characters/owen/side.svg",
  31681. extra: 1797/1734,
  31682. bottom: 30/1827
  31683. }
  31684. },
  31685. back: {
  31686. height: math.unit(8, "feet"),
  31687. weight: math.unit(900, "lb"),
  31688. name: "Back",
  31689. image: {
  31690. source: "./media/characters/owen/back.svg",
  31691. extra: 1796/1706,
  31692. bottom: 59/1855
  31693. }
  31694. },
  31695. maw: {
  31696. height: math.unit(1.76, "feet"),
  31697. name: "Maw",
  31698. image: {
  31699. source: "./media/characters/owen/maw.svg"
  31700. }
  31701. },
  31702. },
  31703. [
  31704. {
  31705. name: "Normal",
  31706. height: math.unit(8, "feet"),
  31707. default: true
  31708. },
  31709. ]
  31710. ))
  31711. characterMakers.push(() => makeCharacter(
  31712. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31713. {
  31714. front: {
  31715. height: math.unit(4, "feet"),
  31716. weight: math.unit(400, "lb"),
  31717. name: "Front",
  31718. image: {
  31719. source: "./media/characters/ryth/front.svg",
  31720. extra: 1920/1748,
  31721. bottom: 42/1962
  31722. }
  31723. },
  31724. back: {
  31725. height: math.unit(4, "feet"),
  31726. weight: math.unit(400, "lb"),
  31727. name: "Back",
  31728. image: {
  31729. source: "./media/characters/ryth/back.svg",
  31730. extra: 1897/1690,
  31731. bottom: 89/1986
  31732. }
  31733. },
  31734. mouth: {
  31735. height: math.unit(1.39, "feet"),
  31736. name: "Mouth",
  31737. image: {
  31738. source: "./media/characters/ryth/mouth.svg"
  31739. }
  31740. },
  31741. tailmaw: {
  31742. height: math.unit(1.23, "feet"),
  31743. name: "Tailmaw",
  31744. image: {
  31745. source: "./media/characters/ryth/tailmaw.svg"
  31746. }
  31747. },
  31748. goia: {
  31749. height: math.unit(12, "feet"),
  31750. weight: math.unit(10800, "lb"),
  31751. name: "Goia",
  31752. image: {
  31753. source: "./media/characters/ryth/goia.svg",
  31754. extra: 3450/3198,
  31755. bottom: 61/3511
  31756. }
  31757. },
  31758. },
  31759. [
  31760. {
  31761. name: "Normal",
  31762. height: math.unit(4, "feet"),
  31763. default: true
  31764. },
  31765. ]
  31766. ))
  31767. characterMakers.push(() => makeCharacter(
  31768. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31769. {
  31770. front: {
  31771. height: math.unit(7, "feet"),
  31772. weight: math.unit(180, "lb"),
  31773. name: "Front",
  31774. image: {
  31775. source: "./media/characters/necrolance/front.svg",
  31776. extra: 1062/947,
  31777. bottom: 41/1103
  31778. }
  31779. },
  31780. back: {
  31781. height: math.unit(7, "feet"),
  31782. weight: math.unit(180, "lb"),
  31783. name: "Back",
  31784. image: {
  31785. source: "./media/characters/necrolance/back.svg",
  31786. extra: 1045/984,
  31787. bottom: 14/1059
  31788. }
  31789. },
  31790. wing: {
  31791. height: math.unit(2.67, "feet"),
  31792. name: "Wing",
  31793. image: {
  31794. source: "./media/characters/necrolance/wing.svg"
  31795. }
  31796. },
  31797. },
  31798. [
  31799. {
  31800. name: "Normal",
  31801. height: math.unit(7, "feet"),
  31802. default: true
  31803. },
  31804. ]
  31805. ))
  31806. characterMakers.push(() => makeCharacter(
  31807. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31808. {
  31809. front: {
  31810. height: math.unit(76, "meters"),
  31811. weight: math.unit(30000, "tons"),
  31812. name: "Front",
  31813. image: {
  31814. source: "./media/characters/tyler/front.svg",
  31815. extra: 1640/1640,
  31816. bottom: 114/1754
  31817. }
  31818. },
  31819. },
  31820. [
  31821. {
  31822. name: "Macro",
  31823. height: math.unit(76, "meters"),
  31824. default: true
  31825. },
  31826. ]
  31827. ))
  31828. characterMakers.push(() => makeCharacter(
  31829. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31830. {
  31831. front: {
  31832. height: math.unit(4 + 11/12, "feet"),
  31833. weight: math.unit(132, "lb"),
  31834. name: "Front",
  31835. image: {
  31836. source: "./media/characters/icey/front.svg",
  31837. extra: 2750/2550,
  31838. bottom: 33/2783
  31839. }
  31840. },
  31841. back: {
  31842. height: math.unit(4 + 11/12, "feet"),
  31843. weight: math.unit(132, "lb"),
  31844. name: "Back",
  31845. image: {
  31846. source: "./media/characters/icey/back.svg",
  31847. extra: 2624/2481,
  31848. bottom: 35/2659
  31849. }
  31850. },
  31851. },
  31852. [
  31853. {
  31854. name: "Normal",
  31855. height: math.unit(4 + 11/12, "feet"),
  31856. default: true
  31857. },
  31858. ]
  31859. ))
  31860. characterMakers.push(() => makeCharacter(
  31861. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31862. {
  31863. front: {
  31864. height: math.unit(100, "feet"),
  31865. weight: math.unit(0, "lb"),
  31866. name: "Front",
  31867. image: {
  31868. source: "./media/characters/smile/front.svg",
  31869. extra: 2983/2912,
  31870. bottom: 162/3145
  31871. }
  31872. },
  31873. back: {
  31874. height: math.unit(100, "feet"),
  31875. weight: math.unit(0, "lb"),
  31876. name: "Back",
  31877. image: {
  31878. source: "./media/characters/smile/back.svg",
  31879. extra: 3143/3031,
  31880. bottom: 91/3234
  31881. }
  31882. },
  31883. head: {
  31884. height: math.unit(26.3, "feet"),
  31885. weight: math.unit(0, "lb"),
  31886. name: "Head",
  31887. image: {
  31888. source: "./media/characters/smile/head.svg"
  31889. }
  31890. },
  31891. collar: {
  31892. height: math.unit(5.3, "feet"),
  31893. weight: math.unit(0, "lb"),
  31894. name: "Collar",
  31895. image: {
  31896. source: "./media/characters/smile/collar.svg"
  31897. }
  31898. },
  31899. },
  31900. [
  31901. {
  31902. name: "Macro",
  31903. height: math.unit(100, "feet"),
  31904. default: true
  31905. },
  31906. ]
  31907. ))
  31908. characterMakers.push(() => makeCharacter(
  31909. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31910. {
  31911. dragon: {
  31912. height: math.unit(26, "feet"),
  31913. weight: math.unit(36, "tons"),
  31914. name: "Dragon",
  31915. image: {
  31916. source: "./media/characters/arimphae/dragon.svg",
  31917. extra: 1574/983,
  31918. bottom: 357/1931
  31919. }
  31920. },
  31921. drake: {
  31922. height: math.unit(9, "feet"),
  31923. weight: math.unit(1.5, "tons"),
  31924. name: "Drake",
  31925. image: {
  31926. source: "./media/characters/arimphae/drake.svg",
  31927. extra: 1120/925,
  31928. bottom: 435/1555
  31929. }
  31930. },
  31931. },
  31932. [
  31933. {
  31934. name: "Small",
  31935. height: math.unit(26*5/9, "feet")
  31936. },
  31937. {
  31938. name: "Normal",
  31939. height: math.unit(26, "feet"),
  31940. default: true
  31941. },
  31942. ]
  31943. ))
  31944. characterMakers.push(() => makeCharacter(
  31945. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31946. {
  31947. front: {
  31948. height: math.unit(8 + 9/12, "feet"),
  31949. name: "Front",
  31950. image: {
  31951. source: "./media/characters/xander/front.svg",
  31952. extra: 848/673,
  31953. bottom: 62/910
  31954. }
  31955. },
  31956. },
  31957. [
  31958. {
  31959. name: "Normal",
  31960. height: math.unit(8 + 9/12, "feet"),
  31961. default: true
  31962. },
  31963. {
  31964. name: "Gaze Grabber",
  31965. height: math.unit(13 + 8/12, "feet")
  31966. },
  31967. {
  31968. name: "Jaw Dropper",
  31969. height: math.unit(27, "feet")
  31970. },
  31971. {
  31972. name: "Show Stopper",
  31973. height: math.unit(136, "feet")
  31974. },
  31975. {
  31976. name: "Superstar",
  31977. height: math.unit(1.9e6, "miles")
  31978. },
  31979. ]
  31980. ))
  31981. characterMakers.push(() => makeCharacter(
  31982. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31983. {
  31984. side: {
  31985. height: math.unit(2100, "feet"),
  31986. name: "Side",
  31987. image: {
  31988. source: "./media/characters/osiris/side.svg",
  31989. extra: 1105/939,
  31990. bottom: 167/1272
  31991. }
  31992. },
  31993. },
  31994. [
  31995. {
  31996. name: "Macro",
  31997. height: math.unit(2100, "feet"),
  31998. default: true
  31999. },
  32000. ]
  32001. ))
  32002. characterMakers.push(() => makeCharacter(
  32003. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32004. {
  32005. front: {
  32006. height: math.unit(6 + 8/12, "feet"),
  32007. weight: math.unit(225, "lb"),
  32008. name: "Front",
  32009. image: {
  32010. source: "./media/characters/rhys-londe/front.svg",
  32011. extra: 2258/2141,
  32012. bottom: 188/2446
  32013. }
  32014. },
  32015. back: {
  32016. height: math.unit(6 + 8/12, "feet"),
  32017. weight: math.unit(225, "lb"),
  32018. name: "Back",
  32019. image: {
  32020. source: "./media/characters/rhys-londe/back.svg",
  32021. extra: 2237/2137,
  32022. bottom: 63/2300
  32023. }
  32024. },
  32025. frontNsfw: {
  32026. height: math.unit(6 + 8/12, "feet"),
  32027. weight: math.unit(225, "lb"),
  32028. name: "Front (NSFW)",
  32029. image: {
  32030. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32031. extra: 2258/2141,
  32032. bottom: 188/2446
  32033. }
  32034. },
  32035. backNsfw: {
  32036. height: math.unit(6 + 8/12, "feet"),
  32037. weight: math.unit(225, "lb"),
  32038. name: "Back (NSFW)",
  32039. image: {
  32040. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32041. extra: 2237/2137,
  32042. bottom: 63/2300
  32043. }
  32044. },
  32045. dick: {
  32046. height: math.unit(30, "inches"),
  32047. name: "Dick",
  32048. image: {
  32049. source: "./media/characters/rhys-londe/dick.svg"
  32050. }
  32051. },
  32052. maw: {
  32053. height: math.unit(1.6, "feet"),
  32054. name: "Maw",
  32055. image: {
  32056. source: "./media/characters/rhys-londe/maw.svg"
  32057. }
  32058. },
  32059. },
  32060. [
  32061. {
  32062. name: "Normal",
  32063. height: math.unit(6 + 8/12, "feet"),
  32064. default: true
  32065. },
  32066. ]
  32067. ))
  32068. characterMakers.push(() => makeCharacter(
  32069. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32070. {
  32071. front: {
  32072. height: math.unit(3 + 10/12, "feet"),
  32073. weight: math.unit(90, "lb"),
  32074. name: "Front",
  32075. image: {
  32076. source: "./media/characters/taivas-ensim/front.svg",
  32077. extra: 1327/1216,
  32078. bottom: 96/1423
  32079. }
  32080. },
  32081. back: {
  32082. height: math.unit(3 + 10/12, "feet"),
  32083. weight: math.unit(90, "lb"),
  32084. name: "Back",
  32085. image: {
  32086. source: "./media/characters/taivas-ensim/back.svg",
  32087. extra: 1355/1247,
  32088. bottom: 11/1366
  32089. }
  32090. },
  32091. frontNsfw: {
  32092. height: math.unit(3 + 10/12, "feet"),
  32093. weight: math.unit(90, "lb"),
  32094. name: "Front (NSFW)",
  32095. image: {
  32096. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32097. extra: 1327/1216,
  32098. bottom: 96/1423
  32099. }
  32100. },
  32101. backNsfw: {
  32102. height: math.unit(3 + 10/12, "feet"),
  32103. weight: math.unit(90, "lb"),
  32104. name: "Back (NSFW)",
  32105. image: {
  32106. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32107. extra: 1355/1247,
  32108. bottom: 11/1366
  32109. }
  32110. },
  32111. },
  32112. [
  32113. {
  32114. name: "Normal",
  32115. height: math.unit(3 + 10/12, "feet"),
  32116. default: true
  32117. },
  32118. ]
  32119. ))
  32120. characterMakers.push(() => makeCharacter(
  32121. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32122. {
  32123. front: {
  32124. height: math.unit(9 + 6/12, "feet"),
  32125. weight: math.unit(940, "lb"),
  32126. name: "Front",
  32127. image: {
  32128. source: "./media/characters/byliss/front.svg",
  32129. extra: 1327/1290,
  32130. bottom: 82/1409
  32131. }
  32132. },
  32133. back: {
  32134. height: math.unit(9 + 6/12, "feet"),
  32135. weight: math.unit(940, "lb"),
  32136. name: "Back",
  32137. image: {
  32138. source: "./media/characters/byliss/back.svg",
  32139. extra: 1376/1349,
  32140. bottom: 9/1385
  32141. }
  32142. },
  32143. frontNsfw: {
  32144. height: math.unit(9 + 6/12, "feet"),
  32145. weight: math.unit(940, "lb"),
  32146. name: "Front (NSFW)",
  32147. image: {
  32148. source: "./media/characters/byliss/front-nsfw.svg",
  32149. extra: 1327/1290,
  32150. bottom: 82/1409
  32151. }
  32152. },
  32153. backNsfw: {
  32154. height: math.unit(9 + 6/12, "feet"),
  32155. weight: math.unit(940, "lb"),
  32156. name: "Back (NSFW)",
  32157. image: {
  32158. source: "./media/characters/byliss/back-nsfw.svg",
  32159. extra: 1376/1349,
  32160. bottom: 9/1385
  32161. }
  32162. },
  32163. },
  32164. [
  32165. {
  32166. name: "Normal",
  32167. height: math.unit(9 + 6/12, "feet"),
  32168. default: true
  32169. },
  32170. ]
  32171. ))
  32172. characterMakers.push(() => makeCharacter(
  32173. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32174. {
  32175. front: {
  32176. height: math.unit(5 + 2/12, "feet"),
  32177. weight: math.unit(200, "lb"),
  32178. name: "Front",
  32179. image: {
  32180. source: "./media/characters/noraly/front.svg",
  32181. extra: 4985/4773,
  32182. bottom: 150/5135
  32183. }
  32184. },
  32185. full: {
  32186. height: math.unit(5 + 2/12, "feet"),
  32187. weight: math.unit(164, "lb"),
  32188. name: "Full",
  32189. image: {
  32190. source: "./media/characters/noraly/full.svg",
  32191. extra: 1114/1059,
  32192. bottom: 35/1149
  32193. }
  32194. },
  32195. fuller: {
  32196. height: math.unit(5 + 2/12, "feet"),
  32197. weight: math.unit(230, "lb"),
  32198. name: "Fuller",
  32199. image: {
  32200. source: "./media/characters/noraly/fuller.svg",
  32201. extra: 1114/1059,
  32202. bottom: 35/1149
  32203. }
  32204. },
  32205. fullest: {
  32206. height: math.unit(5 + 2/12, "feet"),
  32207. weight: math.unit(300, "lb"),
  32208. name: "Fullest",
  32209. image: {
  32210. source: "./media/characters/noraly/fullest.svg",
  32211. extra: 1114/1059,
  32212. bottom: 35/1149
  32213. }
  32214. },
  32215. },
  32216. [
  32217. {
  32218. name: "Normal",
  32219. height: math.unit(5 + 2/12, "feet"),
  32220. default: true
  32221. },
  32222. ]
  32223. ))
  32224. characterMakers.push(() => makeCharacter(
  32225. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32226. {
  32227. front: {
  32228. height: math.unit(5 + 2/12, "feet"),
  32229. weight: math.unit(210, "lb"),
  32230. name: "Front",
  32231. image: {
  32232. source: "./media/characters/pera/front.svg",
  32233. extra: 1560/1531,
  32234. bottom: 165/1725
  32235. }
  32236. },
  32237. back: {
  32238. height: math.unit(5 + 2/12, "feet"),
  32239. weight: math.unit(210, "lb"),
  32240. name: "Back",
  32241. image: {
  32242. source: "./media/characters/pera/back.svg",
  32243. extra: 1523/1493,
  32244. bottom: 152/1675
  32245. }
  32246. },
  32247. dick: {
  32248. height: math.unit(2.4, "feet"),
  32249. name: "Dick",
  32250. image: {
  32251. source: "./media/characters/pera/dick.svg"
  32252. }
  32253. },
  32254. },
  32255. [
  32256. {
  32257. name: "Normal",
  32258. height: math.unit(5 + 2/12, "feet"),
  32259. default: true
  32260. },
  32261. ]
  32262. ))
  32263. characterMakers.push(() => makeCharacter(
  32264. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32265. {
  32266. front: {
  32267. height: math.unit(12, "feet"),
  32268. weight: math.unit(3200, "lb"),
  32269. name: "Front",
  32270. image: {
  32271. source: "./media/characters/julian/front.svg",
  32272. extra: 2962/2701,
  32273. bottom: 184/3146
  32274. }
  32275. },
  32276. maw: {
  32277. height: math.unit(5.35, "feet"),
  32278. name: "Maw",
  32279. image: {
  32280. source: "./media/characters/julian/maw.svg"
  32281. }
  32282. },
  32283. paw: {
  32284. height: math.unit(3.07, "feet"),
  32285. name: "Paw",
  32286. image: {
  32287. source: "./media/characters/julian/paw.svg"
  32288. }
  32289. },
  32290. },
  32291. [
  32292. {
  32293. name: "Default",
  32294. height: math.unit(12, "feet"),
  32295. default: true
  32296. },
  32297. {
  32298. name: "Big",
  32299. height: math.unit(50, "feet")
  32300. },
  32301. {
  32302. name: "Really Big",
  32303. height: math.unit(1, "mile")
  32304. },
  32305. {
  32306. name: "Extremely Big",
  32307. height: math.unit(100, "miles")
  32308. },
  32309. {
  32310. name: "Planet Hugger",
  32311. height: math.unit(200, "megameters")
  32312. },
  32313. {
  32314. name: "Unreasonably Big",
  32315. height: math.unit(1e300, "meters")
  32316. },
  32317. ]
  32318. ))
  32319. characterMakers.push(() => makeCharacter(
  32320. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32321. {
  32322. solgooleo: {
  32323. height: math.unit(4, "meters"),
  32324. weight: math.unit(6000*1.5, "kg"),
  32325. volume: math.unit(6000, "liters"),
  32326. name: "Solgooleo",
  32327. image: {
  32328. source: "./media/characters/pi/solgooleo.svg",
  32329. extra: 388/331,
  32330. bottom: 29/417
  32331. }
  32332. },
  32333. },
  32334. [
  32335. {
  32336. name: "Normal",
  32337. height: math.unit(4, "meters"),
  32338. default: true
  32339. },
  32340. ]
  32341. ))
  32342. characterMakers.push(() => makeCharacter(
  32343. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32344. {
  32345. front: {
  32346. height: math.unit(8 + 2/12, "feet"),
  32347. weight: math.unit(4, "tons"),
  32348. name: "Front",
  32349. image: {
  32350. source: "./media/characters/shaun/front.svg",
  32351. extra: 1550/1505,
  32352. bottom: 353/1903
  32353. }
  32354. },
  32355. },
  32356. [
  32357. {
  32358. name: "Lorg",
  32359. height: math.unit(8 + 2/12, "feet"),
  32360. default: true
  32361. },
  32362. ]
  32363. ))
  32364. characterMakers.push(() => makeCharacter(
  32365. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32366. {
  32367. front: {
  32368. height: math.unit(7, "feet"),
  32369. name: "Front",
  32370. image: {
  32371. source: "./media/characters/sini/front.svg",
  32372. extra: 726/678,
  32373. bottom: 35/761
  32374. }
  32375. },
  32376. back: {
  32377. height: math.unit(7, "feet"),
  32378. name: "Back",
  32379. image: {
  32380. source: "./media/characters/sini/back.svg",
  32381. extra: 743/701,
  32382. bottom: 12/755
  32383. }
  32384. },
  32385. mawAnthro: {
  32386. height: math.unit(2.14, "feet"),
  32387. name: "Maw (Anthro)",
  32388. image: {
  32389. source: "./media/characters/sini/maw-anthro.svg"
  32390. }
  32391. },
  32392. dick: {
  32393. height: math.unit(1.45, "feet"),
  32394. name: "Dick (Anthro)",
  32395. image: {
  32396. source: "./media/characters/sini/dick-anthro.svg"
  32397. }
  32398. },
  32399. feral: {
  32400. height: math.unit(16, "feet"),
  32401. name: "Feral",
  32402. image: {
  32403. source: "./media/characters/sini/feral.svg",
  32404. extra: 814/605,
  32405. bottom: 11/825
  32406. }
  32407. },
  32408. mawFeral: {
  32409. height: math.unit(5.66, "feet"),
  32410. name: "Maw-feral",
  32411. image: {
  32412. source: "./media/characters/sini/maw-feral.svg"
  32413. }
  32414. },
  32415. footFeral: {
  32416. height: math.unit(5.17, "feet"),
  32417. name: "Foot-feral",
  32418. image: {
  32419. source: "./media/characters/sini/foot-feral.svg"
  32420. }
  32421. },
  32422. },
  32423. [
  32424. {
  32425. name: "Normal",
  32426. height: math.unit(7, "feet"),
  32427. default: true
  32428. },
  32429. ]
  32430. ))
  32431. characterMakers.push(() => makeCharacter(
  32432. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32433. {
  32434. side: {
  32435. height: math.unit(13, "meters"),
  32436. weight: math.unit(9072, "kg"),
  32437. name: "Side",
  32438. image: {
  32439. source: "./media/characters/raylldo/side.svg",
  32440. extra: 403/344,
  32441. bottom: 42/445
  32442. }
  32443. },
  32444. leaping: {
  32445. height: math.unit(12.3, "meters"),
  32446. weight: math.unit(9072, "kg"),
  32447. name: "Leaping",
  32448. image: {
  32449. source: "./media/characters/raylldo/leaping.svg",
  32450. extra: 470/249,
  32451. bottom: 13/483
  32452. }
  32453. },
  32454. flying: {
  32455. height: math.unit(18, "meters"),
  32456. weight: math.unit(9072, "kg"),
  32457. name: "Flying",
  32458. image: {
  32459. source: "./media/characters/raylldo/flying.svg"
  32460. }
  32461. },
  32462. head: {
  32463. height: math.unit(5.85, "meters"),
  32464. name: "Head",
  32465. image: {
  32466. source: "./media/characters/raylldo/head.svg"
  32467. }
  32468. },
  32469. maw: {
  32470. height: math.unit(5.32, "meters"),
  32471. name: "Maw",
  32472. image: {
  32473. source: "./media/characters/raylldo/maw.svg"
  32474. }
  32475. },
  32476. eye: {
  32477. height: math.unit(0.54, "meters"),
  32478. name: "Eye",
  32479. image: {
  32480. source: "./media/characters/raylldo/eye.svg"
  32481. }
  32482. },
  32483. },
  32484. [
  32485. {
  32486. name: "Normal",
  32487. height: math.unit(13, "meters"),
  32488. default: true
  32489. },
  32490. ]
  32491. ))
  32492. characterMakers.push(() => makeCharacter(
  32493. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32494. {
  32495. anthroFront: {
  32496. height: math.unit(9, "feet"),
  32497. weight: math.unit(600, "lb"),
  32498. name: "Anthro (Front)",
  32499. image: {
  32500. source: "./media/characters/glint/anthro-front.svg",
  32501. extra: 1097/1018,
  32502. bottom: 28/1125
  32503. }
  32504. },
  32505. anthroBack: {
  32506. height: math.unit(9, "feet"),
  32507. weight: math.unit(600, "lb"),
  32508. name: "Anthro (Back)",
  32509. image: {
  32510. source: "./media/characters/glint/anthro-back.svg",
  32511. extra: 1154/997,
  32512. bottom: 36/1190
  32513. }
  32514. },
  32515. feral: {
  32516. height: math.unit(11, "feet"),
  32517. weight: math.unit(50000, "lb"),
  32518. name: "Feral",
  32519. image: {
  32520. source: "./media/characters/glint/feral.svg",
  32521. extra: 3035/1585,
  32522. bottom: 1169/4204
  32523. }
  32524. },
  32525. dickAnthro: {
  32526. height: math.unit(0.7, "meters"),
  32527. name: "Dick (Anthro)",
  32528. image: {
  32529. source: "./media/characters/glint/dick-anthro.svg"
  32530. }
  32531. },
  32532. dickFeral: {
  32533. height: math.unit(2.65, "meters"),
  32534. name: "Dick (Feral)",
  32535. image: {
  32536. source: "./media/characters/glint/dick-feral.svg"
  32537. }
  32538. },
  32539. slitHidden: {
  32540. height: math.unit(5.85, "meters"),
  32541. name: "Slit (Hidden)",
  32542. image: {
  32543. source: "./media/characters/glint/slit-hidden.svg"
  32544. }
  32545. },
  32546. slitErect: {
  32547. height: math.unit(5.85, "meters"),
  32548. name: "Slit (Erect)",
  32549. image: {
  32550. source: "./media/characters/glint/slit-erect.svg"
  32551. }
  32552. },
  32553. mawAnthro: {
  32554. height: math.unit(0.63, "meters"),
  32555. name: "Maw (Anthro)",
  32556. image: {
  32557. source: "./media/characters/glint/maw.svg"
  32558. }
  32559. },
  32560. mawFeral: {
  32561. height: math.unit(2.89, "meters"),
  32562. name: "Maw (Feral)",
  32563. image: {
  32564. source: "./media/characters/glint/maw.svg"
  32565. }
  32566. },
  32567. },
  32568. [
  32569. {
  32570. name: "Normal",
  32571. height: math.unit(9, "feet"),
  32572. default: true
  32573. },
  32574. ]
  32575. ))
  32576. characterMakers.push(() => makeCharacter(
  32577. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32578. {
  32579. side: {
  32580. height: math.unit(15, "feet"),
  32581. weight: math.unit(5000, "kg"),
  32582. name: "Side",
  32583. image: {
  32584. source: "./media/characters/kairne/side.svg",
  32585. extra: 979/811,
  32586. bottom: 13/992
  32587. }
  32588. },
  32589. front: {
  32590. height: math.unit(15, "feet"),
  32591. weight: math.unit(5000, "kg"),
  32592. name: "Front",
  32593. image: {
  32594. source: "./media/characters/kairne/front.svg",
  32595. extra: 908/814,
  32596. bottom: 26/934
  32597. }
  32598. },
  32599. sideNsfw: {
  32600. height: math.unit(15, "feet"),
  32601. weight: math.unit(5000, "kg"),
  32602. name: "Side (NSFW)",
  32603. image: {
  32604. source: "./media/characters/kairne/side-nsfw.svg",
  32605. extra: 979/811,
  32606. bottom: 13/992
  32607. }
  32608. },
  32609. frontNsfw: {
  32610. height: math.unit(15, "feet"),
  32611. weight: math.unit(5000, "kg"),
  32612. name: "Front (NSFW)",
  32613. image: {
  32614. source: "./media/characters/kairne/front-nsfw.svg",
  32615. extra: 908/814,
  32616. bottom: 26/934
  32617. }
  32618. },
  32619. dickCaged: {
  32620. height: math.unit(0.65, "meters"),
  32621. name: "Dick-caged",
  32622. image: {
  32623. source: "./media/characters/kairne/dick-caged.svg"
  32624. }
  32625. },
  32626. dick: {
  32627. height: math.unit(0.79, "meters"),
  32628. name: "Dick",
  32629. image: {
  32630. source: "./media/characters/kairne/dick.svg"
  32631. }
  32632. },
  32633. genitals: {
  32634. height: math.unit(1.29, "meters"),
  32635. name: "Genitals",
  32636. image: {
  32637. source: "./media/characters/kairne/genitals.svg"
  32638. }
  32639. },
  32640. maw: {
  32641. height: math.unit(1.73, "meters"),
  32642. name: "Maw",
  32643. image: {
  32644. source: "./media/characters/kairne/maw.svg"
  32645. }
  32646. },
  32647. },
  32648. [
  32649. {
  32650. name: "Normal",
  32651. height: math.unit(15, "feet"),
  32652. default: true
  32653. },
  32654. ]
  32655. ))
  32656. characterMakers.push(() => makeCharacter(
  32657. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32658. {
  32659. front: {
  32660. height: math.unit(5 + 8/12, "feet"),
  32661. weight: math.unit(139, "lb"),
  32662. name: "Front",
  32663. image: {
  32664. source: "./media/characters/biscuit-jackal/front.svg",
  32665. extra: 2106/1961,
  32666. bottom: 58/2164
  32667. }
  32668. },
  32669. back: {
  32670. height: math.unit(5 + 8/12, "feet"),
  32671. weight: math.unit(139, "lb"),
  32672. name: "Back",
  32673. image: {
  32674. source: "./media/characters/biscuit-jackal/back.svg",
  32675. extra: 2132/1976,
  32676. bottom: 57/2189
  32677. }
  32678. },
  32679. werejackal: {
  32680. height: math.unit(6 + 3/12, "feet"),
  32681. weight: math.unit(188, "lb"),
  32682. name: "Werejackal",
  32683. image: {
  32684. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32685. extra: 2373/2178,
  32686. bottom: 53/2426
  32687. }
  32688. },
  32689. },
  32690. [
  32691. {
  32692. name: "Normal",
  32693. height: math.unit(5 + 8/12, "feet"),
  32694. default: true
  32695. },
  32696. ]
  32697. ))
  32698. characterMakers.push(() => makeCharacter(
  32699. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32700. {
  32701. front: {
  32702. height: math.unit(140, "cm"),
  32703. weight: math.unit(45, "kg"),
  32704. name: "Front",
  32705. image: {
  32706. source: "./media/characters/tayra-white/front.svg",
  32707. extra: 2229/2192,
  32708. bottom: 75/2304
  32709. }
  32710. },
  32711. },
  32712. [
  32713. {
  32714. name: "Normal",
  32715. height: math.unit(140, "cm"),
  32716. default: true
  32717. },
  32718. ]
  32719. ))
  32720. characterMakers.push(() => makeCharacter(
  32721. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32722. {
  32723. front: {
  32724. height: math.unit(4 + 5/12, "feet"),
  32725. name: "Front",
  32726. image: {
  32727. source: "./media/characters/scoop/front.svg",
  32728. extra: 1257/1136,
  32729. bottom: 69/1326
  32730. }
  32731. },
  32732. back: {
  32733. height: math.unit(4 + 5/12, "feet"),
  32734. name: "Back",
  32735. image: {
  32736. source: "./media/characters/scoop/back.svg",
  32737. extra: 1321/1152,
  32738. bottom: 32/1353
  32739. }
  32740. },
  32741. maw: {
  32742. height: math.unit(0.68, "feet"),
  32743. name: "Maw",
  32744. image: {
  32745. source: "./media/characters/scoop/maw.svg"
  32746. }
  32747. },
  32748. },
  32749. [
  32750. {
  32751. name: "Really Small",
  32752. height: math.unit(1, "mm")
  32753. },
  32754. {
  32755. name: "Micro",
  32756. height: math.unit(1, "inch")
  32757. },
  32758. {
  32759. name: "Normal",
  32760. height: math.unit(4 + 5/12, "feet"),
  32761. default: true
  32762. },
  32763. {
  32764. name: "Macro",
  32765. height: math.unit(200, "feet")
  32766. },
  32767. {
  32768. name: "Megamacro",
  32769. height: math.unit(3240, "feet")
  32770. },
  32771. {
  32772. name: "Teramacro",
  32773. height: math.unit(2500, "miles")
  32774. },
  32775. ]
  32776. ))
  32777. characterMakers.push(() => makeCharacter(
  32778. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32779. {
  32780. front: {
  32781. height: math.unit(15 + 7/12, "feet"),
  32782. name: "Front",
  32783. image: {
  32784. source: "./media/characters/saphinara/front.svg",
  32785. extra: 604/546,
  32786. bottom: 19/623
  32787. }
  32788. },
  32789. side: {
  32790. height: math.unit(15 + 7/12, "feet"),
  32791. name: "Side",
  32792. image: {
  32793. source: "./media/characters/saphinara/side.svg",
  32794. extra: 605/547,
  32795. bottom: 6/611
  32796. }
  32797. },
  32798. back: {
  32799. height: math.unit(15 + 7/12, "feet"),
  32800. name: "Back",
  32801. image: {
  32802. source: "./media/characters/saphinara/back.svg",
  32803. extra: 591/531,
  32804. bottom: 13/604
  32805. }
  32806. },
  32807. frontTail: {
  32808. height: math.unit(15 + 7/12, "feet"),
  32809. name: "Front (Full Tail)",
  32810. image: {
  32811. source: "./media/characters/saphinara/front-tail.svg",
  32812. extra: 748/547,
  32813. bottom: 66/814
  32814. }
  32815. },
  32816. },
  32817. [
  32818. {
  32819. name: "Normal",
  32820. height: math.unit(15 + 7/12, "feet"),
  32821. default: true
  32822. },
  32823. {
  32824. name: "Angry",
  32825. height: math.unit(30 + 6/12, "feet")
  32826. },
  32827. {
  32828. name: "Enraged",
  32829. height: math.unit(102 + 1/12, "feet")
  32830. },
  32831. ]
  32832. ))
  32833. characterMakers.push(() => makeCharacter(
  32834. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32835. {
  32836. front: {
  32837. height: math.unit(6 + 8/12, "feet"),
  32838. weight: math.unit(300, "lb"),
  32839. name: "Front",
  32840. image: {
  32841. source: "./media/characters/jrain/front.svg",
  32842. extra: 3039/2865,
  32843. bottom: 399/3438
  32844. }
  32845. },
  32846. back: {
  32847. height: math.unit(6 + 8/12, "feet"),
  32848. weight: math.unit(300, "lb"),
  32849. name: "Back",
  32850. image: {
  32851. source: "./media/characters/jrain/back.svg",
  32852. extra: 3089/2938,
  32853. bottom: 172/3261
  32854. }
  32855. },
  32856. head: {
  32857. height: math.unit(2.14, "feet"),
  32858. name: "Head",
  32859. image: {
  32860. source: "./media/characters/jrain/head.svg"
  32861. }
  32862. },
  32863. maw: {
  32864. height: math.unit(1.77, "feet"),
  32865. name: "Maw",
  32866. image: {
  32867. source: "./media/characters/jrain/maw.svg"
  32868. }
  32869. },
  32870. leftHand: {
  32871. height: math.unit(1.1, "feet"),
  32872. name: "Left Hand",
  32873. image: {
  32874. source: "./media/characters/jrain/left-hand.svg"
  32875. }
  32876. },
  32877. rightHand: {
  32878. height: math.unit(1.1, "feet"),
  32879. name: "Right Hand",
  32880. image: {
  32881. source: "./media/characters/jrain/right-hand.svg"
  32882. }
  32883. },
  32884. eye: {
  32885. height: math.unit(0.35, "feet"),
  32886. name: "Eye",
  32887. image: {
  32888. source: "./media/characters/jrain/eye.svg"
  32889. }
  32890. },
  32891. },
  32892. [
  32893. {
  32894. name: "Normal",
  32895. height: math.unit(6 + 8/12, "feet"),
  32896. default: true
  32897. },
  32898. {
  32899. name: "Casually Large",
  32900. height: math.unit(25, "feet")
  32901. },
  32902. {
  32903. name: "Giant",
  32904. height: math.unit(100, "feet")
  32905. },
  32906. {
  32907. name: "Kaiju",
  32908. height: math.unit(300, "feet")
  32909. },
  32910. ]
  32911. ))
  32912. characterMakers.push(() => makeCharacter(
  32913. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32914. {
  32915. dragon: {
  32916. height: math.unit(5, "meters"),
  32917. name: "Dragon",
  32918. image: {
  32919. source: "./media/characters/sabrina/dragon.svg",
  32920. extra: 3670 / 2365,
  32921. bottom: 333 / 4003
  32922. }
  32923. },
  32924. gryphon: {
  32925. height: math.unit(3, "meters"),
  32926. name: "Gryphon",
  32927. image: {
  32928. source: "./media/characters/sabrina/gryphon.svg",
  32929. extra: 1576 / 945,
  32930. bottom: 71 / 1647
  32931. }
  32932. },
  32933. snake: {
  32934. height: math.unit(12, "meters"),
  32935. name: "Snake",
  32936. image: {
  32937. source: "./media/characters/sabrina/snake.svg",
  32938. extra: 1758 / 1320,
  32939. bottom: 186 / 1944
  32940. }
  32941. },
  32942. collar: {
  32943. height: math.unit(1.86, "meters"),
  32944. name: "Collar",
  32945. image: {
  32946. source: "./media/characters/sabrina/collar.svg"
  32947. }
  32948. },
  32949. eye: {
  32950. height: math.unit(0.53, "meters"),
  32951. name: "Eye",
  32952. image: {
  32953. source: "./media/characters/sabrina/eye.svg"
  32954. }
  32955. },
  32956. foot: {
  32957. height: math.unit(1.86, "meters"),
  32958. name: "Foot",
  32959. image: {
  32960. source: "./media/characters/sabrina/foot.svg"
  32961. }
  32962. },
  32963. hand: {
  32964. height: math.unit(1.32, "meters"),
  32965. name: "Hand",
  32966. image: {
  32967. source: "./media/characters/sabrina/hand.svg"
  32968. }
  32969. },
  32970. head: {
  32971. height: math.unit(2.44, "meters"),
  32972. name: "Head",
  32973. image: {
  32974. source: "./media/characters/sabrina/head.svg"
  32975. }
  32976. },
  32977. headAngry: {
  32978. height: math.unit(2.44, "meters"),
  32979. name: "Head (Angry))",
  32980. image: {
  32981. source: "./media/characters/sabrina/head-angry.svg"
  32982. }
  32983. },
  32984. maw: {
  32985. height: math.unit(1.65, "meters"),
  32986. name: "Maw",
  32987. image: {
  32988. source: "./media/characters/sabrina/maw.svg"
  32989. }
  32990. },
  32991. spikes: {
  32992. height: math.unit(1.69, "meters"),
  32993. name: "Spikes",
  32994. image: {
  32995. source: "./media/characters/sabrina/spikes.svg"
  32996. }
  32997. },
  32998. stomach: {
  32999. height: math.unit(1.15, "meters"),
  33000. name: "Stomach",
  33001. image: {
  33002. source: "./media/characters/sabrina/stomach.svg"
  33003. }
  33004. },
  33005. tongue: {
  33006. height: math.unit(1.27, "meters"),
  33007. name: "Tongue",
  33008. image: {
  33009. source: "./media/characters/sabrina/tongue.svg"
  33010. }
  33011. },
  33012. wingDorsal: {
  33013. height: math.unit(4.85, "meters"),
  33014. name: "Wing (Dorsal)",
  33015. image: {
  33016. source: "./media/characters/sabrina/wing-dorsal.svg"
  33017. }
  33018. },
  33019. wingVentral: {
  33020. height: math.unit(4.85, "meters"),
  33021. name: "Wing (Ventral)",
  33022. image: {
  33023. source: "./media/characters/sabrina/wing-ventral.svg"
  33024. }
  33025. },
  33026. },
  33027. [
  33028. {
  33029. name: "Normal",
  33030. height: math.unit(5, "meters"),
  33031. default: true
  33032. },
  33033. ]
  33034. ))
  33035. characterMakers.push(() => makeCharacter(
  33036. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33037. {
  33038. frontMaid: {
  33039. height: math.unit(5 + 5/12, "feet"),
  33040. weight: math.unit(130, "lb"),
  33041. name: "Front (Maid)",
  33042. image: {
  33043. source: "./media/characters/midnight-tales/front-maid.svg",
  33044. extra: 489/454,
  33045. bottom: 61/550
  33046. }
  33047. },
  33048. frontFormal: {
  33049. height: math.unit(5 + 5/12, "feet"),
  33050. weight: math.unit(130, "lb"),
  33051. name: "Front (Formal)",
  33052. image: {
  33053. source: "./media/characters/midnight-tales/front-formal.svg",
  33054. extra: 489/454,
  33055. bottom: 61/550
  33056. }
  33057. },
  33058. back: {
  33059. height: math.unit(5 + 5/12, "feet"),
  33060. weight: math.unit(130, "lb"),
  33061. name: "Back",
  33062. image: {
  33063. source: "./media/characters/midnight-tales/back.svg",
  33064. extra: 498/456,
  33065. bottom: 33/531
  33066. }
  33067. },
  33068. frontBeast: {
  33069. height: math.unit(40, "feet"),
  33070. weight: math.unit(64000, "lb"),
  33071. name: "Front (Beast)",
  33072. image: {
  33073. source: "./media/characters/midnight-tales/front-beast.svg",
  33074. extra: 927/860,
  33075. bottom: 53/980
  33076. }
  33077. },
  33078. backBeast: {
  33079. height: math.unit(40, "feet"),
  33080. weight: math.unit(64000, "lb"),
  33081. name: "Back (Beast)",
  33082. image: {
  33083. source: "./media/characters/midnight-tales/back-beast.svg",
  33084. extra: 929/855,
  33085. bottom: 16/945
  33086. }
  33087. },
  33088. footBeast: {
  33089. height: math.unit(6.7, "feet"),
  33090. name: "Foot (Beast)",
  33091. image: {
  33092. source: "./media/characters/midnight-tales/foot-beast.svg"
  33093. }
  33094. },
  33095. headBeast: {
  33096. height: math.unit(8, "feet"),
  33097. name: "Head (Beast)",
  33098. image: {
  33099. source: "./media/characters/midnight-tales/head-beast.svg"
  33100. }
  33101. },
  33102. },
  33103. [
  33104. {
  33105. name: "Normal",
  33106. height: math.unit(5 + 5 / 12, "feet"),
  33107. default: true
  33108. },
  33109. {
  33110. name: "Macro",
  33111. height: math.unit(25, "feet")
  33112. },
  33113. ]
  33114. ))
  33115. characterMakers.push(() => makeCharacter(
  33116. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33117. {
  33118. front: {
  33119. height: math.unit(5 + 10/12, "feet"),
  33120. name: "Front",
  33121. image: {
  33122. source: "./media/characters/argon/front.svg",
  33123. extra: 2009/1935,
  33124. bottom: 118/2127
  33125. }
  33126. },
  33127. back: {
  33128. height: math.unit(5 + 10/12, "feet"),
  33129. name: "Back",
  33130. image: {
  33131. source: "./media/characters/argon/back.svg",
  33132. extra: 2047/1992,
  33133. bottom: 20/2067
  33134. }
  33135. },
  33136. frontDressed: {
  33137. height: math.unit(5 + 10/12, "feet"),
  33138. name: "Front (Dressed)",
  33139. image: {
  33140. source: "./media/characters/argon/front-dressed.svg",
  33141. extra: 2009/1935,
  33142. bottom: 118/2127
  33143. }
  33144. },
  33145. },
  33146. [
  33147. {
  33148. name: "Normal",
  33149. height: math.unit(5 + 10/12, "feet"),
  33150. default: true
  33151. },
  33152. ]
  33153. ))
  33154. characterMakers.push(() => makeCharacter(
  33155. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33156. {
  33157. front: {
  33158. height: math.unit(8 + 6/12, "feet"),
  33159. weight: math.unit(1150, "lb"),
  33160. name: "Front",
  33161. image: {
  33162. source: "./media/characters/kichi/front.svg",
  33163. extra: 1267/1164,
  33164. bottom: 61/1328
  33165. }
  33166. },
  33167. back: {
  33168. height: math.unit(8 + 6/12, "feet"),
  33169. weight: math.unit(1150, "lb"),
  33170. name: "Back",
  33171. image: {
  33172. source: "./media/characters/kichi/back.svg",
  33173. extra: 1273/1166,
  33174. bottom: 33/1306
  33175. }
  33176. },
  33177. },
  33178. [
  33179. {
  33180. name: "Normal",
  33181. height: math.unit(8 + 6/12, "feet"),
  33182. default: true
  33183. },
  33184. ]
  33185. ))
  33186. characterMakers.push(() => makeCharacter(
  33187. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33188. {
  33189. front: {
  33190. height: math.unit(6, "feet"),
  33191. weight: math.unit(210, "lb"),
  33192. name: "Front",
  33193. image: {
  33194. source: "./media/characters/manetel-greyscale/front.svg",
  33195. extra: 350/312,
  33196. bottom: 8/358
  33197. }
  33198. },
  33199. },
  33200. [
  33201. {
  33202. name: "Micro",
  33203. height: math.unit(2, "inches")
  33204. },
  33205. {
  33206. name: "Normal",
  33207. height: math.unit(6, "feet"),
  33208. default: true
  33209. },
  33210. {
  33211. name: "Minimacro",
  33212. height: math.unit(17, "feet")
  33213. },
  33214. {
  33215. name: "Macro",
  33216. height: math.unit(117, "feet")
  33217. },
  33218. ]
  33219. ))
  33220. characterMakers.push(() => makeCharacter(
  33221. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33222. {
  33223. side: {
  33224. height: math.unit(5 + 1/12, "feet"),
  33225. weight: math.unit(418, "lb"),
  33226. name: "Side",
  33227. image: {
  33228. source: "./media/characters/softpurr/side.svg",
  33229. extra: 1993/1945,
  33230. bottom: 134/2127
  33231. }
  33232. },
  33233. front: {
  33234. height: math.unit(5 + 1/12, "feet"),
  33235. weight: math.unit(418, "lb"),
  33236. name: "Front",
  33237. image: {
  33238. source: "./media/characters/softpurr/front.svg",
  33239. extra: 1950/1856,
  33240. bottom: 174/2124
  33241. }
  33242. },
  33243. paw: {
  33244. height: math.unit(1, "feet"),
  33245. name: "Paw",
  33246. image: {
  33247. source: "./media/characters/softpurr/paw.svg"
  33248. }
  33249. },
  33250. },
  33251. [
  33252. {
  33253. name: "Normal",
  33254. height: math.unit(5 + 1/12, "feet"),
  33255. default: true
  33256. },
  33257. ]
  33258. ))
  33259. characterMakers.push(() => makeCharacter(
  33260. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33261. {
  33262. front: {
  33263. height: math.unit(260, "meters"),
  33264. name: "Front",
  33265. image: {
  33266. source: "./media/characters/anahita/front.svg",
  33267. extra: 665/635,
  33268. bottom: 89/754
  33269. }
  33270. },
  33271. },
  33272. [
  33273. {
  33274. name: "Macro",
  33275. height: math.unit(260, "meters"),
  33276. default: true
  33277. },
  33278. ]
  33279. ))
  33280. characterMakers.push(() => makeCharacter(
  33281. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33282. {
  33283. front: {
  33284. height: math.unit(4 + 10/12, "feet"),
  33285. weight: math.unit(160, "lb"),
  33286. name: "Front",
  33287. image: {
  33288. source: "./media/characters/chip-mouse/front.svg",
  33289. extra: 3528/3408,
  33290. bottom: 0/3528
  33291. }
  33292. },
  33293. frontNsfw: {
  33294. height: math.unit(4 + 10/12, "feet"),
  33295. weight: math.unit(160, "lb"),
  33296. name: "Front (NSFW)",
  33297. image: {
  33298. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33299. extra: 3528/3408,
  33300. bottom: 0/3528
  33301. }
  33302. },
  33303. },
  33304. [
  33305. {
  33306. name: "Normal",
  33307. height: math.unit(4 + 10/12, "feet"),
  33308. default: true
  33309. },
  33310. ]
  33311. ))
  33312. characterMakers.push(() => makeCharacter(
  33313. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33314. {
  33315. side: {
  33316. height: math.unit(10, "feet"),
  33317. weight: math.unit(14000, "lb"),
  33318. name: "Side",
  33319. image: {
  33320. source: "./media/characters/kremm/side.svg",
  33321. extra: 1390/1053,
  33322. bottom: 90/1480
  33323. }
  33324. },
  33325. gut: {
  33326. height: math.unit(5.8, "feet"),
  33327. name: "Gut",
  33328. image: {
  33329. source: "./media/characters/kremm/gut.svg"
  33330. }
  33331. },
  33332. ass: {
  33333. height: math.unit(6.1, "feet"),
  33334. name: "Ass",
  33335. image: {
  33336. source: "./media/characters/kremm/ass.svg"
  33337. }
  33338. },
  33339. jaws: {
  33340. height: math.unit(2.2, "feet"),
  33341. name: "Jaws",
  33342. image: {
  33343. source: "./media/characters/kremm/jaws.svg"
  33344. }
  33345. },
  33346. dick: {
  33347. height: math.unit(4.26, "feet"),
  33348. name: "Dick",
  33349. image: {
  33350. source: "./media/characters/kremm/dick.svg"
  33351. }
  33352. },
  33353. },
  33354. [
  33355. {
  33356. name: "Normal",
  33357. height: math.unit(10, "feet"),
  33358. default: true
  33359. },
  33360. ]
  33361. ))
  33362. characterMakers.push(() => makeCharacter(
  33363. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33364. {
  33365. front: {
  33366. height: math.unit(30, "stories"),
  33367. name: "Front",
  33368. image: {
  33369. source: "./media/characters/kai/front.svg",
  33370. extra: 1892/1718,
  33371. bottom: 162/2054
  33372. }
  33373. },
  33374. },
  33375. [
  33376. {
  33377. name: "Macro",
  33378. height: math.unit(30, "stories"),
  33379. default: true
  33380. },
  33381. ]
  33382. ))
  33383. characterMakers.push(() => makeCharacter(
  33384. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33385. {
  33386. front: {
  33387. height: math.unit(6 + 4/12, "feet"),
  33388. weight: math.unit(145, "lb"),
  33389. name: "Front",
  33390. image: {
  33391. source: "./media/characters/sykes/front.svg",
  33392. extra: 1321 / 1187,
  33393. bottom: 66 / 1387
  33394. }
  33395. },
  33396. back: {
  33397. height: math.unit(6 + 4/12, "feet"),
  33398. weight: math.unit(145, "lb"),
  33399. name: "Back",
  33400. image: {
  33401. source: "./media/characters/sykes/back.svg",
  33402. extra: 1326/1181,
  33403. bottom: 31/1357
  33404. }
  33405. },
  33406. handBack: {
  33407. height: math.unit(0.9, "feet"),
  33408. name: "Hand (Back)",
  33409. image: {
  33410. source: "./media/characters/sykes/hand-back.svg"
  33411. }
  33412. },
  33413. handFront: {
  33414. height: math.unit(0.839, "feet"),
  33415. name: "Hand (Front)",
  33416. image: {
  33417. source: "./media/characters/sykes/hand-front.svg"
  33418. }
  33419. },
  33420. leftFoot: {
  33421. height: math.unit(1.2, "feet"),
  33422. name: "Foot (Left)",
  33423. image: {
  33424. source: "./media/characters/sykes/foot-left.svg"
  33425. }
  33426. },
  33427. rightFoot: {
  33428. height: math.unit(1.2, "feet"),
  33429. name: "Foot (Right)",
  33430. image: {
  33431. source: "./media/characters/sykes/foot-right.svg"
  33432. }
  33433. },
  33434. maw: {
  33435. height: math.unit(1.93, "feet"),
  33436. name: "Maw",
  33437. image: {
  33438. source: "./media/characters/sykes/maw.svg"
  33439. }
  33440. },
  33441. teeth: {
  33442. height: math.unit(0.51, "feet"),
  33443. name: "Teeth",
  33444. image: {
  33445. source: "./media/characters/sykes/teeth.svg"
  33446. }
  33447. },
  33448. tongue: {
  33449. height: math.unit(2.13, "feet"),
  33450. name: "Tongue",
  33451. image: {
  33452. source: "./media/characters/sykes/tongue.svg"
  33453. }
  33454. },
  33455. uvula: {
  33456. height: math.unit(0.16, "feet"),
  33457. name: "Uvula",
  33458. image: {
  33459. source: "./media/characters/sykes/uvula.svg"
  33460. }
  33461. },
  33462. collar: {
  33463. height: math.unit(0.287, "feet"),
  33464. name: "Collar",
  33465. image: {
  33466. source: "./media/characters/sykes/collar.svg"
  33467. }
  33468. },
  33469. },
  33470. [
  33471. {
  33472. name: "Shrunken",
  33473. height: math.unit(5, "inches")
  33474. },
  33475. {
  33476. name: "Normal",
  33477. height: math.unit(6 + 4 / 12, "feet"),
  33478. default: true
  33479. },
  33480. {
  33481. name: "Big",
  33482. height: math.unit(15, "feet")
  33483. },
  33484. ]
  33485. ))
  33486. characterMakers.push(() => makeCharacter(
  33487. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33488. {
  33489. front: {
  33490. height: math.unit(5 + 8/12, "feet"),
  33491. weight: math.unit(190, "lb"),
  33492. name: "Front",
  33493. image: {
  33494. source: "./media/characters/oven-otter/front.svg",
  33495. extra: 1809/1740,
  33496. bottom: 181/1990
  33497. }
  33498. },
  33499. back: {
  33500. height: math.unit(5 + 8/12, "feet"),
  33501. weight: math.unit(190, "lb"),
  33502. name: "Back",
  33503. image: {
  33504. source: "./media/characters/oven-otter/back.svg",
  33505. extra: 1709/1635,
  33506. bottom: 118/1827
  33507. }
  33508. },
  33509. hand: {
  33510. height: math.unit(1.07, "feet"),
  33511. name: "Hand",
  33512. image: {
  33513. source: "./media/characters/oven-otter/hand.svg"
  33514. }
  33515. },
  33516. beans: {
  33517. height: math.unit(1.74, "feet"),
  33518. name: "Beans",
  33519. image: {
  33520. source: "./media/characters/oven-otter/beans.svg"
  33521. }
  33522. },
  33523. },
  33524. [
  33525. {
  33526. name: "Micro",
  33527. height: math.unit(0.5, "inches")
  33528. },
  33529. {
  33530. name: "Normal",
  33531. height: math.unit(5 + 8/12, "feet"),
  33532. default: true
  33533. },
  33534. {
  33535. name: "Macro",
  33536. height: math.unit(250, "feet")
  33537. },
  33538. {
  33539. name: "Really High",
  33540. height: math.unit(420, "feet")
  33541. },
  33542. ]
  33543. ))
  33544. characterMakers.push(() => makeCharacter(
  33545. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33546. {
  33547. front: {
  33548. height: math.unit(5, "meters"),
  33549. weight: math.unit(292000000000000, "kg"),
  33550. name: "Front",
  33551. image: {
  33552. source: "./media/characters/devourer/front.svg",
  33553. extra: 1800/1733,
  33554. bottom: 211/2011
  33555. }
  33556. },
  33557. maw: {
  33558. height: math.unit(1.1, "meter"),
  33559. name: "Maw",
  33560. image: {
  33561. source: "./media/characters/devourer/maw.svg"
  33562. }
  33563. },
  33564. },
  33565. [
  33566. {
  33567. name: "Small",
  33568. height: math.unit(3, "meters")
  33569. },
  33570. {
  33571. name: "Large",
  33572. height: math.unit(5, "meters"),
  33573. default: true
  33574. },
  33575. ]
  33576. ))
  33577. characterMakers.push(() => makeCharacter(
  33578. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33579. {
  33580. front: {
  33581. height: math.unit(6, "feet"),
  33582. weight: math.unit(400, "lb"),
  33583. name: "Front",
  33584. image: {
  33585. source: "./media/characters/ellarby/front.svg",
  33586. extra: 1909/1763,
  33587. bottom: 80/1989
  33588. }
  33589. },
  33590. back: {
  33591. height: math.unit(6, "feet"),
  33592. weight: math.unit(400, "lb"),
  33593. name: "Back",
  33594. image: {
  33595. source: "./media/characters/ellarby/back.svg",
  33596. extra: 1914/1784,
  33597. bottom: 172/2086
  33598. }
  33599. },
  33600. },
  33601. [
  33602. {
  33603. name: "Mischief",
  33604. height: math.unit(18, "inches")
  33605. },
  33606. {
  33607. name: "Trouble",
  33608. height: math.unit(12, "feet")
  33609. },
  33610. {
  33611. name: "Havoc",
  33612. height: math.unit(200, "feet"),
  33613. default: true
  33614. },
  33615. {
  33616. name: "Pandemonium",
  33617. height: math.unit(1, "mile")
  33618. },
  33619. {
  33620. name: "Catastrophe",
  33621. height: math.unit(100, "miles")
  33622. },
  33623. ]
  33624. ))
  33625. characterMakers.push(() => makeCharacter(
  33626. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33627. {
  33628. front: {
  33629. height: math.unit(4.7, "meters"),
  33630. weight: math.unit(6500, "kg"),
  33631. name: "Front",
  33632. image: {
  33633. source: "./media/characters/vex/front.svg",
  33634. extra: 1288/1140,
  33635. bottom: 100/1388
  33636. }
  33637. },
  33638. },
  33639. [
  33640. {
  33641. name: "Normal",
  33642. height: math.unit(4.7, "meters"),
  33643. default: true
  33644. },
  33645. ]
  33646. ))
  33647. characterMakers.push(() => makeCharacter(
  33648. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33649. {
  33650. normal: {
  33651. height: math.unit(6, "feet"),
  33652. weight: math.unit(350, "lb"),
  33653. name: "Normal",
  33654. image: {
  33655. source: "./media/characters/teshy/normal.svg",
  33656. extra: 1795/1735,
  33657. bottom: 16/1811
  33658. }
  33659. },
  33660. monsterFront: {
  33661. height: math.unit(12, "feet"),
  33662. weight: math.unit(4700, "lb"),
  33663. name: "Monster (Front)",
  33664. image: {
  33665. source: "./media/characters/teshy/monster-front.svg",
  33666. extra: 2042/2034,
  33667. bottom: 128/2170
  33668. }
  33669. },
  33670. monsterSide: {
  33671. height: math.unit(12, "feet"),
  33672. weight: math.unit(4700, "lb"),
  33673. name: "Monster (Side)",
  33674. image: {
  33675. source: "./media/characters/teshy/monster-side.svg",
  33676. extra: 2067/2056,
  33677. bottom: 70/2137
  33678. }
  33679. },
  33680. monsterBack: {
  33681. height: math.unit(12, "feet"),
  33682. weight: math.unit(4700, "lb"),
  33683. name: "Monster (Back)",
  33684. image: {
  33685. source: "./media/characters/teshy/monster-back.svg",
  33686. extra: 1921/1914,
  33687. bottom: 171/2092
  33688. }
  33689. },
  33690. },
  33691. [
  33692. {
  33693. name: "Normal",
  33694. height: math.unit(6, "feet"),
  33695. default: true
  33696. },
  33697. ]
  33698. ))
  33699. characterMakers.push(() => makeCharacter(
  33700. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33701. {
  33702. front: {
  33703. height: math.unit(6, "feet"),
  33704. name: "Front",
  33705. image: {
  33706. source: "./media/characters/ramey/front.svg",
  33707. extra: 790/787,
  33708. bottom: 27/817
  33709. }
  33710. },
  33711. },
  33712. [
  33713. {
  33714. name: "Normal",
  33715. height: math.unit(6, "feet"),
  33716. default: true
  33717. },
  33718. ]
  33719. ))
  33720. characterMakers.push(() => makeCharacter(
  33721. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33722. {
  33723. front: {
  33724. height: math.unit(5 + 5/12, "feet"),
  33725. weight: math.unit(120, "lb"),
  33726. name: "Front",
  33727. image: {
  33728. source: "./media/characters/phirae/front.svg",
  33729. extra: 2491/2436,
  33730. bottom: 38/2529
  33731. }
  33732. },
  33733. },
  33734. [
  33735. {
  33736. name: "Normal",
  33737. height: math.unit(5 + 5/12, "feet"),
  33738. default: true
  33739. },
  33740. ]
  33741. ))
  33742. characterMakers.push(() => makeCharacter(
  33743. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33744. {
  33745. front: {
  33746. height: math.unit(6, "feet"),
  33747. weight: math.unit(150, "lb"),
  33748. name: "Front",
  33749. image: {
  33750. source: "./media/characters/stagglas/front.svg",
  33751. extra: 962/882,
  33752. bottom: 53/1015
  33753. }
  33754. },
  33755. },
  33756. [
  33757. {
  33758. name: "Normal",
  33759. height: math.unit(5 + 3/12, "feet"),
  33760. default: true
  33761. },
  33762. ]
  33763. ))
  33764. characterMakers.push(() => makeCharacter(
  33765. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33766. {
  33767. front: {
  33768. height: math.unit(5 + 4/12, "feet"),
  33769. weight: math.unit(145, "lb"),
  33770. name: "Front",
  33771. image: {
  33772. source: "./media/characters/starra/front.svg",
  33773. extra: 1790/1691,
  33774. bottom: 91/1881
  33775. }
  33776. },
  33777. },
  33778. [
  33779. {
  33780. name: "Normal",
  33781. height: math.unit(5 + 4/12, "feet"),
  33782. default: true
  33783. },
  33784. ]
  33785. ))
  33786. characterMakers.push(() => makeCharacter(
  33787. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33788. {
  33789. front: {
  33790. height: math.unit(2.2, "meters"),
  33791. name: "Front",
  33792. image: {
  33793. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33794. extra: 1194/1005,
  33795. bottom: 25/1219
  33796. }
  33797. },
  33798. },
  33799. [
  33800. {
  33801. name: "Normal",
  33802. height: math.unit(2.2, "meters"),
  33803. default: true
  33804. },
  33805. ]
  33806. ))
  33807. characterMakers.push(() => makeCharacter(
  33808. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33809. {
  33810. side: {
  33811. height: math.unit(8 + 2/12, "feet"),
  33812. weight: math.unit(1240, "lb"),
  33813. name: "Side",
  33814. image: {
  33815. source: "./media/characters/mika-valentine/side.svg",
  33816. extra: 2670/2501,
  33817. bottom: 250/2920
  33818. }
  33819. },
  33820. },
  33821. [
  33822. {
  33823. name: "Normal",
  33824. height: math.unit(8 + 2/12, "feet"),
  33825. default: true
  33826. },
  33827. ]
  33828. ))
  33829. characterMakers.push(() => makeCharacter(
  33830. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33831. {
  33832. front: {
  33833. height: math.unit(7 + 2/12, "feet"),
  33834. name: "Front",
  33835. image: {
  33836. source: "./media/characters/xoltol/front.svg",
  33837. extra: 2212/2124,
  33838. bottom: 84/2296
  33839. }
  33840. },
  33841. side: {
  33842. height: math.unit(7 + 2/12, "feet"),
  33843. name: "Side",
  33844. image: {
  33845. source: "./media/characters/xoltol/side.svg",
  33846. extra: 2273/2197,
  33847. bottom: 26/2299
  33848. }
  33849. },
  33850. hand: {
  33851. height: math.unit(2.5, "feet"),
  33852. name: "Hand",
  33853. image: {
  33854. source: "./media/characters/xoltol/hand.svg"
  33855. }
  33856. },
  33857. },
  33858. [
  33859. {
  33860. name: "Small-ish",
  33861. height: math.unit(5 + 11/12, "feet")
  33862. },
  33863. {
  33864. name: "Normal",
  33865. height: math.unit(7 + 2/12, "feet")
  33866. },
  33867. {
  33868. name: "\"Macro\"",
  33869. height: math.unit(14 + 9/12, "feet"),
  33870. default: true
  33871. },
  33872. {
  33873. name: "Alternate Height",
  33874. height: math.unit(20, "feet")
  33875. },
  33876. {
  33877. name: "Actually Macro",
  33878. height: math.unit(100, "feet")
  33879. },
  33880. ]
  33881. ))
  33882. characterMakers.push(() => makeCharacter(
  33883. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33884. {
  33885. front: {
  33886. height: math.unit(5 + 2/12, "feet"),
  33887. name: "Front",
  33888. image: {
  33889. source: "./media/characters/kotetsu-redwood/front.svg",
  33890. extra: 1053/942,
  33891. bottom: 60/1113
  33892. }
  33893. },
  33894. },
  33895. [
  33896. {
  33897. name: "Normal",
  33898. height: math.unit(5 + 2/12, "feet"),
  33899. default: true
  33900. },
  33901. ]
  33902. ))
  33903. characterMakers.push(() => makeCharacter(
  33904. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33905. {
  33906. front: {
  33907. height: math.unit(2.4, "meters"),
  33908. weight: math.unit(125, "kg"),
  33909. name: "Front",
  33910. image: {
  33911. source: "./media/characters/lilith/front.svg",
  33912. extra: 1590/1513,
  33913. bottom: 203/1793
  33914. }
  33915. },
  33916. },
  33917. [
  33918. {
  33919. name: "Humanoid",
  33920. height: math.unit(2.4, "meters")
  33921. },
  33922. {
  33923. name: "Normal",
  33924. height: math.unit(6, "meters"),
  33925. default: true
  33926. },
  33927. {
  33928. name: "Largest",
  33929. height: math.unit(55, "meters")
  33930. },
  33931. ]
  33932. ))
  33933. characterMakers.push(() => makeCharacter(
  33934. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33935. {
  33936. front: {
  33937. height: math.unit(8 + 4/12, "feet"),
  33938. weight: math.unit(535, "lb"),
  33939. name: "Front",
  33940. image: {
  33941. source: "./media/characters/beh'kah-bolger/front.svg",
  33942. extra: 1660/1603,
  33943. bottom: 37/1697
  33944. }
  33945. },
  33946. },
  33947. [
  33948. {
  33949. name: "Normal",
  33950. height: math.unit(8 + 4/12, "feet"),
  33951. default: true
  33952. },
  33953. {
  33954. name: "Kaiju",
  33955. height: math.unit(250, "feet")
  33956. },
  33957. {
  33958. name: "Still Growing",
  33959. height: math.unit(10, "miles")
  33960. },
  33961. {
  33962. name: "Continental",
  33963. height: math.unit(5000, "miles")
  33964. },
  33965. {
  33966. name: "Final Form",
  33967. height: math.unit(2500000, "miles")
  33968. },
  33969. ]
  33970. ))
  33971. characterMakers.push(() => makeCharacter(
  33972. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33973. {
  33974. front: {
  33975. height: math.unit(7 + 2/12, "feet"),
  33976. weight: math.unit(230, "kg"),
  33977. name: "Front",
  33978. image: {
  33979. source: "./media/characters/tatyana-milewska/front.svg",
  33980. extra: 1199/1150,
  33981. bottom: 86/1285
  33982. }
  33983. },
  33984. },
  33985. [
  33986. {
  33987. name: "Normal",
  33988. height: math.unit(7 + 2/12, "feet"),
  33989. default: true
  33990. },
  33991. {
  33992. name: "Big",
  33993. height: math.unit(12, "feet")
  33994. },
  33995. {
  33996. name: "Minimacro",
  33997. height: math.unit(20, "feet")
  33998. },
  33999. {
  34000. name: "Macro",
  34001. height: math.unit(120, "feet")
  34002. },
  34003. ]
  34004. ))
  34005. characterMakers.push(() => makeCharacter(
  34006. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34007. {
  34008. front: {
  34009. height: math.unit(7 + 8/12, "feet"),
  34010. weight: math.unit(152, "kg"),
  34011. name: "Front",
  34012. image: {
  34013. source: "./media/characters/helen-arri/front.svg",
  34014. extra: 440/423,
  34015. bottom: 14/454
  34016. }
  34017. },
  34018. back: {
  34019. height: math.unit(7 + 8/12, "feet"),
  34020. weight: math.unit(152, "kg"),
  34021. name: "Back",
  34022. image: {
  34023. source: "./media/characters/helen-arri/back.svg",
  34024. extra: 443/426,
  34025. bottom: 8/451
  34026. }
  34027. },
  34028. },
  34029. [
  34030. {
  34031. name: "Normal",
  34032. height: math.unit(7 + 8/12, "feet"),
  34033. default: true
  34034. },
  34035. {
  34036. name: "Big",
  34037. height: math.unit(14, "feet")
  34038. },
  34039. {
  34040. name: "Minimacro",
  34041. height: math.unit(24, "feet")
  34042. },
  34043. {
  34044. name: "Macro",
  34045. height: math.unit(140, "feet")
  34046. },
  34047. ]
  34048. ))
  34049. characterMakers.push(() => makeCharacter(
  34050. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34051. {
  34052. front: {
  34053. height: math.unit(6, "meters"),
  34054. name: "Front",
  34055. image: {
  34056. source: "./media/characters/ehanu-rehu/front.svg",
  34057. extra: 1800/1800,
  34058. bottom: 59/1859
  34059. }
  34060. },
  34061. },
  34062. [
  34063. {
  34064. name: "Normal",
  34065. height: math.unit(6, "meters"),
  34066. default: true
  34067. },
  34068. ]
  34069. ))
  34070. characterMakers.push(() => makeCharacter(
  34071. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34072. {
  34073. front: {
  34074. height: math.unit(7 + 3/12, "feet"),
  34075. name: "Front",
  34076. image: {
  34077. source: "./media/characters/renholder/front.svg",
  34078. extra: 3096/2960,
  34079. bottom: 250/3346
  34080. }
  34081. },
  34082. },
  34083. [
  34084. {
  34085. name: "Normal Bat",
  34086. height: math.unit(7 + 3/12, "feet"),
  34087. default: true
  34088. },
  34089. {
  34090. name: "Slightly Tall Bat",
  34091. height: math.unit(100, "feet")
  34092. },
  34093. {
  34094. name: "Big Bat",
  34095. height: math.unit(1000, "feet")
  34096. },
  34097. {
  34098. name: "City-Sized Bat",
  34099. height: math.unit(200000, "feet")
  34100. },
  34101. {
  34102. name: "Bigger Bat",
  34103. height: math.unit(10000, "miles")
  34104. },
  34105. {
  34106. name: "Solar Sized Bat",
  34107. height: math.unit(100, "AU")
  34108. },
  34109. {
  34110. name: "Galactic Bat",
  34111. height: math.unit(200000, "lightyears")
  34112. },
  34113. {
  34114. name: "Universally Known Bat",
  34115. height: math.unit(1, "universe")
  34116. },
  34117. ]
  34118. ))
  34119. characterMakers.push(() => makeCharacter(
  34120. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34121. {
  34122. front: {
  34123. height: math.unit(6 + 11/12, "feet"),
  34124. weight: math.unit(250, "lb"),
  34125. name: "Front",
  34126. image: {
  34127. source: "./media/characters/cookiecat/front.svg",
  34128. extra: 893/827,
  34129. bottom: 14/907
  34130. }
  34131. },
  34132. },
  34133. [
  34134. {
  34135. name: "Micro",
  34136. height: math.unit(3, "inches")
  34137. },
  34138. {
  34139. name: "Normal",
  34140. height: math.unit(6 + 11/12, "feet"),
  34141. default: true
  34142. },
  34143. {
  34144. name: "Macro",
  34145. height: math.unit(100, "feet")
  34146. },
  34147. {
  34148. name: "Macro+",
  34149. height: math.unit(404, "feet")
  34150. },
  34151. {
  34152. name: "Megamacro",
  34153. height: math.unit(165, "miles")
  34154. },
  34155. {
  34156. name: "Planetary",
  34157. height: math.unit(4600, "miles")
  34158. },
  34159. ]
  34160. ))
  34161. characterMakers.push(() => makeCharacter(
  34162. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34163. {
  34164. front: {
  34165. height: math.unit(10 + 3/12, "feet"),
  34166. weight: math.unit(1500, "lb"),
  34167. name: "Front",
  34168. image: {
  34169. source: "./media/characters/tux-kusanagi/front.svg",
  34170. extra: 944/840,
  34171. bottom: 39/983
  34172. }
  34173. },
  34174. back: {
  34175. height: math.unit(10 + 3/12, "feet"),
  34176. weight: math.unit(1500, "lb"),
  34177. name: "Back",
  34178. image: {
  34179. source: "./media/characters/tux-kusanagi/back.svg",
  34180. extra: 941/842,
  34181. bottom: 28/969
  34182. }
  34183. },
  34184. rump: {
  34185. height: math.unit(5.25, "feet"),
  34186. name: "Rump",
  34187. image: {
  34188. source: "./media/characters/tux-kusanagi/rump.svg"
  34189. }
  34190. },
  34191. beak: {
  34192. height: math.unit(1.54, "feet"),
  34193. name: "Beak",
  34194. image: {
  34195. source: "./media/characters/tux-kusanagi/beak.svg"
  34196. }
  34197. },
  34198. },
  34199. [
  34200. {
  34201. name: "Normal",
  34202. height: math.unit(10 + 3/12, "feet"),
  34203. default: true
  34204. },
  34205. ]
  34206. ))
  34207. characterMakers.push(() => makeCharacter(
  34208. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34209. {
  34210. front: {
  34211. height: math.unit(58, "feet"),
  34212. weight: math.unit(200, "tons"),
  34213. name: "Front",
  34214. image: {
  34215. source: "./media/characters/uzarmazari/front.svg",
  34216. extra: 1575/1455,
  34217. bottom: 152/1727
  34218. }
  34219. },
  34220. back: {
  34221. height: math.unit(58, "feet"),
  34222. weight: math.unit(200, "tons"),
  34223. name: "Back",
  34224. image: {
  34225. source: "./media/characters/uzarmazari/back.svg",
  34226. extra: 1585/1510,
  34227. bottom: 157/1742
  34228. }
  34229. },
  34230. head: {
  34231. height: math.unit(26, "feet"),
  34232. name: "Head",
  34233. image: {
  34234. source: "./media/characters/uzarmazari/head.svg"
  34235. }
  34236. },
  34237. },
  34238. [
  34239. {
  34240. name: "Normal",
  34241. height: math.unit(58, "feet"),
  34242. default: true
  34243. },
  34244. ]
  34245. ))
  34246. characterMakers.push(() => makeCharacter(
  34247. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34248. {
  34249. side: {
  34250. height: math.unit(15, "feet"),
  34251. name: "Side",
  34252. image: {
  34253. source: "./media/characters/akitu/side.svg",
  34254. extra: 1421/1321,
  34255. bottom: 157/1578
  34256. }
  34257. },
  34258. front: {
  34259. height: math.unit(15, "feet"),
  34260. name: "Front",
  34261. image: {
  34262. source: "./media/characters/akitu/front.svg",
  34263. extra: 1435/1326,
  34264. bottom: 232/1667
  34265. }
  34266. },
  34267. },
  34268. [
  34269. {
  34270. name: "Normal",
  34271. height: math.unit(15, "feet"),
  34272. default: true
  34273. },
  34274. ]
  34275. ))
  34276. characterMakers.push(() => makeCharacter(
  34277. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34278. {
  34279. front: {
  34280. height: math.unit(10 + 8/12, "feet"),
  34281. name: "Front",
  34282. image: {
  34283. source: "./media/characters/azalie-croixland/front.svg",
  34284. extra: 1972/1856,
  34285. bottom: 31/2003
  34286. }
  34287. },
  34288. },
  34289. [
  34290. {
  34291. name: "Original Height",
  34292. height: math.unit(5 + 4/12, "feet")
  34293. },
  34294. {
  34295. name: "Normal Height",
  34296. height: math.unit(10 + 8/12, "feet"),
  34297. default: true
  34298. },
  34299. ]
  34300. ))
  34301. characterMakers.push(() => makeCharacter(
  34302. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34303. {
  34304. side: {
  34305. height: math.unit(7 + 1/12, "feet"),
  34306. weight: math.unit(245, "lb"),
  34307. name: "Side",
  34308. image: {
  34309. source: "./media/characters/kavus-kazian/side.svg",
  34310. extra: 349/342,
  34311. bottom: 15/364
  34312. }
  34313. },
  34314. },
  34315. [
  34316. {
  34317. name: "Normal",
  34318. height: math.unit(7 + 1/12, "feet"),
  34319. default: true
  34320. },
  34321. ]
  34322. ))
  34323. characterMakers.push(() => makeCharacter(
  34324. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34325. {
  34326. normal: {
  34327. height: math.unit(5 + 11/12, "feet"),
  34328. name: "Normal",
  34329. image: {
  34330. source: "./media/characters/moonlight-rose/normal.svg",
  34331. extra: 1979/1835,
  34332. bottom: 14/1993
  34333. }
  34334. },
  34335. demon: {
  34336. height: math.unit(5, "km"),
  34337. name: "Demon",
  34338. image: {
  34339. source: "./media/characters/moonlight-rose/demon.svg",
  34340. extra: 986/916,
  34341. bottom: 28/1014
  34342. }
  34343. },
  34344. },
  34345. [
  34346. {
  34347. name: "\"Natural\" height",
  34348. height: math.unit(5 + 11/12, "feet")
  34349. },
  34350. {
  34351. name: "Comfortable Size",
  34352. height: math.unit(40, "meters")
  34353. },
  34354. {
  34355. name: "Common Size",
  34356. height: math.unit(50, "km"),
  34357. default: true
  34358. },
  34359. {
  34360. name: "Demonic",
  34361. height: math.unit(1.24415e+21, "meters")
  34362. },
  34363. ]
  34364. ))
  34365. characterMakers.push(() => makeCharacter(
  34366. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34367. {
  34368. front: {
  34369. height: math.unit(16, "feet"),
  34370. weight: math.unit(610, "kg"),
  34371. name: "Front",
  34372. image: {
  34373. source: "./media/characters/huckle/front.svg",
  34374. extra: 1731/1625,
  34375. bottom: 33/1764
  34376. }
  34377. },
  34378. back: {
  34379. height: math.unit(16, "feet"),
  34380. weight: math.unit(610, "kg"),
  34381. name: "Back",
  34382. image: {
  34383. source: "./media/characters/huckle/back.svg",
  34384. extra: 1738/1651,
  34385. bottom: 37/1775
  34386. }
  34387. },
  34388. laughing: {
  34389. height: math.unit(3.75, "feet"),
  34390. name: "Laughing",
  34391. image: {
  34392. source: "./media/characters/huckle/laughing.svg"
  34393. }
  34394. },
  34395. angry: {
  34396. height: math.unit(4.15, "feet"),
  34397. name: "Angry",
  34398. image: {
  34399. source: "./media/characters/huckle/angry.svg"
  34400. }
  34401. },
  34402. },
  34403. [
  34404. {
  34405. name: "Normal",
  34406. height: math.unit(16, "feet"),
  34407. default: true
  34408. },
  34409. {
  34410. name: "Mini Macro",
  34411. height: math.unit(463, "feet")
  34412. },
  34413. {
  34414. name: "Macro",
  34415. height: math.unit(1680, "meters")
  34416. },
  34417. {
  34418. name: "Mega Macro",
  34419. height: math.unit(175, "km")
  34420. },
  34421. {
  34422. name: "Terra Macro",
  34423. height: math.unit(32, "gigameters")
  34424. },
  34425. {
  34426. name: "Multiverse+",
  34427. height: math.unit(2.56e23, "yottameters")
  34428. },
  34429. ]
  34430. ))
  34431. characterMakers.push(() => makeCharacter(
  34432. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34433. {
  34434. front: {
  34435. height: math.unit(6 + 9/12, "feet"),
  34436. weight: math.unit(280, "lb"),
  34437. name: "Front",
  34438. image: {
  34439. source: "./media/characters/candy/front.svg",
  34440. extra: 234/217,
  34441. bottom: 11/245
  34442. }
  34443. },
  34444. },
  34445. [
  34446. {
  34447. name: "Really Small",
  34448. height: math.unit(0.1, "nm")
  34449. },
  34450. {
  34451. name: "Micro",
  34452. height: math.unit(2, "inches")
  34453. },
  34454. {
  34455. name: "Normal",
  34456. height: math.unit(6 + 9/12, "feet"),
  34457. default: true
  34458. },
  34459. {
  34460. name: "Small Macro",
  34461. height: math.unit(69, "feet")
  34462. },
  34463. {
  34464. name: "Macro",
  34465. height: math.unit(160, "feet")
  34466. },
  34467. {
  34468. name: "Megamacro",
  34469. height: math.unit(22000, "miles")
  34470. },
  34471. {
  34472. name: "Gigamacro",
  34473. height: math.unit(50000, "miles")
  34474. },
  34475. ]
  34476. ))
  34477. characterMakers.push(() => makeCharacter(
  34478. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34479. {
  34480. front: {
  34481. height: math.unit(4, "feet"),
  34482. weight: math.unit(90, "lb"),
  34483. name: "Front",
  34484. image: {
  34485. source: "./media/characters/joey-mcdonald/front.svg",
  34486. extra: 1059/852,
  34487. bottom: 33/1092
  34488. }
  34489. },
  34490. back: {
  34491. height: math.unit(4, "feet"),
  34492. weight: math.unit(90, "lb"),
  34493. name: "Back",
  34494. image: {
  34495. source: "./media/characters/joey-mcdonald/back.svg",
  34496. extra: 1077/879,
  34497. bottom: 5/1082
  34498. }
  34499. },
  34500. },
  34501. [
  34502. {
  34503. name: "Normal",
  34504. height: math.unit(4, "feet"),
  34505. default: true
  34506. },
  34507. ]
  34508. ))
  34509. characterMakers.push(() => makeCharacter(
  34510. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34511. {
  34512. front: {
  34513. height: math.unit(12 + 6/12, "feet"),
  34514. name: "Front",
  34515. image: {
  34516. source: "./media/characters/kass-lockheed/front.svg",
  34517. extra: 354/343,
  34518. bottom: 9/363
  34519. }
  34520. },
  34521. back: {
  34522. height: math.unit(12 + 6/12, "feet"),
  34523. name: "Back",
  34524. image: {
  34525. source: "./media/characters/kass-lockheed/back.svg",
  34526. extra: 364/352,
  34527. bottom: 3/367
  34528. }
  34529. },
  34530. dick: {
  34531. height: math.unit(3.12, "feet"),
  34532. name: "Dick",
  34533. image: {
  34534. source: "./media/characters/kass-lockheed/dick.svg"
  34535. }
  34536. },
  34537. head: {
  34538. height: math.unit(2.6, "feet"),
  34539. name: "Head",
  34540. image: {
  34541. source: "./media/characters/kass-lockheed/head.svg"
  34542. }
  34543. },
  34544. bleh: {
  34545. height: math.unit(2.85, "feet"),
  34546. name: "Bleh",
  34547. image: {
  34548. source: "./media/characters/kass-lockheed/bleh.svg"
  34549. }
  34550. },
  34551. smug: {
  34552. height: math.unit(2.85, "feet"),
  34553. name: "Smug",
  34554. image: {
  34555. source: "./media/characters/kass-lockheed/smug.svg"
  34556. }
  34557. },
  34558. },
  34559. [
  34560. {
  34561. name: "Normal",
  34562. height: math.unit(12 + 6/12, "feet"),
  34563. default: true
  34564. },
  34565. ]
  34566. ))
  34567. characterMakers.push(() => makeCharacter(
  34568. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34569. {
  34570. front: {
  34571. height: math.unit(6 + 2/12, "feet"),
  34572. name: "Front",
  34573. image: {
  34574. source: "./media/characters/taylor/front.svg",
  34575. extra: 639/495,
  34576. bottom: 12/651
  34577. }
  34578. },
  34579. },
  34580. [
  34581. {
  34582. name: "Normal",
  34583. height: math.unit(6 + 2/12, "feet"),
  34584. default: true
  34585. },
  34586. {
  34587. name: "Big",
  34588. height: math.unit(15, "feet")
  34589. },
  34590. {
  34591. name: "Lorg",
  34592. height: math.unit(80, "feet")
  34593. },
  34594. {
  34595. name: "Too Lorg",
  34596. height: math.unit(120, "feet")
  34597. },
  34598. ]
  34599. ))
  34600. characterMakers.push(() => makeCharacter(
  34601. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34602. {
  34603. front: {
  34604. height: math.unit(15, "feet"),
  34605. name: "Front",
  34606. image: {
  34607. source: "./media/characters/kaizer/front.svg",
  34608. extra: 1612/1436,
  34609. bottom: 43/1655
  34610. }
  34611. },
  34612. },
  34613. [
  34614. {
  34615. name: "Normal",
  34616. height: math.unit(15, "feet"),
  34617. default: true
  34618. },
  34619. ]
  34620. ))
  34621. characterMakers.push(() => makeCharacter(
  34622. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34623. {
  34624. front: {
  34625. height: math.unit(2, "feet"),
  34626. weight: math.unit(30, "lb"),
  34627. name: "Front",
  34628. image: {
  34629. source: "./media/characters/sandy/front.svg",
  34630. extra: 1439/1307,
  34631. bottom: 194/1633
  34632. }
  34633. },
  34634. },
  34635. [
  34636. {
  34637. name: "Normal",
  34638. height: math.unit(2, "feet"),
  34639. default: true
  34640. },
  34641. ]
  34642. ))
  34643. characterMakers.push(() => makeCharacter(
  34644. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34645. {
  34646. front: {
  34647. height: math.unit(3, "feet"),
  34648. name: "Front",
  34649. image: {
  34650. source: "./media/characters/mellvi/front.svg",
  34651. extra: 1831/1630,
  34652. bottom: 58/1889
  34653. }
  34654. },
  34655. },
  34656. [
  34657. {
  34658. name: "Normal",
  34659. height: math.unit(3, "feet"),
  34660. default: true
  34661. },
  34662. ]
  34663. ))
  34664. characterMakers.push(() => makeCharacter(
  34665. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34666. {
  34667. front: {
  34668. height: math.unit(5 + 11/12, "feet"),
  34669. weight: math.unit(200, "lb"),
  34670. name: "Front",
  34671. image: {
  34672. source: "./media/characters/shirou/front.svg",
  34673. extra: 2491/2383,
  34674. bottom: 189/2680
  34675. }
  34676. },
  34677. back: {
  34678. height: math.unit(5 + 11/12, "feet"),
  34679. weight: math.unit(200, "lb"),
  34680. name: "Back",
  34681. image: {
  34682. source: "./media/characters/shirou/back.svg",
  34683. extra: 2554/2450,
  34684. bottom: 76/2630
  34685. }
  34686. },
  34687. },
  34688. [
  34689. {
  34690. name: "Normal",
  34691. height: math.unit(5 + 11/12, "feet"),
  34692. default: true
  34693. },
  34694. ]
  34695. ))
  34696. characterMakers.push(() => makeCharacter(
  34697. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34698. {
  34699. front: {
  34700. height: math.unit(6 + 3/12, "feet"),
  34701. weight: math.unit(177, "lb"),
  34702. name: "Front",
  34703. image: {
  34704. source: "./media/characters/noryu/front.svg",
  34705. extra: 973/885,
  34706. bottom: 10/983
  34707. }
  34708. },
  34709. },
  34710. [
  34711. {
  34712. name: "Normal",
  34713. height: math.unit(6 + 3/12, "feet"),
  34714. default: true
  34715. },
  34716. ]
  34717. ))
  34718. characterMakers.push(() => makeCharacter(
  34719. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34720. {
  34721. front: {
  34722. height: math.unit(5 + 6/12, "feet"),
  34723. weight: math.unit(170, "lb"),
  34724. name: "Front",
  34725. image: {
  34726. source: "./media/characters/mevolas-rubenido/front.svg",
  34727. extra: 2109/1901,
  34728. bottom: 96/2205
  34729. }
  34730. },
  34731. },
  34732. [
  34733. {
  34734. name: "Normal",
  34735. height: math.unit(5 + 6/12, "feet"),
  34736. default: true
  34737. },
  34738. ]
  34739. ))
  34740. characterMakers.push(() => makeCharacter(
  34741. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34742. {
  34743. front: {
  34744. height: math.unit(100, "feet"),
  34745. name: "Front",
  34746. image: {
  34747. source: "./media/characters/dee/front.svg",
  34748. extra: 2153/2036,
  34749. bottom: 59/2212
  34750. }
  34751. },
  34752. back: {
  34753. height: math.unit(100, "feet"),
  34754. name: "Back",
  34755. image: {
  34756. source: "./media/characters/dee/back.svg",
  34757. extra: 2183/2058,
  34758. bottom: 75/2258
  34759. }
  34760. },
  34761. foot: {
  34762. height: math.unit(19.43, "feet"),
  34763. name: "Foot",
  34764. image: {
  34765. source: "./media/characters/dee/foot.svg"
  34766. }
  34767. },
  34768. hoof: {
  34769. height: math.unit(20.6, "feet"),
  34770. name: "Hoof",
  34771. image: {
  34772. source: "./media/characters/dee/hoof.svg"
  34773. }
  34774. },
  34775. },
  34776. [
  34777. {
  34778. name: "Macro",
  34779. height: math.unit(100, "feet"),
  34780. default: true
  34781. },
  34782. ]
  34783. ))
  34784. characterMakers.push(() => makeCharacter(
  34785. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34786. {
  34787. front: {
  34788. height: math.unit(5 + 6/12, "feet"),
  34789. name: "Front",
  34790. image: {
  34791. source: "./media/characters/teh/front.svg",
  34792. extra: 1002/847,
  34793. bottom: 62/1064
  34794. }
  34795. },
  34796. },
  34797. [
  34798. {
  34799. name: "Normal",
  34800. height: math.unit(5 + 6/12, "feet"),
  34801. default: true
  34802. },
  34803. ]
  34804. ))
  34805. characterMakers.push(() => makeCharacter(
  34806. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34807. {
  34808. side: {
  34809. height: math.unit(6 + 1/12, "feet"),
  34810. weight: math.unit(204, "lb"),
  34811. name: "Side",
  34812. image: {
  34813. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34814. extra: 974/775,
  34815. bottom: 169/1143
  34816. }
  34817. },
  34818. sitting: {
  34819. height: math.unit(6 + 2/12, "feet"),
  34820. weight: math.unit(204, "lb"),
  34821. name: "Sitting",
  34822. image: {
  34823. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34824. extra: 1175/964,
  34825. bottom: 378/1553
  34826. }
  34827. },
  34828. },
  34829. [
  34830. {
  34831. name: "Normal",
  34832. height: math.unit(6 + 1/12, "feet"),
  34833. default: true
  34834. },
  34835. ]
  34836. ))
  34837. characterMakers.push(() => makeCharacter(
  34838. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34839. {
  34840. front: {
  34841. height: math.unit(6, "inches"),
  34842. name: "Front",
  34843. image: {
  34844. source: "./media/characters/tululi/front.svg",
  34845. extra: 1997/1876,
  34846. bottom: 20/2017
  34847. }
  34848. },
  34849. },
  34850. [
  34851. {
  34852. name: "Normal",
  34853. height: math.unit(6, "inches"),
  34854. default: true
  34855. },
  34856. ]
  34857. ))
  34858. characterMakers.push(() => makeCharacter(
  34859. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34860. {
  34861. front: {
  34862. height: math.unit(4 + 1/12, "feet"),
  34863. name: "Front",
  34864. image: {
  34865. source: "./media/characters/star/front.svg",
  34866. extra: 1493/1189,
  34867. bottom: 48/1541
  34868. }
  34869. },
  34870. },
  34871. [
  34872. {
  34873. name: "Normal",
  34874. height: math.unit(4 + 1/12, "feet"),
  34875. default: true
  34876. },
  34877. ]
  34878. ))
  34879. characterMakers.push(() => makeCharacter(
  34880. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34881. {
  34882. front: {
  34883. height: math.unit(6 + 3/12, "feet"),
  34884. name: "Front",
  34885. image: {
  34886. source: "./media/characters/comet/front.svg",
  34887. extra: 1681/1462,
  34888. bottom: 26/1707
  34889. }
  34890. },
  34891. },
  34892. [
  34893. {
  34894. name: "Normal",
  34895. height: math.unit(6 + 3/12, "feet"),
  34896. default: true
  34897. },
  34898. ]
  34899. ))
  34900. characterMakers.push(() => makeCharacter(
  34901. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34902. {
  34903. front: {
  34904. height: math.unit(950, "feet"),
  34905. name: "Front",
  34906. image: {
  34907. source: "./media/characters/vortex/front.svg",
  34908. extra: 1497/1434,
  34909. bottom: 56/1553
  34910. }
  34911. },
  34912. maw: {
  34913. height: math.unit(285, "feet"),
  34914. name: "Maw",
  34915. image: {
  34916. source: "./media/characters/vortex/maw.svg"
  34917. }
  34918. },
  34919. },
  34920. [
  34921. {
  34922. name: "Macro",
  34923. height: math.unit(950, "feet"),
  34924. default: true
  34925. },
  34926. ]
  34927. ))
  34928. characterMakers.push(() => makeCharacter(
  34929. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34930. {
  34931. front: {
  34932. height: math.unit(600, "feet"),
  34933. weight: math.unit(0.02, "grams"),
  34934. name: "Front",
  34935. image: {
  34936. source: "./media/characters/doodle/front.svg",
  34937. extra: 1578/1413,
  34938. bottom: 37/1615
  34939. }
  34940. },
  34941. },
  34942. [
  34943. {
  34944. name: "Macro",
  34945. height: math.unit(600, "feet"),
  34946. default: true
  34947. },
  34948. ]
  34949. ))
  34950. characterMakers.push(() => makeCharacter(
  34951. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34952. {
  34953. front: {
  34954. height: math.unit(6 + 6/12, "feet"),
  34955. name: "Front",
  34956. image: {
  34957. source: "./media/characters/jai/front.svg",
  34958. extra: 1645/1534,
  34959. bottom: 115/1760
  34960. }
  34961. },
  34962. },
  34963. [
  34964. {
  34965. name: "Normal",
  34966. height: math.unit(6 + 6/12, "feet"),
  34967. default: true
  34968. },
  34969. ]
  34970. ))
  34971. characterMakers.push(() => makeCharacter(
  34972. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34973. {
  34974. front: {
  34975. height: math.unit(6 + 8/12, "feet"),
  34976. name: "Front",
  34977. image: {
  34978. source: "./media/characters/pixel/front.svg",
  34979. extra: 1900/1735,
  34980. bottom: 63/1963
  34981. }
  34982. },
  34983. },
  34984. [
  34985. {
  34986. name: "Normal",
  34987. height: math.unit(6 + 8/12, "feet"),
  34988. default: true
  34989. },
  34990. ]
  34991. ))
  34992. characterMakers.push(() => makeCharacter(
  34993. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34994. {
  34995. front: {
  34996. height: math.unit(4 + 11/12, "feet"),
  34997. weight: math.unit(111, "lb"),
  34998. name: "Front",
  34999. image: {
  35000. source: "./media/characters/rhett/front.svg",
  35001. extra: 1682/1586,
  35002. bottom: 92/1774
  35003. }
  35004. },
  35005. },
  35006. [
  35007. {
  35008. name: "Mini",
  35009. height: math.unit(1 + 1/12, "feet")
  35010. },
  35011. {
  35012. name: "Normal",
  35013. height: math.unit(4 + 11/12, "feet"),
  35014. default: true
  35015. },
  35016. ]
  35017. ))
  35018. characterMakers.push(() => makeCharacter(
  35019. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35020. {
  35021. front: {
  35022. height: math.unit(3 + 3/12, "feet"),
  35023. name: "Front",
  35024. image: {
  35025. source: "./media/characters/penny/front.svg",
  35026. extra: 1406/1311,
  35027. bottom: 26/1432
  35028. }
  35029. },
  35030. },
  35031. [
  35032. {
  35033. name: "Normal",
  35034. height: math.unit(3 + 3/12, "feet"),
  35035. default: true
  35036. },
  35037. ]
  35038. ))
  35039. characterMakers.push(() => makeCharacter(
  35040. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35041. {
  35042. front: {
  35043. height: math.unit(4 + 11/12, "feet"),
  35044. name: "Front",
  35045. image: {
  35046. source: "./media/characters/monty/front.svg",
  35047. extra: 1479/1209,
  35048. bottom: 0/1479
  35049. }
  35050. },
  35051. },
  35052. [
  35053. {
  35054. name: "Normal",
  35055. height: math.unit(4 + 11/12, "feet"),
  35056. default: true
  35057. },
  35058. ]
  35059. ))
  35060. characterMakers.push(() => makeCharacter(
  35061. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35062. {
  35063. front: {
  35064. height: math.unit(8 + 4/12, "feet"),
  35065. name: "Front",
  35066. image: {
  35067. source: "./media/characters/sterling/front.svg",
  35068. extra: 1420/1236,
  35069. bottom: 27/1447
  35070. }
  35071. },
  35072. },
  35073. [
  35074. {
  35075. name: "Normal",
  35076. height: math.unit(8 + 4/12, "feet"),
  35077. default: true
  35078. },
  35079. ]
  35080. ))
  35081. characterMakers.push(() => makeCharacter(
  35082. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35083. {
  35084. front: {
  35085. height: math.unit(15, "feet"),
  35086. name: "Front",
  35087. image: {
  35088. source: "./media/characters/marble/front.svg",
  35089. extra: 973/937,
  35090. bottom: 32/1005
  35091. }
  35092. },
  35093. },
  35094. [
  35095. {
  35096. name: "Normal",
  35097. height: math.unit(15, "feet"),
  35098. default: true
  35099. },
  35100. ]
  35101. ))
  35102. characterMakers.push(() => makeCharacter(
  35103. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35104. {
  35105. front: {
  35106. height: math.unit(3, "inches"),
  35107. name: "Front",
  35108. image: {
  35109. source: "./media/characters/powder/front.svg",
  35110. extra: 1504/1334,
  35111. bottom: 518/2022
  35112. }
  35113. },
  35114. },
  35115. [
  35116. {
  35117. name: "Normal",
  35118. height: math.unit(3, "inches"),
  35119. default: true
  35120. },
  35121. ]
  35122. ))
  35123. characterMakers.push(() => makeCharacter(
  35124. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35125. {
  35126. front: {
  35127. height: math.unit(4 + 5/12, "feet"),
  35128. name: "Front",
  35129. image: {
  35130. source: "./media/characters/joey-raccoon/front.svg",
  35131. extra: 1273/1197,
  35132. bottom: 0/1273
  35133. }
  35134. },
  35135. },
  35136. [
  35137. {
  35138. name: "Normal",
  35139. height: math.unit(4 + 5/12, "feet"),
  35140. default: true
  35141. },
  35142. ]
  35143. ))
  35144. characterMakers.push(() => makeCharacter(
  35145. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35146. {
  35147. front: {
  35148. height: math.unit(8 + 4/12, "feet"),
  35149. name: "Front",
  35150. image: {
  35151. source: "./media/characters/vick/front.svg",
  35152. extra: 2187/2118,
  35153. bottom: 47/2234
  35154. }
  35155. },
  35156. },
  35157. [
  35158. {
  35159. name: "Normal",
  35160. height: math.unit(8 + 4/12, "feet"),
  35161. default: true
  35162. },
  35163. ]
  35164. ))
  35165. characterMakers.push(() => makeCharacter(
  35166. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35167. {
  35168. front: {
  35169. height: math.unit(5 + 5/12, "feet"),
  35170. name: "Front",
  35171. image: {
  35172. source: "./media/characters/mitsy/front.svg",
  35173. extra: 1842/1695,
  35174. bottom: 0/1842
  35175. }
  35176. },
  35177. },
  35178. [
  35179. {
  35180. name: "Normal",
  35181. height: math.unit(5 + 5/12, "feet"),
  35182. default: true
  35183. },
  35184. ]
  35185. ))
  35186. characterMakers.push(() => makeCharacter(
  35187. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35188. {
  35189. front: {
  35190. height: math.unit(6 + 3/12, "feet"),
  35191. name: "Front",
  35192. image: {
  35193. source: "./media/characters/silvy/front.svg",
  35194. extra: 1995/1836,
  35195. bottom: 225/2220
  35196. }
  35197. },
  35198. },
  35199. [
  35200. {
  35201. name: "Normal",
  35202. height: math.unit(6 + 3/12, "feet"),
  35203. default: true
  35204. },
  35205. ]
  35206. ))
  35207. characterMakers.push(() => makeCharacter(
  35208. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35209. {
  35210. front: {
  35211. height: math.unit(3 + 8/12, "feet"),
  35212. name: "Front",
  35213. image: {
  35214. source: "./media/characters/rodney/front.svg",
  35215. extra: 1956/1747,
  35216. bottom: 31/1987
  35217. }
  35218. },
  35219. frontDressed: {
  35220. height: math.unit(2.9, "feet"),
  35221. name: "Front (Dressed)",
  35222. image: {
  35223. source: "./media/characters/rodney/front-dressed.svg",
  35224. extra: 1382/1241,
  35225. bottom: 385/1767
  35226. }
  35227. },
  35228. },
  35229. [
  35230. {
  35231. name: "Normal",
  35232. height: math.unit(3 + 8/12, "feet"),
  35233. default: true
  35234. },
  35235. ]
  35236. ))
  35237. characterMakers.push(() => makeCharacter(
  35238. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35239. {
  35240. front: {
  35241. height: math.unit(5 + 9/12, "feet"),
  35242. weight: math.unit(194, "lbs"),
  35243. name: "Front",
  35244. image: {
  35245. source: "./media/characters/zakail-sudekai/front.svg",
  35246. extra: 2696/2533,
  35247. bottom: 248/2944
  35248. }
  35249. },
  35250. maw: {
  35251. height: math.unit(1.35, "feet"),
  35252. name: "Maw",
  35253. image: {
  35254. source: "./media/characters/zakail-sudekai/maw.svg"
  35255. }
  35256. },
  35257. },
  35258. [
  35259. {
  35260. name: "Normal",
  35261. height: math.unit(5 + 9/12, "feet"),
  35262. default: true
  35263. },
  35264. ]
  35265. ))
  35266. characterMakers.push(() => makeCharacter(
  35267. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35268. {
  35269. front: {
  35270. height: math.unit(8 + 4/12, "feet"),
  35271. weight: math.unit(1200, "lb"),
  35272. name: "Front",
  35273. image: {
  35274. source: "./media/characters/eleanor/front.svg",
  35275. extra: 1226/1192,
  35276. bottom: 52/1278
  35277. }
  35278. },
  35279. back: {
  35280. height: math.unit(8 + 4/12, "feet"),
  35281. weight: math.unit(1200, "lb"),
  35282. name: "Back",
  35283. image: {
  35284. source: "./media/characters/eleanor/back.svg",
  35285. extra: 1242/1184,
  35286. bottom: 60/1302
  35287. }
  35288. },
  35289. head: {
  35290. height: math.unit(2.62, "feet"),
  35291. name: "Head",
  35292. image: {
  35293. source: "./media/characters/eleanor/head.svg"
  35294. }
  35295. },
  35296. },
  35297. [
  35298. {
  35299. name: "Normal",
  35300. height: math.unit(8 + 4/12, "feet"),
  35301. default: true
  35302. },
  35303. ]
  35304. ))
  35305. characterMakers.push(() => makeCharacter(
  35306. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35307. {
  35308. front: {
  35309. height: math.unit(8 + 4/12, "feet"),
  35310. weight: math.unit(750, "lb"),
  35311. name: "Front",
  35312. image: {
  35313. source: "./media/characters/tanya/front.svg",
  35314. extra: 1749/1615,
  35315. bottom: 33/1782
  35316. }
  35317. },
  35318. },
  35319. [
  35320. {
  35321. name: "Normal",
  35322. height: math.unit(8 + 4/12, "feet"),
  35323. default: true
  35324. },
  35325. ]
  35326. ))
  35327. characterMakers.push(() => makeCharacter(
  35328. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35329. {
  35330. front: {
  35331. height: math.unit(5, "feet"),
  35332. weight: math.unit(225, "lb"),
  35333. name: "Front",
  35334. image: {
  35335. source: "./media/characters/cindy/front.svg",
  35336. extra: 1320/1250,
  35337. bottom: 42/1362
  35338. }
  35339. },
  35340. frontDressed: {
  35341. height: math.unit(5, "feet"),
  35342. weight: math.unit(225, "lb"),
  35343. name: "Front (Dressed)",
  35344. image: {
  35345. source: "./media/characters/cindy/front-dressed.svg",
  35346. extra: 1320/1250,
  35347. bottom: 42/1362
  35348. }
  35349. },
  35350. back: {
  35351. height: math.unit(5, "feet"),
  35352. weight: math.unit(225, "lb"),
  35353. name: "Back",
  35354. image: {
  35355. source: "./media/characters/cindy/back.svg",
  35356. extra: 1384/1346,
  35357. bottom: 14/1398
  35358. }
  35359. },
  35360. },
  35361. [
  35362. {
  35363. name: "Normal",
  35364. height: math.unit(5, "feet"),
  35365. default: true
  35366. },
  35367. ]
  35368. ))
  35369. characterMakers.push(() => makeCharacter(
  35370. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35371. {
  35372. front: {
  35373. height: math.unit(6 + 9/12, "feet"),
  35374. weight: math.unit(440, "lb"),
  35375. name: "Front",
  35376. image: {
  35377. source: "./media/characters/wilbur-owen/front.svg",
  35378. extra: 1575/1448,
  35379. bottom: 72/1647
  35380. }
  35381. },
  35382. back: {
  35383. height: math.unit(6 + 9/12, "feet"),
  35384. weight: math.unit(440, "lb"),
  35385. name: "Back",
  35386. image: {
  35387. source: "./media/characters/wilbur-owen/back.svg",
  35388. extra: 1578/1445,
  35389. bottom: 36/1614
  35390. }
  35391. },
  35392. },
  35393. [
  35394. {
  35395. name: "Normal",
  35396. height: math.unit(6 + 9/12, "feet"),
  35397. default: true
  35398. },
  35399. ]
  35400. ))
  35401. characterMakers.push(() => makeCharacter(
  35402. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35403. {
  35404. front: {
  35405. height: math.unit(6 + 5/12, "feet"),
  35406. weight: math.unit(650, "lb"),
  35407. name: "Front",
  35408. image: {
  35409. source: "./media/characters/keegan/front.svg",
  35410. extra: 2387/2198,
  35411. bottom: 33/2420
  35412. }
  35413. },
  35414. side: {
  35415. height: math.unit(6 + 5/12, "feet"),
  35416. weight: math.unit(650, "lb"),
  35417. name: "Side",
  35418. image: {
  35419. source: "./media/characters/keegan/side.svg",
  35420. extra: 2390/2202,
  35421. bottom: 47/2437
  35422. }
  35423. },
  35424. back: {
  35425. height: math.unit(6 + 5/12, "feet"),
  35426. weight: math.unit(650, "lb"),
  35427. name: "Back",
  35428. image: {
  35429. source: "./media/characters/keegan/back.svg",
  35430. extra: 2418/2268,
  35431. bottom: 15/2433
  35432. }
  35433. },
  35434. frontSfw: {
  35435. height: math.unit(6 + 5/12, "feet"),
  35436. weight: math.unit(650, "lb"),
  35437. name: "Front (SFW)",
  35438. image: {
  35439. source: "./media/characters/keegan/front-sfw.svg",
  35440. extra: 2387/2198,
  35441. bottom: 33/2420
  35442. }
  35443. },
  35444. beans: {
  35445. height: math.unit(1.85, "feet"),
  35446. name: "Beans",
  35447. image: {
  35448. source: "./media/characters/keegan/beans.svg"
  35449. }
  35450. },
  35451. },
  35452. [
  35453. {
  35454. name: "Normal",
  35455. height: math.unit(6 + 5/12, "feet"),
  35456. default: true
  35457. },
  35458. ]
  35459. ))
  35460. characterMakers.push(() => makeCharacter(
  35461. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35462. {
  35463. front: {
  35464. height: math.unit(9, "feet"),
  35465. name: "Front",
  35466. image: {
  35467. source: "./media/characters/colton/front.svg",
  35468. extra: 1589/1326,
  35469. bottom: 139/1728
  35470. }
  35471. },
  35472. },
  35473. [
  35474. {
  35475. name: "Normal",
  35476. height: math.unit(9, "feet"),
  35477. default: true
  35478. },
  35479. ]
  35480. ))
  35481. characterMakers.push(() => makeCharacter(
  35482. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35483. {
  35484. front: {
  35485. height: math.unit(2 + 9/12, "feet"),
  35486. name: "Front",
  35487. image: {
  35488. source: "./media/characters/bora/front.svg",
  35489. extra: 1265/1250,
  35490. bottom: 24/1289
  35491. }
  35492. },
  35493. },
  35494. [
  35495. {
  35496. name: "Normal",
  35497. height: math.unit(2 + 9/12, "feet"),
  35498. default: true
  35499. },
  35500. ]
  35501. ))
  35502. characterMakers.push(() => makeCharacter(
  35503. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35504. {
  35505. front: {
  35506. height: math.unit(8, "feet"),
  35507. name: "Front",
  35508. image: {
  35509. source: "./media/characters/myu-myu/front.svg",
  35510. extra: 1949/1857,
  35511. bottom: 90/2039
  35512. }
  35513. },
  35514. },
  35515. [
  35516. {
  35517. name: "Normal",
  35518. height: math.unit(8, "feet"),
  35519. default: true
  35520. },
  35521. {
  35522. name: "Big",
  35523. height: math.unit(15, "feet")
  35524. },
  35525. {
  35526. name: "BIG",
  35527. height: math.unit(25, "feet")
  35528. },
  35529. ]
  35530. ))
  35531. characterMakers.push(() => makeCharacter(
  35532. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35533. {
  35534. side: {
  35535. height: math.unit(7 + 5/12, "feet"),
  35536. weight: math.unit(2800, "lb"),
  35537. name: "Side",
  35538. image: {
  35539. source: "./media/characters/haloren/side.svg",
  35540. extra: 1793/409,
  35541. bottom: 59/1852
  35542. }
  35543. },
  35544. frontPaw: {
  35545. height: math.unit(2.36, "feet"),
  35546. name: "Front paw",
  35547. image: {
  35548. source: "./media/characters/haloren/front-paw.svg"
  35549. }
  35550. },
  35551. hindPaw: {
  35552. height: math.unit(3.18, "feet"),
  35553. name: "Hind paw",
  35554. image: {
  35555. source: "./media/characters/haloren/hind-paw.svg"
  35556. }
  35557. },
  35558. maw: {
  35559. height: math.unit(5.05, "feet"),
  35560. name: "Maw",
  35561. image: {
  35562. source: "./media/characters/haloren/maw.svg"
  35563. }
  35564. },
  35565. dick: {
  35566. height: math.unit(2.90, "feet"),
  35567. name: "Dick",
  35568. image: {
  35569. source: "./media/characters/haloren/dick.svg"
  35570. }
  35571. },
  35572. },
  35573. [
  35574. {
  35575. name: "Normal",
  35576. height: math.unit(7 + 5/12, "feet"),
  35577. default: true
  35578. },
  35579. {
  35580. name: "Enhanced",
  35581. height: math.unit(14 + 3/12, "feet")
  35582. },
  35583. ]
  35584. ))
  35585. characterMakers.push(() => makeCharacter(
  35586. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35587. {
  35588. front: {
  35589. height: math.unit(171, "cm"),
  35590. name: "Front",
  35591. image: {
  35592. source: "./media/characters/kimmy/front.svg",
  35593. extra: 1491/1435,
  35594. bottom: 53/1544
  35595. }
  35596. },
  35597. },
  35598. [
  35599. {
  35600. name: "Small",
  35601. height: math.unit(9, "cm")
  35602. },
  35603. {
  35604. name: "Normal",
  35605. height: math.unit(171, "cm"),
  35606. default: true
  35607. },
  35608. ]
  35609. ))
  35610. characterMakers.push(() => makeCharacter(
  35611. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35612. {
  35613. front: {
  35614. height: math.unit(8, "feet"),
  35615. weight: math.unit(300, "lb"),
  35616. name: "Front",
  35617. image: {
  35618. source: "./media/characters/galeboomer/front.svg",
  35619. extra: 4651/4415,
  35620. bottom: 162/4813
  35621. }
  35622. },
  35623. back: {
  35624. height: math.unit(8, "feet"),
  35625. weight: math.unit(300, "lb"),
  35626. name: "Back",
  35627. image: {
  35628. source: "./media/characters/galeboomer/back.svg",
  35629. extra: 4544/4314,
  35630. bottom: 16/4560
  35631. }
  35632. },
  35633. frontAlt: {
  35634. height: math.unit(8, "feet"),
  35635. weight: math.unit(300, "lb"),
  35636. name: "Front (Alt)",
  35637. image: {
  35638. source: "./media/characters/galeboomer/front-alt.svg",
  35639. extra: 4458/4228,
  35640. bottom: 68/4526
  35641. }
  35642. },
  35643. maw: {
  35644. height: math.unit(1.2, "feet"),
  35645. name: "Maw",
  35646. image: {
  35647. source: "./media/characters/galeboomer/maw.svg"
  35648. }
  35649. },
  35650. },
  35651. [
  35652. {
  35653. name: "Normal",
  35654. height: math.unit(8, "feet"),
  35655. default: true
  35656. },
  35657. ]
  35658. ))
  35659. characterMakers.push(() => makeCharacter(
  35660. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35661. {
  35662. front: {
  35663. height: math.unit(5 + 9/12, "feet"),
  35664. weight: math.unit(120, "lb"),
  35665. name: "Front",
  35666. image: {
  35667. source: "./media/characters/chyr/front.svg",
  35668. extra: 1323/1254,
  35669. bottom: 63/1386
  35670. }
  35671. },
  35672. back: {
  35673. height: math.unit(5 + 9/12, "feet"),
  35674. weight: math.unit(120, "lb"),
  35675. name: "Back",
  35676. image: {
  35677. source: "./media/characters/chyr/back.svg",
  35678. extra: 1323/1252,
  35679. bottom: 48/1371
  35680. }
  35681. },
  35682. },
  35683. [
  35684. {
  35685. name: "Normal",
  35686. height: math.unit(5 + 9/12, "feet"),
  35687. default: true
  35688. },
  35689. ]
  35690. ))
  35691. characterMakers.push(() => makeCharacter(
  35692. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35693. {
  35694. front: {
  35695. height: math.unit(7, "feet"),
  35696. weight: math.unit(310, "lb"),
  35697. name: "Front",
  35698. image: {
  35699. source: "./media/characters/solarus/front.svg",
  35700. extra: 2415/2021,
  35701. bottom: 103/2518
  35702. }
  35703. },
  35704. back: {
  35705. height: math.unit(7, "feet"),
  35706. weight: math.unit(310, "lb"),
  35707. name: "Back",
  35708. image: {
  35709. source: "./media/characters/solarus/back.svg",
  35710. extra: 2463/2089,
  35711. bottom: 79/2542
  35712. }
  35713. },
  35714. },
  35715. [
  35716. {
  35717. name: "Normal",
  35718. height: math.unit(7, "feet"),
  35719. default: true
  35720. },
  35721. ]
  35722. ))
  35723. characterMakers.push(() => makeCharacter(
  35724. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35725. {
  35726. front: {
  35727. height: math.unit(16, "feet"),
  35728. name: "Front",
  35729. image: {
  35730. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35731. extra: 1844/1780,
  35732. bottom: 58/1902
  35733. }
  35734. },
  35735. winterCoat: {
  35736. height: math.unit(16, "feet"),
  35737. name: "Winter Coat",
  35738. image: {
  35739. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  35740. extra: 1807/1775,
  35741. bottom: 69/1876
  35742. }
  35743. },
  35744. },
  35745. [
  35746. {
  35747. name: "Normal",
  35748. height: math.unit(16, "feet"),
  35749. default: true
  35750. },
  35751. {
  35752. name: "Chicago Size",
  35753. height: math.unit(560, "feet")
  35754. },
  35755. ]
  35756. ))
  35757. characterMakers.push(() => makeCharacter(
  35758. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35759. {
  35760. front: {
  35761. height: math.unit(11 + 6/12, "feet"),
  35762. weight: math.unit(1366, "lb"),
  35763. name: "Front",
  35764. image: {
  35765. source: "./media/characters/lexor/front.svg",
  35766. extra: 1560/1481,
  35767. bottom: 211/1771
  35768. }
  35769. },
  35770. back: {
  35771. height: math.unit(11 + 6/12, "feet"),
  35772. weight: math.unit(1366, "lb"),
  35773. name: "Back",
  35774. image: {
  35775. source: "./media/characters/lexor/back.svg",
  35776. extra: 1614/1533,
  35777. bottom: 76/1690
  35778. }
  35779. },
  35780. maw: {
  35781. height: math.unit(3, "feet"),
  35782. name: "Maw",
  35783. image: {
  35784. source: "./media/characters/lexor/maw.svg"
  35785. }
  35786. },
  35787. dick: {
  35788. height: math.unit(2.59, "feet"),
  35789. name: "Dick",
  35790. image: {
  35791. source: "./media/characters/lexor/dick.svg"
  35792. }
  35793. },
  35794. },
  35795. [
  35796. {
  35797. name: "Normal",
  35798. height: math.unit(11 + 6/12, "feet"),
  35799. default: true
  35800. },
  35801. ]
  35802. ))
  35803. characterMakers.push(() => makeCharacter(
  35804. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35805. {
  35806. front: {
  35807. height: math.unit(5 + 8/12, "feet"),
  35808. name: "Front",
  35809. image: {
  35810. source: "./media/characters/magnum/front.svg",
  35811. extra: 942/855,
  35812. bottom: 26/968
  35813. }
  35814. },
  35815. },
  35816. [
  35817. {
  35818. name: "Normal",
  35819. height: math.unit(5 + 8/12, "feet"),
  35820. default: true
  35821. },
  35822. ]
  35823. ))
  35824. characterMakers.push(() => makeCharacter(
  35825. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35826. {
  35827. front: {
  35828. height: math.unit(18 + 4/12, "feet"),
  35829. weight: math.unit(1500, "kg"),
  35830. name: "Front",
  35831. image: {
  35832. source: "./media/characters/solas-sharpsman/front.svg",
  35833. extra: 1698/1589,
  35834. bottom: 0/1698
  35835. }
  35836. },
  35837. },
  35838. [
  35839. {
  35840. name: "Normal",
  35841. height: math.unit(18 + 4/12, "feet"),
  35842. default: true
  35843. },
  35844. ]
  35845. ))
  35846. characterMakers.push(() => makeCharacter(
  35847. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35848. {
  35849. front: {
  35850. height: math.unit(5 + 5/12, "feet"),
  35851. weight: math.unit(180, "lb"),
  35852. name: "Front",
  35853. image: {
  35854. source: "./media/characters/october/front.svg",
  35855. extra: 1800/1650,
  35856. bottom: 0/1800
  35857. }
  35858. },
  35859. frontNsfw: {
  35860. height: math.unit(5 + 5/12, "feet"),
  35861. weight: math.unit(180, "lb"),
  35862. name: "Front (NSFW)",
  35863. image: {
  35864. source: "./media/characters/october/front-nsfw.svg",
  35865. extra: 1392/1307,
  35866. bottom: 42/1434
  35867. }
  35868. },
  35869. },
  35870. [
  35871. {
  35872. name: "Normal",
  35873. height: math.unit(5 + 5/12, "feet"),
  35874. default: true
  35875. },
  35876. ]
  35877. ))
  35878. characterMakers.push(() => makeCharacter(
  35879. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35880. {
  35881. front: {
  35882. height: math.unit(8 + 6/12, "feet"),
  35883. name: "Front",
  35884. image: {
  35885. source: "./media/characters/essynkardi/front.svg",
  35886. extra: 1914/1846,
  35887. bottom: 22/1936
  35888. }
  35889. },
  35890. },
  35891. [
  35892. {
  35893. name: "Normal",
  35894. height: math.unit(8 + 6/12, "feet"),
  35895. default: true
  35896. },
  35897. ]
  35898. ))
  35899. characterMakers.push(() => makeCharacter(
  35900. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35901. {
  35902. front: {
  35903. height: math.unit(6 + 6/12, "feet"),
  35904. weight: math.unit(7, "lb"),
  35905. name: "Front",
  35906. image: {
  35907. source: "./media/characters/icky/front.svg",
  35908. extra: 813/782,
  35909. bottom: 66/879
  35910. }
  35911. },
  35912. back: {
  35913. height: math.unit(6 + 6/12, "feet"),
  35914. weight: math.unit(7, "lb"),
  35915. name: "Back",
  35916. image: {
  35917. source: "./media/characters/icky/back.svg",
  35918. extra: 754/735,
  35919. bottom: 56/810
  35920. }
  35921. },
  35922. },
  35923. [
  35924. {
  35925. name: "Normal",
  35926. height: math.unit(6 + 6/12, "feet"),
  35927. default: true
  35928. },
  35929. ]
  35930. ))
  35931. characterMakers.push(() => makeCharacter(
  35932. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35933. {
  35934. front: {
  35935. height: math.unit(15, "feet"),
  35936. name: "Front",
  35937. image: {
  35938. source: "./media/characters/rojas/front.svg",
  35939. extra: 1462/1408,
  35940. bottom: 95/1557
  35941. }
  35942. },
  35943. back: {
  35944. height: math.unit(15, "feet"),
  35945. name: "Back",
  35946. image: {
  35947. source: "./media/characters/rojas/back.svg",
  35948. extra: 1023/954,
  35949. bottom: 28/1051
  35950. }
  35951. },
  35952. },
  35953. [
  35954. {
  35955. name: "Normal",
  35956. height: math.unit(15, "feet"),
  35957. default: true
  35958. },
  35959. ]
  35960. ))
  35961. characterMakers.push(() => makeCharacter(
  35962. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35963. {
  35964. frontHuman: {
  35965. height: math.unit(5 + 7/12, "feet"),
  35966. name: "Front (Human)",
  35967. image: {
  35968. source: "./media/characters/alek-dryagan/front-human.svg",
  35969. extra: 1687/1667,
  35970. bottom: 69/1756
  35971. }
  35972. },
  35973. backHuman: {
  35974. height: math.unit(5 + 7/12, "feet"),
  35975. name: "Back (Human)",
  35976. image: {
  35977. source: "./media/characters/alek-dryagan/back-human.svg",
  35978. extra: 1670/1649,
  35979. bottom: 65/1735
  35980. }
  35981. },
  35982. frontDemi: {
  35983. height: math.unit(65, "feet"),
  35984. name: "Front (Demi)",
  35985. image: {
  35986. source: "./media/characters/alek-dryagan/front-demi.svg",
  35987. extra: 1669/1642,
  35988. bottom: 49/1718
  35989. }
  35990. },
  35991. backDemi: {
  35992. height: math.unit(65, "feet"),
  35993. name: "Back (Demi)",
  35994. image: {
  35995. source: "./media/characters/alek-dryagan/back-demi.svg",
  35996. extra: 1658/1637,
  35997. bottom: 40/1698
  35998. }
  35999. },
  36000. mawHuman: {
  36001. height: math.unit(0.3, "feet"),
  36002. name: "Maw (Human)",
  36003. image: {
  36004. source: "./media/characters/alek-dryagan/maw-human.svg"
  36005. }
  36006. },
  36007. mawDemi: {
  36008. height: math.unit(3.8, "feet"),
  36009. name: "Maw (Demi)",
  36010. image: {
  36011. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36012. }
  36013. },
  36014. },
  36015. [
  36016. {
  36017. name: "Normal",
  36018. height: math.unit(5 + 7/12, "feet"),
  36019. default: true
  36020. },
  36021. ]
  36022. ))
  36023. characterMakers.push(() => makeCharacter(
  36024. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36025. {
  36026. frontHuman: {
  36027. height: math.unit(5 + 2/12, "feet"),
  36028. name: "Front (Human)",
  36029. image: {
  36030. source: "./media/characters/gen/front-human.svg",
  36031. extra: 1627/1538,
  36032. bottom: 71/1698
  36033. }
  36034. },
  36035. backHuman: {
  36036. height: math.unit(5 + 2/12, "feet"),
  36037. name: "Back (Human)",
  36038. image: {
  36039. source: "./media/characters/gen/back-human.svg",
  36040. extra: 1638/1548,
  36041. bottom: 69/1707
  36042. }
  36043. },
  36044. frontDemi: {
  36045. height: math.unit(5 + 2/12, "feet"),
  36046. name: "Front (Demi)",
  36047. image: {
  36048. source: "./media/characters/gen/front-demi.svg",
  36049. extra: 1627/1538,
  36050. bottom: 71/1698
  36051. }
  36052. },
  36053. backDemi: {
  36054. height: math.unit(5 + 2/12, "feet"),
  36055. name: "Back (Demi)",
  36056. image: {
  36057. source: "./media/characters/gen/back-demi.svg",
  36058. extra: 1638/1548,
  36059. bottom: 69/1707
  36060. }
  36061. },
  36062. },
  36063. [
  36064. {
  36065. name: "Normal",
  36066. height: math.unit(5 + 2/12, "feet"),
  36067. default: true
  36068. },
  36069. ]
  36070. ))
  36071. characterMakers.push(() => makeCharacter(
  36072. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36073. {
  36074. frontImp: {
  36075. height: math.unit(1 + 11/12, "feet"),
  36076. name: "Front (Imp)",
  36077. image: {
  36078. source: "./media/characters/max-kobold/front-imp.svg",
  36079. extra: 1238/1134,
  36080. bottom: 81/1319
  36081. }
  36082. },
  36083. backImp: {
  36084. height: math.unit(1 + 11/12, "feet"),
  36085. name: "Back (Imp)",
  36086. image: {
  36087. source: "./media/characters/max-kobold/back-imp.svg",
  36088. extra: 1334/1175,
  36089. bottom: 34/1368
  36090. }
  36091. },
  36092. frontDemi: {
  36093. height: math.unit(5 + 9/12, "feet"),
  36094. name: "Front (Demi)",
  36095. image: {
  36096. source: "./media/characters/max-kobold/front-demi.svg",
  36097. extra: 1715/1685,
  36098. bottom: 54/1769
  36099. }
  36100. },
  36101. backDemi: {
  36102. height: math.unit(5 + 9/12, "feet"),
  36103. name: "Back (Demi)",
  36104. image: {
  36105. source: "./media/characters/max-kobold/back-demi.svg",
  36106. extra: 1752/1729,
  36107. bottom: 41/1793
  36108. }
  36109. },
  36110. handImp: {
  36111. height: math.unit(0.45, "feet"),
  36112. name: "Hand (Imp)",
  36113. image: {
  36114. source: "./media/characters/max-kobold/hand.svg"
  36115. }
  36116. },
  36117. pawImp: {
  36118. height: math.unit(0.46, "feet"),
  36119. name: "Paw (Imp)",
  36120. image: {
  36121. source: "./media/characters/max-kobold/paw.svg"
  36122. }
  36123. },
  36124. handDemi: {
  36125. height: math.unit(0.80, "feet"),
  36126. name: "Hand (Demi)",
  36127. image: {
  36128. source: "./media/characters/max-kobold/hand.svg"
  36129. }
  36130. },
  36131. pawDemi: {
  36132. height: math.unit(1.1, "feet"),
  36133. name: "Paw (Demi)",
  36134. image: {
  36135. source: "./media/characters/max-kobold/paw.svg"
  36136. }
  36137. },
  36138. headImp: {
  36139. height: math.unit(1.33, "feet"),
  36140. name: "Head (Imp)",
  36141. image: {
  36142. source: "./media/characters/max-kobold/head-imp.svg"
  36143. }
  36144. },
  36145. mawImp: {
  36146. height: math.unit(0.75, "feet"),
  36147. name: "Maw (Imp)",
  36148. image: {
  36149. source: "./media/characters/max-kobold/maw-imp.svg"
  36150. }
  36151. },
  36152. mawDemi: {
  36153. height: math.unit(0.42, "feet"),
  36154. name: "Maw (Demi)",
  36155. image: {
  36156. source: "./media/characters/max-kobold/maw-demi.svg"
  36157. }
  36158. },
  36159. },
  36160. [
  36161. {
  36162. name: "Normal",
  36163. height: math.unit(1 + 11/12, "feet"),
  36164. default: true
  36165. },
  36166. ]
  36167. ))
  36168. characterMakers.push(() => makeCharacter(
  36169. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36170. {
  36171. front: {
  36172. height: math.unit(7 + 5/12, "feet"),
  36173. name: "Front",
  36174. image: {
  36175. source: "./media/characters/carbon/front.svg",
  36176. extra: 1754/1689,
  36177. bottom: 65/1819
  36178. }
  36179. },
  36180. back: {
  36181. height: math.unit(7 + 5/12, "feet"),
  36182. name: "Back",
  36183. image: {
  36184. source: "./media/characters/carbon/back.svg",
  36185. extra: 1762/1695,
  36186. bottom: 24/1786
  36187. }
  36188. },
  36189. frontGigantamax: {
  36190. height: math.unit(150, "feet"),
  36191. name: "Front (Gigantamax)",
  36192. image: {
  36193. source: "./media/characters/carbon/front-gigantamax.svg",
  36194. extra: 1826/1669,
  36195. bottom: 59/1885
  36196. }
  36197. },
  36198. backGigantamax: {
  36199. height: math.unit(150, "feet"),
  36200. name: "Back (Gigantamax)",
  36201. image: {
  36202. source: "./media/characters/carbon/back-gigantamax.svg",
  36203. extra: 1796/1653,
  36204. bottom: 53/1849
  36205. }
  36206. },
  36207. maw: {
  36208. height: math.unit(0.48, "feet"),
  36209. name: "Maw",
  36210. image: {
  36211. source: "./media/characters/carbon/maw.svg"
  36212. }
  36213. },
  36214. mawGigantamax: {
  36215. height: math.unit(7.5, "feet"),
  36216. name: "Maw (Gigantamax)",
  36217. image: {
  36218. source: "./media/characters/carbon/maw-gigantamax.svg"
  36219. }
  36220. },
  36221. },
  36222. [
  36223. {
  36224. name: "Normal",
  36225. height: math.unit(7 + 5/12, "feet"),
  36226. default: true
  36227. },
  36228. ]
  36229. ))
  36230. characterMakers.push(() => makeCharacter(
  36231. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36232. {
  36233. front: {
  36234. height: math.unit(6, "feet"),
  36235. name: "Front",
  36236. image: {
  36237. source: "./media/characters/maverick/front.svg",
  36238. extra: 1672/1661,
  36239. bottom: 85/1757
  36240. }
  36241. },
  36242. back: {
  36243. height: math.unit(6, "feet"),
  36244. name: "Back",
  36245. image: {
  36246. source: "./media/characters/maverick/back.svg",
  36247. extra: 1642/1631,
  36248. bottom: 38/1680
  36249. }
  36250. },
  36251. },
  36252. [
  36253. {
  36254. name: "Normal",
  36255. height: math.unit(6, "feet"),
  36256. default: true
  36257. },
  36258. ]
  36259. ))
  36260. characterMakers.push(() => makeCharacter(
  36261. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36262. {
  36263. front: {
  36264. height: math.unit(15, "feet"),
  36265. weight: math.unit(615, "lb"),
  36266. name: "Front",
  36267. image: {
  36268. source: "./media/characters/grockle/front.svg",
  36269. extra: 1535/1427,
  36270. bottom: 56/1591
  36271. }
  36272. },
  36273. },
  36274. [
  36275. {
  36276. name: "Normal",
  36277. height: math.unit(15, "feet"),
  36278. default: true
  36279. },
  36280. {
  36281. name: "Large",
  36282. height: math.unit(150, "feet")
  36283. },
  36284. {
  36285. name: "Macro",
  36286. height: math.unit(1876, "feet")
  36287. },
  36288. {
  36289. name: "Mega Macro",
  36290. height: math.unit(121940, "feet")
  36291. },
  36292. {
  36293. name: "Giga Macro",
  36294. height: math.unit(750, "km")
  36295. },
  36296. {
  36297. name: "Tera Macro",
  36298. height: math.unit(750000, "km")
  36299. },
  36300. {
  36301. name: "Galactic",
  36302. height: math.unit(1.4e5, "km")
  36303. },
  36304. {
  36305. name: "Godlike",
  36306. height: math.unit(9.8e280, "galaxies")
  36307. },
  36308. ]
  36309. ))
  36310. characterMakers.push(() => makeCharacter(
  36311. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36312. {
  36313. front: {
  36314. height: math.unit(11, "meters"),
  36315. weight: math.unit(20, "tonnes"),
  36316. name: "Front",
  36317. image: {
  36318. source: "./media/characters/alistair/front.svg",
  36319. extra: 1265/1009,
  36320. bottom: 93/1358
  36321. }
  36322. },
  36323. },
  36324. [
  36325. {
  36326. name: "Normal",
  36327. height: math.unit(11, "meters"),
  36328. default: true
  36329. },
  36330. ]
  36331. ))
  36332. characterMakers.push(() => makeCharacter(
  36333. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36334. {
  36335. front: {
  36336. height: math.unit(5 + 8/12, "feet"),
  36337. name: "Front",
  36338. image: {
  36339. source: "./media/characters/haruka/front.svg",
  36340. extra: 2012/1952,
  36341. bottom: 0/2012
  36342. }
  36343. },
  36344. },
  36345. [
  36346. {
  36347. name: "Normal",
  36348. height: math.unit(5 + 8/12, "feet"),
  36349. default: true
  36350. },
  36351. ]
  36352. ))
  36353. characterMakers.push(() => makeCharacter(
  36354. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36355. {
  36356. back: {
  36357. height: math.unit(9, "feet"),
  36358. name: "Back",
  36359. image: {
  36360. source: "./media/characters/vivian-sylveon/back.svg",
  36361. extra: 1853/1714,
  36362. bottom: 0/1853
  36363. }
  36364. },
  36365. },
  36366. [
  36367. {
  36368. name: "Normal",
  36369. height: math.unit(9, "feet"),
  36370. default: true
  36371. },
  36372. {
  36373. name: "Macro",
  36374. height: math.unit(500, "feet")
  36375. },
  36376. {
  36377. name: "Megamacro",
  36378. height: math.unit(600, "miles")
  36379. },
  36380. {
  36381. name: "Gigamacro",
  36382. height: math.unit(30000, "miles")
  36383. },
  36384. ]
  36385. ))
  36386. characterMakers.push(() => makeCharacter(
  36387. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36388. {
  36389. anthro: {
  36390. height: math.unit(5 + 10/12, "feet"),
  36391. weight: math.unit(100, "lb"),
  36392. name: "Anthro",
  36393. image: {
  36394. source: "./media/characters/daiki/anthro.svg",
  36395. extra: 1115/1027,
  36396. bottom: 69/1184
  36397. }
  36398. },
  36399. feral: {
  36400. height: math.unit(200, "feet"),
  36401. name: "Feral",
  36402. image: {
  36403. source: "./media/characters/daiki/feral.svg",
  36404. extra: 1256/313,
  36405. bottom: 39/1295
  36406. }
  36407. },
  36408. feralHead: {
  36409. height: math.unit(171, "feet"),
  36410. name: "Feral Head",
  36411. image: {
  36412. source: "./media/characters/daiki/feral-head.svg"
  36413. }
  36414. },
  36415. manaDragon: {
  36416. height: math.unit(170, "meters"),
  36417. name: "Mana-dragon",
  36418. image: {
  36419. source: "./media/characters/daiki/mana-dragon.svg",
  36420. extra: 763/420,
  36421. bottom: 97/860
  36422. }
  36423. },
  36424. },
  36425. [
  36426. {
  36427. name: "Normal",
  36428. height: math.unit(5 + 10/12, "feet"),
  36429. default: true
  36430. },
  36431. ]
  36432. ))
  36433. characterMakers.push(() => makeCharacter(
  36434. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36435. {
  36436. fullyEquippedFront: {
  36437. height: math.unit(3 + 1/12, "feet"),
  36438. weight: math.unit(24, "lb"),
  36439. name: "Fully Equipped (Front)",
  36440. image: {
  36441. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36442. extra: 687/605,
  36443. bottom: 18/705
  36444. }
  36445. },
  36446. fullyEquippedBack: {
  36447. height: math.unit(3 + 1/12, "feet"),
  36448. weight: math.unit(24, "lb"),
  36449. name: "Fully Equipped (Back)",
  36450. image: {
  36451. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36452. extra: 689/590,
  36453. bottom: 18/707
  36454. }
  36455. },
  36456. dailyWear: {
  36457. height: math.unit(3 + 1/12, "feet"),
  36458. weight: math.unit(24, "lb"),
  36459. name: "Daily Wear",
  36460. image: {
  36461. source: "./media/characters/tea-spot/daily-wear.svg",
  36462. extra: 701/620,
  36463. bottom: 21/722
  36464. }
  36465. },
  36466. maidWork: {
  36467. height: math.unit(3 + 1/12, "feet"),
  36468. weight: math.unit(24, "lb"),
  36469. name: "Maid Work",
  36470. image: {
  36471. source: "./media/characters/tea-spot/maid-work.svg",
  36472. extra: 693/609,
  36473. bottom: 15/708
  36474. }
  36475. },
  36476. },
  36477. [
  36478. {
  36479. name: "Normal",
  36480. height: math.unit(3 + 1/12, "feet"),
  36481. default: true
  36482. },
  36483. ]
  36484. ))
  36485. characterMakers.push(() => makeCharacter(
  36486. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36487. {
  36488. front: {
  36489. height: math.unit(175, "cm"),
  36490. weight: math.unit(75, "kg"),
  36491. name: "Front",
  36492. image: {
  36493. source: "./media/characters/chee/front.svg",
  36494. extra: 1796/1740,
  36495. bottom: 40/1836
  36496. }
  36497. },
  36498. },
  36499. [
  36500. {
  36501. name: "Micro-Micro",
  36502. height: math.unit(1, "nm")
  36503. },
  36504. {
  36505. name: "Micro-erst",
  36506. height: math.unit(1, "micrometer")
  36507. },
  36508. {
  36509. name: "Micro-er",
  36510. height: math.unit(1, "cm")
  36511. },
  36512. {
  36513. name: "Normal",
  36514. height: math.unit(175, "cm"),
  36515. default: true
  36516. },
  36517. {
  36518. name: "Macro",
  36519. height: math.unit(100, "m")
  36520. },
  36521. {
  36522. name: "Macro-er",
  36523. height: math.unit(1, "km")
  36524. },
  36525. {
  36526. name: "Macro-erst",
  36527. height: math.unit(10, "km")
  36528. },
  36529. {
  36530. name: "Macro-Macro",
  36531. height: math.unit(100, "km")
  36532. },
  36533. ]
  36534. ))
  36535. characterMakers.push(() => makeCharacter(
  36536. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36537. {
  36538. front: {
  36539. height: math.unit(11 + 9/12, "feet"),
  36540. weight: math.unit(935, "lb"),
  36541. name: "Front",
  36542. image: {
  36543. source: "./media/characters/kingsley/front.svg",
  36544. extra: 1803/1674,
  36545. bottom: 127/1930
  36546. }
  36547. },
  36548. frontNude: {
  36549. height: math.unit(11 + 9/12, "feet"),
  36550. weight: math.unit(935, "lb"),
  36551. name: "Front (Nude)",
  36552. image: {
  36553. source: "./media/characters/kingsley/front-nude.svg",
  36554. extra: 1803/1674,
  36555. bottom: 127/1930
  36556. }
  36557. },
  36558. },
  36559. [
  36560. {
  36561. name: "Normal",
  36562. height: math.unit(11 + 9/12, "feet"),
  36563. default: true
  36564. },
  36565. ]
  36566. ))
  36567. characterMakers.push(() => makeCharacter(
  36568. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36569. {
  36570. side: {
  36571. height: math.unit(9, "feet"),
  36572. name: "Side",
  36573. image: {
  36574. source: "./media/characters/rymel/side.svg",
  36575. extra: 792/469,
  36576. bottom: 121/913
  36577. }
  36578. },
  36579. maw: {
  36580. height: math.unit(2.4, "meters"),
  36581. name: "Maw",
  36582. image: {
  36583. source: "./media/characters/rymel/maw.svg"
  36584. }
  36585. },
  36586. },
  36587. [
  36588. {
  36589. name: "House Drake",
  36590. height: math.unit(2, "feet")
  36591. },
  36592. {
  36593. name: "Reduced",
  36594. height: math.unit(4.5, "feet")
  36595. },
  36596. {
  36597. name: "Normal",
  36598. height: math.unit(9, "feet"),
  36599. default: true
  36600. },
  36601. ]
  36602. ))
  36603. characterMakers.push(() => makeCharacter(
  36604. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36605. {
  36606. front: {
  36607. height: math.unit(1.74, "meters"),
  36608. weight: math.unit(55, "kg"),
  36609. name: "Front",
  36610. image: {
  36611. source: "./media/characters/rubus/front.svg",
  36612. extra: 1894/1742,
  36613. bottom: 44/1938
  36614. }
  36615. },
  36616. },
  36617. [
  36618. {
  36619. name: "Normal",
  36620. height: math.unit(1.74, "meters"),
  36621. default: true
  36622. },
  36623. ]
  36624. ))
  36625. characterMakers.push(() => makeCharacter(
  36626. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36627. {
  36628. front: {
  36629. height: math.unit(5 + 2/12, "feet"),
  36630. weight: math.unit(112, "lb"),
  36631. name: "Front",
  36632. image: {
  36633. source: "./media/characters/cassie-kingston/front.svg",
  36634. extra: 1438/1390,
  36635. bottom: 47/1485
  36636. }
  36637. },
  36638. },
  36639. [
  36640. {
  36641. name: "Normal",
  36642. height: math.unit(5 + 2/12, "feet"),
  36643. default: true
  36644. },
  36645. {
  36646. name: "Macro",
  36647. height: math.unit(128, "feet")
  36648. },
  36649. {
  36650. name: "Megamacro",
  36651. height: math.unit(2.56, "miles")
  36652. },
  36653. ]
  36654. ))
  36655. characterMakers.push(() => makeCharacter(
  36656. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36657. {
  36658. front: {
  36659. height: math.unit(7, "feet"),
  36660. name: "Front",
  36661. image: {
  36662. source: "./media/characters/fox/front.svg",
  36663. extra: 1798/1703,
  36664. bottom: 55/1853
  36665. }
  36666. },
  36667. back: {
  36668. height: math.unit(7, "feet"),
  36669. name: "Back",
  36670. image: {
  36671. source: "./media/characters/fox/back.svg",
  36672. extra: 1748/1649,
  36673. bottom: 32/1780
  36674. }
  36675. },
  36676. head: {
  36677. height: math.unit(1.95, "feet"),
  36678. name: "Head",
  36679. image: {
  36680. source: "./media/characters/fox/head.svg"
  36681. }
  36682. },
  36683. dick: {
  36684. height: math.unit(1.33, "feet"),
  36685. name: "Dick",
  36686. image: {
  36687. source: "./media/characters/fox/dick.svg"
  36688. }
  36689. },
  36690. foot: {
  36691. height: math.unit(1, "feet"),
  36692. name: "Foot",
  36693. image: {
  36694. source: "./media/characters/fox/foot.svg"
  36695. }
  36696. },
  36697. paw: {
  36698. height: math.unit(0.92, "feet"),
  36699. name: "Paw",
  36700. image: {
  36701. source: "./media/characters/fox/paw.svg"
  36702. }
  36703. },
  36704. },
  36705. [
  36706. {
  36707. name: "Small",
  36708. height: math.unit(3, "inches")
  36709. },
  36710. {
  36711. name: "\"Realistic\"",
  36712. height: math.unit(7, "feet")
  36713. },
  36714. {
  36715. name: "Normal",
  36716. height: math.unit(150, "feet"),
  36717. default: true
  36718. },
  36719. {
  36720. name: "BIG",
  36721. height: math.unit(1200, "feet")
  36722. },
  36723. {
  36724. name: "👀",
  36725. height: math.unit(5, "miles")
  36726. },
  36727. {
  36728. name: "👀👀👀",
  36729. height: math.unit(64, "miles")
  36730. },
  36731. ]
  36732. ))
  36733. characterMakers.push(() => makeCharacter(
  36734. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36735. {
  36736. front: {
  36737. height: math.unit(625, "feet"),
  36738. name: "Front",
  36739. image: {
  36740. source: "./media/characters/asonja-rossa/front.svg",
  36741. extra: 1833/1686,
  36742. bottom: 24/1857
  36743. }
  36744. },
  36745. back: {
  36746. height: math.unit(625, "feet"),
  36747. name: "Back",
  36748. image: {
  36749. source: "./media/characters/asonja-rossa/back.svg",
  36750. extra: 1852/1753,
  36751. bottom: 26/1878
  36752. }
  36753. },
  36754. },
  36755. [
  36756. {
  36757. name: "Macro",
  36758. height: math.unit(625, "feet"),
  36759. default: true
  36760. },
  36761. ]
  36762. ))
  36763. characterMakers.push(() => makeCharacter(
  36764. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36765. {
  36766. side: {
  36767. height: math.unit(6, "feet"),
  36768. weight: math.unit(150, "lb"),
  36769. name: "Side",
  36770. image: {
  36771. source: "./media/characters/rezukii/side.svg",
  36772. extra: 979/542,
  36773. bottom: 87/1066
  36774. }
  36775. },
  36776. },
  36777. [
  36778. {
  36779. name: "Tiny",
  36780. height: math.unit(2, "feet")
  36781. },
  36782. {
  36783. name: "Smol",
  36784. height: math.unit(4, "feet")
  36785. },
  36786. {
  36787. name: "Normal",
  36788. height: math.unit(8, "feet"),
  36789. default: true
  36790. },
  36791. {
  36792. name: "Big",
  36793. height: math.unit(12, "feet")
  36794. },
  36795. {
  36796. name: "Macro",
  36797. height: math.unit(30, "feet")
  36798. },
  36799. ]
  36800. ))
  36801. characterMakers.push(() => makeCharacter(
  36802. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36803. {
  36804. front: {
  36805. height: math.unit(14, "feet"),
  36806. weight: math.unit(9.5, "tonnes"),
  36807. name: "Front",
  36808. image: {
  36809. source: "./media/characters/dawnheart/front.svg",
  36810. extra: 2792/2675,
  36811. bottom: 64/2856
  36812. }
  36813. },
  36814. },
  36815. [
  36816. {
  36817. name: "Normal",
  36818. height: math.unit(14, "feet"),
  36819. default: true
  36820. },
  36821. ]
  36822. ))
  36823. characterMakers.push(() => makeCharacter(
  36824. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36825. {
  36826. front: {
  36827. height: math.unit(1.7, "m"),
  36828. name: "Front",
  36829. image: {
  36830. source: "./media/characters/gladi/front.svg",
  36831. extra: 1460/1362,
  36832. bottom: 19/1479
  36833. }
  36834. },
  36835. back: {
  36836. height: math.unit(1.7, "m"),
  36837. name: "Back",
  36838. image: {
  36839. source: "./media/characters/gladi/back.svg",
  36840. extra: 1459/1357,
  36841. bottom: 12/1471
  36842. }
  36843. },
  36844. feral: {
  36845. height: math.unit(2.05, "m"),
  36846. name: "Feral",
  36847. image: {
  36848. source: "./media/characters/gladi/feral.svg",
  36849. extra: 821/557,
  36850. bottom: 91/912
  36851. }
  36852. },
  36853. },
  36854. [
  36855. {
  36856. name: "Shortest",
  36857. height: math.unit(70, "cm")
  36858. },
  36859. {
  36860. name: "Normal",
  36861. height: math.unit(1.7, "m")
  36862. },
  36863. {
  36864. name: "Macro",
  36865. height: math.unit(10, "m"),
  36866. default: true
  36867. },
  36868. {
  36869. name: "Tallest",
  36870. height: math.unit(200, "m")
  36871. },
  36872. ]
  36873. ))
  36874. characterMakers.push(() => makeCharacter(
  36875. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36876. {
  36877. front: {
  36878. height: math.unit(5 + 7/12, "feet"),
  36879. weight: math.unit(92, "kg"),
  36880. name: "Front",
  36881. image: {
  36882. source: "./media/characters/erdno/front.svg",
  36883. extra: 1954/1889,
  36884. bottom: 22/1976
  36885. }
  36886. },
  36887. },
  36888. [
  36889. {
  36890. name: "Normal",
  36891. height: math.unit(5 + 7/12, "feet"),
  36892. default: true
  36893. },
  36894. ]
  36895. ))
  36896. characterMakers.push(() => makeCharacter(
  36897. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  36898. {
  36899. front: {
  36900. height: math.unit(5 + 10/12, "feet"),
  36901. weight: math.unit(150, "lb"),
  36902. name: "Front",
  36903. image: {
  36904. source: "./media/characters/jamie/front.svg",
  36905. extra: 1908/1768,
  36906. bottom: 19/1927
  36907. }
  36908. },
  36909. },
  36910. [
  36911. {
  36912. name: "Minimum",
  36913. height: math.unit(2, "cm")
  36914. },
  36915. {
  36916. name: "Micro",
  36917. height: math.unit(3, "inches")
  36918. },
  36919. {
  36920. name: "Normal",
  36921. height: math.unit(5 + 10/12, "feet"),
  36922. default: true
  36923. },
  36924. {
  36925. name: "Macro",
  36926. height: math.unit(150, "feet")
  36927. },
  36928. {
  36929. name: "Megamacro",
  36930. height: math.unit(10000, "m")
  36931. },
  36932. ]
  36933. ))
  36934. characterMakers.push(() => makeCharacter(
  36935. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  36936. {
  36937. front: {
  36938. height: math.unit(2, "meters"),
  36939. weight: math.unit(100, "kg"),
  36940. name: "Front",
  36941. image: {
  36942. source: "./media/characters/shiron/front.svg",
  36943. extra: 2103/1985,
  36944. bottom: 98/2201
  36945. }
  36946. },
  36947. back: {
  36948. height: math.unit(2, "meters"),
  36949. weight: math.unit(100, "kg"),
  36950. name: "Back",
  36951. image: {
  36952. source: "./media/characters/shiron/back.svg",
  36953. extra: 2110/2015,
  36954. bottom: 89/2199
  36955. }
  36956. },
  36957. hand: {
  36958. height: math.unit(0.96, "feet"),
  36959. name: "Hand",
  36960. image: {
  36961. source: "./media/characters/shiron/hand.svg"
  36962. }
  36963. },
  36964. foot: {
  36965. height: math.unit(1.464, "feet"),
  36966. name: "Foot",
  36967. image: {
  36968. source: "./media/characters/shiron/foot.svg"
  36969. }
  36970. },
  36971. },
  36972. [
  36973. {
  36974. name: "Normal",
  36975. height: math.unit(2, "meters")
  36976. },
  36977. {
  36978. name: "Macro",
  36979. height: math.unit(500, "meters"),
  36980. default: true
  36981. },
  36982. {
  36983. name: "Megamacro",
  36984. height: math.unit(20, "km")
  36985. },
  36986. ]
  36987. ))
  36988. characterMakers.push(() => makeCharacter(
  36989. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  36990. {
  36991. front: {
  36992. height: math.unit(6, "feet"),
  36993. name: "Front",
  36994. image: {
  36995. source: "./media/characters/sam/front.svg",
  36996. extra: 849/826,
  36997. bottom: 19/868
  36998. }
  36999. },
  37000. },
  37001. [
  37002. {
  37003. name: "Normal",
  37004. height: math.unit(6, "feet"),
  37005. default: true
  37006. },
  37007. ]
  37008. ))
  37009. characterMakers.push(() => makeCharacter(
  37010. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37011. {
  37012. front: {
  37013. height: math.unit(8 + 4/12, "feet"),
  37014. weight: math.unit(122, "kg"),
  37015. name: "Front",
  37016. image: {
  37017. source: "./media/characters/namori-kurogawa/front.svg",
  37018. extra: 1894/1576,
  37019. bottom: 34/1928
  37020. }
  37021. },
  37022. },
  37023. [
  37024. {
  37025. name: "Normal",
  37026. height: math.unit(8 + 4/12, "feet"),
  37027. default: true
  37028. },
  37029. ]
  37030. ))
  37031. characterMakers.push(() => makeCharacter(
  37032. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37033. {
  37034. front: {
  37035. height: math.unit(9, "feet"),
  37036. weight: math.unit(621, "lb"),
  37037. name: "Front",
  37038. image: {
  37039. source: "./media/characters/unmru/front.svg",
  37040. extra: 1853/1747,
  37041. bottom: 73/1926
  37042. }
  37043. },
  37044. side: {
  37045. height: math.unit(9, "feet"),
  37046. weight: math.unit(621, "lb"),
  37047. name: "Side",
  37048. image: {
  37049. source: "./media/characters/unmru/side.svg",
  37050. extra: 1781/1671,
  37051. bottom: 127/1908
  37052. }
  37053. },
  37054. back: {
  37055. height: math.unit(9, "feet"),
  37056. weight: math.unit(621, "lb"),
  37057. name: "Back",
  37058. image: {
  37059. source: "./media/characters/unmru/back.svg",
  37060. extra: 1894/1765,
  37061. bottom: 75/1969
  37062. }
  37063. },
  37064. dick: {
  37065. height: math.unit(3, "feet"),
  37066. weight: math.unit(35, "lb"),
  37067. name: "Dick",
  37068. image: {
  37069. source: "./media/characters/unmru/dick.svg"
  37070. }
  37071. },
  37072. },
  37073. [
  37074. {
  37075. name: "Normal",
  37076. height: math.unit(9, "feet")
  37077. },
  37078. {
  37079. name: "Natural",
  37080. height: math.unit(27, "feet"),
  37081. default: true
  37082. },
  37083. {
  37084. name: "Giant",
  37085. height: math.unit(90, "feet")
  37086. },
  37087. {
  37088. name: "Kaiju",
  37089. height: math.unit(270, "feet")
  37090. },
  37091. {
  37092. name: "Macro",
  37093. height: math.unit(900, "feet")
  37094. },
  37095. {
  37096. name: "Macro+",
  37097. height: math.unit(2700, "feet")
  37098. },
  37099. {
  37100. name: "Megamacro",
  37101. height: math.unit(9000, "feet")
  37102. },
  37103. {
  37104. name: "City-Crushing",
  37105. height: math.unit(27000, "feet")
  37106. },
  37107. {
  37108. name: "Mountain-Mashing",
  37109. height: math.unit(90000, "feet")
  37110. },
  37111. {
  37112. name: "Earth-Eclipsing",
  37113. height: math.unit(2.7e8, "feet")
  37114. },
  37115. {
  37116. name: "Sol-Swallowing",
  37117. height: math.unit(9e10, "feet")
  37118. },
  37119. {
  37120. name: "Majoris-Munching",
  37121. height: math.unit(2.7e13, "feet")
  37122. },
  37123. ]
  37124. ))
  37125. characterMakers.push(() => makeCharacter(
  37126. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37127. {
  37128. front: {
  37129. height: math.unit(1, "inch"),
  37130. name: "Front",
  37131. image: {
  37132. source: "./media/characters/squeaks-mouse/front.svg",
  37133. extra: 352/308,
  37134. bottom: 25/377
  37135. }
  37136. },
  37137. },
  37138. [
  37139. {
  37140. name: "Micro",
  37141. height: math.unit(1, "inch"),
  37142. default: true
  37143. },
  37144. ]
  37145. ))
  37146. characterMakers.push(() => makeCharacter(
  37147. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37148. {
  37149. side: {
  37150. height: math.unit(35, "feet"),
  37151. name: "Side",
  37152. image: {
  37153. source: "./media/characters/sayko/side.svg",
  37154. extra: 1697/1021,
  37155. bottom: 82/1779
  37156. }
  37157. },
  37158. head: {
  37159. height: math.unit(16, "feet"),
  37160. name: "Head",
  37161. image: {
  37162. source: "./media/characters/sayko/head.svg"
  37163. }
  37164. },
  37165. forepaw: {
  37166. height: math.unit(7.85, "feet"),
  37167. name: "Forepaw",
  37168. image: {
  37169. source: "./media/characters/sayko/forepaw.svg"
  37170. }
  37171. },
  37172. hindpaw: {
  37173. height: math.unit(8.8, "feet"),
  37174. name: "Hindpaw",
  37175. image: {
  37176. source: "./media/characters/sayko/hindpaw.svg"
  37177. }
  37178. },
  37179. },
  37180. [
  37181. {
  37182. name: "Normal",
  37183. height: math.unit(35, "feet"),
  37184. default: true
  37185. },
  37186. {
  37187. name: "Colossus",
  37188. height: math.unit(100, "meters")
  37189. },
  37190. {
  37191. name: "\"Small\" Deity",
  37192. height: math.unit(1, "km")
  37193. },
  37194. {
  37195. name: "\"Large\" Deity",
  37196. height: math.unit(15, "km")
  37197. },
  37198. ]
  37199. ))
  37200. characterMakers.push(() => makeCharacter(
  37201. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37202. {
  37203. front: {
  37204. height: math.unit(6, "feet"),
  37205. weight: math.unit(250, "lb"),
  37206. name: "Front",
  37207. image: {
  37208. source: "./media/characters/mukiro/front.svg",
  37209. extra: 1368/1310,
  37210. bottom: 34/1402
  37211. }
  37212. },
  37213. },
  37214. [
  37215. {
  37216. name: "Normal",
  37217. height: math.unit(6, "feet"),
  37218. default: true
  37219. },
  37220. ]
  37221. ))
  37222. characterMakers.push(() => makeCharacter(
  37223. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37224. {
  37225. front: {
  37226. height: math.unit(12 + 4/12, "feet"),
  37227. name: "Front",
  37228. image: {
  37229. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37230. extra: 1346/1311,
  37231. bottom: 65/1411
  37232. }
  37233. },
  37234. },
  37235. [
  37236. {
  37237. name: "Base",
  37238. height: math.unit(12 + 4/12, "feet"),
  37239. default: true
  37240. },
  37241. {
  37242. name: "Macro",
  37243. height: math.unit(150, "feet")
  37244. },
  37245. {
  37246. name: "Mega",
  37247. height: math.unit(2, "miles")
  37248. },
  37249. {
  37250. name: "Demi God",
  37251. height: math.unit(4, "AU")
  37252. },
  37253. {
  37254. name: "God Size",
  37255. height: math.unit(1, "universe")
  37256. },
  37257. ]
  37258. ))
  37259. characterMakers.push(() => makeCharacter(
  37260. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37261. {
  37262. front: {
  37263. height: math.unit(3 + 3/12, "feet"),
  37264. weight: math.unit(88, "lb"),
  37265. name: "Front",
  37266. image: {
  37267. source: "./media/characters/trey/front.svg",
  37268. extra: 1815/1509,
  37269. bottom: 60/1875
  37270. }
  37271. },
  37272. },
  37273. [
  37274. {
  37275. name: "Normal",
  37276. height: math.unit(3 + 3/12, "feet"),
  37277. default: true
  37278. },
  37279. ]
  37280. ))
  37281. characterMakers.push(() => makeCharacter(
  37282. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37283. {
  37284. front: {
  37285. height: math.unit(4, "meters"),
  37286. name: "Front",
  37287. image: {
  37288. source: "./media/characters/adelonda/front.svg",
  37289. extra: 1942/1775,
  37290. bottom: 33/1975
  37291. }
  37292. },
  37293. back: {
  37294. height: math.unit(4, "meters"),
  37295. name: "Back",
  37296. image: {
  37297. source: "./media/characters/adelonda/back.svg",
  37298. extra: 1932/1780,
  37299. bottom: 42/1974
  37300. }
  37301. },
  37302. bust: {
  37303. height: math.unit(1.8, "meter"),
  37304. name: "Bust",
  37305. image: {
  37306. source: "./media/characters/adelonda/bust.svg"
  37307. }
  37308. },
  37309. },
  37310. [
  37311. {
  37312. name: "Normal",
  37313. height: math.unit(4, "meters"),
  37314. default: true
  37315. },
  37316. ]
  37317. ))
  37318. characterMakers.push(() => makeCharacter(
  37319. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37320. {
  37321. front: {
  37322. height: math.unit(8 + 4/12, "feet"),
  37323. weight: math.unit(670, "lb"),
  37324. name: "Front",
  37325. image: {
  37326. source: "./media/characters/acadiel/front.svg",
  37327. extra: 1901/1595,
  37328. bottom: 142/2043
  37329. }
  37330. },
  37331. },
  37332. [
  37333. {
  37334. name: "Normal",
  37335. height: math.unit(8 + 4/12, "feet"),
  37336. default: true
  37337. },
  37338. {
  37339. name: "Macro",
  37340. height: math.unit(200, "feet")
  37341. },
  37342. ]
  37343. ))
  37344. characterMakers.push(() => makeCharacter(
  37345. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37346. {
  37347. front: {
  37348. height: math.unit(6 + 2/12, "feet"),
  37349. weight: math.unit(185, "lb"),
  37350. name: "Front",
  37351. image: {
  37352. source: "./media/characters/kayne-ein/front.svg",
  37353. extra: 1780/1560,
  37354. bottom: 81/1861
  37355. }
  37356. },
  37357. },
  37358. [
  37359. {
  37360. name: "Normal",
  37361. height: math.unit(6 + 2/12, "feet"),
  37362. default: true
  37363. },
  37364. {
  37365. name: "Transformation Stage",
  37366. height: math.unit(15, "feet")
  37367. },
  37368. {
  37369. name: "Macro",
  37370. height: math.unit(150, "feet")
  37371. },
  37372. {
  37373. name: "Earth's Shadow",
  37374. height: math.unit(6200, "miles")
  37375. },
  37376. {
  37377. name: "Universal Demon",
  37378. height: math.unit(28e9, "parsecs")
  37379. },
  37380. {
  37381. name: "Multiverse God",
  37382. height: math.unit(3, "multiverses")
  37383. },
  37384. ]
  37385. ))
  37386. characterMakers.push(() => makeCharacter(
  37387. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37388. {
  37389. front: {
  37390. height: math.unit(5 + 5/12, "feet"),
  37391. name: "Front",
  37392. image: {
  37393. source: "./media/characters/fawn/front.svg",
  37394. extra: 1873/1731,
  37395. bottom: 95/1968
  37396. }
  37397. },
  37398. back: {
  37399. height: math.unit(5 + 5/12, "feet"),
  37400. name: "Back",
  37401. image: {
  37402. source: "./media/characters/fawn/back.svg",
  37403. extra: 1813/1700,
  37404. bottom: 14/1827
  37405. }
  37406. },
  37407. hoof: {
  37408. height: math.unit(1.45, "feet"),
  37409. name: "Hoof",
  37410. image: {
  37411. source: "./media/characters/fawn/hoof.svg"
  37412. }
  37413. },
  37414. },
  37415. [
  37416. {
  37417. name: "Normal",
  37418. height: math.unit(5 + 5/12, "feet"),
  37419. default: true
  37420. },
  37421. ]
  37422. ))
  37423. characterMakers.push(() => makeCharacter(
  37424. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37425. {
  37426. front: {
  37427. height: math.unit(2 + 5/12, "feet"),
  37428. name: "Front",
  37429. image: {
  37430. source: "./media/characters/orion/front.svg",
  37431. extra: 1366/1304,
  37432. bottom: 43/1409
  37433. }
  37434. },
  37435. paw: {
  37436. height: math.unit(0.52, "feet"),
  37437. name: "Paw",
  37438. image: {
  37439. source: "./media/characters/orion/paw.svg"
  37440. }
  37441. },
  37442. },
  37443. [
  37444. {
  37445. name: "Normal",
  37446. height: math.unit(2 + 5/12, "feet"),
  37447. default: true
  37448. },
  37449. ]
  37450. ))
  37451. characterMakers.push(() => makeCharacter(
  37452. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37453. {
  37454. front: {
  37455. height: math.unit(5 + 10/12, "feet"),
  37456. name: "Front",
  37457. image: {
  37458. source: "./media/characters/vera/front.svg",
  37459. extra: 1680/1575,
  37460. bottom: 49/1729
  37461. }
  37462. },
  37463. back: {
  37464. height: math.unit(5 + 10/12, "feet"),
  37465. name: "Back",
  37466. image: {
  37467. source: "./media/characters/vera/back.svg",
  37468. extra: 1700/1588,
  37469. bottom: 18/1718
  37470. }
  37471. },
  37472. arcanine: {
  37473. height: math.unit(6 + 8/12, "feet"),
  37474. name: "Arcanine",
  37475. image: {
  37476. source: "./media/characters/vera/arcanine.svg",
  37477. extra: 1590/1511,
  37478. bottom: 71/1661
  37479. }
  37480. },
  37481. maw: {
  37482. height: math.unit(0.82, "feet"),
  37483. name: "Maw",
  37484. image: {
  37485. source: "./media/characters/vera/maw.svg"
  37486. }
  37487. },
  37488. mawArcanine: {
  37489. height: math.unit(0.97, "feet"),
  37490. name: "Maw (Arcanine)",
  37491. image: {
  37492. source: "./media/characters/vera/maw-arcanine.svg"
  37493. }
  37494. },
  37495. paw: {
  37496. height: math.unit(0.75, "feet"),
  37497. name: "Paw",
  37498. image: {
  37499. source: "./media/characters/vera/paw.svg"
  37500. }
  37501. },
  37502. pawprint: {
  37503. height: math.unit(0.52, "feet"),
  37504. name: "Pawprint",
  37505. image: {
  37506. source: "./media/characters/vera/pawprint.svg"
  37507. }
  37508. },
  37509. },
  37510. [
  37511. {
  37512. name: "Normal",
  37513. height: math.unit(5 + 10/12, "feet"),
  37514. default: true
  37515. },
  37516. {
  37517. name: "Macro",
  37518. height: math.unit(75, "feet")
  37519. },
  37520. ]
  37521. ))
  37522. characterMakers.push(() => makeCharacter(
  37523. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37524. {
  37525. front: {
  37526. height: math.unit(4, "feet"),
  37527. weight: math.unit(40, "lb"),
  37528. name: "Front",
  37529. image: {
  37530. source: "./media/characters/orvan-rabbit/front.svg",
  37531. extra: 1896/1642,
  37532. bottom: 29/1925
  37533. }
  37534. },
  37535. },
  37536. [
  37537. {
  37538. name: "Normal",
  37539. height: math.unit(4, "feet"),
  37540. default: true
  37541. },
  37542. ]
  37543. ))
  37544. characterMakers.push(() => makeCharacter(
  37545. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37546. {
  37547. front: {
  37548. height: math.unit(6, "feet"),
  37549. weight: math.unit(168, "lb"),
  37550. name: "Front",
  37551. image: {
  37552. source: "./media/characters/lisa/front.svg",
  37553. extra: 2065/1867,
  37554. bottom: 46/2111
  37555. }
  37556. },
  37557. back: {
  37558. height: math.unit(6, "feet"),
  37559. weight: math.unit(168, "lb"),
  37560. name: "Back",
  37561. image: {
  37562. source: "./media/characters/lisa/back.svg",
  37563. extra: 1982/1838,
  37564. bottom: 29/2011
  37565. }
  37566. },
  37567. maw: {
  37568. height: math.unit(0.81, "feet"),
  37569. name: "Maw",
  37570. image: {
  37571. source: "./media/characters/lisa/maw.svg"
  37572. }
  37573. },
  37574. paw: {
  37575. height: math.unit(0.9, "feet"),
  37576. name: "Paw",
  37577. image: {
  37578. source: "./media/characters/lisa/paw.svg"
  37579. }
  37580. },
  37581. caribousune: {
  37582. height: math.unit(7 + 2/12, "feet"),
  37583. weight: math.unit(268, "lb"),
  37584. name: "Caribousune",
  37585. image: {
  37586. source: "./media/characters/lisa/caribousune.svg",
  37587. extra: 1843/1633,
  37588. bottom: 29/1872
  37589. }
  37590. },
  37591. frontCaribousune: {
  37592. height: math.unit(7 + 2/12, "feet"),
  37593. weight: math.unit(268, "lb"),
  37594. name: "Front (Caribousune)",
  37595. image: {
  37596. source: "./media/characters/lisa/front-caribousune.svg",
  37597. extra: 1818/1638,
  37598. bottom: 52/1870
  37599. }
  37600. },
  37601. sideCaribousune: {
  37602. height: math.unit(7 + 2/12, "feet"),
  37603. weight: math.unit(268, "lb"),
  37604. name: "Side (Caribousune)",
  37605. image: {
  37606. source: "./media/characters/lisa/side-caribousune.svg",
  37607. extra: 1851/1635,
  37608. bottom: 16/1867
  37609. }
  37610. },
  37611. backCaribousune: {
  37612. height: math.unit(7 + 2/12, "feet"),
  37613. weight: math.unit(268, "lb"),
  37614. name: "Back (Caribousune)",
  37615. image: {
  37616. source: "./media/characters/lisa/back-caribousune.svg",
  37617. extra: 1801/1604,
  37618. bottom: 44/1845
  37619. }
  37620. },
  37621. caribou: {
  37622. height: math.unit(7 + 2/12, "feet"),
  37623. weight: math.unit(268, "lb"),
  37624. name: "Caribou",
  37625. image: {
  37626. source: "./media/characters/lisa/caribou.svg",
  37627. extra: 1843/1633,
  37628. bottom: 29/1872
  37629. }
  37630. },
  37631. frontCaribou: {
  37632. height: math.unit(7 + 2/12, "feet"),
  37633. weight: math.unit(268, "lb"),
  37634. name: "Front (Caribou)",
  37635. image: {
  37636. source: "./media/characters/lisa/front-caribou.svg",
  37637. extra: 1818/1638,
  37638. bottom: 52/1870
  37639. }
  37640. },
  37641. sideCaribou: {
  37642. height: math.unit(7 + 2/12, "feet"),
  37643. weight: math.unit(268, "lb"),
  37644. name: "Side (Caribou)",
  37645. image: {
  37646. source: "./media/characters/lisa/side-caribou.svg",
  37647. extra: 1851/1635,
  37648. bottom: 16/1867
  37649. }
  37650. },
  37651. backCaribou: {
  37652. height: math.unit(7 + 2/12, "feet"),
  37653. weight: math.unit(268, "lb"),
  37654. name: "Back (Caribou)",
  37655. image: {
  37656. source: "./media/characters/lisa/back-caribou.svg",
  37657. extra: 1801/1604,
  37658. bottom: 44/1845
  37659. }
  37660. },
  37661. mawCaribou: {
  37662. height: math.unit(1.45, "feet"),
  37663. name: "Maw (Caribou)",
  37664. image: {
  37665. source: "./media/characters/lisa/maw-caribou.svg"
  37666. }
  37667. },
  37668. mawCaribousune: {
  37669. height: math.unit(1.45, "feet"),
  37670. name: "Maw (Caribousune)",
  37671. image: {
  37672. source: "./media/characters/lisa/maw-caribousune.svg"
  37673. }
  37674. },
  37675. pawCaribousune: {
  37676. height: math.unit(1.61, "feet"),
  37677. name: "Paw (Caribou)",
  37678. image: {
  37679. source: "./media/characters/lisa/paw-caribousune.svg"
  37680. }
  37681. },
  37682. },
  37683. [
  37684. {
  37685. name: "Normal",
  37686. height: math.unit(6, "feet")
  37687. },
  37688. {
  37689. name: "God Size",
  37690. height: math.unit(72, "feet"),
  37691. default: true
  37692. },
  37693. {
  37694. name: "Towering",
  37695. height: math.unit(288, "feet")
  37696. },
  37697. {
  37698. name: "City Size",
  37699. height: math.unit(48384, "feet")
  37700. },
  37701. {
  37702. name: "Continental",
  37703. height: math.unit(4200, "miles")
  37704. },
  37705. {
  37706. name: "Planet Eater",
  37707. height: math.unit(42, "earths")
  37708. },
  37709. {
  37710. name: "Star Swallower",
  37711. height: math.unit(42, "solarradii")
  37712. },
  37713. {
  37714. name: "System Swallower",
  37715. height: math.unit(84000, "AU")
  37716. },
  37717. {
  37718. name: "Galaxy Gobbler",
  37719. height: math.unit(42, "galaxies")
  37720. },
  37721. {
  37722. name: "Universe Devourer",
  37723. height: math.unit(42, "universes")
  37724. },
  37725. {
  37726. name: "Multiverse Muncher",
  37727. height: math.unit(42, "multiverses")
  37728. },
  37729. ]
  37730. ))
  37731. characterMakers.push(() => makeCharacter(
  37732. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37733. {
  37734. front: {
  37735. height: math.unit(36, "feet"),
  37736. name: "Front",
  37737. image: {
  37738. source: "./media/characters/shadow-rat/front.svg",
  37739. extra: 1845/1758,
  37740. bottom: 83/1928
  37741. }
  37742. },
  37743. },
  37744. [
  37745. {
  37746. name: "Macro",
  37747. height: math.unit(36, "feet"),
  37748. default: true
  37749. },
  37750. ]
  37751. ))
  37752. characterMakers.push(() => makeCharacter(
  37753. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37754. {
  37755. side: {
  37756. height: math.unit(8, "feet"),
  37757. weight: math.unit(2630, "lb"),
  37758. name: "Side",
  37759. image: {
  37760. source: "./media/characters/torallia/side.svg",
  37761. extra: 2164/2021,
  37762. bottom: 371/2535
  37763. }
  37764. },
  37765. },
  37766. [
  37767. {
  37768. name: "Mortal Interaction",
  37769. height: math.unit(8, "feet")
  37770. },
  37771. {
  37772. name: "Natural",
  37773. height: math.unit(24, "feet"),
  37774. default: true
  37775. },
  37776. {
  37777. name: "Giant",
  37778. height: math.unit(80, "feet")
  37779. },
  37780. {
  37781. name: "Kaiju",
  37782. height: math.unit(240, "feet")
  37783. },
  37784. {
  37785. name: "Macro",
  37786. height: math.unit(800, "feet")
  37787. },
  37788. {
  37789. name: "Macro+",
  37790. height: math.unit(2400, "feet")
  37791. },
  37792. {
  37793. name: "Macro++",
  37794. height: math.unit(8000, "feet")
  37795. },
  37796. {
  37797. name: "City-Crushing",
  37798. height: math.unit(24000, "feet")
  37799. },
  37800. {
  37801. name: "Mountain-Mashing",
  37802. height: math.unit(80000, "feet")
  37803. },
  37804. {
  37805. name: "District Demolisher",
  37806. height: math.unit(240000, "feet")
  37807. },
  37808. {
  37809. name: "Tri-County Terror",
  37810. height: math.unit(800000, "feet")
  37811. },
  37812. {
  37813. name: "State Smasher",
  37814. height: math.unit(2.4e6, "feet")
  37815. },
  37816. {
  37817. name: "Nation Nemesis",
  37818. height: math.unit(8e6, "feet")
  37819. },
  37820. {
  37821. name: "Continent Cracker",
  37822. height: math.unit(2.4e7, "feet")
  37823. },
  37824. {
  37825. name: "Planet-Pillaging",
  37826. height: math.unit(8e7, "feet")
  37827. },
  37828. {
  37829. name: "Earth-Eclipsing",
  37830. height: math.unit(2.4e8, "feet")
  37831. },
  37832. {
  37833. name: "Jovian-Jostling",
  37834. height: math.unit(8e8, "feet")
  37835. },
  37836. {
  37837. name: "Gas Giant Gulper",
  37838. height: math.unit(2.4e9, "feet")
  37839. },
  37840. {
  37841. name: "Astral Annihilator",
  37842. height: math.unit(8e9, "feet")
  37843. },
  37844. {
  37845. name: "Celestial Conqueror",
  37846. height: math.unit(2.4e10, "feet")
  37847. },
  37848. {
  37849. name: "Sol-Swallowing",
  37850. height: math.unit(8e10, "feet")
  37851. },
  37852. {
  37853. name: "Hunter of the Heavens",
  37854. height: math.unit(2.4e13, "feet")
  37855. },
  37856. ]
  37857. ))
  37858. characterMakers.push(() => makeCharacter(
  37859. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  37860. {
  37861. front: {
  37862. height: math.unit(6 + 8/12, "feet"),
  37863. name: "Front",
  37864. image: {
  37865. source: "./media/characters/rebecca-pawlson/front.svg",
  37866. extra: 1737/1596,
  37867. bottom: 107/1844
  37868. }
  37869. },
  37870. back: {
  37871. height: math.unit(6 + 8/12, "feet"),
  37872. name: "Back",
  37873. image: {
  37874. source: "./media/characters/rebecca-pawlson/back.svg",
  37875. extra: 1702/1523,
  37876. bottom: 86/1788
  37877. }
  37878. },
  37879. },
  37880. [
  37881. {
  37882. name: "Normal",
  37883. height: math.unit(6 + 8/12, "feet")
  37884. },
  37885. {
  37886. name: "Mini Macro",
  37887. height: math.unit(10, "feet"),
  37888. default: true
  37889. },
  37890. {
  37891. name: "Macro",
  37892. height: math.unit(100, "feet")
  37893. },
  37894. {
  37895. name: "Mega Macro",
  37896. height: math.unit(2500, "feet")
  37897. },
  37898. {
  37899. name: "Giga Macro",
  37900. height: math.unit(50, "miles")
  37901. },
  37902. ]
  37903. ))
  37904. characterMakers.push(() => makeCharacter(
  37905. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  37906. {
  37907. front: {
  37908. height: math.unit(7 + 6/12, "feet"),
  37909. weight: math.unit(600, "lb"),
  37910. name: "Front",
  37911. image: {
  37912. source: "./media/characters/moxie-nova/front.svg",
  37913. extra: 1734/1652,
  37914. bottom: 41/1775
  37915. }
  37916. },
  37917. },
  37918. [
  37919. {
  37920. name: "Normal",
  37921. height: math.unit(7 + 6/12, "feet"),
  37922. default: true
  37923. },
  37924. ]
  37925. ))
  37926. characterMakers.push(() => makeCharacter(
  37927. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  37928. {
  37929. front: {
  37930. height: math.unit(5, "feet"),
  37931. weight: math.unit(150, "lb"),
  37932. name: "Front",
  37933. image: {
  37934. source: "./media/characters/tiffany/front.svg",
  37935. extra: 1941/1845,
  37936. bottom: 58/1999
  37937. }
  37938. },
  37939. },
  37940. [
  37941. {
  37942. name: "Normal",
  37943. height: math.unit(5, "feet"),
  37944. default: true
  37945. },
  37946. ]
  37947. ))
  37948. characterMakers.push(() => makeCharacter(
  37949. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  37950. {
  37951. front: {
  37952. height: math.unit(8, "feet"),
  37953. weight: math.unit(300, "lb"),
  37954. name: "Front",
  37955. image: {
  37956. source: "./media/characters/raxinath/front.svg",
  37957. extra: 1407/1309,
  37958. bottom: 39/1446
  37959. }
  37960. },
  37961. back: {
  37962. height: math.unit(8, "feet"),
  37963. weight: math.unit(300, "lb"),
  37964. name: "Back",
  37965. image: {
  37966. source: "./media/characters/raxinath/back.svg",
  37967. extra: 1405/1315,
  37968. bottom: 9/1414
  37969. }
  37970. },
  37971. },
  37972. [
  37973. {
  37974. name: "Speck",
  37975. height: math.unit(0.5, "nm")
  37976. },
  37977. {
  37978. name: "Micro",
  37979. height: math.unit(3, "inches")
  37980. },
  37981. {
  37982. name: "Kobold",
  37983. height: math.unit(3, "feet")
  37984. },
  37985. {
  37986. name: "Normal",
  37987. height: math.unit(8, "feet"),
  37988. default: true
  37989. },
  37990. {
  37991. name: "Giant",
  37992. height: math.unit(50, "feet")
  37993. },
  37994. {
  37995. name: "Macro",
  37996. height: math.unit(1000, "feet")
  37997. },
  37998. {
  37999. name: "Megamacro",
  38000. height: math.unit(1, "mile")
  38001. },
  38002. ]
  38003. ))
  38004. characterMakers.push(() => makeCharacter(
  38005. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38006. {
  38007. front: {
  38008. height: math.unit(10, "feet"),
  38009. weight: math.unit(1442, "lb"),
  38010. name: "Front",
  38011. image: {
  38012. source: "./media/characters/mal-dragon/front.svg",
  38013. extra: 1515/1444,
  38014. bottom: 113/1628
  38015. }
  38016. },
  38017. back: {
  38018. height: math.unit(10, "feet"),
  38019. weight: math.unit(1442, "lb"),
  38020. name: "Back",
  38021. image: {
  38022. source: "./media/characters/mal-dragon/back.svg",
  38023. extra: 1527/1434,
  38024. bottom: 25/1552
  38025. }
  38026. },
  38027. },
  38028. [
  38029. {
  38030. name: "Mortal Interaction",
  38031. height: math.unit(10, "feet"),
  38032. default: true
  38033. },
  38034. {
  38035. name: "Large",
  38036. height: math.unit(30, "feet")
  38037. },
  38038. {
  38039. name: "Kaiju",
  38040. height: math.unit(300, "feet")
  38041. },
  38042. {
  38043. name: "Megamacro",
  38044. height: math.unit(10000, "feet")
  38045. },
  38046. {
  38047. name: "Continent Cracker",
  38048. height: math.unit(30000000, "feet")
  38049. },
  38050. {
  38051. name: "Sol-Swallowing",
  38052. height: math.unit(1e11, "feet")
  38053. },
  38054. {
  38055. name: "Light Universal",
  38056. height: math.unit(5, "universes")
  38057. },
  38058. {
  38059. name: "Universe Atoms",
  38060. height: math.unit(1.829e9, "universes")
  38061. },
  38062. {
  38063. name: "Light Multiversal",
  38064. height: math.unit(5, "multiverses")
  38065. },
  38066. {
  38067. name: "Multiverse Atoms",
  38068. height: math.unit(1.829e9, "multiverses")
  38069. },
  38070. {
  38071. name: "Fabric of Time",
  38072. height: math.unit(1e262, "multiverses")
  38073. },
  38074. ]
  38075. ))
  38076. characterMakers.push(() => makeCharacter(
  38077. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38078. {
  38079. front: {
  38080. height: math.unit(9, "feet"),
  38081. weight: math.unit(1050, "lb"),
  38082. name: "Front",
  38083. image: {
  38084. source: "./media/characters/tabitha/front.svg",
  38085. extra: 2083/1994,
  38086. bottom: 68/2151
  38087. }
  38088. },
  38089. },
  38090. [
  38091. {
  38092. name: "Baseline",
  38093. height: math.unit(9, "feet"),
  38094. default: true
  38095. },
  38096. {
  38097. name: "Giant",
  38098. height: math.unit(90, "feet")
  38099. },
  38100. {
  38101. name: "Macro",
  38102. height: math.unit(900, "feet")
  38103. },
  38104. {
  38105. name: "Megamacro",
  38106. height: math.unit(9000, "feet")
  38107. },
  38108. {
  38109. name: "City-Crushing",
  38110. height: math.unit(27000, "feet")
  38111. },
  38112. {
  38113. name: "Mountain-Mashing",
  38114. height: math.unit(90000, "feet")
  38115. },
  38116. {
  38117. name: "Nation Nemesis",
  38118. height: math.unit(9e6, "feet")
  38119. },
  38120. {
  38121. name: "Continent Cracker",
  38122. height: math.unit(27e6, "feet")
  38123. },
  38124. {
  38125. name: "Earth-Eclipsing",
  38126. height: math.unit(2.7e8, "feet")
  38127. },
  38128. {
  38129. name: "Gas Giant Gulper",
  38130. height: math.unit(2.7e9, "feet")
  38131. },
  38132. {
  38133. name: "Sol-Swallowing",
  38134. height: math.unit(9e10, "feet")
  38135. },
  38136. {
  38137. name: "Galaxy Gulper",
  38138. height: math.unit(9, "galaxies")
  38139. },
  38140. {
  38141. name: "Cosmos Churner",
  38142. height: math.unit(9, "universes")
  38143. },
  38144. ]
  38145. ))
  38146. characterMakers.push(() => makeCharacter(
  38147. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38148. {
  38149. front: {
  38150. height: math.unit(160, "cm"),
  38151. weight: math.unit(55, "kg"),
  38152. name: "Front",
  38153. image: {
  38154. source: "./media/characters/tow/front.svg",
  38155. extra: 1751/1722,
  38156. bottom: 74/1825
  38157. }
  38158. },
  38159. },
  38160. [
  38161. {
  38162. name: "Norm",
  38163. height: math.unit(160, "cm")
  38164. },
  38165. {
  38166. name: "Casual",
  38167. height: math.unit(3200, "m"),
  38168. default: true
  38169. },
  38170. {
  38171. name: "Show-Off",
  38172. height: math.unit(160, "km")
  38173. },
  38174. ]
  38175. ))
  38176. characterMakers.push(() => makeCharacter(
  38177. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38178. {
  38179. front: {
  38180. height: math.unit(7 + 11/12, "feet"),
  38181. weight: math.unit(342.8, "lb"),
  38182. name: "Front",
  38183. image: {
  38184. source: "./media/characters/vivian-orca-dragon/front.svg",
  38185. extra: 1890/1865,
  38186. bottom: 28/1918
  38187. }
  38188. },
  38189. },
  38190. [
  38191. {
  38192. name: "Micro",
  38193. height: math.unit(5, "inches")
  38194. },
  38195. {
  38196. name: "Normal",
  38197. height: math.unit(7 + 11/12, "feet"),
  38198. default: true
  38199. },
  38200. {
  38201. name: "Macro",
  38202. height: math.unit(395 + 7/12, "feet")
  38203. },
  38204. ]
  38205. ))
  38206. characterMakers.push(() => makeCharacter(
  38207. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38208. {
  38209. side: {
  38210. height: math.unit(10, "feet"),
  38211. weight: math.unit(1442, "lb"),
  38212. name: "Side",
  38213. image: {
  38214. source: "./media/characters/lotherakon/side.svg",
  38215. extra: 1604/1497,
  38216. bottom: 89/1693
  38217. }
  38218. },
  38219. },
  38220. [
  38221. {
  38222. name: "Mortal Interaction",
  38223. height: math.unit(10, "feet")
  38224. },
  38225. {
  38226. name: "Large",
  38227. height: math.unit(30, "feet"),
  38228. default: true
  38229. },
  38230. {
  38231. name: "Giant",
  38232. height: math.unit(100, "feet")
  38233. },
  38234. {
  38235. name: "Kaiju",
  38236. height: math.unit(300, "feet")
  38237. },
  38238. {
  38239. name: "Macro",
  38240. height: math.unit(1000, "feet")
  38241. },
  38242. {
  38243. name: "Macro+",
  38244. height: math.unit(3000, "feet")
  38245. },
  38246. {
  38247. name: "Megamacro",
  38248. height: math.unit(10000, "feet")
  38249. },
  38250. {
  38251. name: "City-Crushing",
  38252. height: math.unit(30000, "feet")
  38253. },
  38254. {
  38255. name: "Continent Cracker",
  38256. height: math.unit(30e6, "feet")
  38257. },
  38258. {
  38259. name: "Earth Eclipsing",
  38260. height: math.unit(3e8, "feet")
  38261. },
  38262. {
  38263. name: "Gas Giant Gulper",
  38264. height: math.unit(3e9, "feet")
  38265. },
  38266. {
  38267. name: "Sol-Swallowing",
  38268. height: math.unit(1e11, "feet")
  38269. },
  38270. {
  38271. name: "System Swallower",
  38272. height: math.unit(3e14, "feet")
  38273. },
  38274. {
  38275. name: "Galaxy Gulper",
  38276. height: math.unit(10, "galaxies")
  38277. },
  38278. {
  38279. name: "Light Universal",
  38280. height: math.unit(5, "universes")
  38281. },
  38282. {
  38283. name: "Universe Palm",
  38284. height: math.unit(20, "universes")
  38285. },
  38286. {
  38287. name: "Light Multiversal",
  38288. height: math.unit(5, "multiverses")
  38289. },
  38290. {
  38291. name: "Multiverse Palm",
  38292. height: math.unit(20, "multiverses")
  38293. },
  38294. {
  38295. name: "Inferno Incarnate",
  38296. height: math.unit(1e7, "multiverses")
  38297. },
  38298. ]
  38299. ))
  38300. characterMakers.push(() => makeCharacter(
  38301. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38302. {
  38303. front: {
  38304. height: math.unit(8, "feet"),
  38305. weight: math.unit(1200, "lb"),
  38306. name: "Front",
  38307. image: {
  38308. source: "./media/characters/malithee/front.svg",
  38309. extra: 1675/1640,
  38310. bottom: 162/1837
  38311. }
  38312. },
  38313. },
  38314. [
  38315. {
  38316. name: "Mortal Interaction",
  38317. height: math.unit(8, "feet"),
  38318. default: true
  38319. },
  38320. {
  38321. name: "Large",
  38322. height: math.unit(24, "feet")
  38323. },
  38324. {
  38325. name: "Kaiju",
  38326. height: math.unit(240, "feet")
  38327. },
  38328. {
  38329. name: "Megamacro",
  38330. height: math.unit(8000, "feet")
  38331. },
  38332. {
  38333. name: "Continent Cracker",
  38334. height: math.unit(24e6, "feet")
  38335. },
  38336. {
  38337. name: "Earth-Eclipsing",
  38338. height: math.unit(2.4e8, "feet")
  38339. },
  38340. {
  38341. name: "Sol-Swallowing",
  38342. height: math.unit(8e10, "feet")
  38343. },
  38344. {
  38345. name: "Galaxy Gulper",
  38346. height: math.unit(8, "galaxies")
  38347. },
  38348. {
  38349. name: "Light Universal",
  38350. height: math.unit(4, "universes")
  38351. },
  38352. {
  38353. name: "Universe Atoms",
  38354. height: math.unit(1.829e9, "universes")
  38355. },
  38356. {
  38357. name: "Light Multiversal",
  38358. height: math.unit(4, "multiverses")
  38359. },
  38360. {
  38361. name: "Multiverse Atoms",
  38362. height: math.unit(1.829e9, "multiverses")
  38363. },
  38364. {
  38365. name: "Nigh-Omnipresence",
  38366. height: math.unit(8e261, "multiverses")
  38367. },
  38368. ]
  38369. ))
  38370. characterMakers.push(() => makeCharacter(
  38371. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38372. {
  38373. front: {
  38374. height: math.unit(10, "feet"),
  38375. weight: math.unit(1500, "lb"),
  38376. name: "Front",
  38377. image: {
  38378. source: "./media/characters/miles-thestia/front.svg",
  38379. extra: 1812/1727,
  38380. bottom: 86/1898
  38381. }
  38382. },
  38383. back: {
  38384. height: math.unit(10, "feet"),
  38385. weight: math.unit(1500, "lb"),
  38386. name: "Back",
  38387. image: {
  38388. source: "./media/characters/miles-thestia/back.svg",
  38389. extra: 1799/1690,
  38390. bottom: 47/1846
  38391. }
  38392. },
  38393. frontNsfw: {
  38394. height: math.unit(10, "feet"),
  38395. weight: math.unit(1500, "lb"),
  38396. name: "Front (NSFW)",
  38397. image: {
  38398. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38399. extra: 1812/1727,
  38400. bottom: 86/1898
  38401. }
  38402. },
  38403. },
  38404. [
  38405. {
  38406. name: "Mini-Macro",
  38407. height: math.unit(10, "feet"),
  38408. default: true
  38409. },
  38410. ]
  38411. ))
  38412. characterMakers.push(() => makeCharacter(
  38413. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38414. {
  38415. front: {
  38416. height: math.unit(25, "feet"),
  38417. name: "Front",
  38418. image: {
  38419. source: "./media/characters/titan-s-wulf/front.svg",
  38420. extra: 1560/1484,
  38421. bottom: 76/1636
  38422. }
  38423. },
  38424. },
  38425. [
  38426. {
  38427. name: "Smallest",
  38428. height: math.unit(25, "feet"),
  38429. default: true
  38430. },
  38431. {
  38432. name: "Normal",
  38433. height: math.unit(200, "feet")
  38434. },
  38435. {
  38436. name: "Macro",
  38437. height: math.unit(200000, "feet")
  38438. },
  38439. {
  38440. name: "Multiversal Original",
  38441. height: math.unit(10000, "multiverses")
  38442. },
  38443. ]
  38444. ))
  38445. characterMakers.push(() => makeCharacter(
  38446. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38447. {
  38448. front: {
  38449. height: math.unit(8, "feet"),
  38450. weight: math.unit(553, "lb"),
  38451. name: "Front",
  38452. image: {
  38453. source: "./media/characters/tawendeh/front.svg",
  38454. extra: 2365/2268,
  38455. bottom: 83/2448
  38456. }
  38457. },
  38458. frontClothed: {
  38459. height: math.unit(8, "feet"),
  38460. weight: math.unit(553, "lb"),
  38461. name: "Front (Clothed)",
  38462. image: {
  38463. source: "./media/characters/tawendeh/front-clothed.svg",
  38464. extra: 2365/2268,
  38465. bottom: 83/2448
  38466. }
  38467. },
  38468. back: {
  38469. height: math.unit(8, "feet"),
  38470. weight: math.unit(553, "lb"),
  38471. name: "Back",
  38472. image: {
  38473. source: "./media/characters/tawendeh/back.svg",
  38474. extra: 2397/2294,
  38475. bottom: 42/2439
  38476. }
  38477. },
  38478. },
  38479. [
  38480. {
  38481. name: "Mortal Interaction",
  38482. height: math.unit(8, "feet"),
  38483. default: true
  38484. },
  38485. {
  38486. name: "Giant",
  38487. height: math.unit(80, "feet")
  38488. },
  38489. {
  38490. name: "Macro",
  38491. height: math.unit(800, "feet")
  38492. },
  38493. {
  38494. name: "Megamacro",
  38495. height: math.unit(8000, "feet")
  38496. },
  38497. {
  38498. name: "City-Crushing",
  38499. height: math.unit(24000, "feet")
  38500. },
  38501. {
  38502. name: "Mountain-Mashing",
  38503. height: math.unit(80000, "feet")
  38504. },
  38505. {
  38506. name: "Nation Nemesis",
  38507. height: math.unit(8e6, "feet")
  38508. },
  38509. {
  38510. name: "Continent Cracker",
  38511. height: math.unit(24e6, "feet")
  38512. },
  38513. {
  38514. name: "Earth-Eclipsing",
  38515. height: math.unit(2.4e8, "feet")
  38516. },
  38517. {
  38518. name: "Gas Giant Gulper",
  38519. height: math.unit(2.4e9, "feet")
  38520. },
  38521. {
  38522. name: "Sol-Swallowing",
  38523. height: math.unit(8e10, "feet")
  38524. },
  38525. {
  38526. name: "Galaxy Gulper",
  38527. height: math.unit(8, "galaxies")
  38528. },
  38529. {
  38530. name: "Cosmos Churner",
  38531. height: math.unit(8, "universes")
  38532. },
  38533. {
  38534. name: "Omnipotent Otter",
  38535. height: math.unit(80, "universes")
  38536. },
  38537. ]
  38538. ))
  38539. characterMakers.push(() => makeCharacter(
  38540. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38541. {
  38542. front: {
  38543. height: math.unit(2.6, "meters"),
  38544. weight: math.unit(900, "kg"),
  38545. name: "Front",
  38546. image: {
  38547. source: "./media/characters/neesha/front.svg",
  38548. extra: 1803/1653,
  38549. bottom: 128/1931
  38550. }
  38551. },
  38552. },
  38553. [
  38554. {
  38555. name: "Normal",
  38556. height: math.unit(2.6, "meters"),
  38557. default: true
  38558. },
  38559. {
  38560. name: "Macro",
  38561. height: math.unit(50, "meters")
  38562. },
  38563. ]
  38564. ))
  38565. characterMakers.push(() => makeCharacter(
  38566. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38567. {
  38568. front: {
  38569. height: math.unit(5, "feet"),
  38570. weight: math.unit(185, "lb"),
  38571. name: "Front",
  38572. image: {
  38573. source: "./media/characters/kyera/front.svg",
  38574. extra: 1875/1790,
  38575. bottom: 96/1971
  38576. }
  38577. },
  38578. },
  38579. [
  38580. {
  38581. name: "Normal",
  38582. height: math.unit(5, "feet"),
  38583. default: true
  38584. },
  38585. ]
  38586. ))
  38587. characterMakers.push(() => makeCharacter(
  38588. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38589. {
  38590. front: {
  38591. height: math.unit(7 + 6/12, "feet"),
  38592. weight: math.unit(540, "lb"),
  38593. name: "Front",
  38594. image: {
  38595. source: "./media/characters/yuko/front.svg",
  38596. extra: 1282/1222,
  38597. bottom: 101/1383
  38598. }
  38599. },
  38600. frontClothed: {
  38601. height: math.unit(7 + 6/12, "feet"),
  38602. weight: math.unit(540, "lb"),
  38603. name: "Front (Clothed)",
  38604. image: {
  38605. source: "./media/characters/yuko/front-clothed.svg",
  38606. extra: 1282/1222,
  38607. bottom: 101/1383
  38608. }
  38609. },
  38610. },
  38611. [
  38612. {
  38613. name: "Normal",
  38614. height: math.unit(7 + 6/12, "feet"),
  38615. default: true
  38616. },
  38617. {
  38618. name: "Macro",
  38619. height: math.unit(26 + 9/12, "feet")
  38620. },
  38621. {
  38622. name: "Megamacro",
  38623. height: math.unit(300, "feet")
  38624. },
  38625. {
  38626. name: "Gigamacro",
  38627. height: math.unit(5000, "feet")
  38628. },
  38629. {
  38630. name: "Planetary",
  38631. height: math.unit(10000, "miles")
  38632. },
  38633. ]
  38634. ))
  38635. characterMakers.push(() => makeCharacter(
  38636. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38637. {
  38638. front: {
  38639. height: math.unit(8 + 2/12, "feet"),
  38640. weight: math.unit(600, "lb"),
  38641. name: "Front",
  38642. image: {
  38643. source: "./media/characters/deam-nitrel/front.svg",
  38644. extra: 1308/1234,
  38645. bottom: 125/1433
  38646. }
  38647. },
  38648. },
  38649. [
  38650. {
  38651. name: "Normal",
  38652. height: math.unit(8 + 2/12, "feet"),
  38653. default: true
  38654. },
  38655. ]
  38656. ))
  38657. characterMakers.push(() => makeCharacter(
  38658. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38659. {
  38660. front: {
  38661. height: math.unit(6.1, "feet"),
  38662. weight: math.unit(180, "lb"),
  38663. name: "Front",
  38664. image: {
  38665. source: "./media/characters/skyress/front.svg",
  38666. extra: 1045/915,
  38667. bottom: 28/1073
  38668. }
  38669. },
  38670. maw: {
  38671. height: math.unit(1, "feet"),
  38672. name: "Maw",
  38673. image: {
  38674. source: "./media/characters/skyress/maw.svg"
  38675. }
  38676. },
  38677. },
  38678. [
  38679. {
  38680. name: "Normal",
  38681. height: math.unit(6.1, "feet"),
  38682. default: true
  38683. },
  38684. {
  38685. name: "Macro",
  38686. height: math.unit(200, "feet")
  38687. },
  38688. ]
  38689. ))
  38690. characterMakers.push(() => makeCharacter(
  38691. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38692. {
  38693. front: {
  38694. height: math.unit(4 + 2/12, "feet"),
  38695. weight: math.unit(40, "kg"),
  38696. name: "Front",
  38697. image: {
  38698. source: "./media/characters/amethyst-jones/front.svg",
  38699. extra: 1220/1150,
  38700. bottom: 101/1321
  38701. }
  38702. },
  38703. },
  38704. [
  38705. {
  38706. name: "Normal",
  38707. height: math.unit(4 + 2/12, "feet"),
  38708. default: true
  38709. },
  38710. ]
  38711. ))
  38712. characterMakers.push(() => makeCharacter(
  38713. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38714. {
  38715. front: {
  38716. height: math.unit(1.7, "m"),
  38717. weight: math.unit(135, "lb"),
  38718. name: "Front",
  38719. image: {
  38720. source: "./media/characters/jade/front.svg",
  38721. extra: 1818/1767,
  38722. bottom: 32/1850
  38723. }
  38724. },
  38725. back: {
  38726. height: math.unit(1.7, "m"),
  38727. weight: math.unit(135, "lb"),
  38728. name: "Back",
  38729. image: {
  38730. source: "./media/characters/jade/back.svg",
  38731. extra: 1869/1809,
  38732. bottom: 35/1904
  38733. }
  38734. },
  38735. hand: {
  38736. height: math.unit(0.24, "m"),
  38737. name: "Hand",
  38738. image: {
  38739. source: "./media/characters/jade/hand.svg"
  38740. }
  38741. },
  38742. foot: {
  38743. height: math.unit(0.263, "m"),
  38744. name: "Foot",
  38745. image: {
  38746. source: "./media/characters/jade/foot.svg"
  38747. }
  38748. },
  38749. dick: {
  38750. height: math.unit(0.47, "m"),
  38751. name: "Dick",
  38752. image: {
  38753. source: "./media/characters/jade/dick.svg"
  38754. }
  38755. },
  38756. },
  38757. [
  38758. {
  38759. name: "Micro",
  38760. height: math.unit(22, "cm")
  38761. },
  38762. {
  38763. name: "Normal",
  38764. height: math.unit(1.7, "m"),
  38765. default: true
  38766. },
  38767. {
  38768. name: "Macro",
  38769. height: math.unit(152, "m")
  38770. },
  38771. ]
  38772. ))
  38773. characterMakers.push(() => makeCharacter(
  38774. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38775. {
  38776. front: {
  38777. height: math.unit(100, "miles"),
  38778. weight: math.unit(20000, "tons"),
  38779. name: "Front",
  38780. image: {
  38781. source: "./media/characters/cookie/front.svg",
  38782. extra: 1125/1070,
  38783. bottom: 30/1155
  38784. }
  38785. },
  38786. },
  38787. [
  38788. {
  38789. name: "Big",
  38790. height: math.unit(50, "feet")
  38791. },
  38792. {
  38793. name: "Macro",
  38794. height: math.unit(100, "miles"),
  38795. default: true
  38796. },
  38797. {
  38798. name: "Megamacro",
  38799. height: math.unit(90000, "miles")
  38800. },
  38801. ]
  38802. ))
  38803. characterMakers.push(() => makeCharacter(
  38804. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  38805. {
  38806. front: {
  38807. height: math.unit(6, "feet"),
  38808. weight: math.unit(145, "lb"),
  38809. name: "Front",
  38810. image: {
  38811. source: "./media/characters/farzian/front.svg",
  38812. extra: 1902/1693,
  38813. bottom: 108/2010
  38814. }
  38815. },
  38816. },
  38817. [
  38818. {
  38819. name: "Macro",
  38820. height: math.unit(500, "feet"),
  38821. default: true
  38822. },
  38823. ]
  38824. ))
  38825. characterMakers.push(() => makeCharacter(
  38826. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  38827. {
  38828. front: {
  38829. height: math.unit(3 + 6/12, "feet"),
  38830. weight: math.unit(50, "lb"),
  38831. name: "Front",
  38832. image: {
  38833. source: "./media/characters/kimberly-tilson/front.svg",
  38834. extra: 1400/1322,
  38835. bottom: 36/1436
  38836. }
  38837. },
  38838. back: {
  38839. height: math.unit(3 + 6/12, "feet"),
  38840. weight: math.unit(50, "lb"),
  38841. name: "Back",
  38842. image: {
  38843. source: "./media/characters/kimberly-tilson/back.svg",
  38844. extra: 1370/1307,
  38845. bottom: 20/1390
  38846. }
  38847. },
  38848. },
  38849. [
  38850. {
  38851. name: "Normal",
  38852. height: math.unit(3 + 6/12, "feet"),
  38853. default: true
  38854. },
  38855. ]
  38856. ))
  38857. characterMakers.push(() => makeCharacter(
  38858. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  38859. {
  38860. front: {
  38861. height: math.unit(1148, "feet"),
  38862. weight: math.unit(34057, "lb"),
  38863. name: "Front",
  38864. image: {
  38865. source: "./media/characters/harthos/front.svg",
  38866. extra: 1391/1339,
  38867. bottom: 13/1404
  38868. }
  38869. },
  38870. },
  38871. [
  38872. {
  38873. name: "Macro",
  38874. height: math.unit(1148, "feet"),
  38875. default: true
  38876. },
  38877. ]
  38878. ))
  38879. characterMakers.push(() => makeCharacter(
  38880. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  38881. {
  38882. front: {
  38883. height: math.unit(15, "feet"),
  38884. name: "Front",
  38885. image: {
  38886. source: "./media/characters/hypatia/front.svg",
  38887. extra: 1653/1591,
  38888. bottom: 79/1732
  38889. }
  38890. },
  38891. },
  38892. [
  38893. {
  38894. name: "Normal",
  38895. height: math.unit(15, "feet")
  38896. },
  38897. {
  38898. name: "Small",
  38899. height: math.unit(300, "feet")
  38900. },
  38901. {
  38902. name: "Macro",
  38903. height: math.unit(2500, "feet"),
  38904. default: true
  38905. },
  38906. {
  38907. name: "Mega Macro",
  38908. height: math.unit(1500, "miles")
  38909. },
  38910. {
  38911. name: "Giga Macro",
  38912. height: math.unit(1.5e6, "miles")
  38913. },
  38914. ]
  38915. ))
  38916. characterMakers.push(() => makeCharacter(
  38917. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  38918. {
  38919. front: {
  38920. height: math.unit(6, "feet"),
  38921. weight: math.unit(200, "lb"),
  38922. name: "Front",
  38923. image: {
  38924. source: "./media/characters/wulver/front.svg",
  38925. extra: 1724/1632,
  38926. bottom: 130/1854
  38927. }
  38928. },
  38929. frontNsfw: {
  38930. height: math.unit(6, "feet"),
  38931. weight: math.unit(200, "lb"),
  38932. name: "Front (NSFW)",
  38933. image: {
  38934. source: "./media/characters/wulver/front-nsfw.svg",
  38935. extra: 1724/1632,
  38936. bottom: 130/1854
  38937. }
  38938. },
  38939. },
  38940. [
  38941. {
  38942. name: "Human-Sized",
  38943. height: math.unit(6, "feet")
  38944. },
  38945. {
  38946. name: "Normal",
  38947. height: math.unit(4, "meters"),
  38948. default: true
  38949. },
  38950. {
  38951. name: "Large",
  38952. height: math.unit(6, "m")
  38953. },
  38954. ]
  38955. ))
  38956. characterMakers.push(() => makeCharacter(
  38957. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  38958. {
  38959. front: {
  38960. height: math.unit(7, "feet"),
  38961. name: "Front",
  38962. image: {
  38963. source: "./media/characters/maru/front.svg",
  38964. extra: 1595/1570,
  38965. bottom: 0/1595
  38966. }
  38967. },
  38968. },
  38969. [
  38970. {
  38971. name: "Normal",
  38972. height: math.unit(7, "feet"),
  38973. default: true
  38974. },
  38975. {
  38976. name: "Macro",
  38977. height: math.unit(700, "feet")
  38978. },
  38979. {
  38980. name: "Mega Macro",
  38981. height: math.unit(25, "miles")
  38982. },
  38983. ]
  38984. ))
  38985. characterMakers.push(() => makeCharacter(
  38986. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  38987. {
  38988. front: {
  38989. height: math.unit(6, "feet"),
  38990. weight: math.unit(170, "lb"),
  38991. name: "Front",
  38992. image: {
  38993. source: "./media/characters/xenon/front.svg",
  38994. extra: 1376/1305,
  38995. bottom: 56/1432
  38996. }
  38997. },
  38998. back: {
  38999. height: math.unit(6, "feet"),
  39000. weight: math.unit(170, "lb"),
  39001. name: "Back",
  39002. image: {
  39003. source: "./media/characters/xenon/back.svg",
  39004. extra: 1328/1259,
  39005. bottom: 95/1423
  39006. }
  39007. },
  39008. maw: {
  39009. height: math.unit(0.52, "feet"),
  39010. name: "Maw",
  39011. image: {
  39012. source: "./media/characters/xenon/maw.svg"
  39013. }
  39014. },
  39015. hand: {
  39016. height: math.unit(0.82, "feet"),
  39017. name: "Hand",
  39018. image: {
  39019. source: "./media/characters/xenon/hand.svg"
  39020. }
  39021. },
  39022. foot: {
  39023. height: math.unit(1.13, "feet"),
  39024. name: "Foot",
  39025. image: {
  39026. source: "./media/characters/xenon/foot.svg"
  39027. }
  39028. },
  39029. },
  39030. [
  39031. {
  39032. name: "Micro",
  39033. height: math.unit(0.8, "inches")
  39034. },
  39035. {
  39036. name: "Normal",
  39037. height: math.unit(6, "feet")
  39038. },
  39039. {
  39040. name: "Macro",
  39041. height: math.unit(50, "feet"),
  39042. default: true
  39043. },
  39044. {
  39045. name: "Macro+",
  39046. height: math.unit(250, "feet")
  39047. },
  39048. {
  39049. name: "Megamacro",
  39050. height: math.unit(1500, "feet")
  39051. },
  39052. ]
  39053. ))
  39054. characterMakers.push(() => makeCharacter(
  39055. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39056. {
  39057. front: {
  39058. height: math.unit(7 + 5/12, "feet"),
  39059. name: "Front",
  39060. image: {
  39061. source: "./media/characters/zane/front.svg",
  39062. extra: 1260/1203,
  39063. bottom: 94/1354
  39064. }
  39065. },
  39066. back: {
  39067. height: math.unit(5.05, "feet"),
  39068. name: "Back",
  39069. image: {
  39070. source: "./media/characters/zane/back.svg",
  39071. extra: 893/829,
  39072. bottom: 30/923
  39073. }
  39074. },
  39075. werewolf: {
  39076. height: math.unit(11, "feet"),
  39077. name: "Werewolf",
  39078. image: {
  39079. source: "./media/characters/zane/werewolf.svg",
  39080. extra: 1383/1323,
  39081. bottom: 89/1472
  39082. }
  39083. },
  39084. foot: {
  39085. height: math.unit(1.46, "feet"),
  39086. name: "Foot",
  39087. image: {
  39088. source: "./media/characters/zane/foot.svg"
  39089. }
  39090. },
  39091. footFront: {
  39092. height: math.unit(0.784, "feet"),
  39093. name: "Foot (Front)",
  39094. image: {
  39095. source: "./media/characters/zane/foot-front.svg"
  39096. }
  39097. },
  39098. dick: {
  39099. height: math.unit(1.95, "feet"),
  39100. name: "Dick",
  39101. image: {
  39102. source: "./media/characters/zane/dick.svg"
  39103. }
  39104. },
  39105. dickWerewolf: {
  39106. height: math.unit(3.77, "feet"),
  39107. name: "Dick (Werewolf)",
  39108. image: {
  39109. source: "./media/characters/zane/dick.svg"
  39110. }
  39111. },
  39112. },
  39113. [
  39114. {
  39115. name: "Normal",
  39116. height: math.unit(7 + 5/12, "feet"),
  39117. default: true
  39118. },
  39119. ]
  39120. ))
  39121. characterMakers.push(() => makeCharacter(
  39122. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39123. {
  39124. front: {
  39125. height: math.unit(6 + 2/12, "feet"),
  39126. weight: math.unit(284, "lb"),
  39127. name: "Front",
  39128. image: {
  39129. source: "./media/characters/benni-desparque/front.svg",
  39130. extra: 1353/1126,
  39131. bottom: 69/1422
  39132. }
  39133. },
  39134. },
  39135. [
  39136. {
  39137. name: "Civilian",
  39138. height: math.unit(6 + 2/12, "feet")
  39139. },
  39140. {
  39141. name: "Normal",
  39142. height: math.unit(98, "feet"),
  39143. default: true
  39144. },
  39145. {
  39146. name: "Kaiju Fighter",
  39147. height: math.unit(268, "feet")
  39148. },
  39149. ]
  39150. ))
  39151. characterMakers.push(() => makeCharacter(
  39152. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39153. {
  39154. front: {
  39155. height: math.unit(5, "feet"),
  39156. weight: math.unit(105, "lb"),
  39157. name: "Front",
  39158. image: {
  39159. source: "./media/characters/maxine/front.svg",
  39160. extra: 1386/1250,
  39161. bottom: 71/1457
  39162. }
  39163. },
  39164. },
  39165. [
  39166. {
  39167. name: "Normal",
  39168. height: math.unit(5, "feet"),
  39169. default: true
  39170. },
  39171. ]
  39172. ))
  39173. characterMakers.push(() => makeCharacter(
  39174. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39175. {
  39176. front: {
  39177. height: math.unit(11 + 7/12, "feet"),
  39178. weight: math.unit(9576, "lb"),
  39179. name: "Front",
  39180. image: {
  39181. source: "./media/characters/scaly/front.svg",
  39182. extra: 888/867,
  39183. bottom: 36/924
  39184. }
  39185. },
  39186. },
  39187. [
  39188. {
  39189. name: "Normal",
  39190. height: math.unit(11 + 7/12, "feet"),
  39191. default: true
  39192. },
  39193. ]
  39194. ))
  39195. characterMakers.push(() => makeCharacter(
  39196. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39197. {
  39198. front: {
  39199. height: math.unit(9, "inches"),
  39200. name: "Front",
  39201. image: {
  39202. source: "./media/characters/saelria/front.svg",
  39203. extra: 662/621,
  39204. bottom: 12/674
  39205. }
  39206. },
  39207. },
  39208. [
  39209. {
  39210. name: "Tiny",
  39211. height: math.unit(9, "inches"),
  39212. default: true
  39213. },
  39214. ]
  39215. ))
  39216. characterMakers.push(() => makeCharacter(
  39217. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39218. {
  39219. front: {
  39220. height: math.unit(80, "meters"),
  39221. weight: math.unit(7000, "tonnes"),
  39222. name: "Front",
  39223. image: {
  39224. source: "./media/characters/tef/front.svg",
  39225. extra: 2036/1991,
  39226. bottom: 54/2090
  39227. }
  39228. },
  39229. back: {
  39230. height: math.unit(80, "meters"),
  39231. weight: math.unit(7000, "tonnes"),
  39232. name: "Back",
  39233. image: {
  39234. source: "./media/characters/tef/back.svg",
  39235. extra: 2036/1991,
  39236. bottom: 54/2090
  39237. }
  39238. },
  39239. },
  39240. [
  39241. {
  39242. name: "Macro",
  39243. height: math.unit(80, "meters"),
  39244. default: true
  39245. },
  39246. ]
  39247. ))
  39248. characterMakers.push(() => makeCharacter(
  39249. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39250. {
  39251. front: {
  39252. height: math.unit(13, "feet"),
  39253. weight: math.unit(6, "tons"),
  39254. name: "Front",
  39255. image: {
  39256. source: "./media/characters/rover/front.svg",
  39257. extra: 1233/1156,
  39258. bottom: 50/1283
  39259. }
  39260. },
  39261. back: {
  39262. height: math.unit(13, "feet"),
  39263. weight: math.unit(6, "tons"),
  39264. name: "Back",
  39265. image: {
  39266. source: "./media/characters/rover/back.svg",
  39267. extra: 1327/1258,
  39268. bottom: 39/1366
  39269. }
  39270. },
  39271. },
  39272. [
  39273. {
  39274. name: "Normal",
  39275. height: math.unit(13, "feet"),
  39276. default: true
  39277. },
  39278. {
  39279. name: "Macro",
  39280. height: math.unit(1300, "feet")
  39281. },
  39282. {
  39283. name: "Megamacro",
  39284. height: math.unit(1300, "miles")
  39285. },
  39286. {
  39287. name: "Gigamacro",
  39288. height: math.unit(1300000, "miles")
  39289. },
  39290. ]
  39291. ))
  39292. characterMakers.push(() => makeCharacter(
  39293. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39294. {
  39295. front: {
  39296. height: math.unit(6, "feet"),
  39297. weight: math.unit(150, "lb"),
  39298. name: "Front",
  39299. image: {
  39300. source: "./media/characters/ariz/front.svg",
  39301. extra: 1401/1346,
  39302. bottom: 5/1406
  39303. }
  39304. },
  39305. },
  39306. [
  39307. {
  39308. name: "Normal",
  39309. height: math.unit(10, "feet"),
  39310. default: true
  39311. },
  39312. ]
  39313. ))
  39314. characterMakers.push(() => makeCharacter(
  39315. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39316. {
  39317. front: {
  39318. height: math.unit(6, "feet"),
  39319. weight: math.unit(140, "lb"),
  39320. name: "Front",
  39321. image: {
  39322. source: "./media/characters/sigrun/front.svg",
  39323. extra: 1418/1359,
  39324. bottom: 27/1445
  39325. }
  39326. },
  39327. },
  39328. [
  39329. {
  39330. name: "Macro",
  39331. height: math.unit(35, "feet"),
  39332. default: true
  39333. },
  39334. ]
  39335. ))
  39336. characterMakers.push(() => makeCharacter(
  39337. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39338. {
  39339. front: {
  39340. height: math.unit(6, "feet"),
  39341. weight: math.unit(150, "lb"),
  39342. name: "Front",
  39343. image: {
  39344. source: "./media/characters/numin/front.svg",
  39345. extra: 1433/1388,
  39346. bottom: 12/1445
  39347. }
  39348. },
  39349. },
  39350. [
  39351. {
  39352. name: "Macro",
  39353. height: math.unit(21.5, "km"),
  39354. default: true
  39355. },
  39356. ]
  39357. ))
  39358. characterMakers.push(() => makeCharacter(
  39359. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39360. {
  39361. front: {
  39362. height: math.unit(6, "feet"),
  39363. weight: math.unit(463, "lb"),
  39364. name: "Front",
  39365. image: {
  39366. source: "./media/characters/melwa/front.svg",
  39367. extra: 1307/1248,
  39368. bottom: 93/1400
  39369. }
  39370. },
  39371. },
  39372. [
  39373. {
  39374. name: "Macro",
  39375. height: math.unit(50, "meters"),
  39376. default: true
  39377. },
  39378. ]
  39379. ))
  39380. characterMakers.push(() => makeCharacter(
  39381. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39382. {
  39383. front: {
  39384. height: math.unit(325, "feet"),
  39385. name: "Front",
  39386. image: {
  39387. source: "./media/characters/zorkaiju/front.svg",
  39388. extra: 1955/1814,
  39389. bottom: 40/1995
  39390. }
  39391. },
  39392. frontExtended: {
  39393. height: math.unit(325, "feet"),
  39394. name: "Front (Extended)",
  39395. image: {
  39396. source: "./media/characters/zorkaiju/front-extended.svg",
  39397. extra: 1955/1814,
  39398. bottom: 40/1995
  39399. }
  39400. },
  39401. side: {
  39402. height: math.unit(325, "feet"),
  39403. name: "Side",
  39404. image: {
  39405. source: "./media/characters/zorkaiju/side.svg",
  39406. extra: 1495/1396,
  39407. bottom: 17/1512
  39408. }
  39409. },
  39410. sideExtended: {
  39411. height: math.unit(325, "feet"),
  39412. name: "Side (Extended)",
  39413. image: {
  39414. source: "./media/characters/zorkaiju/side-extended.svg",
  39415. extra: 1495/1396,
  39416. bottom: 17/1512
  39417. }
  39418. },
  39419. back: {
  39420. height: math.unit(325, "feet"),
  39421. name: "Back",
  39422. image: {
  39423. source: "./media/characters/zorkaiju/back.svg",
  39424. extra: 1959/1821,
  39425. bottom: 31/1990
  39426. }
  39427. },
  39428. backExtended: {
  39429. height: math.unit(325, "feet"),
  39430. name: "Back (Extended)",
  39431. image: {
  39432. source: "./media/characters/zorkaiju/back-extended.svg",
  39433. extra: 1959/1821,
  39434. bottom: 31/1990
  39435. }
  39436. },
  39437. hand: {
  39438. height: math.unit(58.4, "feet"),
  39439. name: "Hand",
  39440. image: {
  39441. source: "./media/characters/zorkaiju/hand.svg"
  39442. }
  39443. },
  39444. handExtended: {
  39445. height: math.unit(61.4, "feet"),
  39446. name: "Hand (Extended)",
  39447. image: {
  39448. source: "./media/characters/zorkaiju/hand-extended.svg"
  39449. }
  39450. },
  39451. foot: {
  39452. height: math.unit(95, "feet"),
  39453. name: "Foot",
  39454. image: {
  39455. source: "./media/characters/zorkaiju/foot.svg"
  39456. }
  39457. },
  39458. leftArm: {
  39459. height: math.unit(59, "feet"),
  39460. name: "Left Arm",
  39461. image: {
  39462. source: "./media/characters/zorkaiju/left-arm.svg"
  39463. }
  39464. },
  39465. rightArm: {
  39466. height: math.unit(59, "feet"),
  39467. name: "Right Arm",
  39468. image: {
  39469. source: "./media/characters/zorkaiju/right-arm.svg"
  39470. }
  39471. },
  39472. tail: {
  39473. height: math.unit(104, "feet"),
  39474. name: "Tail",
  39475. image: {
  39476. source: "./media/characters/zorkaiju/tail.svg"
  39477. }
  39478. },
  39479. tailExtended: {
  39480. height: math.unit(104, "feet"),
  39481. name: "Tail (Extended)",
  39482. image: {
  39483. source: "./media/characters/zorkaiju/tail-extended.svg"
  39484. }
  39485. },
  39486. tailBottom: {
  39487. height: math.unit(104, "feet"),
  39488. name: "Tail Bottom",
  39489. image: {
  39490. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39491. }
  39492. },
  39493. crystal: {
  39494. height: math.unit(27.54, "feet"),
  39495. name: "Crystal",
  39496. image: {
  39497. source: "./media/characters/zorkaiju/crystal.svg"
  39498. }
  39499. },
  39500. },
  39501. [
  39502. {
  39503. name: "Kaiju",
  39504. height: math.unit(325, "feet"),
  39505. default: true
  39506. },
  39507. ]
  39508. ))
  39509. characterMakers.push(() => makeCharacter(
  39510. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39511. {
  39512. front: {
  39513. height: math.unit(6 + 1/12, "feet"),
  39514. weight: math.unit(115, "lb"),
  39515. name: "Front",
  39516. image: {
  39517. source: "./media/characters/bailey-belfry/front.svg",
  39518. extra: 1240/1121,
  39519. bottom: 101/1341
  39520. }
  39521. },
  39522. },
  39523. [
  39524. {
  39525. name: "Normal",
  39526. height: math.unit(6 + 1/12, "feet"),
  39527. default: true
  39528. },
  39529. ]
  39530. ))
  39531. characterMakers.push(() => makeCharacter(
  39532. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39533. {
  39534. side: {
  39535. height: math.unit(4, "meters"),
  39536. weight: math.unit(250, "kg"),
  39537. name: "Side",
  39538. image: {
  39539. source: "./media/characters/blacky/side.svg",
  39540. extra: 1027/919,
  39541. bottom: 43/1070
  39542. }
  39543. },
  39544. maw: {
  39545. height: math.unit(1, "meters"),
  39546. name: "Maw",
  39547. image: {
  39548. source: "./media/characters/blacky/maw.svg"
  39549. }
  39550. },
  39551. paw: {
  39552. height: math.unit(1, "meters"),
  39553. name: "Paw",
  39554. image: {
  39555. source: "./media/characters/blacky/paw.svg"
  39556. }
  39557. },
  39558. },
  39559. [
  39560. {
  39561. name: "Normal",
  39562. height: math.unit(4, "meters"),
  39563. default: true
  39564. },
  39565. ]
  39566. ))
  39567. characterMakers.push(() => makeCharacter(
  39568. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39569. {
  39570. front: {
  39571. height: math.unit(170, "cm"),
  39572. weight: math.unit(66, "kg"),
  39573. name: "Front",
  39574. image: {
  39575. source: "./media/characters/thux-ei/front.svg",
  39576. extra: 1109/1011,
  39577. bottom: 8/1117
  39578. }
  39579. },
  39580. },
  39581. [
  39582. {
  39583. name: "Normal",
  39584. height: math.unit(170, "cm"),
  39585. default: true
  39586. },
  39587. ]
  39588. ))
  39589. characterMakers.push(() => makeCharacter(
  39590. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39591. {
  39592. front: {
  39593. height: math.unit(5, "feet"),
  39594. weight: math.unit(120, "lb"),
  39595. name: "Front",
  39596. image: {
  39597. source: "./media/characters/roxanne-voltaire/front.svg",
  39598. extra: 1901/1779,
  39599. bottom: 53/1954
  39600. }
  39601. },
  39602. },
  39603. [
  39604. {
  39605. name: "Normal",
  39606. height: math.unit(5, "feet"),
  39607. default: true
  39608. },
  39609. {
  39610. name: "Giant",
  39611. height: math.unit(50, "feet")
  39612. },
  39613. {
  39614. name: "Titan",
  39615. height: math.unit(500, "feet")
  39616. },
  39617. {
  39618. name: "Macro",
  39619. height: math.unit(5000, "feet")
  39620. },
  39621. {
  39622. name: "Megamacro",
  39623. height: math.unit(50000, "feet")
  39624. },
  39625. {
  39626. name: "Gigamacro",
  39627. height: math.unit(500000, "feet")
  39628. },
  39629. {
  39630. name: "Teramacro",
  39631. height: math.unit(5e6, "feet")
  39632. },
  39633. ]
  39634. ))
  39635. characterMakers.push(() => makeCharacter(
  39636. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39637. {
  39638. front: {
  39639. height: math.unit(6 + 2/12, "feet"),
  39640. name: "Front",
  39641. image: {
  39642. source: "./media/characters/squeaks/front.svg",
  39643. extra: 1823/1768,
  39644. bottom: 138/1961
  39645. }
  39646. },
  39647. },
  39648. [
  39649. {
  39650. name: "Micro",
  39651. height: math.unit(0.5, "inches")
  39652. },
  39653. {
  39654. name: "Normal",
  39655. height: math.unit(6 + 2/12, "feet"),
  39656. default: true
  39657. },
  39658. {
  39659. name: "Macro",
  39660. height: math.unit(600, "feet")
  39661. },
  39662. ]
  39663. ))
  39664. characterMakers.push(() => makeCharacter(
  39665. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39666. {
  39667. front: {
  39668. height: math.unit(1.72, "meters"),
  39669. name: "Front",
  39670. image: {
  39671. source: "./media/characters/archinger/front.svg",
  39672. extra: 1861/1675,
  39673. bottom: 125/1986
  39674. }
  39675. },
  39676. back: {
  39677. height: math.unit(1.72, "meters"),
  39678. name: "Back",
  39679. image: {
  39680. source: "./media/characters/archinger/back.svg",
  39681. extra: 1844/1701,
  39682. bottom: 104/1948
  39683. }
  39684. },
  39685. cock: {
  39686. height: math.unit(0.59, "feet"),
  39687. name: "Cock",
  39688. image: {
  39689. source: "./media/characters/archinger/cock.svg"
  39690. }
  39691. },
  39692. },
  39693. [
  39694. {
  39695. name: "Normal",
  39696. height: math.unit(1.72, "meters"),
  39697. default: true
  39698. },
  39699. {
  39700. name: "Macro",
  39701. height: math.unit(84, "meters")
  39702. },
  39703. {
  39704. name: "Macro+",
  39705. height: math.unit(112, "meters")
  39706. },
  39707. {
  39708. name: "Macro++",
  39709. height: math.unit(960, "meters")
  39710. },
  39711. {
  39712. name: "Macro+++",
  39713. height: math.unit(4, "km")
  39714. },
  39715. {
  39716. name: "Macro++++",
  39717. height: math.unit(48, "km")
  39718. },
  39719. {
  39720. name: "Macro+++++",
  39721. height: math.unit(4500, "km")
  39722. },
  39723. ]
  39724. ))
  39725. characterMakers.push(() => makeCharacter(
  39726. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  39727. {
  39728. front: {
  39729. height: math.unit(5 + 5/12, "feet"),
  39730. name: "Front",
  39731. image: {
  39732. source: "./media/characters/alsnapz/front.svg",
  39733. extra: 1157/1065,
  39734. bottom: 42/1199
  39735. }
  39736. },
  39737. },
  39738. [
  39739. {
  39740. name: "Normal",
  39741. height: math.unit(5 + 5/12, "feet"),
  39742. default: true
  39743. },
  39744. ]
  39745. ))
  39746. characterMakers.push(() => makeCharacter(
  39747. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  39748. {
  39749. side: {
  39750. height: math.unit(3.2, "earths"),
  39751. name: "Side",
  39752. image: {
  39753. source: "./media/characters/mag/side.svg",
  39754. extra: 1331/1008,
  39755. bottom: 52/1383
  39756. }
  39757. },
  39758. wing: {
  39759. height: math.unit(1.94, "earths"),
  39760. name: "Wing",
  39761. image: {
  39762. source: "./media/characters/mag/wing.svg"
  39763. }
  39764. },
  39765. dick: {
  39766. height: math.unit(1.8, "earths"),
  39767. name: "Dick",
  39768. image: {
  39769. source: "./media/characters/mag/dick.svg"
  39770. }
  39771. },
  39772. ass: {
  39773. height: math.unit(1.33, "earths"),
  39774. name: "Ass",
  39775. image: {
  39776. source: "./media/characters/mag/ass.svg"
  39777. }
  39778. },
  39779. head: {
  39780. height: math.unit(1.1, "earths"),
  39781. name: "Head",
  39782. image: {
  39783. source: "./media/characters/mag/head.svg"
  39784. }
  39785. },
  39786. maw: {
  39787. height: math.unit(1.62, "earths"),
  39788. name: "Maw",
  39789. image: {
  39790. source: "./media/characters/mag/maw.svg"
  39791. }
  39792. },
  39793. },
  39794. [
  39795. {
  39796. name: "Small",
  39797. height: math.unit(162, "feet")
  39798. },
  39799. {
  39800. name: "Normal",
  39801. height: math.unit(3.2, "earths"),
  39802. default: true
  39803. },
  39804. ]
  39805. ))
  39806. characterMakers.push(() => makeCharacter(
  39807. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  39808. {
  39809. front: {
  39810. height: math.unit(512, "feet"),
  39811. weight: math.unit(63509, "tonnes"),
  39812. name: "Front",
  39813. image: {
  39814. source: "./media/characters/vorrel-harroc/front.svg",
  39815. extra: 1075/1063,
  39816. bottom: 62/1137
  39817. }
  39818. },
  39819. },
  39820. [
  39821. {
  39822. name: "Normal",
  39823. height: math.unit(10, "feet")
  39824. },
  39825. {
  39826. name: "Macro",
  39827. height: math.unit(512, "feet"),
  39828. default: true
  39829. },
  39830. {
  39831. name: "Megamacro",
  39832. height: math.unit(256, "miles")
  39833. },
  39834. {
  39835. name: "Gigamacro",
  39836. height: math.unit(4096, "miles")
  39837. },
  39838. ]
  39839. ))
  39840. characterMakers.push(() => makeCharacter(
  39841. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  39842. {
  39843. side: {
  39844. height: math.unit(50, "feet"),
  39845. name: "Side",
  39846. image: {
  39847. source: "./media/characters/froimar/side.svg",
  39848. extra: 855/638,
  39849. bottom: 99/954
  39850. }
  39851. },
  39852. },
  39853. [
  39854. {
  39855. name: "Macro",
  39856. height: math.unit(50, "feet"),
  39857. default: true
  39858. },
  39859. ]
  39860. ))
  39861. characterMakers.push(() => makeCharacter(
  39862. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  39863. {
  39864. front: {
  39865. height: math.unit(210, "miles"),
  39866. name: "Front",
  39867. image: {
  39868. source: "./media/characters/timothy/front.svg",
  39869. extra: 1007/943,
  39870. bottom: 62/1069
  39871. }
  39872. },
  39873. frontSkirt: {
  39874. height: math.unit(210, "miles"),
  39875. name: "Front (Skirt)",
  39876. image: {
  39877. source: "./media/characters/timothy/front-skirt.svg",
  39878. extra: 1007/943,
  39879. bottom: 62/1069
  39880. }
  39881. },
  39882. frontCoat: {
  39883. height: math.unit(210, "miles"),
  39884. name: "Front (Coat)",
  39885. image: {
  39886. source: "./media/characters/timothy/front-coat.svg",
  39887. extra: 1007/943,
  39888. bottom: 62/1069
  39889. }
  39890. },
  39891. },
  39892. [
  39893. {
  39894. name: "Macro",
  39895. height: math.unit(210, "miles"),
  39896. default: true
  39897. },
  39898. {
  39899. name: "Megamacro",
  39900. height: math.unit(210000, "miles")
  39901. },
  39902. ]
  39903. ))
  39904. characterMakers.push(() => makeCharacter(
  39905. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  39906. {
  39907. front: {
  39908. height: math.unit(188, "feet"),
  39909. name: "Front",
  39910. image: {
  39911. source: "./media/characters/pyotr/front.svg",
  39912. extra: 1912/1826,
  39913. bottom: 18/1930
  39914. }
  39915. },
  39916. },
  39917. [
  39918. {
  39919. name: "Macro",
  39920. height: math.unit(188, "feet"),
  39921. default: true
  39922. },
  39923. {
  39924. name: "Megamacro",
  39925. height: math.unit(8, "miles")
  39926. },
  39927. ]
  39928. ))
  39929. characterMakers.push(() => makeCharacter(
  39930. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  39931. {
  39932. side: {
  39933. height: math.unit(10, "feet"),
  39934. weight: math.unit(4500, "lb"),
  39935. name: "Side",
  39936. image: {
  39937. source: "./media/characters/ackart/side.svg",
  39938. extra: 1776/1668,
  39939. bottom: 116/1892
  39940. }
  39941. },
  39942. },
  39943. [
  39944. {
  39945. name: "Normal",
  39946. height: math.unit(10, "feet"),
  39947. default: true
  39948. },
  39949. ]
  39950. ))
  39951. characterMakers.push(() => makeCharacter(
  39952. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  39953. {
  39954. side: {
  39955. height: math.unit(21, "feet"),
  39956. name: "Side",
  39957. image: {
  39958. source: "./media/characters/nolow/side.svg",
  39959. extra: 1484/1434,
  39960. bottom: 85/1569
  39961. }
  39962. },
  39963. sideErect: {
  39964. height: math.unit(21, "feet"),
  39965. name: "Side-erect",
  39966. image: {
  39967. source: "./media/characters/nolow/side-erect.svg",
  39968. extra: 1484/1434,
  39969. bottom: 85/1569
  39970. }
  39971. },
  39972. },
  39973. [
  39974. {
  39975. name: "Regular",
  39976. height: math.unit(12, "feet")
  39977. },
  39978. {
  39979. name: "Big Chee",
  39980. height: math.unit(21, "feet"),
  39981. default: true
  39982. },
  39983. ]
  39984. ))
  39985. characterMakers.push(() => makeCharacter(
  39986. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  39987. {
  39988. front: {
  39989. height: math.unit(7, "feet"),
  39990. weight: math.unit(250, "lb"),
  39991. name: "Front",
  39992. image: {
  39993. source: "./media/characters/nines/front.svg",
  39994. extra: 1741/1607,
  39995. bottom: 41/1782
  39996. }
  39997. },
  39998. side: {
  39999. height: math.unit(7, "feet"),
  40000. weight: math.unit(250, "lb"),
  40001. name: "Side",
  40002. image: {
  40003. source: "./media/characters/nines/side.svg",
  40004. extra: 1854/1735,
  40005. bottom: 93/1947
  40006. }
  40007. },
  40008. back: {
  40009. height: math.unit(7, "feet"),
  40010. weight: math.unit(250, "lb"),
  40011. name: "Back",
  40012. image: {
  40013. source: "./media/characters/nines/back.svg",
  40014. extra: 1748/1615,
  40015. bottom: 20/1768
  40016. }
  40017. },
  40018. },
  40019. [
  40020. {
  40021. name: "Megamacro",
  40022. height: math.unit(99, "km"),
  40023. default: true
  40024. },
  40025. ]
  40026. ))
  40027. characterMakers.push(() => makeCharacter(
  40028. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40029. {
  40030. front: {
  40031. height: math.unit(5 + 10/12, "feet"),
  40032. weight: math.unit(210, "lb"),
  40033. name: "Front",
  40034. image: {
  40035. source: "./media/characters/zenith/front.svg",
  40036. extra: 1531/1452,
  40037. bottom: 198/1729
  40038. }
  40039. },
  40040. back: {
  40041. height: math.unit(5 + 10/12, "feet"),
  40042. weight: math.unit(210, "lb"),
  40043. name: "Back",
  40044. image: {
  40045. source: "./media/characters/zenith/back.svg",
  40046. extra: 1571/1487,
  40047. bottom: 75/1646
  40048. }
  40049. },
  40050. },
  40051. [
  40052. {
  40053. name: "Normal",
  40054. height: math.unit(5 + 10/12, "feet"),
  40055. default: true
  40056. }
  40057. ]
  40058. ))
  40059. characterMakers.push(() => makeCharacter(
  40060. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40061. {
  40062. front: {
  40063. height: math.unit(4, "feet"),
  40064. weight: math.unit(60, "lb"),
  40065. name: "Front",
  40066. image: {
  40067. source: "./media/characters/jasper/front.svg",
  40068. extra: 1450/1379,
  40069. bottom: 19/1469
  40070. }
  40071. },
  40072. },
  40073. [
  40074. {
  40075. name: "Normal",
  40076. height: math.unit(4, "feet"),
  40077. default: true
  40078. },
  40079. ]
  40080. ))
  40081. characterMakers.push(() => makeCharacter(
  40082. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40083. {
  40084. front: {
  40085. height: math.unit(6 + 5/12, "feet"),
  40086. weight: math.unit(290, "lb"),
  40087. name: "Front",
  40088. image: {
  40089. source: "./media/characters/tiberius-thyben/front.svg",
  40090. extra: 757/739,
  40091. bottom: 39/796
  40092. }
  40093. },
  40094. },
  40095. [
  40096. {
  40097. name: "Micro",
  40098. height: math.unit(1.5, "inches")
  40099. },
  40100. {
  40101. name: "Normal",
  40102. height: math.unit(6 + 5/12, "feet"),
  40103. default: true
  40104. },
  40105. {
  40106. name: "Macro",
  40107. height: math.unit(300, "feet")
  40108. },
  40109. ]
  40110. ))
  40111. characterMakers.push(() => makeCharacter(
  40112. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40113. {
  40114. front: {
  40115. height: math.unit(5 + 6/12, "feet"),
  40116. weight: math.unit(60, "kg"),
  40117. name: "Front",
  40118. image: {
  40119. source: "./media/characters/sabre/front.svg",
  40120. extra: 738/671,
  40121. bottom: 27/765
  40122. }
  40123. },
  40124. },
  40125. [
  40126. {
  40127. name: "Teeny",
  40128. height: math.unit(2, "inches")
  40129. },
  40130. {
  40131. name: "Smol",
  40132. height: math.unit(8, "inches")
  40133. },
  40134. {
  40135. name: "Normal",
  40136. height: math.unit(5 + 6/12, "feet"),
  40137. default: true
  40138. },
  40139. {
  40140. name: "Mini-Macro",
  40141. height: math.unit(15, "feet")
  40142. },
  40143. {
  40144. name: "Macro",
  40145. height: math.unit(50, "feet")
  40146. },
  40147. ]
  40148. ))
  40149. characterMakers.push(() => makeCharacter(
  40150. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40151. {
  40152. front: {
  40153. height: math.unit(6 + 4/12, "feet"),
  40154. weight: math.unit(170, "lb"),
  40155. name: "Front",
  40156. image: {
  40157. source: "./media/characters/charlie/front.svg",
  40158. extra: 1348/1228,
  40159. bottom: 15/1363
  40160. }
  40161. },
  40162. },
  40163. [
  40164. {
  40165. name: "Macro",
  40166. height: math.unit(1700, "meters"),
  40167. default: true
  40168. },
  40169. {
  40170. name: "MegaMacro",
  40171. height: math.unit(20400, "meters")
  40172. },
  40173. ]
  40174. ))
  40175. characterMakers.push(() => makeCharacter(
  40176. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40177. {
  40178. front: {
  40179. height: math.unit(6 + 3/12, "feet"),
  40180. weight: math.unit(185, "lb"),
  40181. name: "Front",
  40182. image: {
  40183. source: "./media/characters/susan-grant/front.svg",
  40184. extra: 1351/1327,
  40185. bottom: 26/1377
  40186. }
  40187. },
  40188. },
  40189. [
  40190. {
  40191. name: "Normal",
  40192. height: math.unit(6 + 3/12, "feet"),
  40193. default: true
  40194. },
  40195. {
  40196. name: "Macro",
  40197. height: math.unit(225, "feet")
  40198. },
  40199. {
  40200. name: "Macro+",
  40201. height: math.unit(900, "feet")
  40202. },
  40203. {
  40204. name: "MegaMacro",
  40205. height: math.unit(14400, "feet")
  40206. },
  40207. ]
  40208. ))
  40209. characterMakers.push(() => makeCharacter(
  40210. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40211. {
  40212. front: {
  40213. height: math.unit(5 + 4/12, "feet"),
  40214. weight: math.unit(110, "lb"),
  40215. name: "Front",
  40216. image: {
  40217. source: "./media/characters/axel-isanov/front.svg",
  40218. extra: 1096/1065,
  40219. bottom: 13/1109
  40220. }
  40221. },
  40222. },
  40223. [
  40224. {
  40225. name: "Normal",
  40226. height: math.unit(5 + 4/12, "feet"),
  40227. default: true
  40228. },
  40229. ]
  40230. ))
  40231. characterMakers.push(() => makeCharacter(
  40232. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40233. {
  40234. front: {
  40235. height: math.unit(9, "feet"),
  40236. weight: math.unit(467, "lb"),
  40237. name: "Front",
  40238. image: {
  40239. source: "./media/characters/necahual/front.svg",
  40240. extra: 920/873,
  40241. bottom: 26/946
  40242. }
  40243. },
  40244. back: {
  40245. height: math.unit(9, "feet"),
  40246. weight: math.unit(467, "lb"),
  40247. name: "Back",
  40248. image: {
  40249. source: "./media/characters/necahual/back.svg",
  40250. extra: 930/884,
  40251. bottom: 16/946
  40252. }
  40253. },
  40254. frontUnderwear: {
  40255. height: math.unit(9, "feet"),
  40256. weight: math.unit(467, "lb"),
  40257. name: "Front (Underwear)",
  40258. image: {
  40259. source: "./media/characters/necahual/front-underwear.svg",
  40260. extra: 920/873,
  40261. bottom: 26/946
  40262. }
  40263. },
  40264. frontDressed: {
  40265. height: math.unit(9, "feet"),
  40266. weight: math.unit(467, "lb"),
  40267. name: "Front (Dressed)",
  40268. image: {
  40269. source: "./media/characters/necahual/front-dressed.svg",
  40270. extra: 920/873,
  40271. bottom: 26/946
  40272. }
  40273. },
  40274. },
  40275. [
  40276. {
  40277. name: "Comprsesed",
  40278. height: math.unit(9, "feet")
  40279. },
  40280. {
  40281. name: "Natural",
  40282. height: math.unit(15, "feet"),
  40283. default: true
  40284. },
  40285. {
  40286. name: "Boosted",
  40287. height: math.unit(50, "feet")
  40288. },
  40289. {
  40290. name: "Boosted+",
  40291. height: math.unit(150, "feet")
  40292. },
  40293. {
  40294. name: "Max",
  40295. height: math.unit(500, "feet")
  40296. },
  40297. ]
  40298. ))
  40299. characterMakers.push(() => makeCharacter(
  40300. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40301. {
  40302. front: {
  40303. height: math.unit(22 + 1/12, "feet"),
  40304. weight: math.unit(3200, "lb"),
  40305. name: "Front",
  40306. image: {
  40307. source: "./media/characters/theo-acacia/front.svg",
  40308. extra: 1796/1741,
  40309. bottom: 83/1879
  40310. }
  40311. },
  40312. frontUnderwear: {
  40313. height: math.unit(22 + 1/12, "feet"),
  40314. weight: math.unit(3200, "lb"),
  40315. name: "Front (Underwear)",
  40316. image: {
  40317. source: "./media/characters/theo-acacia/front-underwear.svg",
  40318. extra: 1796/1741,
  40319. bottom: 83/1879
  40320. }
  40321. },
  40322. frontNude: {
  40323. height: math.unit(22 + 1/12, "feet"),
  40324. weight: math.unit(3200, "lb"),
  40325. name: "Front (Nude)",
  40326. image: {
  40327. source: "./media/characters/theo-acacia/front-nude.svg",
  40328. extra: 1796/1741,
  40329. bottom: 83/1879
  40330. }
  40331. },
  40332. },
  40333. [
  40334. {
  40335. name: "Normal",
  40336. height: math.unit(22 + 1/12, "feet"),
  40337. default: true
  40338. },
  40339. ]
  40340. ))
  40341. characterMakers.push(() => makeCharacter(
  40342. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40343. {
  40344. front: {
  40345. height: math.unit(20, "feet"),
  40346. name: "Front",
  40347. image: {
  40348. source: "./media/characters/astra/front.svg",
  40349. extra: 1850/1714,
  40350. bottom: 106/1956
  40351. }
  40352. },
  40353. frontUndressed: {
  40354. height: math.unit(20, "feet"),
  40355. name: "Front (Undressed)",
  40356. image: {
  40357. source: "./media/characters/astra/front-undressed.svg",
  40358. extra: 1926/1749,
  40359. bottom: 0/1926
  40360. }
  40361. },
  40362. hand: {
  40363. height: math.unit(1.53, "feet"),
  40364. name: "Hand",
  40365. image: {
  40366. source: "./media/characters/astra/hand.svg"
  40367. }
  40368. },
  40369. paw: {
  40370. height: math.unit(1.53, "feet"),
  40371. name: "Paw",
  40372. image: {
  40373. source: "./media/characters/astra/paw.svg"
  40374. }
  40375. },
  40376. },
  40377. [
  40378. {
  40379. name: "Smallest",
  40380. height: math.unit(20, "feet")
  40381. },
  40382. {
  40383. name: "Normal",
  40384. height: math.unit(1e9, "miles"),
  40385. default: true
  40386. },
  40387. {
  40388. name: "Larger",
  40389. height: math.unit(5, "multiverses")
  40390. },
  40391. {
  40392. name: "Largest",
  40393. height: math.unit(1e9, "multiverses")
  40394. },
  40395. ]
  40396. ))
  40397. characterMakers.push(() => makeCharacter(
  40398. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40399. {
  40400. front: {
  40401. height: math.unit(8, "feet"),
  40402. name: "Front",
  40403. image: {
  40404. source: "./media/characters/breanna/front.svg",
  40405. extra: 1912/1632,
  40406. bottom: 33/1945
  40407. }
  40408. },
  40409. },
  40410. [
  40411. {
  40412. name: "Smallest",
  40413. height: math.unit(8, "feet")
  40414. },
  40415. {
  40416. name: "Normal",
  40417. height: math.unit(1, "mile"),
  40418. default: true
  40419. },
  40420. {
  40421. name: "Maximum",
  40422. height: math.unit(1500000000000, "lightyears")
  40423. },
  40424. ]
  40425. ))
  40426. characterMakers.push(() => makeCharacter(
  40427. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40428. {
  40429. front: {
  40430. height: math.unit(5 + 11/12, "feet"),
  40431. weight: math.unit(155, "lb"),
  40432. name: "Front",
  40433. image: {
  40434. source: "./media/characters/cai/front.svg",
  40435. extra: 1823/1702,
  40436. bottom: 32/1855
  40437. }
  40438. },
  40439. back: {
  40440. height: math.unit(5 + 11/12, "feet"),
  40441. weight: math.unit(155, "lb"),
  40442. name: "Back",
  40443. image: {
  40444. source: "./media/characters/cai/back.svg",
  40445. extra: 1809/1708,
  40446. bottom: 31/1840
  40447. }
  40448. },
  40449. },
  40450. [
  40451. {
  40452. name: "Normal",
  40453. height: math.unit(5 + 11/12, "feet"),
  40454. default: true
  40455. },
  40456. {
  40457. name: "Big",
  40458. height: math.unit(15, "feet")
  40459. },
  40460. {
  40461. name: "Macro",
  40462. height: math.unit(200, "feet")
  40463. },
  40464. ]
  40465. ))
  40466. characterMakers.push(() => makeCharacter(
  40467. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40468. {
  40469. front: {
  40470. height: math.unit(5 + 6/12, "feet"),
  40471. weight: math.unit(160, "lb"),
  40472. name: "Front",
  40473. image: {
  40474. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40475. extra: 1227/1174,
  40476. bottom: 37/1264
  40477. }
  40478. },
  40479. },
  40480. [
  40481. {
  40482. name: "Macro",
  40483. height: math.unit(444, "meters"),
  40484. default: true
  40485. },
  40486. ]
  40487. ))
  40488. characterMakers.push(() => makeCharacter(
  40489. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40490. {
  40491. front: {
  40492. height: math.unit(18 + 7/12, "feet"),
  40493. name: "Front",
  40494. image: {
  40495. source: "./media/characters/rex/front.svg",
  40496. extra: 1941/1807,
  40497. bottom: 66/2007
  40498. }
  40499. },
  40500. back: {
  40501. height: math.unit(18 + 7/12, "feet"),
  40502. name: "Back",
  40503. image: {
  40504. source: "./media/characters/rex/back.svg",
  40505. extra: 1937/1822,
  40506. bottom: 42/1979
  40507. }
  40508. },
  40509. boot: {
  40510. height: math.unit(3.45, "feet"),
  40511. name: "Boot",
  40512. image: {
  40513. source: "./media/characters/rex/boot.svg"
  40514. }
  40515. },
  40516. paw: {
  40517. height: math.unit(4.17, "feet"),
  40518. name: "Paw",
  40519. image: {
  40520. source: "./media/characters/rex/paw.svg"
  40521. }
  40522. },
  40523. head: {
  40524. height: math.unit(6.728, "feet"),
  40525. name: "Head",
  40526. image: {
  40527. source: "./media/characters/rex/head.svg"
  40528. }
  40529. },
  40530. },
  40531. [
  40532. {
  40533. name: "Nano",
  40534. height: math.unit(18 + 7/12, "feet")
  40535. },
  40536. {
  40537. name: "Micro",
  40538. height: math.unit(1.5, "megameters")
  40539. },
  40540. {
  40541. name: "Normal",
  40542. height: math.unit(440, "megameters"),
  40543. default: true
  40544. },
  40545. {
  40546. name: "Macro",
  40547. height: math.unit(2.5, "gigameters")
  40548. },
  40549. {
  40550. name: "Gigamacro",
  40551. height: math.unit(2, "galaxies")
  40552. },
  40553. ]
  40554. ))
  40555. characterMakers.push(() => makeCharacter(
  40556. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40557. {
  40558. side: {
  40559. height: math.unit(32, "feet"),
  40560. weight: math.unit(250000, "lb"),
  40561. name: "Side",
  40562. image: {
  40563. source: "./media/characters/silverwing/side.svg",
  40564. extra: 1100/1019,
  40565. bottom: 204/1304
  40566. }
  40567. },
  40568. },
  40569. [
  40570. {
  40571. name: "Normal",
  40572. height: math.unit(32, "feet"),
  40573. default: true
  40574. },
  40575. ]
  40576. ))
  40577. characterMakers.push(() => makeCharacter(
  40578. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40579. {
  40580. front: {
  40581. height: math.unit(6 + 6/12, "feet"),
  40582. weight: math.unit(350, "lb"),
  40583. name: "Front",
  40584. image: {
  40585. source: "./media/characters/tristan-hawthorne/front.svg",
  40586. extra: 1159/1124,
  40587. bottom: 37/1196
  40588. }
  40589. },
  40590. },
  40591. [
  40592. {
  40593. name: "Normal",
  40594. height: math.unit(6 + 6/12, "feet"),
  40595. default: true
  40596. },
  40597. ]
  40598. ))
  40599. characterMakers.push(() => makeCharacter(
  40600. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40601. {
  40602. front: {
  40603. height: math.unit(5 + 11/12, "feet"),
  40604. weight: math.unit(190, "lb"),
  40605. name: "Front",
  40606. image: {
  40607. source: "./media/characters/mizu/front.svg",
  40608. extra: 1988/1788,
  40609. bottom: 14/2002
  40610. }
  40611. },
  40612. },
  40613. [
  40614. {
  40615. name: "Normal",
  40616. height: math.unit(5 + 11/12, "feet"),
  40617. default: true
  40618. },
  40619. ]
  40620. ))
  40621. characterMakers.push(() => makeCharacter(
  40622. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40623. {
  40624. front: {
  40625. height: math.unit(6, "feet"),
  40626. name: "Front",
  40627. image: {
  40628. source: "./media/characters/moonlight-rose-terra/front.svg",
  40629. extra: 1434/1252,
  40630. bottom: 48/1482
  40631. }
  40632. },
  40633. },
  40634. [
  40635. {
  40636. name: "TRAPPIST-1D",
  40637. height: math.unit(4992*2, "km")
  40638. },
  40639. {
  40640. name: "Earth",
  40641. height: math.unit(6367*2, "km"),
  40642. default: true
  40643. },
  40644. {
  40645. name: "Kepler-22b",
  40646. height: math.unit(15282*2, "km")
  40647. },
  40648. ]
  40649. ))
  40650. characterMakers.push(() => makeCharacter(
  40651. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  40652. {
  40653. front: {
  40654. height: math.unit(6, "feet"),
  40655. name: "Front",
  40656. image: {
  40657. source: "./media/characters/moonlight-rose-neptune/front.svg",
  40658. extra: 1851/1712,
  40659. bottom: 0/1851
  40660. }
  40661. },
  40662. },
  40663. [
  40664. {
  40665. name: "Enceladus",
  40666. height: math.unit(513*2, "km")
  40667. },
  40668. {
  40669. name: "Europe",
  40670. height: math.unit(1560*2, "km")
  40671. },
  40672. {
  40673. name: "Neptune",
  40674. height: math.unit(24622*2, "km"),
  40675. default: true
  40676. },
  40677. {
  40678. name: "CoRoT-9b",
  40679. height: math.unit(75067*2, "km")
  40680. },
  40681. ]
  40682. ))
  40683. characterMakers.push(() => makeCharacter(
  40684. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  40685. {
  40686. front: {
  40687. height: math.unit(6, "feet"),
  40688. name: "Front",
  40689. image: {
  40690. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  40691. extra: 1367/1286,
  40692. bottom: 55/1422
  40693. }
  40694. },
  40695. },
  40696. [
  40697. {
  40698. name: "Saturn",
  40699. height: math.unit(58232*2, "km")
  40700. },
  40701. {
  40702. name: "Jupiter",
  40703. height: math.unit(69911*2, "km"),
  40704. default: true
  40705. },
  40706. {
  40707. name: "HD 100546 b",
  40708. height: math.unit(482938, "km")
  40709. },
  40710. ]
  40711. ))
  40712. characterMakers.push(() => makeCharacter(
  40713. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  40714. {
  40715. front: {
  40716. height: math.unit(1.7, "feet"),
  40717. weight: math.unit(50, "lb"),
  40718. name: "Front",
  40719. image: {
  40720. source: "./media/characters/dechroma/front.svg",
  40721. extra: 1095/859,
  40722. bottom: 64/1159
  40723. }
  40724. },
  40725. },
  40726. [
  40727. {
  40728. name: "Normal",
  40729. height: math.unit(1.7, "feet"),
  40730. default: true
  40731. },
  40732. ]
  40733. ))
  40734. characterMakers.push(() => makeCharacter(
  40735. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  40736. {
  40737. side: {
  40738. height: math.unit(30, "feet"),
  40739. name: "Side",
  40740. image: {
  40741. source: "./media/characters/veluren-thanazel/side.svg",
  40742. extra: 1611/633,
  40743. bottom: 118/1729
  40744. }
  40745. },
  40746. front: {
  40747. height: math.unit(30, "feet"),
  40748. name: "Front",
  40749. image: {
  40750. source: "./media/characters/veluren-thanazel/front.svg",
  40751. extra: 1486/636,
  40752. bottom: 238/1724
  40753. }
  40754. },
  40755. head: {
  40756. height: math.unit(21.4, "feet"),
  40757. name: "Head",
  40758. image: {
  40759. source: "./media/characters/veluren-thanazel/head.svg"
  40760. }
  40761. },
  40762. genitals: {
  40763. height: math.unit(19.4, "feet"),
  40764. name: "Genitals",
  40765. image: {
  40766. source: "./media/characters/veluren-thanazel/genitals.svg"
  40767. }
  40768. },
  40769. },
  40770. [
  40771. {
  40772. name: "Social",
  40773. height: math.unit(6, "feet")
  40774. },
  40775. {
  40776. name: "Play",
  40777. height: math.unit(12, "feet")
  40778. },
  40779. {
  40780. name: "True",
  40781. height: math.unit(30, "feet"),
  40782. default: true
  40783. },
  40784. ]
  40785. ))
  40786. characterMakers.push(() => makeCharacter(
  40787. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  40788. {
  40789. front: {
  40790. height: math.unit(7 + 6/12, "feet"),
  40791. weight: math.unit(500, "kg"),
  40792. name: "Front",
  40793. image: {
  40794. source: "./media/characters/arcturas/front.svg",
  40795. extra: 1700/1500,
  40796. bottom: 145/1845
  40797. }
  40798. },
  40799. },
  40800. [
  40801. {
  40802. name: "Normal",
  40803. height: math.unit(7 + 6/12, "feet"),
  40804. default: true
  40805. },
  40806. ]
  40807. ))
  40808. characterMakers.push(() => makeCharacter(
  40809. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  40810. {
  40811. side: {
  40812. height: math.unit(6, "feet"),
  40813. weight: math.unit(2, "tons"),
  40814. name: "Side",
  40815. image: {
  40816. source: "./media/characters/vitaen/side.svg",
  40817. extra: 1157/617,
  40818. bottom: 122/1279
  40819. }
  40820. },
  40821. },
  40822. [
  40823. {
  40824. name: "Normal",
  40825. height: math.unit(6, "feet"),
  40826. default: true
  40827. },
  40828. ]
  40829. ))
  40830. characterMakers.push(() => makeCharacter(
  40831. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  40832. {
  40833. front: {
  40834. height: math.unit(19, "feet"),
  40835. name: "Front",
  40836. image: {
  40837. source: "./media/characters/fia-dreamweaver/front.svg",
  40838. extra: 1630/1504,
  40839. bottom: 25/1655
  40840. }
  40841. },
  40842. },
  40843. [
  40844. {
  40845. name: "Normal",
  40846. height: math.unit(19, "feet"),
  40847. default: true
  40848. },
  40849. ]
  40850. ))
  40851. characterMakers.push(() => makeCharacter(
  40852. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  40853. {
  40854. front: {
  40855. height: math.unit(5 + 4/12, "feet"),
  40856. name: "Front",
  40857. image: {
  40858. source: "./media/characters/artan/front.svg",
  40859. extra: 1618/1535,
  40860. bottom: 46/1664
  40861. }
  40862. },
  40863. back: {
  40864. height: math.unit(5 + 4/12, "feet"),
  40865. name: "Back",
  40866. image: {
  40867. source: "./media/characters/artan/back.svg",
  40868. extra: 1618/1543,
  40869. bottom: 31/1649
  40870. }
  40871. },
  40872. },
  40873. [
  40874. {
  40875. name: "Normal",
  40876. height: math.unit(5 + 4/12, "feet"),
  40877. default: true
  40878. },
  40879. ]
  40880. ))
  40881. characterMakers.push(() => makeCharacter(
  40882. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  40883. {
  40884. side: {
  40885. height: math.unit(182, "cm"),
  40886. weight: math.unit(1000, "lb"),
  40887. name: "Side",
  40888. image: {
  40889. source: "./media/characters/silver-dragon/side.svg",
  40890. extra: 710/287,
  40891. bottom: 88/798
  40892. }
  40893. },
  40894. },
  40895. [
  40896. {
  40897. name: "Normal",
  40898. height: math.unit(182, "cm"),
  40899. default: true
  40900. },
  40901. ]
  40902. ))
  40903. characterMakers.push(() => makeCharacter(
  40904. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  40905. {
  40906. side: {
  40907. height: math.unit(6 + 6/12, "feet"),
  40908. weight: math.unit(1.5, "tons"),
  40909. name: "Side",
  40910. image: {
  40911. source: "./media/characters/zephyr/side.svg",
  40912. extra: 1433/586,
  40913. bottom: 109/1542
  40914. }
  40915. },
  40916. },
  40917. [
  40918. {
  40919. name: "Normal",
  40920. height: math.unit(6 + 6/12, "feet"),
  40921. default: true
  40922. },
  40923. ]
  40924. ))
  40925. characterMakers.push(() => makeCharacter(
  40926. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  40927. {
  40928. side: {
  40929. height: math.unit(1, "feet"),
  40930. name: "Side",
  40931. image: {
  40932. source: "./media/characters/vixye/side.svg",
  40933. extra: 632/541,
  40934. bottom: 0/632
  40935. }
  40936. },
  40937. },
  40938. [
  40939. {
  40940. name: "Normal",
  40941. height: math.unit(1, "feet"),
  40942. default: true
  40943. },
  40944. {
  40945. name: "True",
  40946. height: math.unit(1e15, "multiverses")
  40947. },
  40948. ]
  40949. ))
  40950. characterMakers.push(() => makeCharacter(
  40951. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  40952. {
  40953. front: {
  40954. height: math.unit(8 + 2/12, "feet"),
  40955. weight: math.unit(650, "lb"),
  40956. name: "Front",
  40957. image: {
  40958. source: "./media/characters/darla-mac-lochlainn/front.svg",
  40959. extra: 1174/1137,
  40960. bottom: 82/1256
  40961. }
  40962. },
  40963. back: {
  40964. height: math.unit(8 + 2/12, "feet"),
  40965. weight: math.unit(650, "lb"),
  40966. name: "Back",
  40967. image: {
  40968. source: "./media/characters/darla-mac-lochlainn/back.svg",
  40969. extra: 1204/1157,
  40970. bottom: 46/1250
  40971. }
  40972. },
  40973. },
  40974. [
  40975. {
  40976. name: "Wildform",
  40977. height: math.unit(8 + 2/12, "feet"),
  40978. default: true
  40979. },
  40980. ]
  40981. ))
  40982. //characters
  40983. function makeCharacters() {
  40984. const results = [];
  40985. characterMakers.forEach(character => {
  40986. results.push(character());
  40987. });
  40988. return results;
  40989. }