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

55430 行
1.4 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity
  51. }
  52. }
  53. if (value.energyNeed) {
  54. views[key].attributes.capacity = {
  55. name: "Food Intake",
  56. power: 3 * 3 / 4,
  57. type: "energy",
  58. base: value.energyNeed
  59. }
  60. }
  61. if (value.extraAttributes) {
  62. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  63. views[key].attributes[attrKey] = attrValue
  64. })
  65. }
  66. });
  67. return createEntityMaker(info, views, defaultSizes, forms);
  68. }
  69. const speciesData = {
  70. animal: {
  71. name: "Animal"
  72. },
  73. dog: {
  74. name: "Dog",
  75. parents: [
  76. "canine"
  77. ]
  78. },
  79. canine: {
  80. name: "Canine",
  81. parents: [
  82. "mammal"
  83. ]
  84. },
  85. crux: {
  86. name: "Crux",
  87. parents: [
  88. "mammal"
  89. ]
  90. },
  91. mammal: {
  92. name: "Mammal",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. "rough-collie": {
  98. name: "Rough Collie",
  99. parents: [
  100. "dog"
  101. ]
  102. },
  103. dragon: {
  104. name: "Dragon",
  105. parents: [
  106. "reptile"
  107. ]
  108. },
  109. reptile: {
  110. name: "Reptile",
  111. parents: [
  112. "animal"
  113. ]
  114. },
  115. woodpecker: {
  116. name: "Woodpecker",
  117. parents: [
  118. "avian"
  119. ]
  120. },
  121. avian: {
  122. name: "Avian",
  123. parents: [
  124. "animal"
  125. ]
  126. },
  127. kitsune: {
  128. name: "Kitsune",
  129. parents: [
  130. "fox"
  131. ]
  132. },
  133. fox: {
  134. name: "Fox",
  135. parents: [
  136. "mammal"
  137. ]
  138. },
  139. pokemon: {
  140. name: "Pokemon",
  141. },
  142. tiger: {
  143. name: "Tiger",
  144. parents: [
  145. "cat"
  146. ]
  147. },
  148. cat: {
  149. name: "Cat",
  150. parents: [
  151. "feliform"
  152. ]
  153. },
  154. "blue-jay": {
  155. name: "Blue Jay",
  156. parents: [
  157. "corvid"
  158. ]
  159. },
  160. wolf: {
  161. name: "Wolf",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. coyote: {
  167. name: "Coyote",
  168. parents: [
  169. "mammal"
  170. ]
  171. },
  172. raccoon: {
  173. name: "Raccoon",
  174. parents: [
  175. "mammal"
  176. ]
  177. },
  178. weasel: {
  179. name: "Weasel",
  180. parents: [
  181. "mustelid"
  182. ]
  183. },
  184. "red-panda": {
  185. name: "Red Panda",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. dolphin: {
  191. name: "Dolphin",
  192. parents: [
  193. "mammal"
  194. ]
  195. },
  196. "african-wild-dog": {
  197. name: "African Wild Dog",
  198. parents: [
  199. "canine"
  200. ]
  201. },
  202. "hyena": {
  203. name: "Hyena",
  204. parents: [
  205. "feliform"
  206. ]
  207. },
  208. "carbuncle": {
  209. name: "Carbuncle",
  210. parents: [
  211. "animal"
  212. ]
  213. },
  214. bat: {
  215. name: "Bat",
  216. parents: [
  217. "mammal"
  218. ]
  219. },
  220. "leaf-nosed-bat": {
  221. name: "Leaf-Nosed Bat",
  222. parents: [
  223. "bat"
  224. ]
  225. },
  226. "fish": {
  227. name: "Fish",
  228. parents: [
  229. "animal"
  230. ]
  231. },
  232. "ram": {
  233. name: "Ram",
  234. parents: [
  235. "mammal"
  236. ]
  237. },
  238. "demon": {
  239. name: "Demon",
  240. parents: [
  241. "supernatural"
  242. ]
  243. },
  244. "cougar": {
  245. name: "Cougar",
  246. parents: [
  247. "cat"
  248. ]
  249. },
  250. "goat": {
  251. name: "Goat",
  252. parents: [
  253. "mammal"
  254. ]
  255. },
  256. "lion": {
  257. name: "Lion",
  258. parents: [
  259. "cat"
  260. ]
  261. },
  262. "harpy-eager": {
  263. name: "Harpy Eagle",
  264. parents: [
  265. "avian"
  266. ]
  267. },
  268. "deer": {
  269. name: "Deer",
  270. parents: [
  271. "mammal"
  272. ]
  273. },
  274. "phoenix": {
  275. name: "Phoenix",
  276. parents: [
  277. "avian"
  278. ]
  279. },
  280. "aeromorph": {
  281. name: "Aeromorph",
  282. parents: [
  283. "machine"
  284. ]
  285. },
  286. "machine": {
  287. name: "Machine",
  288. },
  289. "android": {
  290. name: "Android",
  291. parents: [
  292. "machine"
  293. ]
  294. },
  295. "jackal": {
  296. name: "Jackal",
  297. parents: [
  298. "canine"
  299. ]
  300. },
  301. "corvid": {
  302. name: "Corvid",
  303. parents: [
  304. "passerine"
  305. ]
  306. },
  307. "pharaoh-hound": {
  308. name: "Pharaoh Hound",
  309. parents: [
  310. "dog"
  311. ]
  312. },
  313. "skunk": {
  314. name: "Skunk",
  315. parents: [
  316. "mammal"
  317. ]
  318. },
  319. "shark": {
  320. name: "Shark",
  321. parents: [
  322. "fish"
  323. ]
  324. },
  325. "black-panther": {
  326. name: "Black Panther",
  327. parents: [
  328. "cat"
  329. ]
  330. },
  331. "umbra": {
  332. name: "Umbra",
  333. parents: [
  334. "animal"
  335. ]
  336. },
  337. "raven": {
  338. name: "Raven",
  339. parents: [
  340. "corvid"
  341. ]
  342. },
  343. "snow-leopard": {
  344. name: "Snow Leopard",
  345. parents: [
  346. "cat"
  347. ]
  348. },
  349. "barbary-lion": {
  350. name: "Barbary Lion",
  351. parents: [
  352. "lion"
  353. ]
  354. },
  355. "dra'gal": {
  356. name: "Dra'Gal",
  357. parents: [
  358. "mammal"
  359. ]
  360. },
  361. "german-shepherd": {
  362. name: "German Shepherd",
  363. parents: [
  364. "dog"
  365. ]
  366. },
  367. "bayleef": {
  368. name: "Bayleef",
  369. parents: [
  370. "pokemon",
  371. "plant",
  372. "animal"
  373. ]
  374. },
  375. "mouse": {
  376. name: "Mouse",
  377. parents: [
  378. "rodent"
  379. ]
  380. },
  381. "rat": {
  382. name: "Rat",
  383. parents: [
  384. "mammal"
  385. ]
  386. },
  387. "hoshiko-beast": {
  388. name: "Hoshiko Beast",
  389. parents: ["animal"]
  390. },
  391. "snow-jugani": {
  392. name: "Snow Jugani",
  393. parents: ["cat"]
  394. },
  395. "patamon": {
  396. name: "Patamon",
  397. parents: ["digimon", "guinea-pig"]
  398. },
  399. "digimon": {
  400. name: "Digimon",
  401. },
  402. "jugani": {
  403. name: "Jugani",
  404. parents: ["cat"]
  405. },
  406. "luxray": {
  407. name: "Luxray",
  408. parents: ["pokemon", "lion"]
  409. },
  410. "mech": {
  411. name: "Mech",
  412. parents: ["machine"]
  413. },
  414. "zoid": {
  415. name: "Zoid",
  416. parents: ["mech"]
  417. },
  418. "monster": {
  419. name: "Monster",
  420. parents: ["animal"]
  421. },
  422. "foo-dog": {
  423. name: "Foo Dog",
  424. parents: ["mammal"]
  425. },
  426. "elephant": {
  427. name: "Elephant",
  428. parents: ["mammal"]
  429. },
  430. "eagle": {
  431. name: "Eagle",
  432. parents: ["bird-of-prey"]
  433. },
  434. "cow": {
  435. name: "Cow",
  436. parents: ["mammal"]
  437. },
  438. "crocodile": {
  439. name: "Crocodile",
  440. parents: ["reptile"]
  441. },
  442. "borzoi": {
  443. name: "Borzoi",
  444. parents: ["dog"]
  445. },
  446. "snake": {
  447. name: "Snake",
  448. parents: ["reptile"]
  449. },
  450. "horned-bush-viper": {
  451. name: "Horned Bush Viper",
  452. parents: ["viper"]
  453. },
  454. "cobra": {
  455. name: "Cobra",
  456. parents: ["snake"]
  457. },
  458. "harpy-eagle": {
  459. name: "Harpy Eagle",
  460. parents: ["eagle"]
  461. },
  462. "raptor": {
  463. name: "Raptor",
  464. parents: ["dinosaur"]
  465. },
  466. "dinosaur": {
  467. name: "Dinosaur",
  468. parents: ["reptile"]
  469. },
  470. "veilhound": {
  471. name: "Veilhound",
  472. parents: ["hellhound"]
  473. },
  474. "hellhound": {
  475. name: "Hellhound",
  476. parents: ["canine", "demon"]
  477. },
  478. "insect": {
  479. name: "Insect",
  480. parents: ["animal"]
  481. },
  482. "beetle": {
  483. name: "Beetle",
  484. parents: ["insect"]
  485. },
  486. "moth": {
  487. name: "Moth",
  488. parents: ["insect"]
  489. },
  490. "eastern-dragon": {
  491. name: "Eastern Dragon",
  492. parents: ["dragon"]
  493. },
  494. "jaguar": {
  495. name: "Jaguar",
  496. parents: ["cat"]
  497. },
  498. "horse": {
  499. name: "Horse",
  500. parents: ["mammal"]
  501. },
  502. "sergal": {
  503. name: "Sergal",
  504. parents: ["mammal", "avian", "vilous"]
  505. },
  506. "gryphon": {
  507. name: "Gryphon",
  508. parents: ["lion", "eagle"]
  509. },
  510. "robot": {
  511. name: "Robot",
  512. parents: ["machine"]
  513. },
  514. "medihound": {
  515. name: "Medihound",
  516. parents: ["robot", "dog"]
  517. },
  518. "sylveon": {
  519. name: "Sylveon",
  520. parents: ["pokemon"]
  521. },
  522. "catgirl": {
  523. name: "Catgirl",
  524. parents: ["mammal"]
  525. },
  526. "cowgirl": {
  527. name: "Cowgirl",
  528. parents: ["mammal"]
  529. },
  530. "pony": {
  531. name: "Pony",
  532. parents: ["horse"]
  533. },
  534. "rabbit": {
  535. name: "Rabbit",
  536. parents: ["leporidae"]
  537. },
  538. "fennec-fox": {
  539. name: "Fennec Fox",
  540. parents: ["fox"]
  541. },
  542. "azodian": {
  543. name: "Azodian",
  544. parents: ["mouse"]
  545. },
  546. "shiba-inu": {
  547. name: "Shiba Inu",
  548. parents: ["dog"]
  549. },
  550. "changeling": {
  551. name: "Changeling",
  552. parents: ["insect"]
  553. },
  554. "cheetah": {
  555. name: "Cheetah",
  556. parents: ["cat"]
  557. },
  558. "golden-jackal": {
  559. name: "Golden Jackal",
  560. parents: ["jackal"]
  561. },
  562. "manectric": {
  563. name: "Manectric",
  564. parents: ["pokemon", "wolf"]
  565. },
  566. "rat": {
  567. name: "Rat",
  568. parents: ["rodent"]
  569. },
  570. "rodent": {
  571. name: "Rodent",
  572. parents: ["mammal"]
  573. },
  574. "octocoon": {
  575. name: "Octocoon",
  576. parents: ["raccoon", "octopus"]
  577. },
  578. "octopus": {
  579. name: "Octopus",
  580. parents: ["fish"]
  581. },
  582. "werewolf": {
  583. name: "Werewolf",
  584. parents: ["wolf", "werebeast"]
  585. },
  586. "werebeast": {
  587. name: "Werebeast",
  588. parents: ["monster"]
  589. },
  590. "meerkat": {
  591. name: "Meerkat",
  592. parents: ["mammal"]
  593. },
  594. "human": {
  595. name: "Human",
  596. parents: ["mammal"]
  597. },
  598. "geth": {
  599. name: "Geth",
  600. parents: ["android"]
  601. },
  602. "husky": {
  603. name: "Husky",
  604. parents: ["dog"]
  605. },
  606. "long-eared-bat": {
  607. name: "Long Eared Bat",
  608. parents: ["bat"]
  609. },
  610. "lizard": {
  611. name: "Lizard",
  612. parents: ["reptile"]
  613. },
  614. "salamander": {
  615. name: "Salamander",
  616. parents: ["lizard"]
  617. },
  618. "chameleon": {
  619. name: "Chameleon",
  620. parents: ["lizard"]
  621. },
  622. "gecko": {
  623. name: "Gecko",
  624. parents: ["lizard"]
  625. },
  626. "kobold": {
  627. name: "Kobold",
  628. parents: ["reptile"]
  629. },
  630. "charizard": {
  631. name: "Charizard",
  632. parents: ["pokemon", "dragon"]
  633. },
  634. "lugia": {
  635. name: "Lugia",
  636. parents: ["pokemon", "avian"]
  637. },
  638. "cerberus": {
  639. name: "Cerberus",
  640. parents: ["dog"]
  641. },
  642. "tyrantrum": {
  643. name: "Tyrantrum",
  644. parents: ["pokemon"]
  645. },
  646. "lemur": {
  647. name: "Lemur",
  648. parents: ["mammal"]
  649. },
  650. "kelpie": {
  651. name: "Kelpie",
  652. parents: ["horse", "monster"]
  653. },
  654. "labrador": {
  655. name: "Labrador",
  656. parents: ["dog"]
  657. },
  658. "sylveon": {
  659. name: "Sylveon",
  660. parents: ["eeveelution"]
  661. },
  662. "eeveelution": {
  663. name: "Eeveelution",
  664. parents: ["pokemon", "cat"]
  665. },
  666. "polar-bear": {
  667. name: "Polar Bear",
  668. parents: ["bear"]
  669. },
  670. "bear": {
  671. name: "Bear",
  672. parents: ["mammal"]
  673. },
  674. "absol": {
  675. name: "Absol",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "wolver": {
  679. name: "Wolver",
  680. parents: ["mammal"]
  681. },
  682. "rottweiler": {
  683. name: "Rottweiler",
  684. parents: ["dog"]
  685. },
  686. "zebra": {
  687. name: "Zebra",
  688. parents: ["horse"]
  689. },
  690. "yoshi": {
  691. name: "Yoshi",
  692. parents: ["lizard"]
  693. },
  694. "lynx": {
  695. name: "Lynx",
  696. parents: ["cat"]
  697. },
  698. "unknown": {
  699. name: "Unknown",
  700. parents: []
  701. },
  702. "thylacine": {
  703. name: "Thylacine",
  704. parents: ["mammal"]
  705. },
  706. "gabumon": {
  707. name: "Gabumon",
  708. parents: ["digimon"]
  709. },
  710. "border-collie": {
  711. name: "Border Collie",
  712. parents: ["dog"]
  713. },
  714. "imp": {
  715. name: "Imp",
  716. parents: ["demon"]
  717. },
  718. "kangaroo": {
  719. name: "Kangaroo",
  720. parents: ["marsupial"]
  721. },
  722. "renamon": {
  723. name: "Renamon",
  724. parents: ["digimon", "fox"]
  725. },
  726. "candy-orca-dragon": {
  727. name: "Candy Orca Dragon",
  728. parents: ["fish", "dragon", "candy"]
  729. },
  730. "sabertooth-tiger": {
  731. name: "Sabertooth Tiger",
  732. parents: ["cat"]
  733. },
  734. "espurr": {
  735. name: "Espurr",
  736. parents: ["pokemon", "cat"]
  737. },
  738. "otter": {
  739. name: "Otter",
  740. parents: ["mustelid"]
  741. },
  742. "elemental": {
  743. name: "Elemental",
  744. parents: ["mammal"]
  745. },
  746. "mew": {
  747. name: "Mew",
  748. parents: ["pokemon"]
  749. },
  750. "goodra": {
  751. name: "Goodra",
  752. parents: ["pokemon"]
  753. },
  754. "fairy": {
  755. name: "Fairy",
  756. parents: ["magical"]
  757. },
  758. "typhlosion": {
  759. name: "Typhlosion",
  760. parents: ["pokemon"]
  761. },
  762. "magical": {
  763. name: "Magical",
  764. parents: []
  765. },
  766. "xenomorph": {
  767. name: "Xenomorph",
  768. parents: ["monster", "alien"]
  769. },
  770. "charr": {
  771. name: "Charr",
  772. parents: ["cat"]
  773. },
  774. "siberian-husky": {
  775. name: "Siberian Husky",
  776. parents: ["husky"]
  777. },
  778. "alligator": {
  779. name: "Alligator",
  780. parents: ["reptile"]
  781. },
  782. "bernese-mountain-dog": {
  783. name: "Bernese Mountain Dog",
  784. parents: ["dog"]
  785. },
  786. "reshiram": {
  787. name: "Reshiram",
  788. parents: ["pokemon", "dragon"]
  789. },
  790. "grizzly-bear": {
  791. name: "Grizzly Bear",
  792. parents: ["bear"]
  793. },
  794. "water-monitor": {
  795. name: "Water Monitor",
  796. parents: ["lizard"]
  797. },
  798. "banchofossa": {
  799. name: "Banchofossa",
  800. parents: ["mammal"]
  801. },
  802. "kirin": {
  803. name: "Kirin",
  804. parents: ["monster"]
  805. },
  806. "quilava": {
  807. name: "Quilava",
  808. parents: ["pokemon"]
  809. },
  810. "seviper": {
  811. name: "Seviper",
  812. parents: ["pokemon", "viper"]
  813. },
  814. "flying-fox": {
  815. name: "Flying Fox",
  816. parents: ["bat"]
  817. },
  818. "keynain": {
  819. name: "Keynain",
  820. parents: ["avian"]
  821. },
  822. "lucario": {
  823. name: "Lucario",
  824. parents: ["pokemon", "jackal"]
  825. },
  826. "siamese-cat": {
  827. name: "Siamese Cat",
  828. parents: ["cat"]
  829. },
  830. "spider": {
  831. name: "Spider",
  832. parents: ["insect"]
  833. },
  834. "samurott": {
  835. name: "Samurott",
  836. parents: ["pokemon", "otter"]
  837. },
  838. "megalodon": {
  839. name: "Megalodon",
  840. parents: ["shark"]
  841. },
  842. "unicorn": {
  843. name: "Unicorn",
  844. parents: ["horse"]
  845. },
  846. "greninja": {
  847. name: "Greninja",
  848. parents: ["pokemon", "frog"]
  849. },
  850. "water-dragon": {
  851. name: "Water Dragon",
  852. parents: ["dragon"]
  853. },
  854. "cross-fox": {
  855. name: "Cross Fox",
  856. parents: ["fox"]
  857. },
  858. "synth": {
  859. name: "Synth",
  860. parents: ["machine"]
  861. },
  862. "construct": {
  863. name: "Construct",
  864. parents: []
  865. },
  866. "mexican-wolf": {
  867. name: "Mexican Wolf",
  868. parents: ["wolf"]
  869. },
  870. "leopard": {
  871. name: "Leopard",
  872. parents: ["cat"]
  873. },
  874. "pig": {
  875. name: "Pig",
  876. parents: ["mammal"]
  877. },
  878. "ampharos": {
  879. name: "Ampharos",
  880. parents: ["pokemon", "sheep"]
  881. },
  882. "orca": {
  883. name: "Orca",
  884. parents: ["fish"]
  885. },
  886. "lycanroc": {
  887. name: "Lycanroc",
  888. parents: ["pokemon", "wolf"]
  889. },
  890. "surkanu": {
  891. name: "Surkanu",
  892. parents: ["monster"]
  893. },
  894. "seal": {
  895. name: "Seal",
  896. parents: ["mammal"]
  897. },
  898. "keldeo": {
  899. name: "Keldeo",
  900. parents: ["pokemon"]
  901. },
  902. "great-dane": {
  903. name: "Great Dane",
  904. parents: ["dog"]
  905. },
  906. "black-backed-jackal": {
  907. name: "Black Backed Jackal",
  908. parents: ["jackal"]
  909. },
  910. "sheep": {
  911. name: "Sheep",
  912. parents: ["mammal"]
  913. },
  914. "leopard-seal": {
  915. name: "Leopard Seal",
  916. parents: ["seal"]
  917. },
  918. "zoroark": {
  919. name: "Zoroark",
  920. parents: ["pokemon", "fox"]
  921. },
  922. "maned-wolf": {
  923. name: "Maned Wolf",
  924. parents: ["canine"]
  925. },
  926. "dracha": {
  927. name: "Dracha",
  928. parents: ["dragon"]
  929. },
  930. "wolxi": {
  931. name: "Wolxi",
  932. parents: ["mammal", "alien"]
  933. },
  934. "dratini": {
  935. name: "Dratini",
  936. parents: ["pokemon", "dragon"]
  937. },
  938. "skaven": {
  939. name: "Skaven",
  940. parents: ["rat"]
  941. },
  942. "mongoose": {
  943. name: "Mongoose",
  944. parents: ["mammal"]
  945. },
  946. "lopunny": {
  947. name: "Lopunny",
  948. parents: ["pokemon", "rabbit"]
  949. },
  950. "feraligatr": {
  951. name: "Feraligatr",
  952. parents: ["pokemon", "alligator"]
  953. },
  954. "houndoom": {
  955. name: "Houndoom",
  956. parents: ["pokemon", "dog"]
  957. },
  958. "protogen": {
  959. name: "Protogen",
  960. parents: ["machine"]
  961. },
  962. "saint-bernard": {
  963. name: "Saint Bernard",
  964. parents: ["dog"]
  965. },
  966. "crow": {
  967. name: "Crow",
  968. parents: ["corvid"]
  969. },
  970. "delphox": {
  971. name: "Delphox",
  972. parents: ["pokemon", "fox"]
  973. },
  974. "moose": {
  975. name: "Moose",
  976. parents: ["mammal"]
  977. },
  978. "joraxian": {
  979. name: "Joraxian",
  980. parents: ["monster", "canine", "demon"]
  981. },
  982. "nimbat": {
  983. name: "Nimbat",
  984. parents: ["mammal"]
  985. },
  986. "aardwolf": {
  987. name: "Aardwolf",
  988. parents: ["canine"]
  989. },
  990. "fluudrani": {
  991. name: "Fluudrani",
  992. parents: ["animal"]
  993. },
  994. "arcanine": {
  995. name: "Arcanine",
  996. parents: ["pokemon", "dog"]
  997. },
  998. "inteleon": {
  999. name: "Inteleon",
  1000. parents: ["pokemon", "fish"]
  1001. },
  1002. "ninetales": {
  1003. name: "Ninetales",
  1004. parents: ["pokemon", "kitsune"]
  1005. },
  1006. "tigrex": {
  1007. name: "Tigrex",
  1008. parents: ["tiger"]
  1009. },
  1010. "zorua": {
  1011. name: "Zorua",
  1012. parents: ["pokemon", "fox"]
  1013. },
  1014. "vulpix": {
  1015. name: "Vulpix",
  1016. parents: ["pokemon", "fox"]
  1017. },
  1018. "barghest": {
  1019. name: "Barghest",
  1020. parents: ["monster"]
  1021. },
  1022. "gray-wolf": {
  1023. name: "Gray Wolf",
  1024. parents: ["wolf"]
  1025. },
  1026. "ruppells-fox": {
  1027. name: "Rüppell's Fox",
  1028. parents: ["fox"]
  1029. },
  1030. "bull-terrier": {
  1031. name: "Bull Terrier",
  1032. parents: ["dog"]
  1033. },
  1034. "european-honey-buzzard": {
  1035. name: "European Honey Buzzard",
  1036. parents: ["avian"]
  1037. },
  1038. "t-rex": {
  1039. name: "Tyrannosaurus Rex",
  1040. parents: ["dinosaur"]
  1041. },
  1042. "mactarian": {
  1043. name: "Mactarian",
  1044. parents: ["shark", "monster"]
  1045. },
  1046. "mewtwo-y": {
  1047. name: "Mewtwo Y",
  1048. parents: ["mewtwo"]
  1049. },
  1050. "mewtwo": {
  1051. name: "Mewtwo",
  1052. parents: ["pokemon"]
  1053. },
  1054. "eevee": {
  1055. name: "Eevee",
  1056. parents: ["eeveelution"]
  1057. },
  1058. "mienshao": {
  1059. name: "Mienshao",
  1060. parents: ["pokemon"]
  1061. },
  1062. "sugar-glider": {
  1063. name: "Sugar Glider",
  1064. parents: ["opossum"]
  1065. },
  1066. "spectral-bat": {
  1067. name: "Spectral Bat",
  1068. parents: ["bat"]
  1069. },
  1070. "scolipede": {
  1071. name: "Scolipede",
  1072. parents: ["pokemon", "insect"]
  1073. },
  1074. "jackalope": {
  1075. name: "Jackalope",
  1076. parents: ["rabbit", "antelope"]
  1077. },
  1078. "caracal": {
  1079. name: "Caracal",
  1080. parents: ["cat"]
  1081. },
  1082. "stoat": {
  1083. name: "Stoat",
  1084. parents: ["mammal"]
  1085. },
  1086. "african-golden-cat": {
  1087. name: "African Golden Cat",
  1088. parents: ["cat"]
  1089. },
  1090. "gigantosaurus": {
  1091. name: "Gigantosaurus",
  1092. parents: ["dinosaur"]
  1093. },
  1094. "zorgoia": {
  1095. name: "Zorgoia",
  1096. parents: ["mammal"]
  1097. },
  1098. "monitor-lizard": {
  1099. name: "Monitor Lizard",
  1100. parents: ["lizard"]
  1101. },
  1102. "ziralkia": {
  1103. name: "Ziralkia",
  1104. parents: ["mammal"]
  1105. },
  1106. "kiiasi": {
  1107. name: "Kiiasi",
  1108. parents: ["animal"]
  1109. },
  1110. "synx": {
  1111. name: "Synx",
  1112. parents: ["monster"]
  1113. },
  1114. "panther": {
  1115. name: "Panther",
  1116. parents: ["cat"]
  1117. },
  1118. "azumarill": {
  1119. name: "Azumarill",
  1120. parents: ["pokemon"]
  1121. },
  1122. "river-snaptail": {
  1123. name: "River Snaptail",
  1124. parents: ["otter", "crocodile"]
  1125. },
  1126. "great-blue-heron": {
  1127. name: "Great Blue Heron",
  1128. parents: ["avian"]
  1129. },
  1130. "smeargle": {
  1131. name: "Smeargle",
  1132. parents: ["pokemon"]
  1133. },
  1134. "vendeilen": {
  1135. name: "Vendeilen",
  1136. parents: ["monster"]
  1137. },
  1138. "ventura": {
  1139. name: "Ventura",
  1140. parents: ["canine"]
  1141. },
  1142. "clouded-leopard": {
  1143. name: "Clouded Leopard",
  1144. parents: ["leopard"]
  1145. },
  1146. "argonian": {
  1147. name: "Argonian",
  1148. parents: ["lizard"]
  1149. },
  1150. "salazzle": {
  1151. name: "Salazzle",
  1152. parents: ["pokemon", "lizard"]
  1153. },
  1154. "je-stoff-drachen": {
  1155. name: "Je-Stoff Drachen",
  1156. parents: ["dragon"]
  1157. },
  1158. "finnish-spitz-dog": {
  1159. name: "Finnish Spitz Dog",
  1160. parents: ["dog"]
  1161. },
  1162. "gray-fox": {
  1163. name: "Gray Fox",
  1164. parents: ["fox"]
  1165. },
  1166. "opossum": {
  1167. name: "Opossum",
  1168. parents: ["mammal"]
  1169. },
  1170. "antelope": {
  1171. name: "Antelope",
  1172. parents: ["mammal"]
  1173. },
  1174. "weavile": {
  1175. name: "Weavile",
  1176. parents: ["pokemon"]
  1177. },
  1178. "pikachu": {
  1179. name: "Pikachu",
  1180. parents: ["pokemon", "mouse"]
  1181. },
  1182. "grovyle": {
  1183. name: "Grovyle",
  1184. parents: ["pokemon", "plant"]
  1185. },
  1186. "sthara": {
  1187. name: "Sthara",
  1188. parents: ["snow-leopard", "reptile"]
  1189. },
  1190. "star-warrior": {
  1191. name: "Star Warrior",
  1192. parents: ["magical"]
  1193. },
  1194. "dragonoid": {
  1195. name: "Dragonoid",
  1196. parents: ["dragon"]
  1197. },
  1198. "suicune": {
  1199. name: "Suicune",
  1200. parents: ["pokemon"]
  1201. },
  1202. "vole": {
  1203. name: "Vole",
  1204. parents: ["mammal"]
  1205. },
  1206. "blaziken": {
  1207. name: "Blaziken",
  1208. parents: ["pokemon", "avian"]
  1209. },
  1210. "buizel": {
  1211. name: "Buizel",
  1212. parents: ["pokemon", "fish"]
  1213. },
  1214. "floatzel": {
  1215. name: "Floatzel",
  1216. parents: ["pokemon", "fish"]
  1217. },
  1218. "umok": {
  1219. name: "Umok",
  1220. parents: ["avian"]
  1221. },
  1222. "sea-monster": {
  1223. name: "Sea Monster",
  1224. parents: ["monster", "fish"]
  1225. },
  1226. "egyptian-vulture": {
  1227. name: "Egyptian Vulture",
  1228. parents: ["avian"]
  1229. },
  1230. "doberman": {
  1231. name: "Doberman",
  1232. parents: ["dog"]
  1233. },
  1234. "zangoose": {
  1235. name: "Zangoose",
  1236. parents: ["pokemon", "mongoose"]
  1237. },
  1238. "mongoose": {
  1239. name: "Mongoose",
  1240. parents: ["mammal"]
  1241. },
  1242. "wickerbeast": {
  1243. name: "Wickerbeast",
  1244. parents: ["monster"]
  1245. },
  1246. "zenari": {
  1247. name: "Zenari",
  1248. parents: ["lizard"]
  1249. },
  1250. "plant": {
  1251. name: "Plant",
  1252. parents: []
  1253. },
  1254. "raskatox": {
  1255. name: "Raskatox",
  1256. parents: ["raccoon", "skunk", "cat", "fox"]
  1257. },
  1258. "mikromare": {
  1259. name: "mikromare",
  1260. parents: ["alien"]
  1261. },
  1262. "alien": {
  1263. name: "Alien",
  1264. parents: ["animal"]
  1265. },
  1266. "deity": {
  1267. name: "Deity",
  1268. parents: []
  1269. },
  1270. "skarlan": {
  1271. name: "Skarlan",
  1272. parents: ["slug", "dragon"]
  1273. },
  1274. "slug": {
  1275. name: "Slug",
  1276. parents: ["mollusk"]
  1277. },
  1278. "mollusk": {
  1279. name: "Mollusk",
  1280. parents: ["animal"]
  1281. },
  1282. "chimera": {
  1283. name: "Chimera",
  1284. parents: ["monster"]
  1285. },
  1286. "gestalt": {
  1287. name: "Gestalt",
  1288. parents: ["construct"]
  1289. },
  1290. "mimic": {
  1291. name: "Mimic",
  1292. parents: ["monster"]
  1293. },
  1294. "calico-rat": {
  1295. name: "Calico Rat",
  1296. parents: ["rat"]
  1297. },
  1298. "panda": {
  1299. name: "Panda",
  1300. parents: ["mammal"]
  1301. },
  1302. "oni": {
  1303. name: "Oni",
  1304. parents: ["monster"]
  1305. },
  1306. "pegasus": {
  1307. name: "Pegasus",
  1308. parents: ["horse"]
  1309. },
  1310. "vulpera": {
  1311. name: "Vulpera",
  1312. parents: ["fennec-fox"]
  1313. },
  1314. "ceratosaurus": {
  1315. name: "Ceratosaurus",
  1316. parents: ["dinosaur"]
  1317. },
  1318. "nykur": {
  1319. name: "Nykur",
  1320. parents: ["horse", "monster"]
  1321. },
  1322. "giraffe": {
  1323. name: "Giraffe",
  1324. parents: ["mammal"]
  1325. },
  1326. "tauren": {
  1327. name: "Tauren",
  1328. parents: ["cow"]
  1329. },
  1330. "draconi": {
  1331. name: "Draconi",
  1332. parents: ["alien", "cat", "cyborg"]
  1333. },
  1334. "dire-wolf": {
  1335. name: "Dire Wolf",
  1336. parents: ["wolf"]
  1337. },
  1338. "ferromorph": {
  1339. name: "Ferromorph",
  1340. parents: ["construct"]
  1341. },
  1342. "meowth": {
  1343. name: "Meowth",
  1344. parents: ["cat", "pokemon"]
  1345. },
  1346. "pavodragon": {
  1347. name: "Pavodragon",
  1348. parents: ["dragon"]
  1349. },
  1350. "aaltranae": {
  1351. name: "Aaltranae",
  1352. parents: ["dragon"]
  1353. },
  1354. "cyborg": {
  1355. name: "Cyborg",
  1356. parents: ["machine"]
  1357. },
  1358. "draptor": {
  1359. name: "Draptor",
  1360. parents: ["dragon"]
  1361. },
  1362. "candy": {
  1363. name: "Candy",
  1364. parents: []
  1365. },
  1366. "drenath": {
  1367. name: "Drenath",
  1368. parents: ["dragon", "snake", "rabbit"]
  1369. },
  1370. "coyju": {
  1371. name: "Coyju",
  1372. parents: ["coyote", "kaiju"]
  1373. },
  1374. "kaiju": {
  1375. name: "Kaiju",
  1376. parents: ["monster"]
  1377. },
  1378. "nickit": {
  1379. name: "Nickit",
  1380. parents: ["pokemon", "cat"]
  1381. },
  1382. "lopunny": {
  1383. name: "Lopunny",
  1384. parents: ["pokemon", "rabbit"]
  1385. },
  1386. "korean-jindo-dog": {
  1387. name: "Korean Jindo Dog",
  1388. parents: ["dog"]
  1389. },
  1390. "naga": {
  1391. name: "Naga",
  1392. parents: ["snake", "monster"]
  1393. },
  1394. "undead": {
  1395. name: "Undead",
  1396. parents: ["monster"]
  1397. },
  1398. "whale": {
  1399. name: "Whale",
  1400. parents: ["fish"]
  1401. },
  1402. "gelato-bee": {
  1403. name: "Gelato Bee",
  1404. parents: ["bee"]
  1405. },
  1406. "bee": {
  1407. name: "Bee",
  1408. parents: ["insect"]
  1409. },
  1410. "gardevoir": {
  1411. name: "Gardevoir",
  1412. parents: ["pokemon"]
  1413. },
  1414. "ant": {
  1415. name: "Ant",
  1416. parents: ["insect"]
  1417. },
  1418. "frog": {
  1419. name: "Frog",
  1420. parents: ["amphibian"]
  1421. },
  1422. "amphibian": {
  1423. name: "Amphibian",
  1424. parents: ["animal"]
  1425. },
  1426. "pangolin": {
  1427. name: "Pangolin",
  1428. parents: ["mammal"]
  1429. },
  1430. "uragi'viidorn": {
  1431. name: "Uragi'viidorn",
  1432. parents: ["avian", "bear"]
  1433. },
  1434. "gryphdelphais": {
  1435. name: "Gryphdelphais",
  1436. parents: ["dolphin", "gryphon"]
  1437. },
  1438. "plush": {
  1439. name: "Plush",
  1440. parents: ["construct"]
  1441. },
  1442. "draiger": {
  1443. name: "Draiger",
  1444. parents: ["dragon","tiger"]
  1445. },
  1446. "foxsky": {
  1447. name: "Foxsky",
  1448. parents: ["fox", "husky"]
  1449. },
  1450. "umbreon": {
  1451. name: "Umbreon",
  1452. parents: ["eeveelution"]
  1453. },
  1454. "slime-dragon": {
  1455. name: "Slime Dragon",
  1456. parents: ["dragon", "goo"]
  1457. },
  1458. "enderman": {
  1459. name: "Enderman",
  1460. parents: ["monster"]
  1461. },
  1462. "gremlin": {
  1463. name: "Gremlin",
  1464. parents: ["monster"]
  1465. },
  1466. "dragonsune": {
  1467. name: "Dragonsune",
  1468. parents: ["dragon", "kitsune"]
  1469. },
  1470. "ghost": {
  1471. name: "Ghost",
  1472. parents: ["supernatural"]
  1473. },
  1474. "false-vampire-bat": {
  1475. name: "False Vampire Bat",
  1476. parents: ["bat"]
  1477. },
  1478. "succubus": {
  1479. name: "Succubus",
  1480. parents: ["demon"]
  1481. },
  1482. "mia": {
  1483. name: "Mia",
  1484. parents: ["canine"]
  1485. },
  1486. "rainbow": {
  1487. name: "Rainbow",
  1488. parents: ["monster"]
  1489. },
  1490. "solgaleo": {
  1491. name: "Solgaleo",
  1492. parents: ["pokemon"]
  1493. },
  1494. "lucent-nargacuga": {
  1495. name: "Lucent Nargacuga",
  1496. parents: ["nargacuga"]
  1497. },
  1498. "monster-hunter": {
  1499. name: "Monster Hunter",
  1500. parents: ["monster"]
  1501. },
  1502. "leviathan": {
  1503. "name": "Leviathan",
  1504. "url": "sea-monster"
  1505. },
  1506. "bull": {
  1507. name: "Bull",
  1508. parents: ["mammal"]
  1509. },
  1510. "tanuki": {
  1511. name: "Tanuki",
  1512. parents: ["monster"]
  1513. },
  1514. "chakat": {
  1515. name: "Chakat",
  1516. parents: ["cat"]
  1517. },
  1518. "hydra": {
  1519. name: "Hydra",
  1520. parents: ["monster"]
  1521. },
  1522. "zigzagoon": {
  1523. name: "Zigzagoon",
  1524. parents: ["raccoon", "pokemon"]
  1525. },
  1526. "vulture": {
  1527. name: "Vulture",
  1528. parents: ["avian"]
  1529. },
  1530. "eastern-dragon": {
  1531. name: "Eastern Dragon",
  1532. parents: ["dragon"]
  1533. },
  1534. "gryffon": {
  1535. name: "Gryffon",
  1536. parents: ["phoenix", "red-panda"]
  1537. },
  1538. "amtsvane": {
  1539. name: "Amtsvane",
  1540. parents: ["reptile"]
  1541. },
  1542. "kigavi": {
  1543. name: "Kigavi",
  1544. parents: ["avian"]
  1545. },
  1546. "turian": {
  1547. name: "Turian",
  1548. parents: ["avian"]
  1549. },
  1550. "zeraora": {
  1551. name: "Zeraora",
  1552. parents: ["pokemon", "cat"]
  1553. },
  1554. "sandshrew": {
  1555. name: "Sandshrew",
  1556. parents: ["pokemon", "pangolin"]
  1557. },
  1558. "valais-blacknose-sheep": {
  1559. name: "Valais Blacknose Sheep",
  1560. parents: ["sheep"]
  1561. },
  1562. "novaleit": {
  1563. name: "Novaleit",
  1564. parents: ["mammal"]
  1565. },
  1566. "dunnoh": {
  1567. name: "Dunnoh",
  1568. parents: ["mammal"]
  1569. },
  1570. "lunaral-dragon": {
  1571. name: "Lunaral Dragon",
  1572. parents: ["dragon"]
  1573. },
  1574. "arctic-wolf": {
  1575. name: "Arctic Wolf",
  1576. parents: ["wolf"]
  1577. },
  1578. "donkey": {
  1579. name: "Donkey",
  1580. parents: ["horse"]
  1581. },
  1582. "chinchilla": {
  1583. name: "Chinchilla",
  1584. parents: ["rodent"]
  1585. },
  1586. "felkin": {
  1587. name: "Felkin",
  1588. parents: ["dragon"]
  1589. },
  1590. "tykeriel": {
  1591. name: "Tykeriel",
  1592. parents: ["avian"]
  1593. },
  1594. "folf": {
  1595. name: "Folf",
  1596. parents: ["fox", "wolf"]
  1597. },
  1598. "pooltoy": {
  1599. name: "Pooltoy",
  1600. parents: ["construct"]
  1601. },
  1602. "demi": {
  1603. name: "Demi",
  1604. parents: ["human"]
  1605. },
  1606. "stegosaurus": {
  1607. name: "Stegosaurus",
  1608. parents: ["dinosaur"]
  1609. },
  1610. "computer-virus": {
  1611. name: "Computer Virus",
  1612. parents: ["program"]
  1613. },
  1614. "program": {
  1615. name: "Program",
  1616. parents: ["construct"]
  1617. },
  1618. "space-springhare": {
  1619. name: "Space Springhare",
  1620. parents: ["hare"]
  1621. },
  1622. "river-drake": {
  1623. name: "River Drake",
  1624. parents: ["dragon"]
  1625. },
  1626. "djinn": {
  1627. "name": "Djinn",
  1628. "url": "supernatural"
  1629. },
  1630. "supernatural": {
  1631. name: "Supernatural",
  1632. parents: ["monster"]
  1633. },
  1634. "grasshopper-mouse": {
  1635. name: "Grasshopper Mouse",
  1636. parents: ["mouse"]
  1637. },
  1638. "somali-cat": {
  1639. name: "Somali Cat",
  1640. parents: ["cat"]
  1641. },
  1642. "minccino": {
  1643. name: "Minccino",
  1644. parents: ["pokemon", "chinchilla"]
  1645. },
  1646. "pine-marten": {
  1647. name: "Pine Marten",
  1648. parents: ["marten"]
  1649. },
  1650. "marten": {
  1651. name: "Marten",
  1652. parents: ["mustelid"]
  1653. },
  1654. "mustelid": {
  1655. name: "Mustelid",
  1656. parents: ["mammal"]
  1657. },
  1658. "caribou": {
  1659. name: "Caribou",
  1660. parents: ["deer"]
  1661. },
  1662. "gnoll": {
  1663. name: "Gnoll",
  1664. parents: ["hyena", "monster"]
  1665. },
  1666. "peacekeeper": {
  1667. name: "Peacekeeper",
  1668. parents: ["human"]
  1669. },
  1670. "river-otter": {
  1671. name: "River Otter",
  1672. parents: ["otter"]
  1673. },
  1674. "dhole": {
  1675. name: "Dhole",
  1676. parents: ["canine"]
  1677. },
  1678. "springbok": {
  1679. name: "Springbok",
  1680. parents: ["antelope"]
  1681. },
  1682. "marsupial": {
  1683. name: "Marsupial",
  1684. parents: ["mammal"]
  1685. },
  1686. "townsend-big-eared-bat": {
  1687. name: "Townsend Big-eared Bat",
  1688. parents: ["bat"]
  1689. },
  1690. "squirrel": {
  1691. name: "Squirrel",
  1692. parents: ["rodent"]
  1693. },
  1694. "magpie": {
  1695. name: "Magpie",
  1696. parents: ["corvid"]
  1697. },
  1698. "civet": {
  1699. name: "Civet",
  1700. parents: ["feliform"]
  1701. },
  1702. "feliform": {
  1703. name: "Feliform",
  1704. parents: ["mammal"]
  1705. },
  1706. "tiefling": {
  1707. name: "Tiefling",
  1708. parents: ["devil"]
  1709. },
  1710. "devil": {
  1711. name: "Devil",
  1712. parents: ["supernatural"]
  1713. },
  1714. "sika-deer": {
  1715. name: "Sika Deer",
  1716. parents: ["deer"]
  1717. },
  1718. "vaporeon": {
  1719. name: "Vaporeon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "leafeon": {
  1723. name: "Leafeon",
  1724. parents: ["eeveelution"]
  1725. },
  1726. "jolteon": {
  1727. name: "Jolteon",
  1728. parents: ["eeveelution"]
  1729. },
  1730. "spireborn": {
  1731. name: "Spireborn",
  1732. parents: ["zorgoia"]
  1733. },
  1734. "vampire": {
  1735. name: "Vampire",
  1736. parents: ["monster"]
  1737. },
  1738. "extraplanar": {
  1739. name: "Extraplanar",
  1740. parents: []
  1741. },
  1742. "goo": {
  1743. name: "Goo",
  1744. parents: []
  1745. },
  1746. "skink": {
  1747. name: "Skink",
  1748. parents: ["lizard"]
  1749. },
  1750. "bat-eared-fox": {
  1751. name: "Bat-eared Fox",
  1752. parents: ["fox"]
  1753. },
  1754. "belted-kingfisher": {
  1755. name: "Belted Kingfisher",
  1756. parents: ["avian"]
  1757. },
  1758. "omnifalcon": {
  1759. name: "Omnifalcon",
  1760. parents: ["gryphon", "falcon", "harpy-eagle"]
  1761. },
  1762. "falcon": {
  1763. name: "Falcon",
  1764. parents: ["bird-of-prey"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. "raichu": {
  2003. name: "Raichu",
  2004. parents: ["pikachu"]
  2005. },
  2006. "taur": {
  2007. name: "Taur",
  2008. parents: []
  2009. },
  2010. "continental-giant-rabbit": {
  2011. name: "Continental Giant Rabbit",
  2012. parents: ["rabbit"]
  2013. },
  2014. "demigryph": {
  2015. name: "Demigryph",
  2016. parents: ["lion", "eagle"]
  2017. },
  2018. "bald-eagle": {
  2019. name: "Bald Eagle",
  2020. parents: ["eagle"]
  2021. },
  2022. "kestrel": {
  2023. name: "Kestrel",
  2024. parents: ["falcon"]
  2025. },
  2026. "mockingbird": {
  2027. name: "Mockingbird",
  2028. parents: ["songbird"]
  2029. },
  2030. "songbird": {
  2031. name: "Songbird",
  2032. parents: ["avian"]
  2033. },
  2034. "bird-of-prey": {
  2035. name: "Bird of Prey",
  2036. parents: ["avian"]
  2037. },
  2038. "marowak": {
  2039. name: "Marowak",
  2040. parents: ["pokemon", "reptile"]
  2041. },
  2042. "joltik": {
  2043. name: "Joltik",
  2044. parents: ["pokemon", "insect"]
  2045. },
  2046. "mink": {
  2047. name: "Mink",
  2048. parents: ["mustelid"]
  2049. },
  2050. "sandcat": {
  2051. name: "Sandcat",
  2052. parents: ["cat"]
  2053. },
  2054. "hrothgar": {
  2055. name: "Hrothgar",
  2056. parents: ["cat"]
  2057. },
  2058. "garchomp": {
  2059. name: "Garchomp",
  2060. parents: ["dragon", "pokemon"]
  2061. },
  2062. "nargacuga": {
  2063. name: "Nargacuga",
  2064. parents: ["monster-hunter"]
  2065. },
  2066. "sable": {
  2067. name: "Sable",
  2068. parents: ["marten"]
  2069. },
  2070. "deino": {
  2071. name: "Deino",
  2072. parents: ["pokemon", "dinosaur"]
  2073. },
  2074. "housecat": {
  2075. name: "Housecat",
  2076. parents: ["cat"]
  2077. },
  2078. "bombay-cat": {
  2079. name: "Bombay Cat",
  2080. parents: ["housecat"]
  2081. },
  2082. "maine-coon": {
  2083. name: "Maine Coon",
  2084. parents: ["housecat"]
  2085. },
  2086. "coelacanth": {
  2087. name: "Coelacanth",
  2088. parents: ["fish"]
  2089. },
  2090. }
  2091. //species
  2092. function getSpeciesInfo(speciesList) {
  2093. let result = new Set();
  2094. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2095. result.add(entry)
  2096. });
  2097. return Array.from(result);
  2098. };
  2099. function getSpeciesInfoHelper(species) {
  2100. if (!speciesData[species]) {
  2101. console.warn(species + " doesn't exist");
  2102. return [];
  2103. }
  2104. if (speciesData[species].parents) {
  2105. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2106. } else {
  2107. return [species];
  2108. }
  2109. }
  2110. characterMakers.push(() => makeCharacter(
  2111. {
  2112. name: "Fen",
  2113. species: ["crux"],
  2114. description: {
  2115. title: "Bio",
  2116. text: "Very furry. Sheds on everything."
  2117. },
  2118. tags: [
  2119. "anthro",
  2120. "goo"
  2121. ]
  2122. },
  2123. {
  2124. front: {
  2125. height: math.unit(12, "feet"),
  2126. weight: math.unit(2400, "lb"),
  2127. preyCapacity: math.unit(1, "people"),
  2128. name: "Front",
  2129. image: {
  2130. source: "./media/characters/fen/front.svg",
  2131. extra: 1804/1562,
  2132. bottom: 205/2009
  2133. },
  2134. extraAttributes: {
  2135. pawSize: {
  2136. name: "Paw Size",
  2137. power: 2,
  2138. type: "area",
  2139. base: math.unit(0.35, "m^2")
  2140. }
  2141. }
  2142. },
  2143. diving: {
  2144. height: math.unit(4.9, "meters"),
  2145. weight: math.unit(2400, "lb"),
  2146. name: "Diving",
  2147. image: {
  2148. source: "./media/characters/fen/diving.svg"
  2149. }
  2150. },
  2151. sleeby: {
  2152. height: math.unit(3.45, "meters"),
  2153. weight: math.unit(2400, "lb"),
  2154. name: "Sleeby",
  2155. image: {
  2156. source: "./media/characters/fen/sleeby.svg"
  2157. }
  2158. },
  2159. goo: {
  2160. height: math.unit(12, "feet"),
  2161. weight: math.unit(3600, "lb"),
  2162. volume: math.unit(1000, "liters"),
  2163. preyCapacity: math.unit(6, "people"),
  2164. name: "Goo",
  2165. image: {
  2166. source: "./media/characters/fen/goo.svg",
  2167. extra: 1307/1071,
  2168. bottom: 134/1441
  2169. }
  2170. },
  2171. gooNsfw: {
  2172. height: math.unit(12, "feet"),
  2173. weight: math.unit(3750, "lb"),
  2174. volume: math.unit(1000, "liters"),
  2175. preyCapacity: math.unit(6, "people"),
  2176. name: "Goo (NSFW)",
  2177. image: {
  2178. source: "./media/characters/fen/goo-nsfw.svg",
  2179. extra: 1875/1734,
  2180. bottom: 122/1997
  2181. }
  2182. },
  2183. maw: {
  2184. height: math.unit(5.03, "feet"),
  2185. name: "Maw",
  2186. image: {
  2187. source: "./media/characters/fen/maw.svg"
  2188. }
  2189. },
  2190. gooCeiling: {
  2191. height: math.unit(6.6, "feet"),
  2192. weight: math.unit(3000, "lb"),
  2193. volume: math.unit(1000, "liters"),
  2194. preyCapacity: math.unit(6, "people"),
  2195. name: "Goo (Ceiling)",
  2196. image: {
  2197. source: "./media/characters/fen/goo-ceiling.svg"
  2198. }
  2199. },
  2200. paw: {
  2201. height: math.unit(3.77, "feet"),
  2202. name: "Paw",
  2203. image: {
  2204. source: "./media/characters/fen/paw.svg"
  2205. },
  2206. extraAttributes: {
  2207. "toeSize": {
  2208. name: "Toe Size",
  2209. power: 2,
  2210. type: "area",
  2211. base: math.unit(0.02875, "m^2")
  2212. },
  2213. "pawSize": {
  2214. name: "Paw Size",
  2215. power: 2,
  2216. type: "area",
  2217. base: math.unit(0.378, "m^2")
  2218. },
  2219. }
  2220. },
  2221. tail: {
  2222. height: math.unit(12.1, "feet"),
  2223. name: "Tail",
  2224. image: {
  2225. source: "./media/characters/fen/tail.svg"
  2226. }
  2227. },
  2228. tailFull: {
  2229. height: math.unit(12.1, "feet"),
  2230. name: "Full Tail",
  2231. image: {
  2232. source: "./media/characters/fen/tail-full.svg"
  2233. }
  2234. },
  2235. back: {
  2236. height: math.unit(12, "feet"),
  2237. weight: math.unit(2400, "lb"),
  2238. name: "Back",
  2239. image: {
  2240. source: "./media/characters/fen/back.svg",
  2241. },
  2242. info: {
  2243. description: {
  2244. mode: "append",
  2245. text: "\n\nHe is not currently looking at you."
  2246. }
  2247. }
  2248. },
  2249. full: {
  2250. height: math.unit(1.85, "meter"),
  2251. weight: math.unit(3200, "lb"),
  2252. name: "Full",
  2253. image: {
  2254. source: "./media/characters/fen/full.svg",
  2255. extra: 1133/859,
  2256. bottom: 145/1278
  2257. },
  2258. info: {
  2259. description: {
  2260. mode: "append",
  2261. text: "\n\nMunch."
  2262. }
  2263. }
  2264. },
  2265. gooLounging: {
  2266. height: math.unit(4.53, "feet"),
  2267. weight: math.unit(3000, "lb"),
  2268. preyCapacity: math.unit(6, "people"),
  2269. name: "Goo (Lounging)",
  2270. image: {
  2271. source: "./media/characters/fen/goo-lounging.svg",
  2272. bottom: 116 / 613
  2273. }
  2274. },
  2275. lounging: {
  2276. height: math.unit(10.52, "feet"),
  2277. weight: math.unit(2400, "lb"),
  2278. name: "Lounging",
  2279. image: {
  2280. source: "./media/characters/fen/lounging.svg"
  2281. }
  2282. },
  2283. },
  2284. [
  2285. {
  2286. name: "Small",
  2287. height: math.unit(2.2428, "meter")
  2288. },
  2289. {
  2290. name: "Normal",
  2291. height: math.unit(12, "feet"),
  2292. default: true,
  2293. },
  2294. {
  2295. name: "Big",
  2296. height: math.unit(20, "feet")
  2297. },
  2298. {
  2299. name: "Minimacro",
  2300. height: math.unit(40, "feet"),
  2301. info: {
  2302. description: {
  2303. mode: "append",
  2304. text: "\n\nTOO DAMN BIG"
  2305. }
  2306. }
  2307. },
  2308. {
  2309. name: "Macro",
  2310. height: math.unit(100, "feet"),
  2311. info: {
  2312. description: {
  2313. mode: "append",
  2314. text: "\n\nTOO DAMN BIG"
  2315. }
  2316. }
  2317. },
  2318. {
  2319. name: "Megamacro",
  2320. height: math.unit(2, "miles")
  2321. },
  2322. {
  2323. name: "Gigamacro",
  2324. height: math.unit(10, "earths")
  2325. },
  2326. ]
  2327. ))
  2328. characterMakers.push(() => makeCharacter(
  2329. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2330. {
  2331. front: {
  2332. height: math.unit(183, "cm"),
  2333. weight: math.unit(80, "kg"),
  2334. name: "Front",
  2335. image: {
  2336. source: "./media/characters/sofia-fluttertail/front.svg",
  2337. bottom: 0.01,
  2338. extra: 2154 / 2081
  2339. }
  2340. },
  2341. frontAlt: {
  2342. height: math.unit(183, "cm"),
  2343. weight: math.unit(80, "kg"),
  2344. name: "Front (alt)",
  2345. image: {
  2346. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2347. }
  2348. },
  2349. back: {
  2350. height: math.unit(183, "cm"),
  2351. weight: math.unit(80, "kg"),
  2352. name: "Back",
  2353. image: {
  2354. source: "./media/characters/sofia-fluttertail/back.svg"
  2355. }
  2356. },
  2357. kneeling: {
  2358. height: math.unit(125, "cm"),
  2359. weight: math.unit(80, "kg"),
  2360. name: "Kneeling",
  2361. image: {
  2362. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2363. extra: 1033 / 977,
  2364. bottom: 23.7 / 1057
  2365. }
  2366. },
  2367. maw: {
  2368. height: math.unit(183 / 5, "cm"),
  2369. name: "Maw",
  2370. image: {
  2371. source: "./media/characters/sofia-fluttertail/maw.svg"
  2372. }
  2373. },
  2374. mawcloseup: {
  2375. height: math.unit(183 / 5 * 0.41, "cm"),
  2376. name: "Maw (Closeup)",
  2377. image: {
  2378. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2379. }
  2380. },
  2381. paws: {
  2382. height: math.unit(1.17, "feet"),
  2383. name: "Paws",
  2384. image: {
  2385. source: "./media/characters/sofia-fluttertail/paws.svg",
  2386. extra: 851 / 851,
  2387. bottom: 17 / 868
  2388. }
  2389. },
  2390. },
  2391. [
  2392. {
  2393. name: "Normal",
  2394. height: math.unit(1.83, "meter")
  2395. },
  2396. {
  2397. name: "Size Thief",
  2398. height: math.unit(18, "feet")
  2399. },
  2400. {
  2401. name: "50 Foot Collie",
  2402. height: math.unit(50, "feet")
  2403. },
  2404. {
  2405. name: "Macro",
  2406. height: math.unit(96, "feet"),
  2407. default: true
  2408. },
  2409. {
  2410. name: "Megamerger",
  2411. height: math.unit(650, "feet")
  2412. },
  2413. ]
  2414. ))
  2415. characterMakers.push(() => makeCharacter(
  2416. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2417. {
  2418. front: {
  2419. height: math.unit(7, "feet"),
  2420. weight: math.unit(100, "kg"),
  2421. name: "Front",
  2422. image: {
  2423. source: "./media/characters/march/front.svg",
  2424. extra: 1992/1851,
  2425. bottom: 39/2031
  2426. }
  2427. },
  2428. foot: {
  2429. height: math.unit(0.9, "feet"),
  2430. name: "Foot",
  2431. image: {
  2432. source: "./media/characters/march/foot.svg"
  2433. }
  2434. },
  2435. },
  2436. [
  2437. {
  2438. name: "Normal",
  2439. height: math.unit(7.9, "feet")
  2440. },
  2441. {
  2442. name: "Macro",
  2443. height: math.unit(220, "meters")
  2444. },
  2445. {
  2446. name: "Megamacro",
  2447. height: math.unit(2.98, "km"),
  2448. default: true
  2449. },
  2450. {
  2451. name: "Gigamacro",
  2452. height: math.unit(15963, "km")
  2453. },
  2454. {
  2455. name: "Teramacro",
  2456. height: math.unit(2980000000, "km")
  2457. },
  2458. {
  2459. name: "Examacro",
  2460. height: math.unit(250, "parsecs")
  2461. },
  2462. ]
  2463. ))
  2464. characterMakers.push(() => makeCharacter(
  2465. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2466. {
  2467. front: {
  2468. height: math.unit(6, "feet"),
  2469. weight: math.unit(60, "kg"),
  2470. name: "Front",
  2471. image: {
  2472. source: "./media/characters/noir/front.svg",
  2473. extra: 1,
  2474. bottom: 0.032
  2475. }
  2476. },
  2477. },
  2478. [
  2479. {
  2480. name: "Normal",
  2481. height: math.unit(6.6, "feet")
  2482. },
  2483. {
  2484. name: "Macro",
  2485. height: math.unit(500, "feet")
  2486. },
  2487. {
  2488. name: "Megamacro",
  2489. height: math.unit(2.5, "km"),
  2490. default: true
  2491. },
  2492. {
  2493. name: "Gigamacro",
  2494. height: math.unit(22500, "km")
  2495. },
  2496. {
  2497. name: "Teramacro",
  2498. height: math.unit(2500000000, "km")
  2499. },
  2500. {
  2501. name: "Examacro",
  2502. height: math.unit(200, "parsecs")
  2503. },
  2504. ]
  2505. ))
  2506. characterMakers.push(() => makeCharacter(
  2507. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2508. {
  2509. front: {
  2510. height: math.unit(7, "feet"),
  2511. weight: math.unit(100, "kg"),
  2512. name: "Front",
  2513. image: {
  2514. source: "./media/characters/okuri/front.svg",
  2515. extra: 739/665,
  2516. bottom: 39/778
  2517. }
  2518. },
  2519. back: {
  2520. height: math.unit(7, "feet"),
  2521. weight: math.unit(100, "kg"),
  2522. name: "Back",
  2523. image: {
  2524. source: "./media/characters/okuri/back.svg",
  2525. extra: 734/653,
  2526. bottom: 13/747
  2527. }
  2528. },
  2529. sitting: {
  2530. height: math.unit(2.95, "feet"),
  2531. weight: math.unit(100, "kg"),
  2532. name: "Sitting",
  2533. image: {
  2534. source: "./media/characters/okuri/sitting.svg",
  2535. extra: 370/318,
  2536. bottom: 99/469
  2537. }
  2538. },
  2539. },
  2540. [
  2541. {
  2542. name: "Smallest",
  2543. height: math.unit(5 + 2/12, "feet")
  2544. },
  2545. {
  2546. name: "Smaller",
  2547. height: math.unit(300, "feet")
  2548. },
  2549. {
  2550. name: "Small",
  2551. height: math.unit(1000, "feet")
  2552. },
  2553. {
  2554. name: "Macro",
  2555. height: math.unit(1, "mile")
  2556. },
  2557. {
  2558. name: "Mega Macro (Small)",
  2559. height: math.unit(20, "km")
  2560. },
  2561. {
  2562. name: "Mega Macro (Large)",
  2563. height: math.unit(600, "km")
  2564. },
  2565. {
  2566. name: "Giga Macro",
  2567. height: math.unit(10000, "km")
  2568. },
  2569. {
  2570. name: "Normal",
  2571. height: math.unit(577560, "km"),
  2572. default: true
  2573. },
  2574. {
  2575. name: "Large",
  2576. height: math.unit(4, "galaxies")
  2577. },
  2578. {
  2579. name: "Largest",
  2580. height: math.unit(15, "multiverses")
  2581. },
  2582. ]
  2583. ))
  2584. characterMakers.push(() => makeCharacter(
  2585. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2586. {
  2587. front: {
  2588. height: math.unit(7, "feet"),
  2589. weight: math.unit(100, "kg"),
  2590. name: "Front",
  2591. image: {
  2592. source: "./media/characters/manny/front.svg",
  2593. extra: 1,
  2594. bottom: 0.06
  2595. }
  2596. },
  2597. back: {
  2598. height: math.unit(7, "feet"),
  2599. weight: math.unit(100, "kg"),
  2600. name: "Back",
  2601. image: {
  2602. source: "./media/characters/manny/back.svg",
  2603. extra: 1,
  2604. bottom: 0.014
  2605. }
  2606. },
  2607. },
  2608. [
  2609. {
  2610. name: "Normal",
  2611. height: math.unit(7, "feet"),
  2612. },
  2613. {
  2614. name: "Macro",
  2615. height: math.unit(78, "feet"),
  2616. default: true
  2617. },
  2618. {
  2619. name: "Macro+",
  2620. height: math.unit(300, "meters")
  2621. },
  2622. {
  2623. name: "Macro++",
  2624. height: math.unit(2400, "meters")
  2625. },
  2626. {
  2627. name: "Megamacro",
  2628. height: math.unit(5167, "meters")
  2629. },
  2630. {
  2631. name: "Gigamacro",
  2632. height: math.unit(41769, "miles")
  2633. },
  2634. ]
  2635. ))
  2636. characterMakers.push(() => makeCharacter(
  2637. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2638. {
  2639. front: {
  2640. height: math.unit(7, "feet"),
  2641. weight: math.unit(100, "kg"),
  2642. name: "Front",
  2643. image: {
  2644. source: "./media/characters/adake/front-1.svg"
  2645. }
  2646. },
  2647. frontAlt: {
  2648. height: math.unit(7, "feet"),
  2649. weight: math.unit(100, "kg"),
  2650. name: "Front (Alt)",
  2651. image: {
  2652. source: "./media/characters/adake/front-2.svg",
  2653. extra: 1,
  2654. bottom: 0.01
  2655. }
  2656. },
  2657. back: {
  2658. height: math.unit(7, "feet"),
  2659. weight: math.unit(100, "kg"),
  2660. name: "Back",
  2661. image: {
  2662. source: "./media/characters/adake/back.svg",
  2663. }
  2664. },
  2665. kneel: {
  2666. height: math.unit(5.385, "feet"),
  2667. weight: math.unit(100, "kg"),
  2668. name: "Kneeling",
  2669. image: {
  2670. source: "./media/characters/adake/kneel.svg",
  2671. bottom: 0.052
  2672. }
  2673. },
  2674. },
  2675. [
  2676. {
  2677. name: "Normal",
  2678. height: math.unit(7, "feet"),
  2679. },
  2680. {
  2681. name: "Macro",
  2682. height: math.unit(78, "feet"),
  2683. default: true
  2684. },
  2685. {
  2686. name: "Macro+",
  2687. height: math.unit(300, "meters")
  2688. },
  2689. {
  2690. name: "Macro++",
  2691. height: math.unit(2400, "meters")
  2692. },
  2693. {
  2694. name: "Megamacro",
  2695. height: math.unit(5167, "meters")
  2696. },
  2697. {
  2698. name: "Gigamacro",
  2699. height: math.unit(41769, "miles")
  2700. },
  2701. ]
  2702. ))
  2703. characterMakers.push(() => makeCharacter(
  2704. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2705. {
  2706. front: {
  2707. height: math.unit(1.65, "meters"),
  2708. weight: math.unit(50, "kg"),
  2709. name: "Front",
  2710. image: {
  2711. source: "./media/characters/elijah/front.svg",
  2712. extra: 858 / 830,
  2713. bottom: 95.5 / 953.8559
  2714. }
  2715. },
  2716. back: {
  2717. height: math.unit(1.65, "meters"),
  2718. weight: math.unit(50, "kg"),
  2719. name: "Back",
  2720. image: {
  2721. source: "./media/characters/elijah/back.svg",
  2722. extra: 895 / 850,
  2723. bottom: 5.3 / 897.956
  2724. }
  2725. },
  2726. frontNsfw: {
  2727. height: math.unit(1.65, "meters"),
  2728. weight: math.unit(50, "kg"),
  2729. name: "Front (NSFW)",
  2730. image: {
  2731. source: "./media/characters/elijah/front-nsfw.svg",
  2732. extra: 858 / 830,
  2733. bottom: 95.5 / 953.8559
  2734. }
  2735. },
  2736. backNsfw: {
  2737. height: math.unit(1.65, "meters"),
  2738. weight: math.unit(50, "kg"),
  2739. name: "Back (NSFW)",
  2740. image: {
  2741. source: "./media/characters/elijah/back-nsfw.svg",
  2742. extra: 895 / 850,
  2743. bottom: 5.3 / 897.956
  2744. }
  2745. },
  2746. dick: {
  2747. height: math.unit(1, "feet"),
  2748. name: "Dick",
  2749. image: {
  2750. source: "./media/characters/elijah/dick.svg"
  2751. }
  2752. },
  2753. beakOpen: {
  2754. height: math.unit(1.25, "feet"),
  2755. name: "Beak (Open)",
  2756. image: {
  2757. source: "./media/characters/elijah/beak-open.svg"
  2758. }
  2759. },
  2760. beakShut: {
  2761. height: math.unit(1.25, "feet"),
  2762. name: "Beak (Shut)",
  2763. image: {
  2764. source: "./media/characters/elijah/beak-shut.svg"
  2765. }
  2766. },
  2767. footFlexing: {
  2768. height: math.unit(1.61, "feet"),
  2769. name: "Foot (Flexing)",
  2770. image: {
  2771. source: "./media/characters/elijah/foot-flexing.svg"
  2772. }
  2773. },
  2774. footStepping: {
  2775. height: math.unit(1.44, "feet"),
  2776. name: "Foot (Stepping)",
  2777. image: {
  2778. source: "./media/characters/elijah/foot-stepping.svg"
  2779. }
  2780. },
  2781. plantigradeLeg: {
  2782. height: math.unit(2.34, "feet"),
  2783. name: "Plantigrade Leg",
  2784. image: {
  2785. source: "./media/characters/elijah/plantigrade-leg.svg"
  2786. }
  2787. },
  2788. plantigradeFootLeft: {
  2789. height: math.unit(0.9, "feet"),
  2790. name: "Plantigrade Foot (Left)",
  2791. image: {
  2792. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2793. }
  2794. },
  2795. plantigradeFootRight: {
  2796. height: math.unit(0.9, "feet"),
  2797. name: "Plantigrade Foot (Right)",
  2798. image: {
  2799. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2800. }
  2801. },
  2802. },
  2803. [
  2804. {
  2805. name: "Normal",
  2806. height: math.unit(1.65, "meters")
  2807. },
  2808. {
  2809. name: "Macro",
  2810. height: math.unit(55, "meters"),
  2811. default: true
  2812. },
  2813. {
  2814. name: "Macro+",
  2815. height: math.unit(105, "meters")
  2816. },
  2817. ]
  2818. ))
  2819. characterMakers.push(() => makeCharacter(
  2820. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2821. {
  2822. front: {
  2823. height: math.unit(7 + 2/12, "feet"),
  2824. weight: math.unit(320, "kg"),
  2825. preyCapacity: math.unit(0.276549935, "people"),
  2826. name: "Front",
  2827. image: {
  2828. source: "./media/characters/rai/front.svg",
  2829. extra: 1802/1696,
  2830. bottom: 68/1870
  2831. },
  2832. form: "anthro",
  2833. default: true
  2834. },
  2835. frontDressed: {
  2836. height: math.unit(7 + 2/12, "feet"),
  2837. weight: math.unit(320, "kg"),
  2838. preyCapacity: math.unit(0.276549935, "people"),
  2839. name: "Front (Dressed)",
  2840. image: {
  2841. source: "./media/characters/rai/front-dressed.svg",
  2842. extra: 1802/1696,
  2843. bottom: 68/1870
  2844. },
  2845. form: "anthro"
  2846. },
  2847. side: {
  2848. height: math.unit(7 + 2/12, "feet"),
  2849. weight: math.unit(320, "kg"),
  2850. preyCapacity: math.unit(0.276549935, "people"),
  2851. name: "Side",
  2852. image: {
  2853. source: "./media/characters/rai/side.svg",
  2854. extra: 1789/1710,
  2855. bottom: 115/1904
  2856. },
  2857. form: "anthro"
  2858. },
  2859. back: {
  2860. height: math.unit(7 + 2/12, "feet"),
  2861. weight: math.unit(320, "kg"),
  2862. preyCapacity: math.unit(0.276549935, "people"),
  2863. name: "Back",
  2864. image: {
  2865. source: "./media/characters/rai/back.svg",
  2866. extra: 1770/1707,
  2867. bottom: 28/1798
  2868. },
  2869. form: "anthro"
  2870. },
  2871. feral: {
  2872. height: math.unit(9.5, "feet"),
  2873. weight: math.unit(640, "kg"),
  2874. preyCapacity: math.unit(4, "people"),
  2875. name: "Feral",
  2876. image: {
  2877. source: "./media/characters/rai/feral.svg",
  2878. extra: 945/553,
  2879. bottom: 176/1121
  2880. },
  2881. form: "feral",
  2882. default: true
  2883. },
  2884. dragon: {
  2885. height: math.unit(23, "feet"),
  2886. weight: math.unit(50000, "lb"),
  2887. name: "Dragon",
  2888. image: {
  2889. source: "./media/characters/rai/dragon.svg",
  2890. extra: 2498 / 2030,
  2891. bottom: 85.2 / 2584
  2892. },
  2893. form: "dragon",
  2894. default: true
  2895. },
  2896. maw: {
  2897. height: math.unit(1.69, "feet"),
  2898. name: "Maw",
  2899. image: {
  2900. source: "./media/characters/rai/maw.svg"
  2901. },
  2902. form: "anthro"
  2903. },
  2904. },
  2905. [
  2906. {
  2907. name: "Normal",
  2908. height: math.unit(7 + 2/12, "feet"),
  2909. form: "anthro"
  2910. },
  2911. {
  2912. name: "Big",
  2913. height: math.unit(11, "feet"),
  2914. form: "anthro"
  2915. },
  2916. {
  2917. name: "Minimacro",
  2918. height: math.unit(77, "feet"),
  2919. form: "anthro"
  2920. },
  2921. {
  2922. name: "Macro",
  2923. height: math.unit(302, "feet"),
  2924. default: true,
  2925. form: "anthro"
  2926. },
  2927. {
  2928. name: "Normal",
  2929. height: math.unit(9.5, "feet"),
  2930. form: "feral",
  2931. default: true
  2932. },
  2933. {
  2934. name: "Normal",
  2935. height: math.unit(23, "feet"),
  2936. form: "dragon",
  2937. default: true
  2938. }
  2939. ],
  2940. {
  2941. "anthro": {
  2942. name: "Anthro",
  2943. default: true
  2944. },
  2945. "feral": {
  2946. name: "Feral",
  2947. },
  2948. "dragon": {
  2949. name: "Dragon",
  2950. },
  2951. }
  2952. ))
  2953. characterMakers.push(() => makeCharacter(
  2954. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2955. {
  2956. frontDressed: {
  2957. height: math.unit(216, "feet"),
  2958. weight: math.unit(7000000, "lb"),
  2959. preyCapacity: math.unit(1321, "people"),
  2960. name: "Front (Dressed)",
  2961. image: {
  2962. source: "./media/characters/jazzy/front-dressed.svg",
  2963. extra: 2738 / 2651,
  2964. bottom: 41.8 / 2786
  2965. }
  2966. },
  2967. backDressed: {
  2968. height: math.unit(216, "feet"),
  2969. weight: math.unit(7000000, "lb"),
  2970. preyCapacity: math.unit(1321, "people"),
  2971. name: "Back (Dressed)",
  2972. image: {
  2973. source: "./media/characters/jazzy/back-dressed.svg",
  2974. extra: 2775 / 2673,
  2975. bottom: 36.8 / 2817
  2976. }
  2977. },
  2978. front: {
  2979. height: math.unit(216, "feet"),
  2980. weight: math.unit(7000000, "lb"),
  2981. preyCapacity: math.unit(1321, "people"),
  2982. name: "Front",
  2983. image: {
  2984. source: "./media/characters/jazzy/front.svg",
  2985. extra: 2738 / 2651,
  2986. bottom: 41.8 / 2786
  2987. }
  2988. },
  2989. back: {
  2990. height: math.unit(216, "feet"),
  2991. weight: math.unit(7000000, "lb"),
  2992. preyCapacity: math.unit(1321, "people"),
  2993. name: "Back",
  2994. image: {
  2995. source: "./media/characters/jazzy/back.svg",
  2996. extra: 2775 / 2673,
  2997. bottom: 36.8 / 2817
  2998. }
  2999. },
  3000. maw: {
  3001. height: math.unit(20, "feet"),
  3002. name: "Maw",
  3003. image: {
  3004. source: "./media/characters/jazzy/maw.svg"
  3005. }
  3006. },
  3007. paws: {
  3008. height: math.unit(27.5, "feet"),
  3009. name: "Paws",
  3010. image: {
  3011. source: "./media/characters/jazzy/paws.svg"
  3012. }
  3013. },
  3014. eye: {
  3015. height: math.unit(4.4, "feet"),
  3016. name: "Eye",
  3017. image: {
  3018. source: "./media/characters/jazzy/eye.svg"
  3019. }
  3020. },
  3021. droneOffense: {
  3022. height: math.unit(9.5, "inches"),
  3023. name: "Drone (Offense)",
  3024. image: {
  3025. source: "./media/characters/jazzy/drone-offense.svg"
  3026. }
  3027. },
  3028. droneRecon: {
  3029. height: math.unit(9.5, "inches"),
  3030. name: "Drone (Recon)",
  3031. image: {
  3032. source: "./media/characters/jazzy/drone-recon.svg"
  3033. }
  3034. },
  3035. droneDefense: {
  3036. height: math.unit(9.5, "inches"),
  3037. name: "Drone (Defense)",
  3038. image: {
  3039. source: "./media/characters/jazzy/drone-defense.svg"
  3040. }
  3041. },
  3042. },
  3043. [
  3044. {
  3045. name: "Macro",
  3046. height: math.unit(216, "feet"),
  3047. default: true
  3048. },
  3049. ]
  3050. ))
  3051. characterMakers.push(() => makeCharacter(
  3052. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3053. {
  3054. front: {
  3055. height: math.unit(9 + 6/12, "feet"),
  3056. weight: math.unit(700, "lb"),
  3057. name: "Front",
  3058. image: {
  3059. source: "./media/characters/flamm/front.svg",
  3060. extra: 1751/1632,
  3061. bottom: 46/1797
  3062. }
  3063. },
  3064. buff: {
  3065. height: math.unit(9 + 6/12, "feet"),
  3066. weight: math.unit(950, "lb"),
  3067. name: "Buff",
  3068. image: {
  3069. source: "./media/characters/flamm/buff.svg",
  3070. extra: 3018/2874,
  3071. bottom: 221/3239
  3072. }
  3073. },
  3074. },
  3075. [
  3076. {
  3077. name: "Normal",
  3078. height: math.unit(9.5, "feet")
  3079. },
  3080. {
  3081. name: "Macro",
  3082. height: math.unit(200, "feet"),
  3083. default: true
  3084. },
  3085. ]
  3086. ))
  3087. characterMakers.push(() => makeCharacter(
  3088. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3089. {
  3090. front: {
  3091. height: math.unit(5 + 3/12, "feet"),
  3092. weight: math.unit(60, "kg"),
  3093. name: "Front",
  3094. image: {
  3095. source: "./media/characters/zephiro/front.svg",
  3096. extra: 1873/1761,
  3097. bottom: 147/2020
  3098. }
  3099. },
  3100. side: {
  3101. height: math.unit(5 + 3/12, "feet"),
  3102. weight: math.unit(60, "kg"),
  3103. name: "Side",
  3104. image: {
  3105. source: "./media/characters/zephiro/side.svg",
  3106. extra: 1929/1827,
  3107. bottom: 65/1994
  3108. }
  3109. },
  3110. back: {
  3111. height: math.unit(5 + 3/12, "feet"),
  3112. weight: math.unit(60, "kg"),
  3113. name: "Back",
  3114. image: {
  3115. source: "./media/characters/zephiro/back.svg",
  3116. extra: 1926/1816,
  3117. bottom: 41/1967
  3118. }
  3119. },
  3120. hand: {
  3121. height: math.unit(0.68, "feet"),
  3122. name: "Hand",
  3123. image: {
  3124. source: "./media/characters/zephiro/hand.svg"
  3125. }
  3126. },
  3127. paw: {
  3128. height: math.unit(1, "feet"),
  3129. name: "Paw",
  3130. image: {
  3131. source: "./media/characters/zephiro/paw.svg"
  3132. }
  3133. },
  3134. beans: {
  3135. height: math.unit(0.93, "feet"),
  3136. name: "Beans",
  3137. image: {
  3138. source: "./media/characters/zephiro/beans.svg"
  3139. }
  3140. },
  3141. },
  3142. [
  3143. {
  3144. name: "Micro",
  3145. height: math.unit(3, "inches")
  3146. },
  3147. {
  3148. name: "Normal",
  3149. height: math.unit(5 + 3 / 12, "feet"),
  3150. default: true
  3151. },
  3152. {
  3153. name: "Macro",
  3154. height: math.unit(118, "feet")
  3155. },
  3156. ]
  3157. ))
  3158. characterMakers.push(() => makeCharacter(
  3159. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3160. {
  3161. front: {
  3162. height: math.unit(5, "feet"),
  3163. weight: math.unit(90, "kg"),
  3164. name: "Front",
  3165. image: {
  3166. source: "./media/characters/fory/front.svg",
  3167. extra: 2862 / 2674,
  3168. bottom: 180 / 3043.8
  3169. }
  3170. },
  3171. back: {
  3172. height: math.unit(5, "feet"),
  3173. weight: math.unit(90, "kg"),
  3174. name: "Back",
  3175. image: {
  3176. source: "./media/characters/fory/back.svg",
  3177. extra: 2962 / 2791,
  3178. bottom: 106 / 3071.8
  3179. }
  3180. },
  3181. foot: {
  3182. height: math.unit(2.14, "feet"),
  3183. name: "Foot",
  3184. image: {
  3185. source: "./media/characters/fory/foot.svg"
  3186. }
  3187. },
  3188. },
  3189. [
  3190. {
  3191. name: "Normal",
  3192. height: math.unit(5, "feet")
  3193. },
  3194. {
  3195. name: "Macro",
  3196. height: math.unit(50, "feet"),
  3197. default: true
  3198. },
  3199. {
  3200. name: "Megamacro",
  3201. height: math.unit(10, "miles")
  3202. },
  3203. {
  3204. name: "Gigamacro",
  3205. height: math.unit(5, "earths")
  3206. },
  3207. ]
  3208. ))
  3209. characterMakers.push(() => makeCharacter(
  3210. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3211. {
  3212. front: {
  3213. height: math.unit(7, "feet"),
  3214. weight: math.unit(90, "kg"),
  3215. name: "Front",
  3216. image: {
  3217. source: "./media/characters/kurrikage/front.svg",
  3218. extra: 1845/1733,
  3219. bottom: 119/1964
  3220. }
  3221. },
  3222. back: {
  3223. height: math.unit(7, "feet"),
  3224. weight: math.unit(90, "kg"),
  3225. name: "Back",
  3226. image: {
  3227. source: "./media/characters/kurrikage/back.svg",
  3228. extra: 1790/1677,
  3229. bottom: 61/1851
  3230. }
  3231. },
  3232. dressed: {
  3233. height: math.unit(7, "feet"),
  3234. weight: math.unit(90, "kg"),
  3235. name: "Dressed",
  3236. image: {
  3237. source: "./media/characters/kurrikage/dressed.svg",
  3238. extra: 1845/1733,
  3239. bottom: 119/1964
  3240. }
  3241. },
  3242. foot: {
  3243. height: math.unit(1.5, "feet"),
  3244. name: "Foot",
  3245. image: {
  3246. source: "./media/characters/kurrikage/foot.svg"
  3247. }
  3248. },
  3249. staff: {
  3250. height: math.unit(6.7, "feet"),
  3251. name: "Staff",
  3252. image: {
  3253. source: "./media/characters/kurrikage/staff.svg"
  3254. }
  3255. },
  3256. peek: {
  3257. height: math.unit(1.05, "feet"),
  3258. name: "Peeking",
  3259. image: {
  3260. source: "./media/characters/kurrikage/peek.svg",
  3261. bottom: 0.08
  3262. }
  3263. },
  3264. },
  3265. [
  3266. {
  3267. name: "Normal",
  3268. height: math.unit(12, "feet"),
  3269. default: true
  3270. },
  3271. {
  3272. name: "Big",
  3273. height: math.unit(20, "feet")
  3274. },
  3275. {
  3276. name: "Macro",
  3277. height: math.unit(500, "feet")
  3278. },
  3279. {
  3280. name: "Megamacro",
  3281. height: math.unit(20, "miles")
  3282. },
  3283. ]
  3284. ))
  3285. characterMakers.push(() => makeCharacter(
  3286. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3287. {
  3288. front: {
  3289. height: math.unit(6, "feet"),
  3290. weight: math.unit(75, "kg"),
  3291. name: "Front",
  3292. image: {
  3293. source: "./media/characters/shingo/front.svg",
  3294. extra: 1900/1825,
  3295. bottom: 82/1982
  3296. }
  3297. },
  3298. side: {
  3299. height: math.unit(6, "feet"),
  3300. weight: math.unit(75, "kg"),
  3301. name: "Side",
  3302. image: {
  3303. source: "./media/characters/shingo/side.svg",
  3304. extra: 1930/1865,
  3305. bottom: 16/1946
  3306. }
  3307. },
  3308. back: {
  3309. height: math.unit(6, "feet"),
  3310. weight: math.unit(75, "kg"),
  3311. name: "Back",
  3312. image: {
  3313. source: "./media/characters/shingo/back.svg",
  3314. extra: 1922/1852,
  3315. bottom: 16/1938
  3316. }
  3317. },
  3318. frontDressed: {
  3319. height: math.unit(6, "feet"),
  3320. weight: math.unit(150, "lb"),
  3321. name: "Front-dressed",
  3322. image: {
  3323. source: "./media/characters/shingo/front-dressed.svg",
  3324. extra: 1900/1825,
  3325. bottom: 82/1982
  3326. }
  3327. },
  3328. paw: {
  3329. height: math.unit(1.29, "feet"),
  3330. name: "Paw",
  3331. image: {
  3332. source: "./media/characters/shingo/paw.svg"
  3333. }
  3334. },
  3335. hand: {
  3336. height: math.unit(1.07, "feet"),
  3337. name: "Hand",
  3338. image: {
  3339. source: "./media/characters/shingo/hand.svg"
  3340. }
  3341. },
  3342. frontAlt: {
  3343. height: math.unit(6, "feet"),
  3344. weight: math.unit(75, "kg"),
  3345. name: "Front (Alt)",
  3346. image: {
  3347. source: "./media/characters/shingo/front-alt.svg",
  3348. extra: 3511 / 3338,
  3349. bottom: 0.005
  3350. }
  3351. },
  3352. frontAlt2: {
  3353. height: math.unit(6, "feet"),
  3354. weight: math.unit(75, "kg"),
  3355. name: "Front (Alt 2)",
  3356. image: {
  3357. source: "./media/characters/shingo/front-alt-2.svg",
  3358. extra: 706/681,
  3359. bottom: 11/717
  3360. }
  3361. },
  3362. pawAlt: {
  3363. height: math.unit(1, "feet"),
  3364. name: "Paw (Alt)",
  3365. image: {
  3366. source: "./media/characters/shingo/paw-alt.svg"
  3367. }
  3368. },
  3369. },
  3370. [
  3371. {
  3372. name: "Micro",
  3373. height: math.unit(4, "inches")
  3374. },
  3375. {
  3376. name: "Normal",
  3377. height: math.unit(6, "feet"),
  3378. default: true
  3379. },
  3380. {
  3381. name: "Macro",
  3382. height: math.unit(108, "feet")
  3383. },
  3384. {
  3385. name: "Macro+",
  3386. height: math.unit(1500, "feet")
  3387. },
  3388. ]
  3389. ))
  3390. characterMakers.push(() => makeCharacter(
  3391. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3392. {
  3393. side: {
  3394. height: math.unit(6, "feet"),
  3395. weight: math.unit(75, "kg"),
  3396. name: "Side",
  3397. image: {
  3398. source: "./media/characters/aigey/side.svg"
  3399. }
  3400. },
  3401. },
  3402. [
  3403. {
  3404. name: "Macro",
  3405. height: math.unit(200, "feet"),
  3406. default: true
  3407. },
  3408. {
  3409. name: "Megamacro",
  3410. height: math.unit(100, "miles")
  3411. },
  3412. ]
  3413. )
  3414. )
  3415. characterMakers.push(() => makeCharacter(
  3416. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3417. {
  3418. front: {
  3419. height: math.unit(5 + 5 / 12, "feet"),
  3420. weight: math.unit(75, "kg"),
  3421. name: "Front",
  3422. image: {
  3423. source: "./media/characters/natasha/front.svg",
  3424. extra: 859 / 824,
  3425. bottom: 23 / 879.6
  3426. }
  3427. },
  3428. frontNsfw: {
  3429. height: math.unit(5 + 5 / 12, "feet"),
  3430. weight: math.unit(75, "kg"),
  3431. name: "Front (NSFW)",
  3432. image: {
  3433. source: "./media/characters/natasha/front-nsfw.svg",
  3434. extra: 859 / 824,
  3435. bottom: 23 / 879.6
  3436. }
  3437. },
  3438. frontErect: {
  3439. height: math.unit(5 + 5 / 12, "feet"),
  3440. weight: math.unit(75, "kg"),
  3441. name: "Front (Erect)",
  3442. image: {
  3443. source: "./media/characters/natasha/front-erect.svg",
  3444. extra: 859 / 824,
  3445. bottom: 23 / 879.6
  3446. }
  3447. },
  3448. back: {
  3449. height: math.unit(5 + 5 / 12, "feet"),
  3450. weight: math.unit(75, "kg"),
  3451. name: "Back",
  3452. image: {
  3453. source: "./media/characters/natasha/back.svg",
  3454. extra: 887.9 / 852.6,
  3455. bottom: 9.7 / 896.4
  3456. }
  3457. },
  3458. backAlt: {
  3459. height: math.unit(5 + 5 / 12, "feet"),
  3460. weight: math.unit(75, "kg"),
  3461. name: "Back (Alt)",
  3462. image: {
  3463. source: "./media/characters/natasha/back-alt.svg",
  3464. extra: 1236.7 / 1192,
  3465. bottom: 22.3 / 1258.2
  3466. }
  3467. },
  3468. dick: {
  3469. height: math.unit(1.772, "feet"),
  3470. name: "Dick",
  3471. image: {
  3472. source: "./media/characters/natasha/dick.svg"
  3473. }
  3474. },
  3475. paw: {
  3476. height: math.unit(0.250, "meters"),
  3477. name: "Paw",
  3478. image: {
  3479. source: "./media/characters/natasha/paw.svg"
  3480. },
  3481. extraAttributes: {
  3482. "toeSize": {
  3483. name: "Toe Size",
  3484. power: 2,
  3485. type: "area",
  3486. base: math.unit(0.0024, "m^2")
  3487. },
  3488. "padSize": {
  3489. name: "Pad Size",
  3490. power: 2,
  3491. type: "area",
  3492. base: math.unit(0.00889, "m^2")
  3493. },
  3494. "pawSize": {
  3495. name: "Paw Size",
  3496. power: 2,
  3497. type: "area",
  3498. base: math.unit(0.023667, "m^2")
  3499. },
  3500. }
  3501. },
  3502. },
  3503. [
  3504. {
  3505. name: "Shortstack",
  3506. height: math.unit(3, "feet"),
  3507. default: true
  3508. },
  3509. {
  3510. name: "Normal",
  3511. height: math.unit(5 + 5 / 12, "feet")
  3512. },
  3513. {
  3514. name: "Large",
  3515. height: math.unit(12, "feet")
  3516. },
  3517. {
  3518. name: "Macro",
  3519. height: math.unit(100, "feet")
  3520. },
  3521. {
  3522. name: "Macro+",
  3523. height: math.unit(260, "feet")
  3524. },
  3525. {
  3526. name: "Macro++",
  3527. height: math.unit(1, "mile")
  3528. },
  3529. ]
  3530. ))
  3531. characterMakers.push(() => makeCharacter(
  3532. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3533. {
  3534. front: {
  3535. height: math.unit(6, "feet"),
  3536. weight: math.unit(75, "kg"),
  3537. name: "Front",
  3538. image: {
  3539. source: "./media/characters/malik/front.svg",
  3540. extra: 1750/1561,
  3541. bottom: 80/1830
  3542. },
  3543. extraAttributes: {
  3544. "toeSize": {
  3545. name: "Toe Size",
  3546. power: 2,
  3547. type: "area",
  3548. base: math.unit(0.0159, "m^2")
  3549. },
  3550. "pawSize": {
  3551. name: "Paw Size",
  3552. power: 2,
  3553. type: "area",
  3554. base: math.unit(0.09834, "m^2")
  3555. },
  3556. }
  3557. },
  3558. side: {
  3559. height: math.unit(6, "feet"),
  3560. weight: math.unit(75, "kg"),
  3561. name: "Side",
  3562. image: {
  3563. source: "./media/characters/malik/side.svg",
  3564. extra: 1802/1685,
  3565. bottom: 42/1844
  3566. },
  3567. extraAttributes: {
  3568. "toeSize": {
  3569. name: "Toe Size",
  3570. power: 2,
  3571. type: "area",
  3572. base: math.unit(0.0159, "m^2")
  3573. },
  3574. "pawSize": {
  3575. name: "Paw Size",
  3576. power: 2,
  3577. type: "area",
  3578. base: math.unit(0.09834, "m^2")
  3579. },
  3580. }
  3581. },
  3582. back: {
  3583. height: math.unit(6, "feet"),
  3584. weight: math.unit(75, "kg"),
  3585. name: "Back",
  3586. image: {
  3587. source: "./media/characters/malik/back.svg",
  3588. extra: 1803/1607,
  3589. bottom: 33/1836
  3590. },
  3591. extraAttributes: {
  3592. "toeSize": {
  3593. name: "Toe Size",
  3594. power: 2,
  3595. type: "area",
  3596. base: math.unit(0.0159, "m^2")
  3597. },
  3598. "pawSize": {
  3599. name: "Paw Size",
  3600. power: 2,
  3601. type: "area",
  3602. base: math.unit(0.09834, "m^2")
  3603. },
  3604. }
  3605. },
  3606. },
  3607. [
  3608. {
  3609. name: "Macro",
  3610. height: math.unit(156, "feet"),
  3611. default: true
  3612. },
  3613. {
  3614. name: "Macro+",
  3615. height: math.unit(1188, "feet")
  3616. },
  3617. ]
  3618. ))
  3619. characterMakers.push(() => makeCharacter(
  3620. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3621. {
  3622. front: {
  3623. height: math.unit(6, "feet"),
  3624. weight: math.unit(75, "kg"),
  3625. name: "Front",
  3626. image: {
  3627. source: "./media/characters/sefer/front.svg",
  3628. extra: 848 / 659,
  3629. bottom: 28.3 / 876.442
  3630. }
  3631. },
  3632. back: {
  3633. height: math.unit(6, "feet"),
  3634. weight: math.unit(75, "kg"),
  3635. name: "Back",
  3636. image: {
  3637. source: "./media/characters/sefer/back.svg",
  3638. extra: 864 / 695,
  3639. bottom: 10 / 871
  3640. }
  3641. },
  3642. frontDressed: {
  3643. height: math.unit(6, "feet"),
  3644. weight: math.unit(75, "kg"),
  3645. name: "Dressed",
  3646. image: {
  3647. source: "./media/characters/sefer/dressed.svg",
  3648. extra: 839 / 653,
  3649. bottom: 37.6 / 878
  3650. }
  3651. },
  3652. },
  3653. [
  3654. {
  3655. name: "Normal",
  3656. height: math.unit(6, "feet"),
  3657. default: true
  3658. },
  3659. {
  3660. name: "Big",
  3661. height: math.unit(8, "meters")
  3662. },
  3663. ]
  3664. ))
  3665. characterMakers.push(() => makeCharacter(
  3666. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3667. {
  3668. body: {
  3669. height: math.unit(2.2428, "meter"),
  3670. weight: math.unit(124.738, "kg"),
  3671. name: "Body",
  3672. image: {
  3673. extra: 1225 / 1050,
  3674. source: "./media/characters/north/front.svg"
  3675. }
  3676. }
  3677. },
  3678. [
  3679. {
  3680. name: "Micro",
  3681. height: math.unit(4, "inches")
  3682. },
  3683. {
  3684. name: "Macro",
  3685. height: math.unit(63, "meters")
  3686. },
  3687. {
  3688. name: "Megamacro",
  3689. height: math.unit(101, "miles"),
  3690. default: true
  3691. }
  3692. ]
  3693. ))
  3694. characterMakers.push(() => makeCharacter(
  3695. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3696. {
  3697. angled: {
  3698. height: math.unit(4, "meter"),
  3699. weight: math.unit(150, "kg"),
  3700. name: "Angled",
  3701. image: {
  3702. source: "./media/characters/talan/angled-sfw.svg",
  3703. bottom: 29 / 3734
  3704. }
  3705. },
  3706. angledNsfw: {
  3707. height: math.unit(4, "meter"),
  3708. weight: math.unit(150, "kg"),
  3709. name: "Angled (NSFW)",
  3710. image: {
  3711. source: "./media/characters/talan/angled-nsfw.svg",
  3712. bottom: 29 / 3734
  3713. }
  3714. },
  3715. frontNsfw: {
  3716. height: math.unit(4, "meter"),
  3717. weight: math.unit(150, "kg"),
  3718. name: "Front (NSFW)",
  3719. image: {
  3720. source: "./media/characters/talan/front-nsfw.svg",
  3721. bottom: 29 / 3734
  3722. }
  3723. },
  3724. sideNsfw: {
  3725. height: math.unit(4, "meter"),
  3726. weight: math.unit(150, "kg"),
  3727. name: "Side (NSFW)",
  3728. image: {
  3729. source: "./media/characters/talan/side-nsfw.svg",
  3730. bottom: 29 / 3734
  3731. }
  3732. },
  3733. back: {
  3734. height: math.unit(4, "meter"),
  3735. weight: math.unit(150, "kg"),
  3736. name: "Back",
  3737. image: {
  3738. source: "./media/characters/talan/back.svg"
  3739. }
  3740. },
  3741. dickBottom: {
  3742. height: math.unit(0.621, "meter"),
  3743. name: "Dick (Bottom)",
  3744. image: {
  3745. source: "./media/characters/talan/dick-bottom.svg"
  3746. }
  3747. },
  3748. dickTop: {
  3749. height: math.unit(0.621, "meter"),
  3750. name: "Dick (Top)",
  3751. image: {
  3752. source: "./media/characters/talan/dick-top.svg"
  3753. }
  3754. },
  3755. dickSide: {
  3756. height: math.unit(0.305, "meter"),
  3757. name: "Dick (Side)",
  3758. image: {
  3759. source: "./media/characters/talan/dick-side.svg"
  3760. }
  3761. },
  3762. dickFront: {
  3763. height: math.unit(0.305, "meter"),
  3764. name: "Dick (Front)",
  3765. image: {
  3766. source: "./media/characters/talan/dick-front.svg"
  3767. }
  3768. },
  3769. },
  3770. [
  3771. {
  3772. name: "Normal",
  3773. height: math.unit(4, "meters")
  3774. },
  3775. {
  3776. name: "Macro",
  3777. height: math.unit(100, "meters")
  3778. },
  3779. {
  3780. name: "Megamacro",
  3781. height: math.unit(2, "miles"),
  3782. default: true
  3783. },
  3784. {
  3785. name: "Gigamacro",
  3786. height: math.unit(5000, "miles")
  3787. },
  3788. {
  3789. name: "Teramacro",
  3790. height: math.unit(100, "parsecs")
  3791. }
  3792. ]
  3793. ))
  3794. characterMakers.push(() => makeCharacter(
  3795. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3796. {
  3797. front: {
  3798. height: math.unit(2, "meter"),
  3799. weight: math.unit(90, "kg"),
  3800. name: "Front",
  3801. image: {
  3802. source: "./media/characters/gael'rathus/front.svg"
  3803. }
  3804. },
  3805. frontAlt: {
  3806. height: math.unit(2, "meter"),
  3807. weight: math.unit(90, "kg"),
  3808. name: "Front (alt)",
  3809. image: {
  3810. source: "./media/characters/gael'rathus/front-alt.svg"
  3811. }
  3812. },
  3813. frontAlt2: {
  3814. height: math.unit(2, "meter"),
  3815. weight: math.unit(90, "kg"),
  3816. name: "Front (alt 2)",
  3817. image: {
  3818. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3819. }
  3820. }
  3821. },
  3822. [
  3823. {
  3824. name: "Normal",
  3825. height: math.unit(9, "feet"),
  3826. default: true
  3827. },
  3828. {
  3829. name: "Large",
  3830. height: math.unit(25, "feet")
  3831. },
  3832. {
  3833. name: "Macro",
  3834. height: math.unit(0.25, "miles")
  3835. },
  3836. {
  3837. name: "Megamacro",
  3838. height: math.unit(10, "miles")
  3839. }
  3840. ]
  3841. ))
  3842. characterMakers.push(() => makeCharacter(
  3843. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3844. {
  3845. side: {
  3846. height: math.unit(2, "meter"),
  3847. weight: math.unit(140, "kg"),
  3848. name: "Side",
  3849. image: {
  3850. source: "./media/characters/sosha/side.svg",
  3851. extra: 1170/1006,
  3852. bottom: 94/1264
  3853. }
  3854. },
  3855. maw: {
  3856. height: math.unit(2.87, "feet"),
  3857. name: "Maw",
  3858. image: {
  3859. source: "./media/characters/sosha/maw.svg",
  3860. extra: 966/865,
  3861. bottom: 0/966
  3862. }
  3863. },
  3864. cooch: {
  3865. height: math.unit(5.6, "feet"),
  3866. name: "Cooch",
  3867. image: {
  3868. source: "./media/characters/sosha/cooch.svg"
  3869. }
  3870. },
  3871. },
  3872. [
  3873. {
  3874. name: "Normal",
  3875. height: math.unit(12, "feet"),
  3876. default: true
  3877. }
  3878. ]
  3879. ))
  3880. characterMakers.push(() => makeCharacter(
  3881. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3882. {
  3883. side: {
  3884. height: math.unit(5 + 5 / 12, "feet"),
  3885. weight: math.unit(170, "kg"),
  3886. name: "Side",
  3887. image: {
  3888. source: "./media/characters/runnola/side.svg",
  3889. extra: 741 / 448,
  3890. bottom: 0.05
  3891. }
  3892. },
  3893. },
  3894. [
  3895. {
  3896. name: "Small",
  3897. height: math.unit(3, "feet")
  3898. },
  3899. {
  3900. name: "Normal",
  3901. height: math.unit(5 + 5 / 12, "feet"),
  3902. default: true
  3903. },
  3904. {
  3905. name: "Big",
  3906. height: math.unit(10, "feet")
  3907. },
  3908. ]
  3909. ))
  3910. characterMakers.push(() => makeCharacter(
  3911. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3912. {
  3913. front: {
  3914. height: math.unit(2, "meter"),
  3915. weight: math.unit(50, "kg"),
  3916. name: "Front",
  3917. image: {
  3918. source: "./media/characters/kurribird/front.svg",
  3919. bottom: 0.015
  3920. }
  3921. },
  3922. frontAlt: {
  3923. height: math.unit(1.5, "meter"),
  3924. weight: math.unit(50, "kg"),
  3925. name: "Front (Alt)",
  3926. image: {
  3927. source: "./media/characters/kurribird/front-alt.svg",
  3928. extra: 1.45
  3929. }
  3930. },
  3931. },
  3932. [
  3933. {
  3934. name: "Normal",
  3935. height: math.unit(7, "feet")
  3936. },
  3937. {
  3938. name: "Big",
  3939. height: math.unit(12, "feet"),
  3940. default: true
  3941. },
  3942. {
  3943. name: "Macro",
  3944. height: math.unit(1500, "feet")
  3945. },
  3946. {
  3947. name: "Megamacro",
  3948. height: math.unit(2, "miles")
  3949. }
  3950. ]
  3951. ))
  3952. characterMakers.push(() => makeCharacter(
  3953. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3954. {
  3955. front: {
  3956. height: math.unit(2, "meter"),
  3957. weight: math.unit(80, "kg"),
  3958. name: "Front",
  3959. image: {
  3960. source: "./media/characters/elbial/front.svg",
  3961. extra: 1643 / 1556,
  3962. bottom: 60.2 / 1696
  3963. }
  3964. },
  3965. side: {
  3966. height: math.unit(2, "meter"),
  3967. weight: math.unit(80, "kg"),
  3968. name: "Side",
  3969. image: {
  3970. source: "./media/characters/elbial/side.svg",
  3971. extra: 1601/1528,
  3972. bottom: 97/1698
  3973. }
  3974. },
  3975. back: {
  3976. height: math.unit(2, "meter"),
  3977. weight: math.unit(80, "kg"),
  3978. name: "Back",
  3979. image: {
  3980. source: "./media/characters/elbial/back.svg",
  3981. extra: 1653/1569,
  3982. bottom: 20/1673
  3983. }
  3984. },
  3985. frontDressed: {
  3986. height: math.unit(2, "meter"),
  3987. weight: math.unit(80, "kg"),
  3988. name: "Front (Dressed)",
  3989. image: {
  3990. source: "./media/characters/elbial/front-dressed.svg",
  3991. extra: 1638/1569,
  3992. bottom: 70/1708
  3993. }
  3994. },
  3995. genitals: {
  3996. height: math.unit(2 / 3.367, "meter"),
  3997. name: "Genitals",
  3998. image: {
  3999. source: "./media/characters/elbial/genitals.svg"
  4000. }
  4001. },
  4002. },
  4003. [
  4004. {
  4005. name: "Large",
  4006. height: math.unit(100, "feet")
  4007. },
  4008. {
  4009. name: "Macro",
  4010. height: math.unit(500, "feet"),
  4011. default: true
  4012. },
  4013. {
  4014. name: "Megamacro",
  4015. height: math.unit(10, "miles")
  4016. },
  4017. {
  4018. name: "Gigamacro",
  4019. height: math.unit(25000, "miles")
  4020. },
  4021. {
  4022. name: "Full-Size",
  4023. height: math.unit(8000000, "gigaparsecs")
  4024. }
  4025. ]
  4026. ))
  4027. characterMakers.push(() => makeCharacter(
  4028. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4029. {
  4030. front: {
  4031. height: math.unit(2, "meter"),
  4032. weight: math.unit(60, "kg"),
  4033. name: "Front",
  4034. image: {
  4035. source: "./media/characters/noah/front.svg"
  4036. }
  4037. },
  4038. talons: {
  4039. height: math.unit(0.315, "meter"),
  4040. name: "Talons",
  4041. image: {
  4042. source: "./media/characters/noah/talons.svg"
  4043. }
  4044. }
  4045. },
  4046. [
  4047. {
  4048. name: "Large",
  4049. height: math.unit(50, "feet")
  4050. },
  4051. {
  4052. name: "Macro",
  4053. height: math.unit(750, "feet"),
  4054. default: true
  4055. },
  4056. {
  4057. name: "Megamacro",
  4058. height: math.unit(50, "miles")
  4059. },
  4060. {
  4061. name: "Gigamacro",
  4062. height: math.unit(100000, "miles")
  4063. },
  4064. {
  4065. name: "Full-Size",
  4066. height: math.unit(3000000000, "miles")
  4067. }
  4068. ]
  4069. ))
  4070. characterMakers.push(() => makeCharacter(
  4071. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4072. {
  4073. front: {
  4074. height: math.unit(2, "meter"),
  4075. weight: math.unit(80, "kg"),
  4076. name: "Front",
  4077. image: {
  4078. source: "./media/characters/natalya/front.svg"
  4079. }
  4080. },
  4081. back: {
  4082. height: math.unit(2, "meter"),
  4083. weight: math.unit(80, "kg"),
  4084. name: "Back",
  4085. image: {
  4086. source: "./media/characters/natalya/back.svg"
  4087. }
  4088. }
  4089. },
  4090. [
  4091. {
  4092. name: "Normal",
  4093. height: math.unit(150, "feet"),
  4094. default: true
  4095. },
  4096. {
  4097. name: "Megamacro",
  4098. height: math.unit(5, "miles")
  4099. },
  4100. {
  4101. name: "Full-Size",
  4102. height: math.unit(600, "kiloparsecs")
  4103. }
  4104. ]
  4105. ))
  4106. characterMakers.push(() => makeCharacter(
  4107. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4108. {
  4109. front: {
  4110. height: math.unit(2, "meter"),
  4111. weight: math.unit(50, "kg"),
  4112. name: "Front",
  4113. image: {
  4114. source: "./media/characters/erestrebah/front.svg",
  4115. extra: 1262/1162,
  4116. bottom: 96/1358
  4117. }
  4118. },
  4119. back: {
  4120. height: math.unit(2, "meter"),
  4121. weight: math.unit(50, "kg"),
  4122. name: "Back",
  4123. image: {
  4124. source: "./media/characters/erestrebah/back.svg",
  4125. extra: 1257/1139,
  4126. bottom: 13/1270
  4127. }
  4128. },
  4129. wing: {
  4130. height: math.unit(2, "meter"),
  4131. weight: math.unit(50, "kg"),
  4132. name: "Wing",
  4133. image: {
  4134. source: "./media/characters/erestrebah/wing.svg",
  4135. extra: 1262/1162,
  4136. bottom: 96/1358
  4137. }
  4138. },
  4139. mouth: {
  4140. height: math.unit(0.39, "feet"),
  4141. name: "Mouth",
  4142. image: {
  4143. source: "./media/characters/erestrebah/mouth.svg"
  4144. }
  4145. }
  4146. },
  4147. [
  4148. {
  4149. name: "Normal",
  4150. height: math.unit(10, "feet")
  4151. },
  4152. {
  4153. name: "Large",
  4154. height: math.unit(50, "feet"),
  4155. default: true
  4156. },
  4157. {
  4158. name: "Macro",
  4159. height: math.unit(300, "feet")
  4160. },
  4161. {
  4162. name: "Macro+",
  4163. height: math.unit(750, "feet")
  4164. },
  4165. {
  4166. name: "Megamacro",
  4167. height: math.unit(3, "miles")
  4168. }
  4169. ]
  4170. ))
  4171. characterMakers.push(() => makeCharacter(
  4172. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4173. {
  4174. front: {
  4175. height: math.unit(2, "meter"),
  4176. weight: math.unit(80, "kg"),
  4177. name: "Front",
  4178. image: {
  4179. source: "./media/characters/jennifer/front.svg",
  4180. bottom: 0.11,
  4181. extra: 1.16
  4182. }
  4183. },
  4184. frontAlt: {
  4185. height: math.unit(2, "meter"),
  4186. weight: math.unit(80, "kg"),
  4187. name: "Front (Alt)",
  4188. image: {
  4189. source: "./media/characters/jennifer/front-alt.svg"
  4190. }
  4191. }
  4192. },
  4193. [
  4194. {
  4195. name: "Canon Height",
  4196. height: math.unit(120, "feet"),
  4197. default: true
  4198. },
  4199. {
  4200. name: "Macro+",
  4201. height: math.unit(300, "feet")
  4202. },
  4203. {
  4204. name: "Megamacro",
  4205. height: math.unit(20000, "feet")
  4206. }
  4207. ]
  4208. ))
  4209. characterMakers.push(() => makeCharacter(
  4210. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4211. {
  4212. front: {
  4213. height: math.unit(2, "meter"),
  4214. weight: math.unit(50, "kg"),
  4215. name: "Front",
  4216. image: {
  4217. source: "./media/characters/kalista/front.svg",
  4218. extra: 1314/1145,
  4219. bottom: 101/1415
  4220. }
  4221. },
  4222. back: {
  4223. height: math.unit(2, "meter"),
  4224. weight: math.unit(50, "kg"),
  4225. name: "Back",
  4226. image: {
  4227. source: "./media/characters/kalista/back.svg",
  4228. extra: 1366 / 1156,
  4229. bottom: 33.9 / 1362.78
  4230. }
  4231. }
  4232. },
  4233. [
  4234. {
  4235. name: "Uncomfortably Small",
  4236. height: math.unit(10, "feet")
  4237. },
  4238. {
  4239. name: "Small",
  4240. height: math.unit(30, "feet")
  4241. },
  4242. {
  4243. name: "Macro",
  4244. height: math.unit(100, "feet"),
  4245. default: true
  4246. },
  4247. {
  4248. name: "Macro+",
  4249. height: math.unit(2000, "feet")
  4250. },
  4251. {
  4252. name: "True Form",
  4253. height: math.unit(8924, "miles")
  4254. }
  4255. ]
  4256. ))
  4257. characterMakers.push(() => makeCharacter(
  4258. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4259. {
  4260. front: {
  4261. height: math.unit(2, "meter"),
  4262. weight: math.unit(120, "kg"),
  4263. name: "Front",
  4264. image: {
  4265. source: "./media/characters/ggv/front.svg"
  4266. }
  4267. },
  4268. side: {
  4269. height: math.unit(2, "meter"),
  4270. weight: math.unit(120, "kg"),
  4271. name: "Side",
  4272. image: {
  4273. source: "./media/characters/ggv/side.svg"
  4274. }
  4275. }
  4276. },
  4277. [
  4278. {
  4279. name: "Extremely Puny",
  4280. height: math.unit(9 + 5 / 12, "feet")
  4281. },
  4282. {
  4283. name: "Horribly Small",
  4284. height: math.unit(47.7, "miles"),
  4285. default: true
  4286. },
  4287. {
  4288. name: "Reasonably Sized",
  4289. height: math.unit(25000, "parsecs")
  4290. },
  4291. {
  4292. name: "Slightly Uncompressed",
  4293. height: math.unit(7.77e31, "parsecs")
  4294. },
  4295. {
  4296. name: "Omniversal",
  4297. height: math.unit(1e300, "meters")
  4298. },
  4299. ]
  4300. ))
  4301. characterMakers.push(() => makeCharacter(
  4302. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4303. {
  4304. front: {
  4305. height: math.unit(2, "meter"),
  4306. weight: math.unit(75, "lb"),
  4307. name: "Front",
  4308. image: {
  4309. source: "./media/characters/napalm/front.svg"
  4310. }
  4311. },
  4312. back: {
  4313. height: math.unit(2, "meter"),
  4314. weight: math.unit(75, "lb"),
  4315. name: "Back",
  4316. image: {
  4317. source: "./media/characters/napalm/back.svg"
  4318. }
  4319. }
  4320. },
  4321. [
  4322. {
  4323. name: "Standard",
  4324. height: math.unit(55, "feet"),
  4325. default: true
  4326. }
  4327. ]
  4328. ))
  4329. characterMakers.push(() => makeCharacter(
  4330. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4331. {
  4332. front: {
  4333. height: math.unit(7 + 5 / 6, "feet"),
  4334. weight: math.unit(325, "lb"),
  4335. name: "Front",
  4336. image: {
  4337. source: "./media/characters/asana/front.svg",
  4338. extra: 1133 / 1060,
  4339. bottom: 15.2 / 1148.6
  4340. }
  4341. },
  4342. back: {
  4343. height: math.unit(7 + 5 / 6, "feet"),
  4344. weight: math.unit(325, "lb"),
  4345. name: "Back",
  4346. image: {
  4347. source: "./media/characters/asana/back.svg",
  4348. extra: 1114 / 1043,
  4349. bottom: 5 / 1120
  4350. }
  4351. },
  4352. dressedDark: {
  4353. height: math.unit(7 + 5 / 6, "feet"),
  4354. weight: math.unit(325, "lb"),
  4355. name: "Dressed (Dark)",
  4356. image: {
  4357. source: "./media/characters/asana/dressed-dark.svg",
  4358. extra: 1133 / 1060,
  4359. bottom: 15.2 / 1148.6
  4360. }
  4361. },
  4362. dressedLight: {
  4363. height: math.unit(7 + 5 / 6, "feet"),
  4364. weight: math.unit(325, "lb"),
  4365. name: "Dressed (Light)",
  4366. image: {
  4367. source: "./media/characters/asana/dressed-light.svg",
  4368. extra: 1133 / 1060,
  4369. bottom: 15.2 / 1148.6
  4370. }
  4371. },
  4372. },
  4373. [
  4374. {
  4375. name: "Standard",
  4376. height: math.unit(7 + 5 / 6, "feet"),
  4377. default: true
  4378. },
  4379. {
  4380. name: "Large",
  4381. height: math.unit(10, "meters")
  4382. },
  4383. {
  4384. name: "Macro",
  4385. height: math.unit(2500, "meters")
  4386. },
  4387. {
  4388. name: "Megamacro",
  4389. height: math.unit(5e6, "meters")
  4390. },
  4391. {
  4392. name: "Examacro",
  4393. height: math.unit(5e12, "lightyears")
  4394. },
  4395. {
  4396. name: "Max Size",
  4397. height: math.unit(1e31, "lightyears")
  4398. }
  4399. ]
  4400. ))
  4401. characterMakers.push(() => makeCharacter(
  4402. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4403. {
  4404. front: {
  4405. height: math.unit(2, "meter"),
  4406. weight: math.unit(60, "kg"),
  4407. name: "Front",
  4408. image: {
  4409. source: "./media/characters/ebony/front.svg",
  4410. bottom: 0.03,
  4411. extra: 1045 / 810 + 0.03
  4412. }
  4413. },
  4414. side: {
  4415. height: math.unit(2, "meter"),
  4416. weight: math.unit(60, "kg"),
  4417. name: "Side",
  4418. image: {
  4419. source: "./media/characters/ebony/side.svg",
  4420. bottom: 0.03,
  4421. extra: 1045 / 810 + 0.03
  4422. }
  4423. },
  4424. back: {
  4425. height: math.unit(2, "meter"),
  4426. weight: math.unit(60, "kg"),
  4427. name: "Back",
  4428. image: {
  4429. source: "./media/characters/ebony/back.svg",
  4430. bottom: 0.01,
  4431. extra: 1045 / 810 + 0.01
  4432. }
  4433. },
  4434. },
  4435. [
  4436. // TODO check why I did this lol
  4437. {
  4438. name: "Standard",
  4439. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4440. default: true
  4441. },
  4442. {
  4443. name: "Macro",
  4444. height: math.unit(200, "feet")
  4445. },
  4446. {
  4447. name: "Gigamacro",
  4448. height: math.unit(13000, "km")
  4449. }
  4450. ]
  4451. ))
  4452. characterMakers.push(() => makeCharacter(
  4453. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4454. {
  4455. front: {
  4456. height: math.unit(6, "feet"),
  4457. weight: math.unit(175, "lb"),
  4458. name: "Front",
  4459. image: {
  4460. source: "./media/characters/mountain/front.svg",
  4461. extra: 972 / 955,
  4462. bottom: 64 / 1036.6
  4463. }
  4464. },
  4465. back: {
  4466. height: math.unit(6, "feet"),
  4467. weight: math.unit(175, "lb"),
  4468. name: "Back",
  4469. image: {
  4470. source: "./media/characters/mountain/back.svg",
  4471. extra: 970 / 950,
  4472. bottom: 28.25 / 999
  4473. }
  4474. },
  4475. },
  4476. [
  4477. {
  4478. name: "Large",
  4479. height: math.unit(20, "meters")
  4480. },
  4481. {
  4482. name: "Macro",
  4483. height: math.unit(300, "meters")
  4484. },
  4485. {
  4486. name: "Gigamacro",
  4487. height: math.unit(10000, "km"),
  4488. default: true
  4489. },
  4490. {
  4491. name: "Examacro",
  4492. height: math.unit(10e9, "lightyears")
  4493. }
  4494. ]
  4495. ))
  4496. characterMakers.push(() => makeCharacter(
  4497. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4498. {
  4499. front: {
  4500. height: math.unit(8, "feet"),
  4501. weight: math.unit(500, "lb"),
  4502. name: "Front",
  4503. image: {
  4504. source: "./media/characters/rick/front.svg"
  4505. }
  4506. }
  4507. },
  4508. [
  4509. {
  4510. name: "Normal",
  4511. height: math.unit(8, "feet"),
  4512. default: true
  4513. },
  4514. {
  4515. name: "Macro",
  4516. height: math.unit(5, "km")
  4517. }
  4518. ]
  4519. ))
  4520. characterMakers.push(() => makeCharacter(
  4521. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4522. {
  4523. front: {
  4524. height: math.unit(8, "feet"),
  4525. weight: math.unit(120, "lb"),
  4526. name: "Front",
  4527. image: {
  4528. source: "./media/characters/ona/front.svg"
  4529. }
  4530. },
  4531. frontAlt: {
  4532. height: math.unit(8, "feet"),
  4533. weight: math.unit(120, "lb"),
  4534. name: "Front (Alt)",
  4535. image: {
  4536. source: "./media/characters/ona/front-alt.svg"
  4537. }
  4538. },
  4539. back: {
  4540. height: math.unit(8, "feet"),
  4541. weight: math.unit(120, "lb"),
  4542. name: "Back",
  4543. image: {
  4544. source: "./media/characters/ona/back.svg"
  4545. }
  4546. },
  4547. foot: {
  4548. height: math.unit(1.1, "feet"),
  4549. name: "Foot",
  4550. image: {
  4551. source: "./media/characters/ona/foot.svg"
  4552. }
  4553. }
  4554. },
  4555. [
  4556. {
  4557. name: "Megamacro",
  4558. height: math.unit(70, "km"),
  4559. default: true
  4560. },
  4561. {
  4562. name: "Gigamacro",
  4563. height: math.unit(681818, "miles")
  4564. },
  4565. {
  4566. name: "Examacro",
  4567. height: math.unit(3800000, "lightyears")
  4568. },
  4569. ]
  4570. ))
  4571. characterMakers.push(() => makeCharacter(
  4572. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4573. {
  4574. front: {
  4575. height: math.unit(12, "feet"),
  4576. weight: math.unit(3000, "lb"),
  4577. name: "Front",
  4578. image: {
  4579. source: "./media/characters/mech/front.svg",
  4580. extra: 2900 / 2770,
  4581. bottom: 110 / 3010
  4582. }
  4583. },
  4584. back: {
  4585. height: math.unit(12, "feet"),
  4586. weight: math.unit(3000, "lb"),
  4587. name: "Back",
  4588. image: {
  4589. source: "./media/characters/mech/back.svg",
  4590. extra: 3011 / 2890,
  4591. bottom: 94 / 3105
  4592. }
  4593. },
  4594. maw: {
  4595. height: math.unit(3.07, "feet"),
  4596. name: "Maw",
  4597. image: {
  4598. source: "./media/characters/mech/maw.svg"
  4599. }
  4600. },
  4601. head: {
  4602. height: math.unit(3.07, "feet"),
  4603. name: "Head",
  4604. image: {
  4605. source: "./media/characters/mech/head.svg"
  4606. }
  4607. },
  4608. dick: {
  4609. height: math.unit(1.43, "feet"),
  4610. name: "Dick",
  4611. image: {
  4612. source: "./media/characters/mech/dick.svg"
  4613. }
  4614. },
  4615. },
  4616. [
  4617. {
  4618. name: "Normal",
  4619. height: math.unit(12, "feet")
  4620. },
  4621. {
  4622. name: "Macro",
  4623. height: math.unit(300, "feet"),
  4624. default: true
  4625. },
  4626. {
  4627. name: "Macro+",
  4628. height: math.unit(1500, "feet")
  4629. },
  4630. ]
  4631. ))
  4632. characterMakers.push(() => makeCharacter(
  4633. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4634. {
  4635. front: {
  4636. height: math.unit(1.3, "meter"),
  4637. weight: math.unit(30, "kg"),
  4638. name: "Front",
  4639. image: {
  4640. source: "./media/characters/gregory/front.svg",
  4641. }
  4642. }
  4643. },
  4644. [
  4645. {
  4646. name: "Normal",
  4647. height: math.unit(1.3, "meter"),
  4648. default: true
  4649. },
  4650. {
  4651. name: "Macro",
  4652. height: math.unit(20, "meter")
  4653. }
  4654. ]
  4655. ))
  4656. characterMakers.push(() => makeCharacter(
  4657. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4658. {
  4659. front: {
  4660. height: math.unit(2.8, "meter"),
  4661. weight: math.unit(200, "kg"),
  4662. name: "Front",
  4663. image: {
  4664. source: "./media/characters/elory/front.svg",
  4665. }
  4666. }
  4667. },
  4668. [
  4669. {
  4670. name: "Normal",
  4671. height: math.unit(2.8, "meter"),
  4672. default: true
  4673. },
  4674. {
  4675. name: "Macro",
  4676. height: math.unit(38, "meter")
  4677. }
  4678. ]
  4679. ))
  4680. characterMakers.push(() => makeCharacter(
  4681. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4682. {
  4683. front: {
  4684. height: math.unit(470, "feet"),
  4685. weight: math.unit(924, "tons"),
  4686. name: "Front",
  4687. image: {
  4688. source: "./media/characters/angelpatamon/front.svg",
  4689. }
  4690. }
  4691. },
  4692. [
  4693. {
  4694. name: "Normal",
  4695. height: math.unit(470, "feet"),
  4696. default: true
  4697. },
  4698. {
  4699. name: "Deity Size I",
  4700. height: math.unit(28651.2, "km")
  4701. },
  4702. {
  4703. name: "Deity Size II",
  4704. height: math.unit(171907.2, "km")
  4705. }
  4706. ]
  4707. ))
  4708. characterMakers.push(() => makeCharacter(
  4709. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4710. {
  4711. side: {
  4712. height: math.unit(7.2, "meter"),
  4713. weight: math.unit(8.2, "tons"),
  4714. name: "Side",
  4715. image: {
  4716. source: "./media/characters/cryae/side.svg",
  4717. extra: 3500 / 1500
  4718. }
  4719. }
  4720. },
  4721. [
  4722. {
  4723. name: "Normal",
  4724. height: math.unit(7.2, "meter"),
  4725. default: true
  4726. }
  4727. ]
  4728. ))
  4729. characterMakers.push(() => makeCharacter(
  4730. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4731. {
  4732. front: {
  4733. height: math.unit(6, "feet"),
  4734. weight: math.unit(175, "lb"),
  4735. name: "Front",
  4736. image: {
  4737. source: "./media/characters/xera/front.svg",
  4738. extra: 2377 / 1972,
  4739. bottom: 75.5 / 2452
  4740. }
  4741. },
  4742. side: {
  4743. height: math.unit(6, "feet"),
  4744. weight: math.unit(175, "lb"),
  4745. name: "Side",
  4746. image: {
  4747. source: "./media/characters/xera/side.svg",
  4748. extra: 2345 / 2019,
  4749. bottom: 39.7 / 2384
  4750. }
  4751. },
  4752. back: {
  4753. height: math.unit(6, "feet"),
  4754. weight: math.unit(175, "lb"),
  4755. name: "Back",
  4756. image: {
  4757. source: "./media/characters/xera/back.svg",
  4758. extra: 2095 / 1984,
  4759. bottom: 67 / 2166
  4760. }
  4761. },
  4762. },
  4763. [
  4764. {
  4765. name: "Small",
  4766. height: math.unit(10, "feet")
  4767. },
  4768. {
  4769. name: "Macro",
  4770. height: math.unit(500, "meters"),
  4771. default: true
  4772. },
  4773. {
  4774. name: "Macro+",
  4775. height: math.unit(10, "km")
  4776. },
  4777. {
  4778. name: "Gigamacro",
  4779. height: math.unit(25000, "km")
  4780. },
  4781. {
  4782. name: "Teramacro",
  4783. height: math.unit(3e6, "km")
  4784. }
  4785. ]
  4786. ))
  4787. characterMakers.push(() => makeCharacter(
  4788. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4789. {
  4790. front: {
  4791. height: math.unit(6, "feet"),
  4792. weight: math.unit(175, "lb"),
  4793. name: "Front",
  4794. image: {
  4795. source: "./media/characters/nebula/front.svg",
  4796. extra: 2566 / 2362,
  4797. bottom: 81 / 2644
  4798. }
  4799. }
  4800. },
  4801. [
  4802. {
  4803. name: "Small",
  4804. height: math.unit(4.5, "meters")
  4805. },
  4806. {
  4807. name: "Macro",
  4808. height: math.unit(1500, "meters"),
  4809. default: true
  4810. },
  4811. {
  4812. name: "Megamacro",
  4813. height: math.unit(150, "km")
  4814. },
  4815. {
  4816. name: "Gigamacro",
  4817. height: math.unit(27000, "km")
  4818. }
  4819. ]
  4820. ))
  4821. characterMakers.push(() => makeCharacter(
  4822. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4823. {
  4824. front: {
  4825. height: math.unit(6, "feet"),
  4826. weight: math.unit(225, "lb"),
  4827. name: "Front",
  4828. image: {
  4829. source: "./media/characters/abysgar/front.svg",
  4830. extra: 1739/1614,
  4831. bottom: 71/1810
  4832. }
  4833. },
  4834. frontNsfw: {
  4835. height: math.unit(6, "feet"),
  4836. weight: math.unit(225, "lb"),
  4837. name: "Front (NSFW)",
  4838. image: {
  4839. source: "./media/characters/abysgar/front-nsfw.svg",
  4840. extra: 1739/1614,
  4841. bottom: 71/1810
  4842. }
  4843. },
  4844. back: {
  4845. height: math.unit(4.6, "feet"),
  4846. weight: math.unit(225, "lb"),
  4847. name: "Back",
  4848. image: {
  4849. source: "./media/characters/abysgar/back.svg",
  4850. extra: 1384/1327,
  4851. bottom: 0/1384
  4852. }
  4853. },
  4854. head: {
  4855. height: math.unit(1.25, "feet"),
  4856. name: "Head",
  4857. image: {
  4858. source: "./media/characters/abysgar/head.svg",
  4859. extra: 669/569,
  4860. bottom: 0/669
  4861. }
  4862. },
  4863. },
  4864. [
  4865. {
  4866. name: "Small",
  4867. height: math.unit(4.5, "meters")
  4868. },
  4869. {
  4870. name: "Macro",
  4871. height: math.unit(1250, "meters"),
  4872. default: true
  4873. },
  4874. {
  4875. name: "Megamacro",
  4876. height: math.unit(125, "km")
  4877. },
  4878. {
  4879. name: "Gigamacro",
  4880. height: math.unit(26000, "km")
  4881. }
  4882. ]
  4883. ))
  4884. characterMakers.push(() => makeCharacter(
  4885. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4886. {
  4887. front: {
  4888. height: math.unit(6, "feet"),
  4889. weight: math.unit(180, "lb"),
  4890. name: "Front",
  4891. image: {
  4892. source: "./media/characters/yakuz/front.svg"
  4893. }
  4894. }
  4895. },
  4896. [
  4897. {
  4898. name: "Small",
  4899. height: math.unit(5, "meters")
  4900. },
  4901. {
  4902. name: "Macro",
  4903. height: math.unit(1500, "meters"),
  4904. default: true
  4905. },
  4906. {
  4907. name: "Megamacro",
  4908. height: math.unit(200, "km")
  4909. },
  4910. {
  4911. name: "Gigamacro",
  4912. height: math.unit(100000, "km")
  4913. }
  4914. ]
  4915. ))
  4916. characterMakers.push(() => makeCharacter(
  4917. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4918. {
  4919. front: {
  4920. height: math.unit(6, "feet"),
  4921. weight: math.unit(175, "lb"),
  4922. name: "Front",
  4923. image: {
  4924. source: "./media/characters/mirova/front.svg",
  4925. extra: 3334 / 3071,
  4926. bottom: 42 / 3375.6
  4927. }
  4928. }
  4929. },
  4930. [
  4931. {
  4932. name: "Small",
  4933. height: math.unit(5, "meters")
  4934. },
  4935. {
  4936. name: "Macro",
  4937. height: math.unit(900, "meters"),
  4938. default: true
  4939. },
  4940. {
  4941. name: "Megamacro",
  4942. height: math.unit(135, "km")
  4943. },
  4944. {
  4945. name: "Gigamacro",
  4946. height: math.unit(20000, "km")
  4947. }
  4948. ]
  4949. ))
  4950. characterMakers.push(() => makeCharacter(
  4951. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4952. {
  4953. side: {
  4954. height: math.unit(28.35, "feet"),
  4955. weight: math.unit(99.75, "tons"),
  4956. name: "Side",
  4957. image: {
  4958. source: "./media/characters/asana-mech/side.svg",
  4959. extra: 923 / 699,
  4960. bottom: 50 / 975
  4961. }
  4962. },
  4963. chaingun: {
  4964. height: math.unit(7, "feet"),
  4965. weight: math.unit(2400, "lb"),
  4966. name: "Chaingun",
  4967. image: {
  4968. source: "./media/characters/asana-mech/chaingun.svg"
  4969. }
  4970. },
  4971. laser: {
  4972. height: math.unit(7.12, "feet"),
  4973. weight: math.unit(2000, "lb"),
  4974. name: "Laser",
  4975. image: {
  4976. source: "./media/characters/asana-mech/laser.svg"
  4977. }
  4978. },
  4979. },
  4980. [
  4981. {
  4982. name: "Normal",
  4983. height: math.unit(28.35, "feet"),
  4984. default: true
  4985. },
  4986. {
  4987. name: "Macro",
  4988. height: math.unit(2500, "feet")
  4989. },
  4990. {
  4991. name: "Megamacro",
  4992. height: math.unit(25, "miles")
  4993. },
  4994. {
  4995. name: "Examacro",
  4996. height: math.unit(6e8, "lightyears")
  4997. },
  4998. ]
  4999. ))
  5000. characterMakers.push(() => makeCharacter(
  5001. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5002. {
  5003. front: {
  5004. height: math.unit(5, "meters"),
  5005. weight: math.unit(1000, "kg"),
  5006. name: "Front",
  5007. image: {
  5008. source: "./media/characters/asche/front.svg",
  5009. extra: 1258 / 1190,
  5010. bottom: 47 / 1305
  5011. }
  5012. },
  5013. frontUnderwear: {
  5014. height: math.unit(5, "meters"),
  5015. weight: math.unit(1000, "kg"),
  5016. name: "Front (Underwear)",
  5017. image: {
  5018. source: "./media/characters/asche/front-underwear.svg",
  5019. extra: 1258 / 1190,
  5020. bottom: 47 / 1305
  5021. }
  5022. },
  5023. frontDressed: {
  5024. height: math.unit(5, "meters"),
  5025. weight: math.unit(1000, "kg"),
  5026. name: "Front (Dressed)",
  5027. image: {
  5028. source: "./media/characters/asche/front-dressed.svg",
  5029. extra: 1258 / 1190,
  5030. bottom: 47 / 1305
  5031. }
  5032. },
  5033. frontArmor: {
  5034. height: math.unit(5, "meters"),
  5035. weight: math.unit(1000, "kg"),
  5036. name: "Front (Armored)",
  5037. image: {
  5038. source: "./media/characters/asche/front-armored.svg",
  5039. extra: 1374 / 1308,
  5040. bottom: 23 / 1397
  5041. }
  5042. },
  5043. mp724: {
  5044. height: math.unit(0.96, "meters"),
  5045. weight: math.unit(38, "kg"),
  5046. name: "H&K MP724",
  5047. image: {
  5048. source: "./media/characters/asche/h&k-mp724.svg"
  5049. }
  5050. },
  5051. side: {
  5052. height: math.unit(5, "meters"),
  5053. weight: math.unit(1000, "kg"),
  5054. name: "Side",
  5055. image: {
  5056. source: "./media/characters/asche/side.svg",
  5057. extra: 1717 / 1609,
  5058. bottom: 0.005
  5059. }
  5060. },
  5061. back: {
  5062. height: math.unit(5, "meters"),
  5063. weight: math.unit(1000, "kg"),
  5064. name: "Back",
  5065. image: {
  5066. source: "./media/characters/asche/back.svg",
  5067. extra: 1570 / 1501
  5068. }
  5069. },
  5070. },
  5071. [
  5072. {
  5073. name: "DEFCON 5",
  5074. height: math.unit(5, "meters")
  5075. },
  5076. {
  5077. name: "DEFCON 4",
  5078. height: math.unit(500, "meters"),
  5079. default: true
  5080. },
  5081. {
  5082. name: "DEFCON 3",
  5083. height: math.unit(5, "km")
  5084. },
  5085. {
  5086. name: "DEFCON 2",
  5087. height: math.unit(500, "km")
  5088. },
  5089. {
  5090. name: "DEFCON 1",
  5091. height: math.unit(500000, "km")
  5092. },
  5093. {
  5094. name: "DEFCON 0",
  5095. height: math.unit(3, "gigaparsecs")
  5096. },
  5097. ]
  5098. ))
  5099. characterMakers.push(() => makeCharacter(
  5100. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5101. {
  5102. front: {
  5103. height: math.unit(2, "meters"),
  5104. weight: math.unit(76, "kg"),
  5105. name: "Front",
  5106. image: {
  5107. source: "./media/characters/gale/front.svg"
  5108. }
  5109. },
  5110. frontAlt1: {
  5111. height: math.unit(2, "meters"),
  5112. weight: math.unit(76, "kg"),
  5113. name: "Front (Alt 1)",
  5114. image: {
  5115. source: "./media/characters/gale/front-alt-1.svg"
  5116. }
  5117. },
  5118. frontAlt2: {
  5119. height: math.unit(2, "meters"),
  5120. weight: math.unit(76, "kg"),
  5121. name: "Front (Alt 2)",
  5122. image: {
  5123. source: "./media/characters/gale/front-alt-2.svg"
  5124. }
  5125. },
  5126. },
  5127. [
  5128. {
  5129. name: "Normal",
  5130. height: math.unit(7, "feet")
  5131. },
  5132. {
  5133. name: "Macro",
  5134. height: math.unit(150, "feet"),
  5135. default: true
  5136. },
  5137. {
  5138. name: "Macro+",
  5139. height: math.unit(300, "feet")
  5140. },
  5141. ]
  5142. ))
  5143. characterMakers.push(() => makeCharacter(
  5144. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5145. {
  5146. front: {
  5147. height: math.unit(5 + 10/12, "feet"),
  5148. weight: math.unit(67, "kg"),
  5149. name: "Front",
  5150. image: {
  5151. source: "./media/characters/draylen/front.svg",
  5152. extra: 832/777,
  5153. bottom: 85/917
  5154. }
  5155. }
  5156. },
  5157. [
  5158. {
  5159. name: "Normal",
  5160. height: math.unit(5 + 10/12, "feet")
  5161. },
  5162. {
  5163. name: "Macro",
  5164. height: math.unit(150, "feet"),
  5165. default: true
  5166. }
  5167. ]
  5168. ))
  5169. characterMakers.push(() => makeCharacter(
  5170. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5171. {
  5172. front: {
  5173. height: math.unit(7 + 9 / 12, "feet"),
  5174. weight: math.unit(379, "lbs"),
  5175. name: "Front",
  5176. image: {
  5177. source: "./media/characters/chez/front.svg"
  5178. }
  5179. },
  5180. side: {
  5181. height: math.unit(7 + 9 / 12, "feet"),
  5182. weight: math.unit(379, "lbs"),
  5183. name: "Side",
  5184. image: {
  5185. source: "./media/characters/chez/side.svg"
  5186. }
  5187. }
  5188. },
  5189. [
  5190. {
  5191. name: "Normal",
  5192. height: math.unit(7 + 9 / 12, "feet"),
  5193. default: true
  5194. },
  5195. {
  5196. name: "God King",
  5197. height: math.unit(9750000, "meters")
  5198. }
  5199. ]
  5200. ))
  5201. characterMakers.push(() => makeCharacter(
  5202. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5203. {
  5204. front: {
  5205. height: math.unit(6, "feet"),
  5206. weight: math.unit(275, "lbs"),
  5207. name: "Front",
  5208. image: {
  5209. source: "./media/characters/kaylum/front.svg",
  5210. bottom: 0.01,
  5211. extra: 1166 / 1031
  5212. }
  5213. },
  5214. frontWingless: {
  5215. height: math.unit(6, "feet"),
  5216. weight: math.unit(275, "lbs"),
  5217. name: "Front (Wingless)",
  5218. image: {
  5219. source: "./media/characters/kaylum/front-wingless.svg",
  5220. bottom: 0.01,
  5221. extra: 1117 / 1031
  5222. }
  5223. }
  5224. },
  5225. [
  5226. {
  5227. name: "Normal",
  5228. height: math.unit(3.05, "meters")
  5229. },
  5230. {
  5231. name: "Master",
  5232. height: math.unit(5.5, "meters")
  5233. },
  5234. {
  5235. name: "Rampage",
  5236. height: math.unit(19, "meters")
  5237. },
  5238. {
  5239. name: "Macro Lite",
  5240. height: math.unit(37, "meters")
  5241. },
  5242. {
  5243. name: "Hyper Predator",
  5244. height: math.unit(61, "meters")
  5245. },
  5246. {
  5247. name: "Macro",
  5248. height: math.unit(138, "meters"),
  5249. default: true
  5250. }
  5251. ]
  5252. ))
  5253. characterMakers.push(() => makeCharacter(
  5254. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5255. {
  5256. front: {
  5257. height: math.unit(5 + 5 / 12, "feet"),
  5258. weight: math.unit(120, "lbs"),
  5259. name: "Front",
  5260. image: {
  5261. source: "./media/characters/geta/front.svg",
  5262. extra: 1003/933,
  5263. bottom: 21/1024
  5264. }
  5265. },
  5266. paw: {
  5267. height: math.unit(0.35, "feet"),
  5268. name: "Paw",
  5269. image: {
  5270. source: "./media/characters/geta/paw.svg"
  5271. }
  5272. },
  5273. },
  5274. [
  5275. {
  5276. name: "Micro",
  5277. height: math.unit(3, "inches"),
  5278. default: true
  5279. },
  5280. {
  5281. name: "Normal",
  5282. height: math.unit(5 + 5 / 12, "feet")
  5283. }
  5284. ]
  5285. ))
  5286. characterMakers.push(() => makeCharacter(
  5287. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5288. {
  5289. front: {
  5290. height: math.unit(6, "feet"),
  5291. weight: math.unit(300, "lbs"),
  5292. name: "Front",
  5293. image: {
  5294. source: "./media/characters/tyrnn/front.svg"
  5295. }
  5296. }
  5297. },
  5298. [
  5299. {
  5300. name: "Main Height",
  5301. height: math.unit(355, "feet"),
  5302. default: true
  5303. },
  5304. {
  5305. name: "Fave. Height",
  5306. height: math.unit(2400, "feet")
  5307. }
  5308. ]
  5309. ))
  5310. characterMakers.push(() => makeCharacter(
  5311. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5312. {
  5313. front: {
  5314. height: math.unit(6, "feet"),
  5315. weight: math.unit(300, "lbs"),
  5316. name: "Front",
  5317. image: {
  5318. source: "./media/characters/appledectomy/front.svg"
  5319. }
  5320. }
  5321. },
  5322. [
  5323. {
  5324. name: "Macro",
  5325. height: math.unit(2500, "feet")
  5326. },
  5327. {
  5328. name: "Megamacro",
  5329. height: math.unit(50, "miles"),
  5330. default: true
  5331. },
  5332. {
  5333. name: "Gigamacro",
  5334. height: math.unit(5000, "miles")
  5335. },
  5336. {
  5337. name: "Teramacro",
  5338. height: math.unit(250000, "miles")
  5339. },
  5340. ]
  5341. ))
  5342. characterMakers.push(() => makeCharacter(
  5343. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5344. {
  5345. front: {
  5346. height: math.unit(6, "feet"),
  5347. weight: math.unit(200, "lbs"),
  5348. name: "Front",
  5349. image: {
  5350. source: "./media/characters/vulpes/front.svg",
  5351. extra: 573 / 543,
  5352. bottom: 0.033
  5353. }
  5354. },
  5355. side: {
  5356. height: math.unit(6, "feet"),
  5357. weight: math.unit(200, "lbs"),
  5358. name: "Side",
  5359. image: {
  5360. source: "./media/characters/vulpes/side.svg",
  5361. extra: 577 / 549,
  5362. bottom: 11 / 588
  5363. }
  5364. },
  5365. back: {
  5366. height: math.unit(6, "feet"),
  5367. weight: math.unit(200, "lbs"),
  5368. name: "Back",
  5369. image: {
  5370. source: "./media/characters/vulpes/back.svg",
  5371. extra: 573 / 549,
  5372. bottom: 20 / 593
  5373. }
  5374. },
  5375. feet: {
  5376. height: math.unit(1.276, "feet"),
  5377. name: "Feet",
  5378. image: {
  5379. source: "./media/characters/vulpes/feet.svg"
  5380. }
  5381. },
  5382. maw: {
  5383. height: math.unit(1.18, "feet"),
  5384. name: "Maw",
  5385. image: {
  5386. source: "./media/characters/vulpes/maw.svg"
  5387. }
  5388. },
  5389. },
  5390. [
  5391. {
  5392. name: "Micro",
  5393. height: math.unit(2, "inches")
  5394. },
  5395. {
  5396. name: "Normal",
  5397. height: math.unit(6.3, "feet")
  5398. },
  5399. {
  5400. name: "Macro",
  5401. height: math.unit(850, "feet")
  5402. },
  5403. {
  5404. name: "Megamacro",
  5405. height: math.unit(7500, "feet"),
  5406. default: true
  5407. },
  5408. {
  5409. name: "Gigamacro",
  5410. height: math.unit(570000, "miles")
  5411. }
  5412. ]
  5413. ))
  5414. characterMakers.push(() => makeCharacter(
  5415. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5416. {
  5417. front: {
  5418. height: math.unit(6, "feet"),
  5419. weight: math.unit(210, "lbs"),
  5420. name: "Front",
  5421. image: {
  5422. source: "./media/characters/rain-fallen/front.svg"
  5423. }
  5424. },
  5425. side: {
  5426. height: math.unit(6, "feet"),
  5427. weight: math.unit(210, "lbs"),
  5428. name: "Side",
  5429. image: {
  5430. source: "./media/characters/rain-fallen/side.svg"
  5431. }
  5432. },
  5433. back: {
  5434. height: math.unit(6, "feet"),
  5435. weight: math.unit(210, "lbs"),
  5436. name: "Back",
  5437. image: {
  5438. source: "./media/characters/rain-fallen/back.svg"
  5439. }
  5440. },
  5441. feral: {
  5442. height: math.unit(9, "feet"),
  5443. weight: math.unit(700, "lbs"),
  5444. name: "Feral",
  5445. image: {
  5446. source: "./media/characters/rain-fallen/feral.svg"
  5447. }
  5448. },
  5449. },
  5450. [
  5451. {
  5452. name: "Meddling with Mortals",
  5453. height: math.unit(8 + 8/12, "feet")
  5454. },
  5455. {
  5456. name: "Normal",
  5457. height: math.unit(5, "meter")
  5458. },
  5459. {
  5460. name: "Macro",
  5461. height: math.unit(150, "meter"),
  5462. default: true
  5463. },
  5464. {
  5465. name: "Megamacro",
  5466. height: math.unit(278e6, "meter")
  5467. },
  5468. {
  5469. name: "Gigamacro",
  5470. height: math.unit(2e9, "meter")
  5471. },
  5472. {
  5473. name: "Teramacro",
  5474. height: math.unit(8e12, "meter")
  5475. },
  5476. {
  5477. name: "Devourer",
  5478. height: math.unit(14, "zettameters")
  5479. },
  5480. {
  5481. name: "Scarlet King",
  5482. height: math.unit(18, "yottameters")
  5483. },
  5484. {
  5485. name: "Void",
  5486. height: math.unit(1e88, "yottameters")
  5487. }
  5488. ]
  5489. ))
  5490. characterMakers.push(() => makeCharacter(
  5491. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5492. {
  5493. standing: {
  5494. height: math.unit(6, "feet"),
  5495. weight: math.unit(180, "lbs"),
  5496. name: "Standing",
  5497. image: {
  5498. source: "./media/characters/zaakira/standing.svg",
  5499. extra: 1599/1504,
  5500. bottom: 39/1638
  5501. }
  5502. },
  5503. laying: {
  5504. height: math.unit(3.3, "feet"),
  5505. weight: math.unit(180, "lbs"),
  5506. name: "Laying",
  5507. image: {
  5508. source: "./media/characters/zaakira/laying.svg"
  5509. }
  5510. },
  5511. },
  5512. [
  5513. {
  5514. name: "Normal",
  5515. height: math.unit(12, "feet")
  5516. },
  5517. {
  5518. name: "Macro",
  5519. height: math.unit(279, "feet"),
  5520. default: true
  5521. }
  5522. ]
  5523. ))
  5524. characterMakers.push(() => makeCharacter(
  5525. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5526. {
  5527. femSfw: {
  5528. height: math.unit(8, "feet"),
  5529. weight: math.unit(350, "lb"),
  5530. name: "Fem",
  5531. image: {
  5532. source: "./media/characters/sigvald/fem-sfw.svg",
  5533. extra: 182 / 164,
  5534. bottom: 8.7 / 190.5
  5535. }
  5536. },
  5537. femNsfw: {
  5538. height: math.unit(8, "feet"),
  5539. weight: math.unit(350, "lb"),
  5540. name: "Fem (NSFW)",
  5541. image: {
  5542. source: "./media/characters/sigvald/fem-nsfw.svg",
  5543. extra: 182 / 164,
  5544. bottom: 8.7 / 190.5
  5545. }
  5546. },
  5547. maleNsfw: {
  5548. height: math.unit(8, "feet"),
  5549. weight: math.unit(350, "lb"),
  5550. name: "Male (NSFW)",
  5551. image: {
  5552. source: "./media/characters/sigvald/male-nsfw.svg",
  5553. extra: 182 / 164,
  5554. bottom: 8.7 / 190.5
  5555. }
  5556. },
  5557. hermNsfw: {
  5558. height: math.unit(8, "feet"),
  5559. weight: math.unit(350, "lb"),
  5560. name: "Herm (NSFW)",
  5561. image: {
  5562. source: "./media/characters/sigvald/herm-nsfw.svg",
  5563. extra: 182 / 164,
  5564. bottom: 8.7 / 190.5
  5565. }
  5566. },
  5567. dick: {
  5568. height: math.unit(2.36, "feet"),
  5569. name: "Dick",
  5570. image: {
  5571. source: "./media/characters/sigvald/dick.svg"
  5572. }
  5573. },
  5574. eye: {
  5575. height: math.unit(0.31, "feet"),
  5576. name: "Eye",
  5577. image: {
  5578. source: "./media/characters/sigvald/eye.svg"
  5579. }
  5580. },
  5581. mouth: {
  5582. height: math.unit(0.92, "feet"),
  5583. name: "Mouth",
  5584. image: {
  5585. source: "./media/characters/sigvald/mouth.svg"
  5586. }
  5587. },
  5588. paws: {
  5589. height: math.unit(2.2, "feet"),
  5590. name: "Paws",
  5591. image: {
  5592. source: "./media/characters/sigvald/paws.svg"
  5593. }
  5594. }
  5595. },
  5596. [
  5597. {
  5598. name: "Normal",
  5599. height: math.unit(8, "feet")
  5600. },
  5601. {
  5602. name: "Large",
  5603. height: math.unit(12, "feet")
  5604. },
  5605. {
  5606. name: "Larger",
  5607. height: math.unit(20, "feet")
  5608. },
  5609. {
  5610. name: "Macro",
  5611. height: math.unit(150, "feet")
  5612. },
  5613. {
  5614. name: "Macro+",
  5615. height: math.unit(200, "feet"),
  5616. default: true
  5617. },
  5618. ]
  5619. ))
  5620. characterMakers.push(() => makeCharacter(
  5621. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5622. {
  5623. side: {
  5624. height: math.unit(12, "feet"),
  5625. weight: math.unit(2000, "kg"),
  5626. name: "Side",
  5627. image: {
  5628. source: "./media/characters/scott/side.svg",
  5629. extra: 754 / 724,
  5630. bottom: 0.069
  5631. }
  5632. },
  5633. upright: {
  5634. height: math.unit(12, "feet"),
  5635. weight: math.unit(2000, "kg"),
  5636. name: "Upright",
  5637. image: {
  5638. source: "./media/characters/scott/upright.svg",
  5639. extra: 3881 / 3722,
  5640. bottom: 0.05
  5641. }
  5642. },
  5643. },
  5644. [
  5645. {
  5646. name: "Normal",
  5647. height: math.unit(12, "feet"),
  5648. default: true
  5649. },
  5650. ]
  5651. ))
  5652. characterMakers.push(() => makeCharacter(
  5653. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5654. {
  5655. side: {
  5656. height: math.unit(8, "meters"),
  5657. weight: math.unit(84755, "lbs"),
  5658. name: "Side",
  5659. image: {
  5660. source: "./media/characters/tobias/side.svg",
  5661. extra: 1474 / 1096,
  5662. bottom: 38.9 / 1513.1235
  5663. }
  5664. },
  5665. },
  5666. [
  5667. {
  5668. name: "Normal",
  5669. height: math.unit(8, "meters"),
  5670. default: true
  5671. },
  5672. ]
  5673. ))
  5674. characterMakers.push(() => makeCharacter(
  5675. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5676. {
  5677. front: {
  5678. height: math.unit(5.5, "feet"),
  5679. weight: math.unit(400, "lbs"),
  5680. name: "Front",
  5681. image: {
  5682. source: "./media/characters/kieran/front.svg",
  5683. extra: 2694 / 2364,
  5684. bottom: 217 / 2908
  5685. }
  5686. },
  5687. side: {
  5688. height: math.unit(5.5, "feet"),
  5689. weight: math.unit(400, "lbs"),
  5690. name: "Side",
  5691. image: {
  5692. source: "./media/characters/kieran/side.svg",
  5693. extra: 875 / 777,
  5694. bottom: 84.6 / 959
  5695. }
  5696. },
  5697. },
  5698. [
  5699. {
  5700. name: "Normal",
  5701. height: math.unit(5.5, "feet"),
  5702. default: true
  5703. },
  5704. ]
  5705. ))
  5706. characterMakers.push(() => makeCharacter(
  5707. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5708. {
  5709. side: {
  5710. height: math.unit(2, "meters"),
  5711. weight: math.unit(70, "kg"),
  5712. name: "Side",
  5713. image: {
  5714. source: "./media/characters/sanya/side.svg",
  5715. bottom: 0.02,
  5716. extra: 1.02
  5717. }
  5718. },
  5719. },
  5720. [
  5721. {
  5722. name: "Small",
  5723. height: math.unit(2, "meters")
  5724. },
  5725. {
  5726. name: "Normal",
  5727. height: math.unit(3, "meters")
  5728. },
  5729. {
  5730. name: "Macro",
  5731. height: math.unit(16, "meters"),
  5732. default: true
  5733. },
  5734. ]
  5735. ))
  5736. characterMakers.push(() => makeCharacter(
  5737. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5738. {
  5739. front: {
  5740. height: math.unit(2, "meters"),
  5741. weight: math.unit(120, "kg"),
  5742. name: "Front",
  5743. image: {
  5744. source: "./media/characters/miranda/front.svg",
  5745. extra: 195 / 185,
  5746. bottom: 10.9 / 206.5
  5747. }
  5748. },
  5749. back: {
  5750. height: math.unit(2, "meters"),
  5751. weight: math.unit(120, "kg"),
  5752. name: "Back",
  5753. image: {
  5754. source: "./media/characters/miranda/back.svg",
  5755. extra: 201 / 193,
  5756. bottom: 2.3 / 203.7
  5757. }
  5758. },
  5759. },
  5760. [
  5761. {
  5762. name: "Normal",
  5763. height: math.unit(10, "feet"),
  5764. default: true
  5765. }
  5766. ]
  5767. ))
  5768. characterMakers.push(() => makeCharacter(
  5769. { name: "James", species: ["deer"], tags: ["anthro"] },
  5770. {
  5771. side: {
  5772. height: math.unit(2, "meters"),
  5773. weight: math.unit(100, "kg"),
  5774. name: "Front",
  5775. image: {
  5776. source: "./media/characters/james/front.svg",
  5777. extra: 10 / 8.5
  5778. }
  5779. },
  5780. },
  5781. [
  5782. {
  5783. name: "Normal",
  5784. height: math.unit(8.5, "feet"),
  5785. default: true
  5786. }
  5787. ]
  5788. ))
  5789. characterMakers.push(() => makeCharacter(
  5790. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5791. {
  5792. side: {
  5793. height: math.unit(9.5, "feet"),
  5794. weight: math.unit(2500, "lbs"),
  5795. name: "Side",
  5796. image: {
  5797. source: "./media/characters/heather/side.svg"
  5798. }
  5799. },
  5800. },
  5801. [
  5802. {
  5803. name: "Normal",
  5804. height: math.unit(9.5, "feet"),
  5805. default: true
  5806. }
  5807. ]
  5808. ))
  5809. characterMakers.push(() => makeCharacter(
  5810. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5811. {
  5812. side: {
  5813. height: math.unit(6.5, "feet"),
  5814. weight: math.unit(400, "lbs"),
  5815. name: "Side",
  5816. image: {
  5817. source: "./media/characters/lukas/side.svg",
  5818. extra: 7.25 / 6.5
  5819. }
  5820. },
  5821. },
  5822. [
  5823. {
  5824. name: "Normal",
  5825. height: math.unit(6.5, "feet"),
  5826. default: true
  5827. }
  5828. ]
  5829. ))
  5830. characterMakers.push(() => makeCharacter(
  5831. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5832. {
  5833. side: {
  5834. height: math.unit(5, "feet"),
  5835. weight: math.unit(3000, "lbs"),
  5836. name: "Side",
  5837. image: {
  5838. source: "./media/characters/louise/side.svg"
  5839. }
  5840. },
  5841. },
  5842. [
  5843. {
  5844. name: "Normal",
  5845. height: math.unit(5, "feet"),
  5846. default: true
  5847. }
  5848. ]
  5849. ))
  5850. characterMakers.push(() => makeCharacter(
  5851. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5852. {
  5853. side: {
  5854. height: math.unit(6, "feet"),
  5855. weight: math.unit(150, "lbs"),
  5856. name: "Side",
  5857. image: {
  5858. source: "./media/characters/ramona/side.svg",
  5859. extra: 871/854,
  5860. bottom: 41/912
  5861. }
  5862. },
  5863. },
  5864. [
  5865. {
  5866. name: "Normal",
  5867. height: math.unit(6 + 4/12, "feet")
  5868. },
  5869. {
  5870. name: "Minimacro",
  5871. height: math.unit(5.3, "meters"),
  5872. default: true
  5873. },
  5874. {
  5875. name: "Macro",
  5876. height: math.unit(20, "stories")
  5877. },
  5878. {
  5879. name: "Macro+",
  5880. height: math.unit(50, "stories")
  5881. },
  5882. ]
  5883. ))
  5884. characterMakers.push(() => makeCharacter(
  5885. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5886. {
  5887. standing: {
  5888. height: math.unit(5.75, "feet"),
  5889. weight: math.unit(160, "lbs"),
  5890. name: "Standing",
  5891. image: {
  5892. source: "./media/characters/deerpuff/standing.svg",
  5893. extra: 682 / 624
  5894. }
  5895. },
  5896. sitting: {
  5897. height: math.unit(5.75 / 1.79, "feet"),
  5898. weight: math.unit(160, "lbs"),
  5899. name: "Sitting",
  5900. image: {
  5901. source: "./media/characters/deerpuff/sitting.svg",
  5902. bottom: 44 / 400,
  5903. extra: 1
  5904. }
  5905. },
  5906. taurLaying: {
  5907. height: math.unit(6, "feet"),
  5908. weight: math.unit(400, "lbs"),
  5909. name: "Taur (Laying)",
  5910. image: {
  5911. source: "./media/characters/deerpuff/taur-laying.svg"
  5912. }
  5913. },
  5914. },
  5915. [
  5916. {
  5917. name: "Puffball",
  5918. height: math.unit(6, "inches")
  5919. },
  5920. {
  5921. name: "Normalpuff",
  5922. height: math.unit(5.75, "feet")
  5923. },
  5924. {
  5925. name: "Macropuff",
  5926. height: math.unit(1500, "feet"),
  5927. default: true
  5928. },
  5929. {
  5930. name: "Megapuff",
  5931. height: math.unit(500, "miles")
  5932. },
  5933. {
  5934. name: "Gigapuff",
  5935. height: math.unit(250000, "miles")
  5936. },
  5937. {
  5938. name: "Omegapuff",
  5939. height: math.unit(1000, "lightyears")
  5940. },
  5941. ]
  5942. ))
  5943. characterMakers.push(() => makeCharacter(
  5944. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5945. {
  5946. stomping: {
  5947. height: math.unit(6, "feet"),
  5948. weight: math.unit(170, "lbs"),
  5949. name: "Stomping",
  5950. image: {
  5951. source: "./media/characters/vivian/stomping.svg"
  5952. }
  5953. },
  5954. sitting: {
  5955. height: math.unit(6 / 1.75, "feet"),
  5956. weight: math.unit(170, "lbs"),
  5957. name: "Sitting",
  5958. image: {
  5959. source: "./media/characters/vivian/sitting.svg",
  5960. bottom: 1 / 6.4,
  5961. extra: 1,
  5962. }
  5963. },
  5964. },
  5965. [
  5966. {
  5967. name: "Normal",
  5968. height: math.unit(7, "feet"),
  5969. default: true
  5970. },
  5971. {
  5972. name: "Macro",
  5973. height: math.unit(10, "stories")
  5974. },
  5975. {
  5976. name: "Macro+",
  5977. height: math.unit(30, "stories")
  5978. },
  5979. {
  5980. name: "Megamacro",
  5981. height: math.unit(10, "miles")
  5982. },
  5983. {
  5984. name: "Megamacro+",
  5985. height: math.unit(2750000, "meters")
  5986. },
  5987. ]
  5988. ))
  5989. characterMakers.push(() => makeCharacter(
  5990. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5991. {
  5992. front: {
  5993. height: math.unit(6, "feet"),
  5994. weight: math.unit(160, "lbs"),
  5995. name: "Front",
  5996. image: {
  5997. source: "./media/characters/prince/front.svg",
  5998. extra: 3400 / 3000
  5999. }
  6000. },
  6001. jumping: {
  6002. height: math.unit(6, "feet"),
  6003. weight: math.unit(160, "lbs"),
  6004. name: "Jumping",
  6005. image: {
  6006. source: "./media/characters/prince/jump.svg",
  6007. extra: 2555 / 2134
  6008. }
  6009. },
  6010. },
  6011. [
  6012. {
  6013. name: "Normal",
  6014. height: math.unit(7.75, "feet"),
  6015. default: true
  6016. },
  6017. {
  6018. name: "Not cute",
  6019. height: math.unit(17, "feet")
  6020. },
  6021. {
  6022. name: "I said NOT",
  6023. height: math.unit(91, "feet")
  6024. },
  6025. {
  6026. name: "Please stop",
  6027. height: math.unit(560, "feet")
  6028. },
  6029. {
  6030. name: "What have you done",
  6031. height: math.unit(2200, "feet")
  6032. },
  6033. {
  6034. name: "Deer God",
  6035. height: math.unit(3.6, "miles")
  6036. },
  6037. ]
  6038. ))
  6039. characterMakers.push(() => makeCharacter(
  6040. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6041. {
  6042. standing: {
  6043. height: math.unit(6, "feet"),
  6044. weight: math.unit(300, "lbs"),
  6045. name: "Standing",
  6046. image: {
  6047. source: "./media/characters/psymon/standing.svg",
  6048. extra: 1888 / 1810,
  6049. bottom: 0.05
  6050. }
  6051. },
  6052. slithering: {
  6053. height: math.unit(6, "feet"),
  6054. weight: math.unit(300, "lbs"),
  6055. name: "Slithering",
  6056. image: {
  6057. source: "./media/characters/psymon/slithering.svg",
  6058. extra: 1330 / 1224
  6059. }
  6060. },
  6061. slitheringAlt: {
  6062. height: math.unit(6, "feet"),
  6063. weight: math.unit(300, "lbs"),
  6064. name: "Slithering (Alt)",
  6065. image: {
  6066. source: "./media/characters/psymon/slithering-alt.svg",
  6067. extra: 1330 / 1224
  6068. }
  6069. },
  6070. },
  6071. [
  6072. {
  6073. name: "Normal",
  6074. height: math.unit(11.25, "feet"),
  6075. default: true
  6076. },
  6077. {
  6078. name: "Large",
  6079. height: math.unit(27, "feet")
  6080. },
  6081. {
  6082. name: "Giant",
  6083. height: math.unit(87, "feet")
  6084. },
  6085. {
  6086. name: "Macro",
  6087. height: math.unit(365, "feet")
  6088. },
  6089. {
  6090. name: "Megamacro",
  6091. height: math.unit(3, "miles")
  6092. },
  6093. {
  6094. name: "World Serpent",
  6095. height: math.unit(8000, "miles")
  6096. },
  6097. ]
  6098. ))
  6099. characterMakers.push(() => makeCharacter(
  6100. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6101. {
  6102. front: {
  6103. height: math.unit(6, "feet"),
  6104. weight: math.unit(180, "lbs"),
  6105. name: "Front",
  6106. image: {
  6107. source: "./media/characters/daimos/front.svg",
  6108. extra: 4160 / 3897,
  6109. bottom: 0.021
  6110. }
  6111. }
  6112. },
  6113. [
  6114. {
  6115. name: "Normal",
  6116. height: math.unit(8, "feet"),
  6117. default: true
  6118. },
  6119. {
  6120. name: "Big Dog",
  6121. height: math.unit(22, "feet")
  6122. },
  6123. {
  6124. name: "Macro",
  6125. height: math.unit(127, "feet")
  6126. },
  6127. {
  6128. name: "Megamacro",
  6129. height: math.unit(3600, "feet")
  6130. },
  6131. ]
  6132. ))
  6133. characterMakers.push(() => makeCharacter(
  6134. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6135. {
  6136. side: {
  6137. height: math.unit(6, "feet"),
  6138. weight: math.unit(180, "lbs"),
  6139. name: "Side",
  6140. image: {
  6141. source: "./media/characters/blake/side.svg",
  6142. extra: 1212 / 1120,
  6143. bottom: 0.05
  6144. }
  6145. },
  6146. crouched: {
  6147. height: math.unit(6 * 0.57, "feet"),
  6148. weight: math.unit(180, "lbs"),
  6149. name: "Crouched",
  6150. image: {
  6151. source: "./media/characters/blake/crouched.svg",
  6152. extra: 840 / 587,
  6153. bottom: 0.04
  6154. }
  6155. },
  6156. bent: {
  6157. height: math.unit(6 * 0.75, "feet"),
  6158. weight: math.unit(180, "lbs"),
  6159. name: "Bent",
  6160. image: {
  6161. source: "./media/characters/blake/bent.svg",
  6162. extra: 592 / 544,
  6163. bottom: 0.035
  6164. }
  6165. },
  6166. },
  6167. [
  6168. {
  6169. name: "Normal",
  6170. height: math.unit(8 + 1 / 6, "feet"),
  6171. default: true
  6172. },
  6173. {
  6174. name: "Big Backside",
  6175. height: math.unit(37, "feet")
  6176. },
  6177. {
  6178. name: "Subway Shredder",
  6179. height: math.unit(72, "feet")
  6180. },
  6181. {
  6182. name: "City Carver",
  6183. height: math.unit(1675, "feet")
  6184. },
  6185. {
  6186. name: "Tectonic Tweaker",
  6187. height: math.unit(2300, "miles")
  6188. },
  6189. ]
  6190. ))
  6191. characterMakers.push(() => makeCharacter(
  6192. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6193. {
  6194. front: {
  6195. height: math.unit(6, "feet"),
  6196. weight: math.unit(180, "lbs"),
  6197. name: "Front",
  6198. image: {
  6199. source: "./media/characters/guisetto/front.svg",
  6200. extra: 856 / 817,
  6201. bottom: 0.06
  6202. }
  6203. },
  6204. airborne: {
  6205. height: math.unit(6, "feet"),
  6206. weight: math.unit(180, "lbs"),
  6207. name: "Airborne",
  6208. image: {
  6209. source: "./media/characters/guisetto/airborne.svg",
  6210. extra: 584 / 525
  6211. }
  6212. },
  6213. },
  6214. [
  6215. {
  6216. name: "Normal",
  6217. height: math.unit(10 + 11 / 12, "feet"),
  6218. default: true
  6219. },
  6220. {
  6221. name: "Large",
  6222. height: math.unit(35, "feet")
  6223. },
  6224. {
  6225. name: "Macro",
  6226. height: math.unit(475, "feet")
  6227. },
  6228. ]
  6229. ))
  6230. characterMakers.push(() => makeCharacter(
  6231. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6232. {
  6233. front: {
  6234. height: math.unit(6, "feet"),
  6235. weight: math.unit(180, "lbs"),
  6236. name: "Front",
  6237. image: {
  6238. source: "./media/characters/luxor/front.svg",
  6239. extra: 2940 / 2152
  6240. }
  6241. },
  6242. back: {
  6243. height: math.unit(6, "feet"),
  6244. weight: math.unit(180, "lbs"),
  6245. name: "Back",
  6246. image: {
  6247. source: "./media/characters/luxor/back.svg",
  6248. extra: 1083 / 960
  6249. }
  6250. },
  6251. },
  6252. [
  6253. {
  6254. name: "Normal",
  6255. height: math.unit(5 + 5 / 6, "feet"),
  6256. default: true
  6257. },
  6258. {
  6259. name: "Lamp",
  6260. height: math.unit(50, "feet")
  6261. },
  6262. {
  6263. name: "Lämp",
  6264. height: math.unit(300, "feet")
  6265. },
  6266. {
  6267. name: "The sun is a lamp",
  6268. height: math.unit(250000, "miles")
  6269. },
  6270. ]
  6271. ))
  6272. characterMakers.push(() => makeCharacter(
  6273. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6274. {
  6275. front: {
  6276. height: math.unit(6, "feet"),
  6277. weight: math.unit(50, "lbs"),
  6278. name: "Front",
  6279. image: {
  6280. source: "./media/characters/huoyan/front.svg"
  6281. }
  6282. },
  6283. side: {
  6284. height: math.unit(6, "feet"),
  6285. weight: math.unit(180, "lbs"),
  6286. name: "Side",
  6287. image: {
  6288. source: "./media/characters/huoyan/side.svg"
  6289. }
  6290. },
  6291. },
  6292. [
  6293. {
  6294. name: "Chef",
  6295. height: math.unit(9, "feet")
  6296. },
  6297. {
  6298. name: "Normal",
  6299. height: math.unit(65, "feet"),
  6300. default: true
  6301. },
  6302. {
  6303. name: "Macro",
  6304. height: math.unit(780, "feet")
  6305. },
  6306. {
  6307. name: "Flaming Mountain",
  6308. height: math.unit(4.8, "miles")
  6309. },
  6310. {
  6311. name: "Celestial",
  6312. height: math.unit(765000, "miles")
  6313. },
  6314. ]
  6315. ))
  6316. characterMakers.push(() => makeCharacter(
  6317. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6318. {
  6319. front: {
  6320. height: math.unit(5 + 3 / 4, "feet"),
  6321. weight: math.unit(120, "lbs"),
  6322. name: "Front",
  6323. image: {
  6324. source: "./media/characters/tails/front.svg"
  6325. }
  6326. }
  6327. },
  6328. [
  6329. {
  6330. name: "Normal",
  6331. height: math.unit(5 + 3 / 4, "feet"),
  6332. default: true
  6333. }
  6334. ]
  6335. ))
  6336. characterMakers.push(() => makeCharacter(
  6337. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6338. {
  6339. front: {
  6340. height: math.unit(4, "feet"),
  6341. weight: math.unit(50, "lbs"),
  6342. name: "Front",
  6343. image: {
  6344. source: "./media/characters/rainy/front.svg"
  6345. }
  6346. }
  6347. },
  6348. [
  6349. {
  6350. name: "Macro",
  6351. height: math.unit(800, "feet"),
  6352. default: true
  6353. }
  6354. ]
  6355. ))
  6356. characterMakers.push(() => makeCharacter(
  6357. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6358. {
  6359. front: {
  6360. height: math.unit(6, "feet"),
  6361. weight: math.unit(150, "lbs"),
  6362. name: "Front",
  6363. image: {
  6364. source: "./media/characters/rainier/front.svg"
  6365. }
  6366. }
  6367. },
  6368. [
  6369. {
  6370. name: "Micro",
  6371. height: math.unit(2, "mm"),
  6372. default: true
  6373. }
  6374. ]
  6375. ))
  6376. characterMakers.push(() => makeCharacter(
  6377. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6378. {
  6379. front: {
  6380. height: math.unit(8 + 4/12, "feet"),
  6381. weight: math.unit(450, "kilograms"),
  6382. volume: math.unit(5, "cups"),
  6383. name: "Front",
  6384. image: {
  6385. source: "./media/characters/andy-renard/front.svg",
  6386. extra: 1839/1726,
  6387. bottom: 134/1973
  6388. }
  6389. },
  6390. back: {
  6391. height: math.unit(8 + 4/12, "feet"),
  6392. weight: math.unit(450, "kilograms"),
  6393. volume: math.unit(5, "cups"),
  6394. name: "Back",
  6395. image: {
  6396. source: "./media/characters/andy-renard/back.svg",
  6397. extra: 1838/1710,
  6398. bottom: 105/1943
  6399. }
  6400. },
  6401. },
  6402. [
  6403. {
  6404. name: "Tall",
  6405. height: math.unit(8 + 4/12, "feet")
  6406. },
  6407. {
  6408. name: "Mini Macro",
  6409. height: math.unit(15, "feet"),
  6410. default: true
  6411. },
  6412. {
  6413. name: "Macro",
  6414. height: math.unit(100, "feet")
  6415. },
  6416. {
  6417. name: "Mega Macro",
  6418. height: math.unit(1000, "feet")
  6419. },
  6420. {
  6421. name: "Giga Macro",
  6422. height: math.unit(10, "miles")
  6423. },
  6424. {
  6425. name: "God Macro",
  6426. height: math.unit(1, "multiverse")
  6427. },
  6428. ]
  6429. ))
  6430. characterMakers.push(() => makeCharacter(
  6431. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6432. {
  6433. front: {
  6434. height: math.unit(6, "feet"),
  6435. weight: math.unit(210, "lbs"),
  6436. name: "Front",
  6437. image: {
  6438. source: "./media/characters/cimmaron/front-sfw.svg",
  6439. extra: 701 / 676,
  6440. bottom: 0.046
  6441. }
  6442. },
  6443. back: {
  6444. height: math.unit(6, "feet"),
  6445. weight: math.unit(210, "lbs"),
  6446. name: "Back",
  6447. image: {
  6448. source: "./media/characters/cimmaron/back-sfw.svg",
  6449. extra: 701 / 676,
  6450. bottom: 0.046
  6451. }
  6452. },
  6453. frontNsfw: {
  6454. height: math.unit(6, "feet"),
  6455. weight: math.unit(210, "lbs"),
  6456. name: "Front (NSFW)",
  6457. image: {
  6458. source: "./media/characters/cimmaron/front-nsfw.svg",
  6459. extra: 701 / 676,
  6460. bottom: 0.046
  6461. }
  6462. },
  6463. backNsfw: {
  6464. height: math.unit(6, "feet"),
  6465. weight: math.unit(210, "lbs"),
  6466. name: "Back (NSFW)",
  6467. image: {
  6468. source: "./media/characters/cimmaron/back-nsfw.svg",
  6469. extra: 701 / 676,
  6470. bottom: 0.046
  6471. }
  6472. },
  6473. dick: {
  6474. height: math.unit(1.714, "feet"),
  6475. name: "Dick",
  6476. image: {
  6477. source: "./media/characters/cimmaron/dick.svg"
  6478. }
  6479. },
  6480. },
  6481. [
  6482. {
  6483. name: "Normal",
  6484. height: math.unit(6, "feet"),
  6485. default: true
  6486. },
  6487. {
  6488. name: "Macro Mayor",
  6489. height: math.unit(350, "meters")
  6490. },
  6491. ]
  6492. ))
  6493. characterMakers.push(() => makeCharacter(
  6494. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6495. {
  6496. front: {
  6497. height: math.unit(6, "feet"),
  6498. weight: math.unit(200, "lbs"),
  6499. name: "Front",
  6500. image: {
  6501. source: "./media/characters/akari/front.svg",
  6502. extra: 962 / 901,
  6503. bottom: 0.04
  6504. }
  6505. }
  6506. },
  6507. [
  6508. {
  6509. name: "Micro",
  6510. height: math.unit(5, "inches"),
  6511. default: true
  6512. },
  6513. {
  6514. name: "Normal",
  6515. height: math.unit(7, "feet")
  6516. },
  6517. ]
  6518. ))
  6519. characterMakers.push(() => makeCharacter(
  6520. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6521. {
  6522. front: {
  6523. height: math.unit(6, "feet"),
  6524. weight: math.unit(140, "lbs"),
  6525. name: "Front",
  6526. image: {
  6527. source: "./media/characters/cynosura/front.svg",
  6528. extra: 437/410,
  6529. bottom: 9/446
  6530. }
  6531. },
  6532. back: {
  6533. height: math.unit(6, "feet"),
  6534. weight: math.unit(140, "lbs"),
  6535. name: "Back",
  6536. image: {
  6537. source: "./media/characters/cynosura/back.svg",
  6538. extra: 1304/1160,
  6539. bottom: 71/1375
  6540. }
  6541. },
  6542. },
  6543. [
  6544. {
  6545. name: "Micro",
  6546. height: math.unit(4, "inches")
  6547. },
  6548. {
  6549. name: "Normal",
  6550. height: math.unit(5.75, "feet"),
  6551. default: true
  6552. },
  6553. {
  6554. name: "Tall",
  6555. height: math.unit(10, "feet")
  6556. },
  6557. {
  6558. name: "Big",
  6559. height: math.unit(20, "feet")
  6560. },
  6561. {
  6562. name: "Macro",
  6563. height: math.unit(50, "feet")
  6564. },
  6565. ]
  6566. ))
  6567. characterMakers.push(() => makeCharacter(
  6568. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6569. {
  6570. front: {
  6571. height: math.unit(13 + 2/12, "feet"),
  6572. weight: math.unit(800, "kg"),
  6573. name: "Front",
  6574. image: {
  6575. source: "./media/characters/gin/front.svg",
  6576. extra: 1312/1191,
  6577. bottom: 45/1357
  6578. }
  6579. },
  6580. mouth: {
  6581. height: math.unit(2.39 * 1.8, "feet"),
  6582. name: "Mouth",
  6583. image: {
  6584. source: "./media/characters/gin/mouth.svg"
  6585. }
  6586. },
  6587. hand: {
  6588. height: math.unit(1.57 * 2.19, "feet"),
  6589. name: "Hand",
  6590. image: {
  6591. source: "./media/characters/gin/hand.svg"
  6592. }
  6593. },
  6594. foot: {
  6595. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6596. name: "Foot",
  6597. image: {
  6598. source: "./media/characters/gin/foot.svg"
  6599. }
  6600. },
  6601. sole: {
  6602. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6603. name: "Sole",
  6604. image: {
  6605. source: "./media/characters/gin/sole.svg"
  6606. }
  6607. },
  6608. },
  6609. [
  6610. {
  6611. name: "Very Small",
  6612. height: math.unit(13 + 2 / 12, "feet")
  6613. },
  6614. {
  6615. name: "Micro",
  6616. height: math.unit(600, "miles")
  6617. },
  6618. {
  6619. name: "Regular",
  6620. height: math.unit(20, "earths"),
  6621. default: true
  6622. },
  6623. {
  6624. name: "Macro",
  6625. height: math.unit(2.2, "solarradii")
  6626. },
  6627. {
  6628. name: "Teramacro",
  6629. height: math.unit(1.2, "galaxies")
  6630. },
  6631. {
  6632. name: "Omegamacro",
  6633. height: math.unit(200, "universes")
  6634. },
  6635. ]
  6636. ))
  6637. characterMakers.push(() => makeCharacter(
  6638. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6639. {
  6640. front: {
  6641. height: math.unit(6 + 1 / 6, "feet"),
  6642. weight: math.unit(178, "lbs"),
  6643. name: "Front",
  6644. image: {
  6645. source: "./media/characters/guy/front.svg"
  6646. }
  6647. }
  6648. },
  6649. [
  6650. {
  6651. name: "Normal",
  6652. height: math.unit(6 + 1 / 6, "feet"),
  6653. default: true
  6654. },
  6655. {
  6656. name: "Large",
  6657. height: math.unit(25 + 7 / 12, "feet")
  6658. },
  6659. {
  6660. name: "Macro",
  6661. height: math.unit(60 + 9 / 12, "feet")
  6662. },
  6663. {
  6664. name: "Macro+",
  6665. height: math.unit(246, "feet")
  6666. },
  6667. {
  6668. name: "Macro++",
  6669. height: math.unit(878, "feet")
  6670. }
  6671. ]
  6672. ))
  6673. characterMakers.push(() => makeCharacter(
  6674. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6675. {
  6676. front: {
  6677. height: math.unit(9, "feet"),
  6678. weight: math.unit(800, "lbs"),
  6679. name: "Front",
  6680. image: {
  6681. source: "./media/characters/tiberius/front.svg",
  6682. extra: 2295 / 2071
  6683. }
  6684. },
  6685. back: {
  6686. height: math.unit(9, "feet"),
  6687. weight: math.unit(800, "lbs"),
  6688. name: "Back",
  6689. image: {
  6690. source: "./media/characters/tiberius/back.svg",
  6691. extra: 2373 / 2160
  6692. }
  6693. },
  6694. },
  6695. [
  6696. {
  6697. name: "Normal",
  6698. height: math.unit(9, "feet"),
  6699. default: true
  6700. }
  6701. ]
  6702. ))
  6703. characterMakers.push(() => makeCharacter(
  6704. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6705. {
  6706. front: {
  6707. height: math.unit(6, "feet"),
  6708. weight: math.unit(600, "lbs"),
  6709. name: "Front",
  6710. image: {
  6711. source: "./media/characters/surgo/front.svg",
  6712. extra: 3591 / 2227
  6713. }
  6714. },
  6715. back: {
  6716. height: math.unit(6, "feet"),
  6717. weight: math.unit(600, "lbs"),
  6718. name: "Back",
  6719. image: {
  6720. source: "./media/characters/surgo/back.svg",
  6721. extra: 3557 / 2228
  6722. }
  6723. },
  6724. laying: {
  6725. height: math.unit(6 * 0.85, "feet"),
  6726. weight: math.unit(600, "lbs"),
  6727. name: "Laying",
  6728. image: {
  6729. source: "./media/characters/surgo/laying.svg"
  6730. }
  6731. },
  6732. },
  6733. [
  6734. {
  6735. name: "Normal",
  6736. height: math.unit(6, "feet"),
  6737. default: true
  6738. }
  6739. ]
  6740. ))
  6741. characterMakers.push(() => makeCharacter(
  6742. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6743. {
  6744. side: {
  6745. height: math.unit(6, "feet"),
  6746. weight: math.unit(150, "lbs"),
  6747. name: "Side",
  6748. image: {
  6749. source: "./media/characters/cibus/side.svg",
  6750. extra: 800 / 400
  6751. }
  6752. },
  6753. },
  6754. [
  6755. {
  6756. name: "Normal",
  6757. height: math.unit(6, "feet"),
  6758. default: true
  6759. }
  6760. ]
  6761. ))
  6762. characterMakers.push(() => makeCharacter(
  6763. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6764. {
  6765. front: {
  6766. height: math.unit(6, "feet"),
  6767. weight: math.unit(240, "lbs"),
  6768. name: "Front",
  6769. image: {
  6770. source: "./media/characters/nibbles/front.svg"
  6771. }
  6772. },
  6773. side: {
  6774. height: math.unit(6, "feet"),
  6775. weight: math.unit(240, "lbs"),
  6776. name: "Side",
  6777. image: {
  6778. source: "./media/characters/nibbles/side.svg"
  6779. }
  6780. },
  6781. },
  6782. [
  6783. {
  6784. name: "Normal",
  6785. height: math.unit(9, "feet"),
  6786. default: true
  6787. }
  6788. ]
  6789. ))
  6790. characterMakers.push(() => makeCharacter(
  6791. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6792. {
  6793. side: {
  6794. height: math.unit(5 + 1 / 6, "feet"),
  6795. weight: math.unit(130, "lbs"),
  6796. name: "Side",
  6797. image: {
  6798. source: "./media/characters/rikky/side.svg",
  6799. extra: 851 / 801
  6800. }
  6801. },
  6802. },
  6803. [
  6804. {
  6805. name: "Normal",
  6806. height: math.unit(5 + 1 / 6, "feet")
  6807. },
  6808. {
  6809. name: "Macro",
  6810. height: math.unit(152, "feet"),
  6811. default: true
  6812. },
  6813. {
  6814. name: "Megamacro",
  6815. height: math.unit(7, "miles")
  6816. }
  6817. ]
  6818. ))
  6819. characterMakers.push(() => makeCharacter(
  6820. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6821. {
  6822. side: {
  6823. height: math.unit(370, "cm"),
  6824. weight: math.unit(350, "lbs"),
  6825. name: "Side",
  6826. image: {
  6827. source: "./media/characters/malfressa/side.svg"
  6828. }
  6829. },
  6830. walking: {
  6831. height: math.unit(370, "cm"),
  6832. weight: math.unit(350, "lbs"),
  6833. name: "Walking",
  6834. image: {
  6835. source: "./media/characters/malfressa/walking.svg"
  6836. }
  6837. },
  6838. feral: {
  6839. height: math.unit(2500, "cm"),
  6840. weight: math.unit(100000, "lbs"),
  6841. name: "Feral",
  6842. image: {
  6843. source: "./media/characters/malfressa/feral.svg",
  6844. extra: 2108 / 837,
  6845. bottom: 0.02
  6846. }
  6847. },
  6848. },
  6849. [
  6850. {
  6851. name: "Normal",
  6852. height: math.unit(370, "cm")
  6853. },
  6854. {
  6855. name: "Macro",
  6856. height: math.unit(300, "meters"),
  6857. default: true
  6858. }
  6859. ]
  6860. ))
  6861. characterMakers.push(() => makeCharacter(
  6862. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6863. {
  6864. front: {
  6865. height: math.unit(6, "feet"),
  6866. weight: math.unit(60, "kg"),
  6867. name: "Front",
  6868. image: {
  6869. source: "./media/characters/jaro/front.svg",
  6870. extra: 845/817,
  6871. bottom: 45/890
  6872. }
  6873. },
  6874. back: {
  6875. height: math.unit(6, "feet"),
  6876. weight: math.unit(60, "kg"),
  6877. name: "Back",
  6878. image: {
  6879. source: "./media/characters/jaro/back.svg",
  6880. extra: 847/817,
  6881. bottom: 34/881
  6882. }
  6883. },
  6884. },
  6885. [
  6886. {
  6887. name: "Micro",
  6888. height: math.unit(7, "inches")
  6889. },
  6890. {
  6891. name: "Normal",
  6892. height: math.unit(5.5, "feet"),
  6893. default: true
  6894. },
  6895. {
  6896. name: "Minimacro",
  6897. height: math.unit(20, "feet")
  6898. },
  6899. {
  6900. name: "Macro",
  6901. height: math.unit(200, "meters")
  6902. }
  6903. ]
  6904. ))
  6905. characterMakers.push(() => makeCharacter(
  6906. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6907. {
  6908. front: {
  6909. height: math.unit(6, "feet"),
  6910. weight: math.unit(195, "lb"),
  6911. name: "Front",
  6912. image: {
  6913. source: "./media/characters/rogue/front.svg"
  6914. }
  6915. },
  6916. },
  6917. [
  6918. {
  6919. name: "Macro",
  6920. height: math.unit(90, "feet"),
  6921. default: true
  6922. },
  6923. ]
  6924. ))
  6925. characterMakers.push(() => makeCharacter(
  6926. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6927. {
  6928. standing: {
  6929. height: math.unit(5 + 8 / 12, "feet"),
  6930. weight: math.unit(140, "lb"),
  6931. name: "Standing",
  6932. image: {
  6933. source: "./media/characters/piper/standing.svg",
  6934. extra: 1440/1284,
  6935. bottom: 66/1506
  6936. }
  6937. },
  6938. running: {
  6939. height: math.unit(5 + 8 / 12, "feet"),
  6940. weight: math.unit(140, "lb"),
  6941. name: "Running",
  6942. image: {
  6943. source: "./media/characters/piper/running.svg",
  6944. extra: 3948/3655,
  6945. bottom: 0/3948
  6946. }
  6947. },
  6948. sole: {
  6949. height: math.unit(0.81, "feet"),
  6950. weight: math.unit(2, "kg"),
  6951. name: "Sole",
  6952. image: {
  6953. source: "./media/characters/piper/sole.svg"
  6954. }
  6955. },
  6956. nipple: {
  6957. height: math.unit(0.25, "feet"),
  6958. weight: math.unit(1.5, "lb"),
  6959. name: "Nipple",
  6960. image: {
  6961. source: "./media/characters/piper/nipple.svg"
  6962. }
  6963. },
  6964. head: {
  6965. height: math.unit(1.1, "feet"),
  6966. name: "Head",
  6967. image: {
  6968. source: "./media/characters/piper/head.svg"
  6969. }
  6970. },
  6971. },
  6972. [
  6973. {
  6974. name: "Micro",
  6975. height: math.unit(2, "inches")
  6976. },
  6977. {
  6978. name: "Normal",
  6979. height: math.unit(5 + 8 / 12, "feet")
  6980. },
  6981. {
  6982. name: "Macro",
  6983. height: math.unit(250, "feet"),
  6984. default: true
  6985. },
  6986. {
  6987. name: "Megamacro",
  6988. height: math.unit(7, "miles")
  6989. },
  6990. ]
  6991. ))
  6992. characterMakers.push(() => makeCharacter(
  6993. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6994. {
  6995. front: {
  6996. height: math.unit(6, "feet"),
  6997. weight: math.unit(220, "lb"),
  6998. name: "Front",
  6999. image: {
  7000. source: "./media/characters/gemini/front.svg"
  7001. }
  7002. },
  7003. back: {
  7004. height: math.unit(6, "feet"),
  7005. weight: math.unit(220, "lb"),
  7006. name: "Back",
  7007. image: {
  7008. source: "./media/characters/gemini/back.svg"
  7009. }
  7010. },
  7011. kneeling: {
  7012. height: math.unit(6 / 1.5, "feet"),
  7013. weight: math.unit(220, "lb"),
  7014. name: "Kneeling",
  7015. image: {
  7016. source: "./media/characters/gemini/kneeling.svg",
  7017. bottom: 0.02
  7018. }
  7019. },
  7020. },
  7021. [
  7022. {
  7023. name: "Macro",
  7024. height: math.unit(300, "meters"),
  7025. default: true
  7026. },
  7027. {
  7028. name: "Megamacro",
  7029. height: math.unit(6900, "meters")
  7030. },
  7031. ]
  7032. ))
  7033. characterMakers.push(() => makeCharacter(
  7034. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7035. {
  7036. anthro: {
  7037. height: math.unit(2.35, "meters"),
  7038. weight: math.unit(73, "kg"),
  7039. name: "Anthro",
  7040. image: {
  7041. source: "./media/characters/alicia/anthro.svg",
  7042. extra: 2571 / 2385,
  7043. bottom: 75 / 2648
  7044. }
  7045. },
  7046. paw: {
  7047. height: math.unit(1.32, "feet"),
  7048. name: "Paw",
  7049. image: {
  7050. source: "./media/characters/alicia/paw.svg"
  7051. }
  7052. },
  7053. feral: {
  7054. height: math.unit(1.69, "meters"),
  7055. weight: math.unit(73, "kg"),
  7056. name: "Feral",
  7057. image: {
  7058. source: "./media/characters/alicia/feral.svg",
  7059. extra: 2123 / 1715,
  7060. bottom: 222 / 2349
  7061. }
  7062. },
  7063. },
  7064. [
  7065. {
  7066. name: "Normal",
  7067. height: math.unit(2.35, "meters")
  7068. },
  7069. {
  7070. name: "Macro",
  7071. height: math.unit(60, "meters"),
  7072. default: true
  7073. },
  7074. {
  7075. name: "Megamacro",
  7076. height: math.unit(10000, "kilometers")
  7077. },
  7078. ]
  7079. ))
  7080. characterMakers.push(() => makeCharacter(
  7081. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7082. {
  7083. front: {
  7084. height: math.unit(7, "feet"),
  7085. weight: math.unit(250, "lbs"),
  7086. name: "Front",
  7087. image: {
  7088. source: "./media/characters/archy/front.svg"
  7089. }
  7090. }
  7091. },
  7092. [
  7093. {
  7094. name: "Micro",
  7095. height: math.unit(1, "inch")
  7096. },
  7097. {
  7098. name: "Shorty",
  7099. height: math.unit(5, "feet")
  7100. },
  7101. {
  7102. name: "Normal",
  7103. height: math.unit(7, "feet")
  7104. },
  7105. {
  7106. name: "Macro",
  7107. height: math.unit(600, "meters"),
  7108. default: true
  7109. },
  7110. {
  7111. name: "Megamacro",
  7112. height: math.unit(1, "mile")
  7113. },
  7114. ]
  7115. ))
  7116. characterMakers.push(() => makeCharacter(
  7117. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7118. {
  7119. front: {
  7120. height: math.unit(1.65, "meters"),
  7121. weight: math.unit(74, "kg"),
  7122. name: "Front",
  7123. image: {
  7124. source: "./media/characters/berri/front.svg",
  7125. extra: 857 / 837,
  7126. bottom: 18 / 877
  7127. }
  7128. },
  7129. bum: {
  7130. height: math.unit(1.46, "feet"),
  7131. name: "Bum",
  7132. image: {
  7133. source: "./media/characters/berri/bum.svg"
  7134. }
  7135. },
  7136. mouth: {
  7137. height: math.unit(0.44, "feet"),
  7138. name: "Mouth",
  7139. image: {
  7140. source: "./media/characters/berri/mouth.svg"
  7141. }
  7142. },
  7143. paw: {
  7144. height: math.unit(0.826, "feet"),
  7145. name: "Paw",
  7146. image: {
  7147. source: "./media/characters/berri/paw.svg"
  7148. }
  7149. },
  7150. },
  7151. [
  7152. {
  7153. name: "Normal",
  7154. height: math.unit(1.65, "meters")
  7155. },
  7156. {
  7157. name: "Macro",
  7158. height: math.unit(60, "m"),
  7159. default: true
  7160. },
  7161. {
  7162. name: "Megamacro",
  7163. height: math.unit(9.213, "km")
  7164. },
  7165. {
  7166. name: "Planet Eater",
  7167. height: math.unit(489, "megameters")
  7168. },
  7169. {
  7170. name: "Teramacro",
  7171. height: math.unit(2471635000000, "meters")
  7172. },
  7173. {
  7174. name: "Examacro",
  7175. height: math.unit(8.0624e+26, "meters")
  7176. }
  7177. ]
  7178. ))
  7179. characterMakers.push(() => makeCharacter(
  7180. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7181. {
  7182. front: {
  7183. height: math.unit(1.72, "meters"),
  7184. weight: math.unit(68, "kg"),
  7185. name: "Front",
  7186. image: {
  7187. source: "./media/characters/lexi/front.svg"
  7188. }
  7189. }
  7190. },
  7191. [
  7192. {
  7193. name: "Very Smol",
  7194. height: math.unit(10, "mm")
  7195. },
  7196. {
  7197. name: "Micro",
  7198. height: math.unit(6.8, "cm"),
  7199. default: true
  7200. },
  7201. {
  7202. name: "Normal",
  7203. height: math.unit(1.72, "m")
  7204. }
  7205. ]
  7206. ))
  7207. characterMakers.push(() => makeCharacter(
  7208. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7209. {
  7210. front: {
  7211. height: math.unit(1.69, "meters"),
  7212. weight: math.unit(68, "kg"),
  7213. name: "Front",
  7214. image: {
  7215. source: "./media/characters/martin/front.svg",
  7216. extra: 596 / 581
  7217. }
  7218. }
  7219. },
  7220. [
  7221. {
  7222. name: "Micro",
  7223. height: math.unit(6.85, "cm"),
  7224. default: true
  7225. },
  7226. {
  7227. name: "Normal",
  7228. height: math.unit(1.69, "m")
  7229. }
  7230. ]
  7231. ))
  7232. characterMakers.push(() => makeCharacter(
  7233. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7234. {
  7235. front: {
  7236. height: math.unit(1.69, "meters"),
  7237. weight: math.unit(68, "kg"),
  7238. name: "Front",
  7239. image: {
  7240. source: "./media/characters/juno/front.svg"
  7241. }
  7242. }
  7243. },
  7244. [
  7245. {
  7246. name: "Micro",
  7247. height: math.unit(7, "cm")
  7248. },
  7249. {
  7250. name: "Normal",
  7251. height: math.unit(1.89, "m")
  7252. },
  7253. {
  7254. name: "Macro",
  7255. height: math.unit(353, "meters"),
  7256. default: true
  7257. }
  7258. ]
  7259. ))
  7260. characterMakers.push(() => makeCharacter(
  7261. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7262. {
  7263. front: {
  7264. height: math.unit(1.93, "meters"),
  7265. weight: math.unit(83, "kg"),
  7266. name: "Front",
  7267. image: {
  7268. source: "./media/characters/samantha/front.svg"
  7269. }
  7270. },
  7271. frontClothed: {
  7272. height: math.unit(1.93, "meters"),
  7273. weight: math.unit(83, "kg"),
  7274. name: "Front (Clothed)",
  7275. image: {
  7276. source: "./media/characters/samantha/front-clothed.svg"
  7277. }
  7278. },
  7279. back: {
  7280. height: math.unit(1.93, "meters"),
  7281. weight: math.unit(83, "kg"),
  7282. name: "Back",
  7283. image: {
  7284. source: "./media/characters/samantha/back.svg"
  7285. }
  7286. },
  7287. },
  7288. [
  7289. {
  7290. name: "Normal",
  7291. height: math.unit(1.93, "m")
  7292. },
  7293. {
  7294. name: "Macro",
  7295. height: math.unit(74, "meters"),
  7296. default: true
  7297. },
  7298. {
  7299. name: "Macro+",
  7300. height: math.unit(223, "meters"),
  7301. },
  7302. {
  7303. name: "Megamacro",
  7304. height: math.unit(8381, "meters"),
  7305. },
  7306. {
  7307. name: "Megamacro+",
  7308. height: math.unit(12000, "kilometers")
  7309. },
  7310. ]
  7311. ))
  7312. characterMakers.push(() => makeCharacter(
  7313. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7314. {
  7315. front: {
  7316. height: math.unit(1.92, "meters"),
  7317. weight: math.unit(80, "kg"),
  7318. name: "Front",
  7319. image: {
  7320. source: "./media/characters/dr-clay/front.svg"
  7321. }
  7322. },
  7323. frontClothed: {
  7324. height: math.unit(1.92, "meters"),
  7325. weight: math.unit(80, "kg"),
  7326. name: "Front (Clothed)",
  7327. image: {
  7328. source: "./media/characters/dr-clay/front-clothed.svg"
  7329. }
  7330. }
  7331. },
  7332. [
  7333. {
  7334. name: "Normal",
  7335. height: math.unit(1.92, "m")
  7336. },
  7337. {
  7338. name: "Macro",
  7339. height: math.unit(214, "meters"),
  7340. default: true
  7341. },
  7342. {
  7343. name: "Macro+",
  7344. height: math.unit(12.237, "meters"),
  7345. },
  7346. {
  7347. name: "Megamacro",
  7348. height: math.unit(557, "megameters"),
  7349. },
  7350. {
  7351. name: "Unimaginable",
  7352. height: math.unit(120e9, "lightyears")
  7353. },
  7354. ]
  7355. ))
  7356. characterMakers.push(() => makeCharacter(
  7357. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7358. {
  7359. front: {
  7360. height: math.unit(2, "meters"),
  7361. weight: math.unit(80, "kg"),
  7362. name: "Front",
  7363. image: {
  7364. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7365. }
  7366. }
  7367. },
  7368. [
  7369. {
  7370. name: "Teramacro",
  7371. height: math.unit(500000, "lightyears"),
  7372. default: true
  7373. },
  7374. ]
  7375. ))
  7376. characterMakers.push(() => makeCharacter(
  7377. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7378. {
  7379. crux: {
  7380. height: math.unit(2, "meters"),
  7381. weight: math.unit(150, "kg"),
  7382. name: "Crux",
  7383. image: {
  7384. source: "./media/characters/vemus/crux.svg",
  7385. extra: 1074/936,
  7386. bottom: 23/1097
  7387. }
  7388. },
  7389. skunkTanuki: {
  7390. height: math.unit(2, "meters"),
  7391. weight: math.unit(150, "kg"),
  7392. name: "Skunk-Tanuki",
  7393. image: {
  7394. source: "./media/characters/vemus/skunk-tanuki.svg",
  7395. extra: 926/893,
  7396. bottom: 20/946
  7397. }
  7398. },
  7399. },
  7400. [
  7401. {
  7402. name: "Normal",
  7403. height: math.unit(4, "meters"),
  7404. default: true
  7405. },
  7406. {
  7407. name: "Big",
  7408. height: math.unit(8, "meters")
  7409. },
  7410. {
  7411. name: "Macro",
  7412. height: math.unit(100, "meters")
  7413. },
  7414. {
  7415. name: "Macro+",
  7416. height: math.unit(1500, "meters")
  7417. },
  7418. {
  7419. name: "Stellar",
  7420. height: math.unit(14e8, "meters")
  7421. },
  7422. ]
  7423. ))
  7424. characterMakers.push(() => makeCharacter(
  7425. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7426. {
  7427. front: {
  7428. height: math.unit(2, "meters"),
  7429. weight: math.unit(70, "kg"),
  7430. name: "Front",
  7431. image: {
  7432. source: "./media/characters/beherit/front.svg",
  7433. extra: 1234/1109,
  7434. bottom: 55/1289
  7435. }
  7436. }
  7437. },
  7438. [
  7439. {
  7440. name: "Normal",
  7441. height: math.unit(6, "feet")
  7442. },
  7443. {
  7444. name: "Lorg",
  7445. height: math.unit(25, "feet"),
  7446. default: true
  7447. },
  7448. {
  7449. name: "Lorger",
  7450. height: math.unit(75, "feet")
  7451. },
  7452. {
  7453. name: "Macro",
  7454. height: math.unit(200, "meters")
  7455. },
  7456. ]
  7457. ))
  7458. characterMakers.push(() => makeCharacter(
  7459. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7460. {
  7461. front: {
  7462. height: math.unit(2, "meters"),
  7463. weight: math.unit(150, "kg"),
  7464. name: "Front",
  7465. image: {
  7466. source: "./media/characters/everett/front.svg",
  7467. extra: 1017/866,
  7468. bottom: 86/1103
  7469. }
  7470. },
  7471. paw: {
  7472. height: math.unit(2 / 3.6, "meters"),
  7473. name: "Paw",
  7474. image: {
  7475. source: "./media/characters/everett/paw.svg"
  7476. }
  7477. },
  7478. },
  7479. [
  7480. {
  7481. name: "Normal",
  7482. height: math.unit(15, "feet"),
  7483. default: true
  7484. },
  7485. {
  7486. name: "Lorg",
  7487. height: math.unit(70, "feet"),
  7488. default: true
  7489. },
  7490. {
  7491. name: "Lorger",
  7492. height: math.unit(250, "feet")
  7493. },
  7494. {
  7495. name: "Macro",
  7496. height: math.unit(500, "meters")
  7497. },
  7498. ]
  7499. ))
  7500. characterMakers.push(() => makeCharacter(
  7501. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7502. {
  7503. front: {
  7504. height: math.unit(2, "meters"),
  7505. weight: math.unit(86, "kg"),
  7506. name: "Front",
  7507. image: {
  7508. source: "./media/characters/rose/front.svg",
  7509. extra: 1785/1636,
  7510. bottom: 30/1815
  7511. },
  7512. form: "liom",
  7513. default: true
  7514. },
  7515. frontSporty: {
  7516. height: math.unit(2, "meters"),
  7517. weight: math.unit(86, "kg"),
  7518. name: "Front (Sporty)",
  7519. image: {
  7520. source: "./media/characters/rose/front-sporty.svg",
  7521. extra: 350/335,
  7522. bottom: 10/360
  7523. },
  7524. form: "liom"
  7525. },
  7526. frontAlt: {
  7527. height: math.unit(1.6, "meters"),
  7528. weight: math.unit(86, "kg"),
  7529. name: "Front (Alt)",
  7530. image: {
  7531. source: "./media/characters/rose/front-alt.svg",
  7532. extra: 299/283,
  7533. bottom: 3/302
  7534. },
  7535. form: "liom"
  7536. },
  7537. plush: {
  7538. height: math.unit(2, "meters"),
  7539. weight: math.unit(86/3, "kg"),
  7540. name: "Plush",
  7541. image: {
  7542. source: "./media/characters/rose/plush.svg",
  7543. extra: 361/337,
  7544. bottom: 11/372
  7545. },
  7546. form: "plush",
  7547. default: true
  7548. },
  7549. faeStanding: {
  7550. height: math.unit(10, "cm"),
  7551. weight: math.unit(10, "grams"),
  7552. name: "Standing",
  7553. image: {
  7554. source: "./media/characters/rose/fae-standing.svg",
  7555. extra: 1189/1060,
  7556. bottom: 27/1216
  7557. },
  7558. form: "fae",
  7559. default: true
  7560. },
  7561. faeSitting: {
  7562. height: math.unit(5, "cm"),
  7563. weight: math.unit(10, "grams"),
  7564. name: "Sitting",
  7565. image: {
  7566. source: "./media/characters/rose/fae-sitting.svg",
  7567. extra: 737/577,
  7568. bottom: 356/1093
  7569. },
  7570. form: "fae"
  7571. },
  7572. faePaw: {
  7573. height: math.unit(1.35, "cm"),
  7574. name: "Paw",
  7575. image: {
  7576. source: "./media/characters/rose/fae-paw.svg"
  7577. },
  7578. form: "fae"
  7579. },
  7580. },
  7581. [
  7582. {
  7583. name: "True Micro",
  7584. height: math.unit(9, "cm"),
  7585. form: "liom"
  7586. },
  7587. {
  7588. name: "Micro",
  7589. height: math.unit(16, "cm"),
  7590. form: "liom"
  7591. },
  7592. {
  7593. name: "Normal",
  7594. height: math.unit(1.85, "meters"),
  7595. default: true,
  7596. form: "liom"
  7597. },
  7598. {
  7599. name: "Mini-Macro",
  7600. height: math.unit(5, "meters"),
  7601. form: "liom"
  7602. },
  7603. {
  7604. name: "Macro",
  7605. height: math.unit(15, "meters"),
  7606. form: "liom"
  7607. },
  7608. {
  7609. name: "True Macro",
  7610. height: math.unit(40, "meters"),
  7611. form: "liom"
  7612. },
  7613. {
  7614. name: "City Scale",
  7615. height: math.unit(1, "km"),
  7616. form: "liom"
  7617. },
  7618. {
  7619. name: "Plushie",
  7620. height: math.unit(9, "cm"),
  7621. form: "plush",
  7622. default: true
  7623. },
  7624. {
  7625. name: "Fae",
  7626. height: math.unit(10, "cm"),
  7627. form: "fae",
  7628. default: true
  7629. },
  7630. ],
  7631. {
  7632. "liom": {
  7633. name: "Liom"
  7634. },
  7635. "plush": {
  7636. name: "Plush"
  7637. },
  7638. "fae": {
  7639. name: "Fae Fox",
  7640. default: true
  7641. }
  7642. }
  7643. ))
  7644. characterMakers.push(() => makeCharacter(
  7645. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7646. {
  7647. front: {
  7648. height: math.unit(2, "meters"),
  7649. weight: math.unit(350, "lbs"),
  7650. name: "Front",
  7651. image: {
  7652. source: "./media/characters/regal/front.svg"
  7653. }
  7654. },
  7655. back: {
  7656. height: math.unit(2, "meters"),
  7657. weight: math.unit(350, "lbs"),
  7658. name: "Back",
  7659. image: {
  7660. source: "./media/characters/regal/back.svg"
  7661. }
  7662. },
  7663. },
  7664. [
  7665. {
  7666. name: "Macro",
  7667. height: math.unit(350, "feet"),
  7668. default: true
  7669. }
  7670. ]
  7671. ))
  7672. characterMakers.push(() => makeCharacter(
  7673. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7674. {
  7675. front: {
  7676. height: math.unit(4 + 11 / 12, "feet"),
  7677. weight: math.unit(100, "lbs"),
  7678. name: "Front",
  7679. image: {
  7680. source: "./media/characters/opal/front.svg"
  7681. }
  7682. },
  7683. frontAlt: {
  7684. height: math.unit(4 + 11 / 12, "feet"),
  7685. weight: math.unit(100, "lbs"),
  7686. name: "Front (Alt)",
  7687. image: {
  7688. source: "./media/characters/opal/front-alt.svg"
  7689. }
  7690. },
  7691. },
  7692. [
  7693. {
  7694. name: "Small",
  7695. height: math.unit(4 + 11 / 12, "feet")
  7696. },
  7697. {
  7698. name: "Normal",
  7699. height: math.unit(20, "feet"),
  7700. default: true
  7701. },
  7702. {
  7703. name: "Macro",
  7704. height: math.unit(120, "feet")
  7705. },
  7706. {
  7707. name: "Megamacro",
  7708. height: math.unit(80, "miles")
  7709. },
  7710. {
  7711. name: "True Size",
  7712. height: math.unit(100000, "lightyears")
  7713. },
  7714. ]
  7715. ))
  7716. characterMakers.push(() => makeCharacter(
  7717. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7718. {
  7719. front: {
  7720. height: math.unit(6, "feet"),
  7721. weight: math.unit(200, "lbs"),
  7722. name: "Front",
  7723. image: {
  7724. source: "./media/characters/vector-wuff/front.svg"
  7725. }
  7726. }
  7727. },
  7728. [
  7729. {
  7730. name: "Normal",
  7731. height: math.unit(2.8, "meters")
  7732. },
  7733. {
  7734. name: "Macro",
  7735. height: math.unit(450, "meters"),
  7736. default: true
  7737. },
  7738. {
  7739. name: "Megamacro",
  7740. height: math.unit(15, "kilometers")
  7741. }
  7742. ]
  7743. ))
  7744. characterMakers.push(() => makeCharacter(
  7745. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7746. {
  7747. front: {
  7748. height: math.unit(6, "feet"),
  7749. weight: math.unit(256, "lbs"),
  7750. name: "Front",
  7751. image: {
  7752. source: "./media/characters/dannik/front.svg"
  7753. }
  7754. }
  7755. },
  7756. [
  7757. {
  7758. name: "Macro",
  7759. height: math.unit(69.57, "meters"),
  7760. default: true
  7761. },
  7762. ]
  7763. ))
  7764. characterMakers.push(() => makeCharacter(
  7765. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7766. {
  7767. front: {
  7768. height: math.unit(6, "feet"),
  7769. weight: math.unit(120, "lbs"),
  7770. name: "Front",
  7771. image: {
  7772. source: "./media/characters/azura-saharah/front.svg"
  7773. }
  7774. },
  7775. back: {
  7776. height: math.unit(6, "feet"),
  7777. weight: math.unit(120, "lbs"),
  7778. name: "Back",
  7779. image: {
  7780. source: "./media/characters/azura-saharah/back.svg"
  7781. }
  7782. },
  7783. },
  7784. [
  7785. {
  7786. name: "Macro",
  7787. height: math.unit(100, "feet"),
  7788. default: true
  7789. },
  7790. ]
  7791. ))
  7792. characterMakers.push(() => makeCharacter(
  7793. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7794. {
  7795. side: {
  7796. height: math.unit(5 + 4 / 12, "feet"),
  7797. weight: math.unit(163, "lbs"),
  7798. name: "Side",
  7799. image: {
  7800. source: "./media/characters/kennedy/side.svg"
  7801. }
  7802. }
  7803. },
  7804. [
  7805. {
  7806. name: "Standard Doggo",
  7807. height: math.unit(5 + 4 / 12, "feet")
  7808. },
  7809. {
  7810. name: "Big Doggo",
  7811. height: math.unit(25 + 3 / 12, "feet"),
  7812. default: true
  7813. },
  7814. ]
  7815. ))
  7816. characterMakers.push(() => makeCharacter(
  7817. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7818. {
  7819. front: {
  7820. height: math.unit(5 + 5/12, "feet"),
  7821. weight: math.unit(100, "lbs"),
  7822. name: "Front",
  7823. image: {
  7824. source: "./media/characters/odios-de-lunar/front.svg",
  7825. extra: 1468/1323,
  7826. bottom: 22/1490
  7827. }
  7828. }
  7829. },
  7830. [
  7831. {
  7832. name: "Micro",
  7833. height: math.unit(3, "inches")
  7834. },
  7835. {
  7836. name: "Normal",
  7837. height: math.unit(5.5, "feet"),
  7838. default: true
  7839. },
  7840. {
  7841. name: "Macro",
  7842. height: math.unit(100, "feet")
  7843. },
  7844. ]
  7845. ))
  7846. characterMakers.push(() => makeCharacter(
  7847. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7848. {
  7849. back: {
  7850. height: math.unit(6, "feet"),
  7851. weight: math.unit(220, "lbs"),
  7852. name: "Back",
  7853. image: {
  7854. source: "./media/characters/mandake/back.svg"
  7855. }
  7856. }
  7857. },
  7858. [
  7859. {
  7860. name: "Normal",
  7861. height: math.unit(7, "feet"),
  7862. default: true
  7863. },
  7864. {
  7865. name: "Macro",
  7866. height: math.unit(78, "feet")
  7867. },
  7868. {
  7869. name: "Macro+",
  7870. height: math.unit(300, "meters")
  7871. },
  7872. {
  7873. name: "Macro++",
  7874. height: math.unit(2400, "feet")
  7875. },
  7876. {
  7877. name: "Megamacro",
  7878. height: math.unit(5167, "meters")
  7879. },
  7880. {
  7881. name: "Gigamacro",
  7882. height: math.unit(41769, "miles")
  7883. },
  7884. ]
  7885. ))
  7886. characterMakers.push(() => makeCharacter(
  7887. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7888. {
  7889. front: {
  7890. height: math.unit(6, "feet"),
  7891. weight: math.unit(120, "lbs"),
  7892. name: "Front",
  7893. image: {
  7894. source: "./media/characters/yozey/front.svg"
  7895. }
  7896. },
  7897. frontAlt: {
  7898. height: math.unit(6, "feet"),
  7899. weight: math.unit(120, "lbs"),
  7900. name: "Front (Alt)",
  7901. image: {
  7902. source: "./media/characters/yozey/front-alt.svg"
  7903. }
  7904. },
  7905. side: {
  7906. height: math.unit(6, "feet"),
  7907. weight: math.unit(120, "lbs"),
  7908. name: "Side",
  7909. image: {
  7910. source: "./media/characters/yozey/side.svg"
  7911. }
  7912. },
  7913. },
  7914. [
  7915. {
  7916. name: "Micro",
  7917. height: math.unit(3, "inches"),
  7918. default: true
  7919. },
  7920. {
  7921. name: "Normal",
  7922. height: math.unit(6, "feet")
  7923. }
  7924. ]
  7925. ))
  7926. characterMakers.push(() => makeCharacter(
  7927. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7928. {
  7929. front: {
  7930. height: math.unit(6, "feet"),
  7931. weight: math.unit(103, "lbs"),
  7932. name: "Front",
  7933. image: {
  7934. source: "./media/characters/valeska-voss/front.svg"
  7935. }
  7936. }
  7937. },
  7938. [
  7939. {
  7940. name: "Mini-Sized Sub",
  7941. height: math.unit(3.1, "inches")
  7942. },
  7943. {
  7944. name: "Mid-Sized Sub",
  7945. height: math.unit(6.2, "inches")
  7946. },
  7947. {
  7948. name: "Full-Sized Sub",
  7949. height: math.unit(9.3, "inches")
  7950. },
  7951. {
  7952. name: "Normal",
  7953. height: math.unit(5 + 2 / 12, "foot"),
  7954. default: true
  7955. },
  7956. ]
  7957. ))
  7958. characterMakers.push(() => makeCharacter(
  7959. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7960. {
  7961. front: {
  7962. height: math.unit(6, "feet"),
  7963. weight: math.unit(160, "lbs"),
  7964. name: "Front",
  7965. image: {
  7966. source: "./media/characters/gene-zeta/front.svg",
  7967. extra: 3006 / 2826,
  7968. bottom: 182 / 3188
  7969. }
  7970. }
  7971. },
  7972. [
  7973. {
  7974. name: "Micro",
  7975. height: math.unit(6, "inches")
  7976. },
  7977. {
  7978. name: "Normal",
  7979. height: math.unit(5 + 11 / 12, "foot"),
  7980. default: true
  7981. },
  7982. {
  7983. name: "Macro",
  7984. height: math.unit(140, "feet")
  7985. },
  7986. {
  7987. name: "Supercharged",
  7988. height: math.unit(2500, "feet")
  7989. },
  7990. ]
  7991. ))
  7992. characterMakers.push(() => makeCharacter(
  7993. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7994. {
  7995. front: {
  7996. height: math.unit(6, "feet"),
  7997. weight: math.unit(350, "lbs"),
  7998. name: "Front",
  7999. image: {
  8000. source: "./media/characters/razinox/front.svg",
  8001. extra: 1686 / 1548,
  8002. bottom: 28.2 / 1868
  8003. }
  8004. },
  8005. back: {
  8006. height: math.unit(6, "feet"),
  8007. weight: math.unit(350, "lbs"),
  8008. name: "Back",
  8009. image: {
  8010. source: "./media/characters/razinox/back.svg",
  8011. extra: 1660 / 1590,
  8012. bottom: 15 / 1665
  8013. }
  8014. },
  8015. },
  8016. [
  8017. {
  8018. name: "Normal",
  8019. height: math.unit(10 + 8 / 12, "foot")
  8020. },
  8021. {
  8022. name: "Minimacro",
  8023. height: math.unit(15, "foot")
  8024. },
  8025. {
  8026. name: "Macro",
  8027. height: math.unit(60, "foot"),
  8028. default: true
  8029. },
  8030. {
  8031. name: "Megamacro",
  8032. height: math.unit(5, "miles")
  8033. },
  8034. {
  8035. name: "Gigamacro",
  8036. height: math.unit(6000, "miles")
  8037. },
  8038. ]
  8039. ))
  8040. characterMakers.push(() => makeCharacter(
  8041. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8042. {
  8043. front: {
  8044. height: math.unit(6, "feet"),
  8045. weight: math.unit(150, "lbs"),
  8046. name: "Front",
  8047. image: {
  8048. source: "./media/characters/cobalt/front.svg"
  8049. }
  8050. }
  8051. },
  8052. [
  8053. {
  8054. name: "Normal",
  8055. height: math.unit(8 + 1 / 12, "foot")
  8056. },
  8057. {
  8058. name: "Macro",
  8059. height: math.unit(111, "foot"),
  8060. default: true
  8061. },
  8062. {
  8063. name: "Supracosmic",
  8064. height: math.unit(1e42, "feet")
  8065. },
  8066. ]
  8067. ))
  8068. characterMakers.push(() => makeCharacter(
  8069. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8070. {
  8071. front: {
  8072. height: math.unit(5, "inches"),
  8073. name: "Front",
  8074. image: {
  8075. source: "./media/characters/amanda/front.svg",
  8076. extra: 926/791,
  8077. bottom: 38/964
  8078. }
  8079. },
  8080. back: {
  8081. height: math.unit(5, "inches"),
  8082. name: "Back",
  8083. image: {
  8084. source: "./media/characters/amanda/back.svg",
  8085. extra: 909/805,
  8086. bottom: 43/952
  8087. }
  8088. },
  8089. },
  8090. [
  8091. {
  8092. name: "Micro",
  8093. height: math.unit(5, "inches"),
  8094. default: true
  8095. },
  8096. ]
  8097. ))
  8098. characterMakers.push(() => makeCharacter(
  8099. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8100. {
  8101. front: {
  8102. height: math.unit(2.75, "meters"),
  8103. weight: math.unit(1200, "lb"),
  8104. name: "Front",
  8105. image: {
  8106. source: "./media/characters/teal/front.svg",
  8107. extra: 2463 / 2320,
  8108. bottom: 166 / 2629
  8109. }
  8110. },
  8111. back: {
  8112. height: math.unit(2.75, "meters"),
  8113. weight: math.unit(1200, "lb"),
  8114. name: "Back",
  8115. image: {
  8116. source: "./media/characters/teal/back.svg",
  8117. extra: 2580 / 2489,
  8118. bottom: 151 / 2731
  8119. }
  8120. },
  8121. sitting: {
  8122. height: math.unit(1.9, "meters"),
  8123. weight: math.unit(1200, "lb"),
  8124. name: "Sitting",
  8125. image: {
  8126. source: "./media/characters/teal/sitting.svg",
  8127. extra: 623 / 590,
  8128. bottom: 121 / 744
  8129. }
  8130. },
  8131. standing: {
  8132. height: math.unit(2.75, "meters"),
  8133. weight: math.unit(1200, "lb"),
  8134. name: "Standing",
  8135. image: {
  8136. source: "./media/characters/teal/standing.svg",
  8137. extra: 923 / 893,
  8138. bottom: 60 / 983
  8139. }
  8140. },
  8141. stretching: {
  8142. height: math.unit(3.65, "meters"),
  8143. weight: math.unit(1200, "lb"),
  8144. name: "Stretching",
  8145. image: {
  8146. source: "./media/characters/teal/stretching.svg",
  8147. extra: 1276 / 1244,
  8148. bottom: 0 / 1276
  8149. }
  8150. },
  8151. legged: {
  8152. height: math.unit(1.3, "meters"),
  8153. weight: math.unit(100, "lb"),
  8154. name: "Legged",
  8155. image: {
  8156. source: "./media/characters/teal/legged.svg",
  8157. extra: 462 / 437,
  8158. bottom: 24 / 486
  8159. }
  8160. },
  8161. naga: {
  8162. height: math.unit(5.4, "meters"),
  8163. weight: math.unit(4000, "lb"),
  8164. name: "Naga",
  8165. image: {
  8166. source: "./media/characters/teal/naga.svg",
  8167. extra: 1902 / 1858,
  8168. bottom: 0 / 1902
  8169. }
  8170. },
  8171. hand: {
  8172. height: math.unit(0.52, "meters"),
  8173. name: "Hand",
  8174. image: {
  8175. source: "./media/characters/teal/hand.svg"
  8176. }
  8177. },
  8178. maw: {
  8179. height: math.unit(0.43, "meters"),
  8180. name: "Maw",
  8181. image: {
  8182. source: "./media/characters/teal/maw.svg"
  8183. }
  8184. },
  8185. slit: {
  8186. height: math.unit(0.25, "meters"),
  8187. name: "Slit",
  8188. image: {
  8189. source: "./media/characters/teal/slit.svg"
  8190. }
  8191. },
  8192. },
  8193. [
  8194. {
  8195. name: "Normal",
  8196. height: math.unit(2.75, "meters"),
  8197. default: true
  8198. },
  8199. {
  8200. name: "Macro",
  8201. height: math.unit(300, "feet")
  8202. },
  8203. {
  8204. name: "Macro+",
  8205. height: math.unit(2000, "feet")
  8206. },
  8207. ]
  8208. ))
  8209. characterMakers.push(() => makeCharacter(
  8210. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8211. {
  8212. frontCat: {
  8213. height: math.unit(6, "feet"),
  8214. weight: math.unit(180, "lbs"),
  8215. name: "Front (Cat)",
  8216. image: {
  8217. source: "./media/characters/ravin-amulet/front-cat.svg"
  8218. }
  8219. },
  8220. frontCatAlt: {
  8221. height: math.unit(6, "feet"),
  8222. weight: math.unit(180, "lbs"),
  8223. name: "Front (Alt, Cat)",
  8224. image: {
  8225. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8226. }
  8227. },
  8228. frontWerewolf: {
  8229. height: math.unit(6 * 1.2, "feet"),
  8230. weight: math.unit(225, "lbs"),
  8231. name: "Front (Werewolf)",
  8232. image: {
  8233. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8234. }
  8235. },
  8236. backWerewolf: {
  8237. height: math.unit(6 * 1.2, "feet"),
  8238. weight: math.unit(225, "lbs"),
  8239. name: "Back (Werewolf)",
  8240. image: {
  8241. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8242. }
  8243. },
  8244. },
  8245. [
  8246. {
  8247. name: "Nano",
  8248. height: math.unit(1, "micrometer")
  8249. },
  8250. {
  8251. name: "Micro",
  8252. height: math.unit(1, "inch")
  8253. },
  8254. {
  8255. name: "Normal",
  8256. height: math.unit(6, "feet"),
  8257. default: true
  8258. },
  8259. {
  8260. name: "Macro",
  8261. height: math.unit(60, "feet")
  8262. }
  8263. ]
  8264. ))
  8265. characterMakers.push(() => makeCharacter(
  8266. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8267. {
  8268. front: {
  8269. height: math.unit(6, "feet"),
  8270. weight: math.unit(165, "lbs"),
  8271. name: "Front",
  8272. image: {
  8273. source: "./media/characters/fluoresce/front.svg"
  8274. }
  8275. }
  8276. },
  8277. [
  8278. {
  8279. name: "Micro",
  8280. height: math.unit(6, "cm")
  8281. },
  8282. {
  8283. name: "Normal",
  8284. height: math.unit(5 + 7 / 12, "feet"),
  8285. default: true
  8286. },
  8287. {
  8288. name: "Macro",
  8289. height: math.unit(56, "feet")
  8290. },
  8291. {
  8292. name: "Megamacro",
  8293. height: math.unit(1.9, "miles")
  8294. },
  8295. ]
  8296. ))
  8297. characterMakers.push(() => makeCharacter(
  8298. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8299. {
  8300. front: {
  8301. height: math.unit(9 + 6 / 12, "feet"),
  8302. weight: math.unit(523, "lbs"),
  8303. name: "Side",
  8304. image: {
  8305. source: "./media/characters/aurora/side.svg",
  8306. extra: 474/393,
  8307. bottom: 5/479
  8308. }
  8309. }
  8310. },
  8311. [
  8312. {
  8313. name: "Normal",
  8314. height: math.unit(9 + 6 / 12, "feet")
  8315. },
  8316. {
  8317. name: "Macro",
  8318. height: math.unit(96, "feet"),
  8319. default: true
  8320. },
  8321. {
  8322. name: "Macro+",
  8323. height: math.unit(243, "feet")
  8324. },
  8325. ]
  8326. ))
  8327. characterMakers.push(() => makeCharacter(
  8328. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8329. {
  8330. front: {
  8331. height: math.unit(194, "cm"),
  8332. weight: math.unit(90, "kg"),
  8333. name: "Front",
  8334. image: {
  8335. source: "./media/characters/ranek/front.svg",
  8336. extra: 1862/1791,
  8337. bottom: 80/1942
  8338. }
  8339. },
  8340. back: {
  8341. height: math.unit(194, "cm"),
  8342. weight: math.unit(90, "kg"),
  8343. name: "Back",
  8344. image: {
  8345. source: "./media/characters/ranek/back.svg",
  8346. extra: 1853/1787,
  8347. bottom: 74/1927
  8348. }
  8349. },
  8350. feral: {
  8351. height: math.unit(30, "cm"),
  8352. weight: math.unit(1.6, "lbs"),
  8353. name: "Feral",
  8354. image: {
  8355. source: "./media/characters/ranek/feral.svg",
  8356. extra: 990/631,
  8357. bottom: 29/1019
  8358. }
  8359. },
  8360. },
  8361. [
  8362. {
  8363. name: "Normal",
  8364. height: math.unit(194, "cm"),
  8365. default: true
  8366. },
  8367. {
  8368. name: "Macro",
  8369. height: math.unit(100, "meters")
  8370. },
  8371. ]
  8372. ))
  8373. characterMakers.push(() => makeCharacter(
  8374. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8375. {
  8376. front: {
  8377. height: math.unit(5 + 6 / 12, "feet"),
  8378. weight: math.unit(153, "lbs"),
  8379. name: "Front",
  8380. image: {
  8381. source: "./media/characters/andrew-cooper/front.svg"
  8382. }
  8383. },
  8384. },
  8385. [
  8386. {
  8387. name: "Nano",
  8388. height: math.unit(1, "mm")
  8389. },
  8390. {
  8391. name: "Micro",
  8392. height: math.unit(2, "inches")
  8393. },
  8394. {
  8395. name: "Normal",
  8396. height: math.unit(5 + 6 / 12, "feet"),
  8397. default: true
  8398. }
  8399. ]
  8400. ))
  8401. characterMakers.push(() => makeCharacter(
  8402. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8403. {
  8404. front: {
  8405. height: math.unit(6, "feet"),
  8406. weight: math.unit(180, "lbs"),
  8407. name: "Front",
  8408. image: {
  8409. source: "./media/characters/akane-sato/front.svg",
  8410. extra: 1219 / 1140
  8411. }
  8412. },
  8413. back: {
  8414. height: math.unit(6, "feet"),
  8415. weight: math.unit(180, "lbs"),
  8416. name: "Back",
  8417. image: {
  8418. source: "./media/characters/akane-sato/back.svg",
  8419. extra: 1219 / 1170
  8420. }
  8421. },
  8422. },
  8423. [
  8424. {
  8425. name: "Normal",
  8426. height: math.unit(2.5, "meters")
  8427. },
  8428. {
  8429. name: "Macro",
  8430. height: math.unit(250, "meters"),
  8431. default: true
  8432. },
  8433. {
  8434. name: "Megamacro",
  8435. height: math.unit(25, "km")
  8436. },
  8437. ]
  8438. ))
  8439. characterMakers.push(() => makeCharacter(
  8440. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8441. {
  8442. front: {
  8443. height: math.unit(6, "feet"),
  8444. weight: math.unit(65, "kg"),
  8445. name: "Front",
  8446. image: {
  8447. source: "./media/characters/rook/front.svg",
  8448. extra: 960 / 950
  8449. }
  8450. }
  8451. },
  8452. [
  8453. {
  8454. name: "Normal",
  8455. height: math.unit(8.8, "feet")
  8456. },
  8457. {
  8458. name: "Macro",
  8459. height: math.unit(88, "feet"),
  8460. default: true
  8461. },
  8462. {
  8463. name: "Megamacro",
  8464. height: math.unit(8, "miles")
  8465. },
  8466. ]
  8467. ))
  8468. characterMakers.push(() => makeCharacter(
  8469. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8470. {
  8471. front: {
  8472. height: math.unit(12 + 2 / 12, "feet"),
  8473. weight: math.unit(808, "lbs"),
  8474. name: "Front",
  8475. image: {
  8476. source: "./media/characters/prodigy/front.svg"
  8477. }
  8478. }
  8479. },
  8480. [
  8481. {
  8482. name: "Normal",
  8483. height: math.unit(12 + 2 / 12, "feet"),
  8484. default: true
  8485. },
  8486. {
  8487. name: "Macro",
  8488. height: math.unit(143, "feet")
  8489. },
  8490. {
  8491. name: "Macro+",
  8492. height: math.unit(400, "feet")
  8493. },
  8494. ]
  8495. ))
  8496. characterMakers.push(() => makeCharacter(
  8497. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8498. {
  8499. front: {
  8500. height: math.unit(6, "feet"),
  8501. weight: math.unit(225, "lbs"),
  8502. name: "Front",
  8503. image: {
  8504. source: "./media/characters/daniel/front.svg"
  8505. }
  8506. },
  8507. leaning: {
  8508. height: math.unit(6, "feet"),
  8509. weight: math.unit(225, "lbs"),
  8510. name: "Leaning",
  8511. image: {
  8512. source: "./media/characters/daniel/leaning.svg"
  8513. }
  8514. },
  8515. },
  8516. [
  8517. {
  8518. name: "Macro",
  8519. height: math.unit(1000, "feet"),
  8520. default: true
  8521. },
  8522. ]
  8523. ))
  8524. characterMakers.push(() => makeCharacter(
  8525. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8526. {
  8527. front: {
  8528. height: math.unit(6, "feet"),
  8529. weight: math.unit(88, "lbs"),
  8530. name: "Front",
  8531. image: {
  8532. source: "./media/characters/chiros/front.svg",
  8533. extra: 306 / 226
  8534. }
  8535. },
  8536. side: {
  8537. height: math.unit(6, "feet"),
  8538. weight: math.unit(88, "lbs"),
  8539. name: "Side",
  8540. image: {
  8541. source: "./media/characters/chiros/side.svg",
  8542. extra: 306 / 226
  8543. }
  8544. },
  8545. },
  8546. [
  8547. {
  8548. name: "Normal",
  8549. height: math.unit(6, "cm"),
  8550. default: true
  8551. },
  8552. ]
  8553. ))
  8554. characterMakers.push(() => makeCharacter(
  8555. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8556. {
  8557. front: {
  8558. height: math.unit(6, "feet"),
  8559. weight: math.unit(100, "lbs"),
  8560. name: "Front",
  8561. image: {
  8562. source: "./media/characters/selka/front.svg",
  8563. extra: 947 / 887
  8564. }
  8565. }
  8566. },
  8567. [
  8568. {
  8569. name: "Normal",
  8570. height: math.unit(5, "cm"),
  8571. default: true
  8572. },
  8573. ]
  8574. ))
  8575. characterMakers.push(() => makeCharacter(
  8576. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8577. {
  8578. front: {
  8579. height: math.unit(8 + 3 / 12, "feet"),
  8580. weight: math.unit(424, "lbs"),
  8581. name: "Front",
  8582. image: {
  8583. source: "./media/characters/verin/front.svg",
  8584. extra: 1845 / 1550
  8585. }
  8586. },
  8587. frontArmored: {
  8588. height: math.unit(8 + 3 / 12, "feet"),
  8589. weight: math.unit(424, "lbs"),
  8590. name: "Front (Armored)",
  8591. image: {
  8592. source: "./media/characters/verin/front-armor.svg",
  8593. extra: 1845 / 1550,
  8594. bottom: 0.01
  8595. }
  8596. },
  8597. back: {
  8598. height: math.unit(8 + 3 / 12, "feet"),
  8599. weight: math.unit(424, "lbs"),
  8600. name: "Back",
  8601. image: {
  8602. source: "./media/characters/verin/back.svg",
  8603. bottom: 0.1,
  8604. extra: 1
  8605. }
  8606. },
  8607. foot: {
  8608. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8609. name: "Foot",
  8610. image: {
  8611. source: "./media/characters/verin/foot.svg"
  8612. }
  8613. },
  8614. },
  8615. [
  8616. {
  8617. name: "Normal",
  8618. height: math.unit(8 + 3 / 12, "feet")
  8619. },
  8620. {
  8621. name: "Minimacro",
  8622. height: math.unit(21, "feet"),
  8623. default: true
  8624. },
  8625. {
  8626. name: "Macro",
  8627. height: math.unit(626, "feet")
  8628. },
  8629. ]
  8630. ))
  8631. characterMakers.push(() => makeCharacter(
  8632. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8633. {
  8634. front: {
  8635. height: math.unit(2.718, "meters"),
  8636. weight: math.unit(150, "lbs"),
  8637. name: "Front",
  8638. image: {
  8639. source: "./media/characters/sovrim-terraquian/front.svg",
  8640. extra: 1752/1689,
  8641. bottom: 36/1788
  8642. }
  8643. },
  8644. back: {
  8645. height: math.unit(2.718, "meters"),
  8646. weight: math.unit(150, "lbs"),
  8647. name: "Back",
  8648. image: {
  8649. source: "./media/characters/sovrim-terraquian/back.svg",
  8650. extra: 1698/1657,
  8651. bottom: 58/1756
  8652. }
  8653. },
  8654. tongue: {
  8655. height: math.unit(2.865, "feet"),
  8656. name: "Tongue",
  8657. image: {
  8658. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8659. }
  8660. },
  8661. hand: {
  8662. height: math.unit(1.61, "feet"),
  8663. name: "Hand",
  8664. image: {
  8665. source: "./media/characters/sovrim-terraquian/hand.svg"
  8666. }
  8667. },
  8668. foot: {
  8669. height: math.unit(1.05, "feet"),
  8670. name: "Foot",
  8671. image: {
  8672. source: "./media/characters/sovrim-terraquian/foot.svg"
  8673. }
  8674. },
  8675. footAlt: {
  8676. height: math.unit(0.88, "feet"),
  8677. name: "Foot (Alt)",
  8678. image: {
  8679. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8680. }
  8681. },
  8682. },
  8683. [
  8684. {
  8685. name: "Micro",
  8686. height: math.unit(2, "inches")
  8687. },
  8688. {
  8689. name: "Small",
  8690. height: math.unit(1, "meter")
  8691. },
  8692. {
  8693. name: "Normal",
  8694. height: math.unit(Math.E, "meters"),
  8695. default: true
  8696. },
  8697. {
  8698. name: "Macro",
  8699. height: math.unit(20, "meters")
  8700. },
  8701. {
  8702. name: "Macro+",
  8703. height: math.unit(400, "meters")
  8704. },
  8705. ]
  8706. ))
  8707. characterMakers.push(() => makeCharacter(
  8708. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8709. {
  8710. front: {
  8711. height: math.unit(7, "feet"),
  8712. weight: math.unit(489, "lbs"),
  8713. name: "Front",
  8714. image: {
  8715. source: "./media/characters/reece-silvermane/front.svg",
  8716. bottom: 0.02,
  8717. extra: 1
  8718. }
  8719. },
  8720. },
  8721. [
  8722. {
  8723. name: "Macro",
  8724. height: math.unit(1.5, "miles"),
  8725. default: true
  8726. },
  8727. ]
  8728. ))
  8729. characterMakers.push(() => makeCharacter(
  8730. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8731. {
  8732. front: {
  8733. height: math.unit(6, "feet"),
  8734. weight: math.unit(78, "kg"),
  8735. name: "Front",
  8736. image: {
  8737. source: "./media/characters/kane/front.svg",
  8738. extra: 978 / 899
  8739. }
  8740. },
  8741. },
  8742. [
  8743. {
  8744. name: "Normal",
  8745. height: math.unit(2.1, "m"),
  8746. },
  8747. {
  8748. name: "Macro",
  8749. height: math.unit(1, "km"),
  8750. default: true
  8751. },
  8752. ]
  8753. ))
  8754. characterMakers.push(() => makeCharacter(
  8755. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8756. {
  8757. front: {
  8758. height: math.unit(6, "feet"),
  8759. weight: math.unit(200, "kg"),
  8760. name: "Front",
  8761. image: {
  8762. source: "./media/characters/tegon/front.svg",
  8763. bottom: 0.01,
  8764. extra: 1
  8765. }
  8766. },
  8767. },
  8768. [
  8769. {
  8770. name: "Micro",
  8771. height: math.unit(1, "inch")
  8772. },
  8773. {
  8774. name: "Normal",
  8775. height: math.unit(6 + 3 / 12, "feet"),
  8776. default: true
  8777. },
  8778. {
  8779. name: "Macro",
  8780. height: math.unit(300, "feet")
  8781. },
  8782. {
  8783. name: "Megamacro",
  8784. height: math.unit(69, "miles")
  8785. },
  8786. ]
  8787. ))
  8788. characterMakers.push(() => makeCharacter(
  8789. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8790. {
  8791. side: {
  8792. height: math.unit(6, "feet"),
  8793. weight: math.unit(2304, "lbs"),
  8794. name: "Side",
  8795. image: {
  8796. source: "./media/characters/arcturax/side.svg",
  8797. extra: 790 / 376,
  8798. bottom: 0.01
  8799. }
  8800. },
  8801. },
  8802. [
  8803. {
  8804. name: "Micro",
  8805. height: math.unit(2, "inch")
  8806. },
  8807. {
  8808. name: "Normal",
  8809. height: math.unit(6, "feet")
  8810. },
  8811. {
  8812. name: "Macro",
  8813. height: math.unit(39, "feet"),
  8814. default: true
  8815. },
  8816. {
  8817. name: "Megamacro",
  8818. height: math.unit(7, "miles")
  8819. },
  8820. ]
  8821. ))
  8822. characterMakers.push(() => makeCharacter(
  8823. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8824. {
  8825. front: {
  8826. height: math.unit(6, "feet"),
  8827. weight: math.unit(50, "lbs"),
  8828. name: "Front",
  8829. image: {
  8830. source: "./media/characters/sentri/front.svg",
  8831. extra: 1750 / 1570,
  8832. bottom: 0.025
  8833. }
  8834. },
  8835. frontAlt: {
  8836. height: math.unit(6, "feet"),
  8837. weight: math.unit(50, "lbs"),
  8838. name: "Front (Alt)",
  8839. image: {
  8840. source: "./media/characters/sentri/front-alt.svg",
  8841. extra: 1750 / 1570,
  8842. bottom: 0.025
  8843. }
  8844. },
  8845. },
  8846. [
  8847. {
  8848. name: "Normal",
  8849. height: math.unit(15, "feet"),
  8850. default: true
  8851. },
  8852. {
  8853. name: "Macro",
  8854. height: math.unit(2500, "feet")
  8855. }
  8856. ]
  8857. ))
  8858. characterMakers.push(() => makeCharacter(
  8859. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8860. {
  8861. front: {
  8862. height: math.unit(5 + 8 / 12, "feet"),
  8863. weight: math.unit(130, "lbs"),
  8864. name: "Front",
  8865. image: {
  8866. source: "./media/characters/corvin/front.svg",
  8867. extra: 1803 / 1629
  8868. }
  8869. },
  8870. frontShirt: {
  8871. height: math.unit(5 + 8 / 12, "feet"),
  8872. weight: math.unit(130, "lbs"),
  8873. name: "Front (Shirt)",
  8874. image: {
  8875. source: "./media/characters/corvin/front-shirt.svg",
  8876. extra: 1803 / 1629
  8877. }
  8878. },
  8879. frontPoncho: {
  8880. height: math.unit(5 + 8 / 12, "feet"),
  8881. weight: math.unit(130, "lbs"),
  8882. name: "Front (Poncho)",
  8883. image: {
  8884. source: "./media/characters/corvin/front-poncho.svg",
  8885. extra: 1803 / 1629
  8886. }
  8887. },
  8888. side: {
  8889. height: math.unit(5 + 8 / 12, "feet"),
  8890. weight: math.unit(130, "lbs"),
  8891. name: "Side",
  8892. image: {
  8893. source: "./media/characters/corvin/side.svg",
  8894. extra: 1012 / 945
  8895. }
  8896. },
  8897. back: {
  8898. height: math.unit(5 + 8 / 12, "feet"),
  8899. weight: math.unit(130, "lbs"),
  8900. name: "Back",
  8901. image: {
  8902. source: "./media/characters/corvin/back.svg",
  8903. extra: 1803 / 1629
  8904. }
  8905. },
  8906. },
  8907. [
  8908. {
  8909. name: "Micro",
  8910. height: math.unit(3, "inches")
  8911. },
  8912. {
  8913. name: "Normal",
  8914. height: math.unit(5 + 8 / 12, "feet")
  8915. },
  8916. {
  8917. name: "Macro",
  8918. height: math.unit(300, "feet"),
  8919. default: true
  8920. },
  8921. {
  8922. name: "Megamacro",
  8923. height: math.unit(500, "miles")
  8924. }
  8925. ]
  8926. ))
  8927. characterMakers.push(() => makeCharacter(
  8928. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8929. {
  8930. front: {
  8931. height: math.unit(6, "feet"),
  8932. weight: math.unit(135, "lbs"),
  8933. name: "Front",
  8934. image: {
  8935. source: "./media/characters/q/front.svg",
  8936. extra: 854 / 752,
  8937. bottom: 0.005
  8938. }
  8939. },
  8940. back: {
  8941. height: math.unit(6, "feet"),
  8942. weight: math.unit(130, "lbs"),
  8943. name: "Back",
  8944. image: {
  8945. source: "./media/characters/q/back.svg",
  8946. extra: 854 / 752
  8947. }
  8948. },
  8949. },
  8950. [
  8951. {
  8952. name: "Macro",
  8953. height: math.unit(90, "feet"),
  8954. default: true
  8955. },
  8956. {
  8957. name: "Extra Macro",
  8958. height: math.unit(300, "feet"),
  8959. },
  8960. {
  8961. name: "BIG WALF",
  8962. height: math.unit(750, "feet"),
  8963. },
  8964. ]
  8965. ))
  8966. characterMakers.push(() => makeCharacter(
  8967. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8968. {
  8969. front: {
  8970. height: math.unit(3, "feet"),
  8971. weight: math.unit(28, "lbs"),
  8972. name: "Front",
  8973. image: {
  8974. source: "./media/characters/citrine/front.svg"
  8975. }
  8976. }
  8977. },
  8978. [
  8979. {
  8980. name: "Normal",
  8981. height: math.unit(3, "feet"),
  8982. default: true
  8983. }
  8984. ]
  8985. ))
  8986. characterMakers.push(() => makeCharacter(
  8987. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8988. {
  8989. front: {
  8990. height: math.unit(14, "feet"),
  8991. weight: math.unit(1450, "kg"),
  8992. preyCapacity: math.unit(15, "people"),
  8993. name: "Front",
  8994. image: {
  8995. source: "./media/characters/aura-starwind/front.svg",
  8996. extra: 1440/1327,
  8997. bottom: 11/1451
  8998. }
  8999. },
  9000. side: {
  9001. height: math.unit(14, "feet"),
  9002. weight: math.unit(1450, "kg"),
  9003. preyCapacity: math.unit(15, "people"),
  9004. name: "Side",
  9005. image: {
  9006. source: "./media/characters/aura-starwind/side.svg",
  9007. extra: 1654 / 1497
  9008. }
  9009. },
  9010. taur: {
  9011. height: math.unit(18, "feet"),
  9012. weight: math.unit(5500, "kg"),
  9013. preyCapacity: math.unit(50, "people"),
  9014. name: "Taur",
  9015. image: {
  9016. source: "./media/characters/aura-starwind/taur.svg",
  9017. extra: 1760 / 1650
  9018. }
  9019. },
  9020. feral: {
  9021. height: math.unit(46, "feet"),
  9022. weight: math.unit(25000, "kg"),
  9023. preyCapacity: math.unit(120, "people"),
  9024. name: "Feral",
  9025. image: {
  9026. source: "./media/characters/aura-starwind/feral.svg"
  9027. }
  9028. },
  9029. },
  9030. [
  9031. {
  9032. name: "Normal",
  9033. height: math.unit(14, "feet"),
  9034. default: true
  9035. },
  9036. {
  9037. name: "Macro",
  9038. height: math.unit(50, "meters")
  9039. },
  9040. {
  9041. name: "Megamacro",
  9042. height: math.unit(5000, "meters")
  9043. },
  9044. {
  9045. name: "Gigamacro",
  9046. height: math.unit(100000, "kilometers")
  9047. },
  9048. ]
  9049. ))
  9050. characterMakers.push(() => makeCharacter(
  9051. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9052. {
  9053. front: {
  9054. height: math.unit(2 + 7 / 12, "feet"),
  9055. weight: math.unit(32, "lbs"),
  9056. name: "Front",
  9057. image: {
  9058. source: "./media/characters/rivet/front.svg",
  9059. extra: 1716 / 1658,
  9060. bottom: 0.03
  9061. }
  9062. },
  9063. foot: {
  9064. height: math.unit(0.551, "feet"),
  9065. name: "Rivet's Foot",
  9066. image: {
  9067. source: "./media/characters/rivet/foot.svg"
  9068. },
  9069. rename: true
  9070. }
  9071. },
  9072. [
  9073. {
  9074. name: "Micro",
  9075. height: math.unit(1.5, "inches"),
  9076. },
  9077. {
  9078. name: "Normal",
  9079. height: math.unit(2 + 7 / 12, "feet"),
  9080. default: true
  9081. },
  9082. {
  9083. name: "Macro",
  9084. height: math.unit(85, "feet")
  9085. },
  9086. {
  9087. name: "Megamacro",
  9088. height: math.unit(2.2, "km")
  9089. }
  9090. ]
  9091. ))
  9092. characterMakers.push(() => makeCharacter(
  9093. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9094. {
  9095. front: {
  9096. height: math.unit(5 + 9 / 12, "feet"),
  9097. weight: math.unit(150, "lbs"),
  9098. name: "Front",
  9099. image: {
  9100. source: "./media/characters/coffee/front.svg",
  9101. extra: 946/880,
  9102. bottom: 66/1012
  9103. }
  9104. },
  9105. foot: {
  9106. height: math.unit(1.29, "feet"),
  9107. name: "Foot",
  9108. image: {
  9109. source: "./media/characters/coffee/foot.svg"
  9110. }
  9111. },
  9112. },
  9113. [
  9114. {
  9115. name: "Micro",
  9116. height: math.unit(2, "inches"),
  9117. },
  9118. {
  9119. name: "Normal",
  9120. height: math.unit(5 + 9 / 12, "feet"),
  9121. default: true
  9122. },
  9123. {
  9124. name: "Macro",
  9125. height: math.unit(800, "feet")
  9126. },
  9127. {
  9128. name: "Megamacro",
  9129. height: math.unit(25, "miles")
  9130. }
  9131. ]
  9132. ))
  9133. characterMakers.push(() => makeCharacter(
  9134. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9135. {
  9136. front: {
  9137. height: math.unit(6, "feet"),
  9138. weight: math.unit(200, "lbs"),
  9139. name: "Front",
  9140. image: {
  9141. source: "./media/characters/chari-gal/front.svg",
  9142. extra: 1568 / 1385,
  9143. bottom: 0.047
  9144. }
  9145. },
  9146. gigantamax: {
  9147. height: math.unit(6 * 16, "feet"),
  9148. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9149. name: "Gigantamax",
  9150. image: {
  9151. source: "./media/characters/chari-gal/gigantamax.svg",
  9152. extra: 1124 / 888,
  9153. bottom: 0.03
  9154. }
  9155. },
  9156. },
  9157. [
  9158. {
  9159. name: "Normal",
  9160. height: math.unit(5 + 7 / 12, "feet")
  9161. },
  9162. {
  9163. name: "Macro",
  9164. height: math.unit(200, "feet"),
  9165. default: true
  9166. }
  9167. ]
  9168. ))
  9169. characterMakers.push(() => makeCharacter(
  9170. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9171. {
  9172. front: {
  9173. height: math.unit(6, "feet"),
  9174. weight: math.unit(150, "lbs"),
  9175. name: "Front",
  9176. image: {
  9177. source: "./media/characters/nova/front.svg",
  9178. extra: 5000 / 4722,
  9179. bottom: 0.02
  9180. }
  9181. }
  9182. },
  9183. [
  9184. {
  9185. name: "Micro-",
  9186. height: math.unit(0.8, "inches")
  9187. },
  9188. {
  9189. name: "Micro",
  9190. height: math.unit(2, "inches"),
  9191. default: true
  9192. },
  9193. ]
  9194. ))
  9195. characterMakers.push(() => makeCharacter(
  9196. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9197. {
  9198. koboldFront: {
  9199. height: math.unit(3 + 1 / 12, "feet"),
  9200. weight: math.unit(21.7, "lbs"),
  9201. name: "Front",
  9202. image: {
  9203. source: "./media/characters/argent/kobold-front.svg",
  9204. extra: 1471 / 1331,
  9205. bottom: 100.8 / 1575.5
  9206. },
  9207. form: "kobold",
  9208. default: true
  9209. },
  9210. dragonFront: {
  9211. height: math.unit(75, "inches"),
  9212. name: "Front",
  9213. image: {
  9214. source: "./media/characters/argent/dragon-front.svg",
  9215. extra: 1389/1248,
  9216. bottom: 54/1443
  9217. },
  9218. form: "dragon",
  9219. },
  9220. dragonBack: {
  9221. height: math.unit(75, "inches"),
  9222. name: "Back",
  9223. image: {
  9224. source: "./media/characters/argent/dragon-back.svg",
  9225. extra: 1399/1271,
  9226. bottom: 23/1422
  9227. },
  9228. form: "dragon",
  9229. },
  9230. dragonDressed: {
  9231. height: math.unit(75, "inches"),
  9232. name: "Dressed",
  9233. image: {
  9234. source: "./media/characters/argent/dragon-dressed.svg",
  9235. extra: 1350/1215,
  9236. bottom: 26/1376
  9237. },
  9238. form: "dragon"
  9239. },
  9240. dragonHead: {
  9241. height: math.unit(23.5, "inches"),
  9242. name: "Head",
  9243. image: {
  9244. source: "./media/characters/argent/dragon-head.svg"
  9245. },
  9246. form: "dragon",
  9247. },
  9248. },
  9249. [
  9250. {
  9251. name: "Micro",
  9252. height: math.unit(2, "inches"),
  9253. form: "kobold",
  9254. },
  9255. {
  9256. name: "Normal",
  9257. height: math.unit(3 + 1 / 12, "feet"),
  9258. form: "kobold",
  9259. default: true
  9260. },
  9261. {
  9262. name: "Macro",
  9263. height: math.unit(120, "feet"),
  9264. form: "kobold",
  9265. },
  9266. {
  9267. name: "Speck",
  9268. height: math.unit(1, "mm"),
  9269. form: "dragon",
  9270. },
  9271. {
  9272. name: "Tiny",
  9273. height: math.unit(1, "cm"),
  9274. form: "dragon",
  9275. },
  9276. {
  9277. name: "Micro",
  9278. height: math.unit(5, "cm"),
  9279. form: "dragon",
  9280. },
  9281. {
  9282. name: "Normal",
  9283. height: math.unit(75, "inches"),
  9284. form: "dragon",
  9285. default: true
  9286. },
  9287. {
  9288. name: "Extra Tall",
  9289. height: math.unit(9, "feet"),
  9290. form: "dragon",
  9291. },
  9292. {
  9293. name: "Inconvenient",
  9294. height: math.unit(5, "meters"),
  9295. form: "dragon",
  9296. },
  9297. {
  9298. name: "Macro",
  9299. height: math.unit(70, "meters"),
  9300. form: "dragon",
  9301. },
  9302. {
  9303. name: "Macro+",
  9304. height: math.unit(250, "meters"),
  9305. form: "dragon",
  9306. },
  9307. {
  9308. name: "Megamacro",
  9309. height: math.unit(20, "km"),
  9310. form: "dragon",
  9311. },
  9312. {
  9313. name: "Mountainous",
  9314. height: math.unit(100, "km"),
  9315. form: "dragon",
  9316. },
  9317. {
  9318. name: "Continental",
  9319. height: math.unit(2, "megameters"),
  9320. form: "dragon",
  9321. },
  9322. {
  9323. name: "Too Big",
  9324. height: math.unit(900, "megameters"),
  9325. form: "dragon",
  9326. },
  9327. ],
  9328. {
  9329. "kobold": {
  9330. name: "Kobold",
  9331. default: true
  9332. },
  9333. "dragon": {
  9334. name: "Dragon",
  9335. },
  9336. }
  9337. ))
  9338. characterMakers.push(() => makeCharacter(
  9339. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9340. {
  9341. lamp: {
  9342. height: math.unit(7 * 1559 / 989, "feet"),
  9343. name: "Magic Lamp",
  9344. image: {
  9345. source: "./media/characters/mira-al-cul/lamp.svg",
  9346. extra: 1617 / 1559
  9347. }
  9348. },
  9349. front: {
  9350. height: math.unit(7, "feet"),
  9351. name: "Front",
  9352. image: {
  9353. source: "./media/characters/mira-al-cul/front.svg",
  9354. extra: 1044 / 990
  9355. }
  9356. },
  9357. },
  9358. [
  9359. {
  9360. name: "Heavily Restricted",
  9361. height: math.unit(7 * 1559 / 989, "feet")
  9362. },
  9363. {
  9364. name: "Freshly Freed",
  9365. height: math.unit(50 * 1559 / 989, "feet")
  9366. },
  9367. {
  9368. name: "World Encompassing",
  9369. height: math.unit(10000 * 1559 / 989, "miles")
  9370. },
  9371. {
  9372. name: "Galactic",
  9373. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9374. },
  9375. {
  9376. name: "Palmed Universe",
  9377. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9378. default: true
  9379. },
  9380. {
  9381. name: "Multiversal Matriarch",
  9382. height: math.unit(8.87e10, "yottameters")
  9383. },
  9384. {
  9385. name: "Void Mother",
  9386. height: math.unit(3.14e110, "yottaparsecs")
  9387. },
  9388. {
  9389. name: "Toying with Transcendence",
  9390. height: math.unit(1e307, "meters")
  9391. },
  9392. ]
  9393. ))
  9394. characterMakers.push(() => makeCharacter(
  9395. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9396. {
  9397. front: {
  9398. height: math.unit(17 + 1 / 12, "feet"),
  9399. weight: math.unit(476.2 * 5, "lbs"),
  9400. name: "Front",
  9401. image: {
  9402. source: "./media/characters/kuro-shi-uchū/front.svg",
  9403. extra: 2329 / 1835,
  9404. bottom: 0.02
  9405. }
  9406. },
  9407. },
  9408. [
  9409. {
  9410. name: "Micro",
  9411. height: math.unit(2, "inches")
  9412. },
  9413. {
  9414. name: "Normal",
  9415. height: math.unit(12, "meters")
  9416. },
  9417. {
  9418. name: "Planetary",
  9419. height: math.unit(0.00929, "AU"),
  9420. default: true
  9421. },
  9422. {
  9423. name: "Universal",
  9424. height: math.unit(20, "gigaparsecs")
  9425. },
  9426. ]
  9427. ))
  9428. characterMakers.push(() => makeCharacter(
  9429. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9430. {
  9431. front: {
  9432. height: math.unit(5 + 2 / 12, "feet"),
  9433. weight: math.unit(120, "lbs"),
  9434. name: "Front",
  9435. image: {
  9436. source: "./media/characters/katherine/front.svg",
  9437. extra: 2075 / 1969
  9438. }
  9439. },
  9440. dress: {
  9441. height: math.unit(5 + 2 / 12, "feet"),
  9442. weight: math.unit(120, "lbs"),
  9443. name: "Dress",
  9444. image: {
  9445. source: "./media/characters/katherine/dress.svg",
  9446. extra: 2258 / 2064
  9447. }
  9448. },
  9449. },
  9450. [
  9451. {
  9452. name: "Micro",
  9453. height: math.unit(1, "inches"),
  9454. default: true
  9455. },
  9456. {
  9457. name: "Normal",
  9458. height: math.unit(5 + 2 / 12, "feet")
  9459. },
  9460. {
  9461. name: "Macro",
  9462. height: math.unit(100, "meters")
  9463. },
  9464. {
  9465. name: "Megamacro",
  9466. height: math.unit(80, "miles")
  9467. },
  9468. ]
  9469. ))
  9470. characterMakers.push(() => makeCharacter(
  9471. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9472. {
  9473. front: {
  9474. height: math.unit(7 + 8 / 12, "feet"),
  9475. weight: math.unit(250, "lbs"),
  9476. name: "Front",
  9477. image: {
  9478. source: "./media/characters/yevis/front.svg",
  9479. extra: 1938 / 1755
  9480. }
  9481. }
  9482. },
  9483. [
  9484. {
  9485. name: "Mortal",
  9486. height: math.unit(7 + 8 / 12, "feet")
  9487. },
  9488. {
  9489. name: "Battle",
  9490. height: math.unit(25 + 11 / 12, "feet")
  9491. },
  9492. {
  9493. name: "Wrath",
  9494. height: math.unit(1654 + 11 / 12, "feet")
  9495. },
  9496. {
  9497. name: "Planet Destroyer",
  9498. height: math.unit(12000, "miles")
  9499. },
  9500. {
  9501. name: "Galaxy Conqueror",
  9502. height: math.unit(1.45, "zettameters"),
  9503. default: true
  9504. },
  9505. {
  9506. name: "Universal War",
  9507. height: math.unit(184, "gigaparsecs")
  9508. },
  9509. {
  9510. name: "Eternity War",
  9511. height: math.unit(1.98e55, "yottaparsecs")
  9512. },
  9513. ]
  9514. ))
  9515. characterMakers.push(() => makeCharacter(
  9516. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9517. {
  9518. front: {
  9519. height: math.unit(5 + 8 / 12, "feet"),
  9520. weight: math.unit(63, "kg"),
  9521. name: "Front",
  9522. image: {
  9523. source: "./media/characters/xavier/front.svg",
  9524. extra: 944 / 883
  9525. }
  9526. },
  9527. frontStretch: {
  9528. height: math.unit(5 + 8 / 12, "feet"),
  9529. weight: math.unit(63, "kg"),
  9530. name: "Stretching",
  9531. image: {
  9532. source: "./media/characters/xavier/front-stretch.svg",
  9533. extra: 962 / 820
  9534. }
  9535. },
  9536. },
  9537. [
  9538. {
  9539. name: "Normal",
  9540. height: math.unit(5 + 8 / 12, "feet")
  9541. },
  9542. {
  9543. name: "Macro",
  9544. height: math.unit(100, "meters"),
  9545. default: true
  9546. },
  9547. {
  9548. name: "McLargeHuge",
  9549. height: math.unit(10, "miles")
  9550. },
  9551. ]
  9552. ))
  9553. characterMakers.push(() => makeCharacter(
  9554. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9555. {
  9556. front: {
  9557. height: math.unit(5 + 5 / 12, "feet"),
  9558. weight: math.unit(150, "lb"),
  9559. name: "Front",
  9560. image: {
  9561. source: "./media/characters/joshii/front.svg",
  9562. extra: 765 / 653,
  9563. bottom: 51 / 816
  9564. }
  9565. },
  9566. foot: {
  9567. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9568. name: "Foot",
  9569. image: {
  9570. source: "./media/characters/joshii/foot.svg"
  9571. }
  9572. },
  9573. },
  9574. [
  9575. {
  9576. name: "Micro",
  9577. height: math.unit(2, "inches")
  9578. },
  9579. {
  9580. name: "Normal",
  9581. height: math.unit(5 + 5 / 12, "feet")
  9582. },
  9583. {
  9584. name: "Macro",
  9585. height: math.unit(785, "feet"),
  9586. default: true
  9587. },
  9588. {
  9589. name: "Megamacro",
  9590. height: math.unit(24.5, "miles")
  9591. },
  9592. ]
  9593. ))
  9594. characterMakers.push(() => makeCharacter(
  9595. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9596. {
  9597. front: {
  9598. height: math.unit(6, "feet"),
  9599. weight: math.unit(150, "lb"),
  9600. name: "Front",
  9601. image: {
  9602. source: "./media/characters/goddess-elizabeth/front.svg",
  9603. extra: 1800 / 1525,
  9604. bottom: 0.005
  9605. }
  9606. },
  9607. foot: {
  9608. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9609. name: "Foot",
  9610. image: {
  9611. source: "./media/characters/goddess-elizabeth/foot.svg"
  9612. }
  9613. },
  9614. mouth: {
  9615. height: math.unit(6, "feet"),
  9616. name: "Mouth",
  9617. image: {
  9618. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9619. }
  9620. },
  9621. },
  9622. [
  9623. {
  9624. name: "Micro",
  9625. height: math.unit(12, "feet")
  9626. },
  9627. {
  9628. name: "Normal",
  9629. height: math.unit(80, "miles"),
  9630. default: true
  9631. },
  9632. {
  9633. name: "Macro",
  9634. height: math.unit(15000, "parsecs")
  9635. },
  9636. ]
  9637. ))
  9638. characterMakers.push(() => makeCharacter(
  9639. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9640. {
  9641. front: {
  9642. height: math.unit(5 + 9 / 12, "feet"),
  9643. weight: math.unit(144, "lb"),
  9644. name: "Front",
  9645. image: {
  9646. source: "./media/characters/kara/front.svg"
  9647. }
  9648. },
  9649. feet: {
  9650. height: math.unit(6 / 6.765, "feet"),
  9651. name: "Kara's Feet",
  9652. rename: true,
  9653. image: {
  9654. source: "./media/characters/kara/feet.svg"
  9655. }
  9656. },
  9657. },
  9658. [
  9659. {
  9660. name: "Normal",
  9661. height: math.unit(5 + 9 / 12, "feet")
  9662. },
  9663. {
  9664. name: "Macro",
  9665. height: math.unit(174, "feet"),
  9666. default: true
  9667. },
  9668. ]
  9669. ))
  9670. characterMakers.push(() => makeCharacter(
  9671. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9672. {
  9673. front: {
  9674. height: math.unit(18, "feet"),
  9675. weight: math.unit(4050, "lb"),
  9676. name: "Front",
  9677. image: {
  9678. source: "./media/characters/tyrone/front.svg",
  9679. extra: 2405 / 2270,
  9680. bottom: 182 / 2587
  9681. }
  9682. },
  9683. },
  9684. [
  9685. {
  9686. name: "Normal",
  9687. height: math.unit(18, "feet"),
  9688. default: true
  9689. },
  9690. {
  9691. name: "Macro",
  9692. height: math.unit(300, "feet")
  9693. },
  9694. {
  9695. name: "Megamacro",
  9696. height: math.unit(15, "km")
  9697. },
  9698. {
  9699. name: "Gigamacro",
  9700. height: math.unit(500, "km")
  9701. },
  9702. {
  9703. name: "Teramacro",
  9704. height: math.unit(0.5, "gigameters")
  9705. },
  9706. {
  9707. name: "Omnimacro",
  9708. height: math.unit(1e252, "yottauniverse")
  9709. },
  9710. ]
  9711. ))
  9712. characterMakers.push(() => makeCharacter(
  9713. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9714. {
  9715. front: {
  9716. height: math.unit(7 + 8 / 12, "feet"),
  9717. weight: math.unit(120, "lb"),
  9718. name: "Front",
  9719. image: {
  9720. source: "./media/characters/danny/front.svg",
  9721. extra: 1490 / 1350
  9722. }
  9723. },
  9724. back: {
  9725. height: math.unit(7 + 8 / 12, "feet"),
  9726. weight: math.unit(120, "lb"),
  9727. name: "Back",
  9728. image: {
  9729. source: "./media/characters/danny/back.svg",
  9730. extra: 1490 / 1350
  9731. }
  9732. },
  9733. },
  9734. [
  9735. {
  9736. name: "Normal",
  9737. height: math.unit(7 + 8 / 12, "feet"),
  9738. default: true
  9739. },
  9740. ]
  9741. ))
  9742. characterMakers.push(() => makeCharacter(
  9743. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9744. {
  9745. front: {
  9746. height: math.unit(3.5, "inches"),
  9747. weight: math.unit(19, "grams"),
  9748. name: "Front",
  9749. image: {
  9750. source: "./media/characters/mallow/front.svg",
  9751. extra: 471 / 431
  9752. }
  9753. },
  9754. back: {
  9755. height: math.unit(3.5, "inches"),
  9756. weight: math.unit(19, "grams"),
  9757. name: "Back",
  9758. image: {
  9759. source: "./media/characters/mallow/back.svg",
  9760. extra: 471 / 431
  9761. }
  9762. },
  9763. },
  9764. [
  9765. {
  9766. name: "Normal",
  9767. height: math.unit(3.5, "inches"),
  9768. default: true
  9769. },
  9770. ]
  9771. ))
  9772. characterMakers.push(() => makeCharacter(
  9773. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9774. {
  9775. front: {
  9776. height: math.unit(9, "feet"),
  9777. weight: math.unit(230, "kg"),
  9778. name: "Front",
  9779. image: {
  9780. source: "./media/characters/starry-aqua/front.svg"
  9781. }
  9782. },
  9783. back: {
  9784. height: math.unit(9, "feet"),
  9785. weight: math.unit(230, "kg"),
  9786. name: "Back",
  9787. image: {
  9788. source: "./media/characters/starry-aqua/back.svg"
  9789. }
  9790. },
  9791. hand: {
  9792. height: math.unit(9 * 0.1168, "feet"),
  9793. name: "Hand",
  9794. image: {
  9795. source: "./media/characters/starry-aqua/hand.svg"
  9796. }
  9797. },
  9798. foot: {
  9799. height: math.unit(9 * 0.18, "feet"),
  9800. name: "Foot",
  9801. image: {
  9802. source: "./media/characters/starry-aqua/foot.svg"
  9803. }
  9804. }
  9805. },
  9806. [
  9807. {
  9808. name: "Micro",
  9809. height: math.unit(3, "inches")
  9810. },
  9811. {
  9812. name: "Normal",
  9813. height: math.unit(9, "feet")
  9814. },
  9815. {
  9816. name: "Macro",
  9817. height: math.unit(300, "feet"),
  9818. default: true
  9819. },
  9820. {
  9821. name: "Megamacro",
  9822. height: math.unit(3200, "feet")
  9823. }
  9824. ]
  9825. ))
  9826. characterMakers.push(() => makeCharacter(
  9827. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9828. {
  9829. front: {
  9830. height: math.unit(15, "feet"),
  9831. weight: math.unit(5026, "lb"),
  9832. name: "Front",
  9833. image: {
  9834. source: "./media/characters/luka-towers/front.svg",
  9835. extra: 1269/1133,
  9836. bottom: 51/1320
  9837. }
  9838. },
  9839. },
  9840. [
  9841. {
  9842. name: "Normal",
  9843. height: math.unit(15, "feet"),
  9844. default: true
  9845. },
  9846. {
  9847. name: "Minimacro",
  9848. height: math.unit(25, "feet")
  9849. },
  9850. {
  9851. name: "Macro",
  9852. height: math.unit(320, "feet")
  9853. },
  9854. {
  9855. name: "Megamacro",
  9856. height: math.unit(35000, "feet")
  9857. },
  9858. {
  9859. name: "Gigamacro",
  9860. height: math.unit(4000, "miles")
  9861. },
  9862. {
  9863. name: "Teramacro",
  9864. height: math.unit(15000, "miles")
  9865. },
  9866. ]
  9867. ))
  9868. characterMakers.push(() => makeCharacter(
  9869. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9870. {
  9871. front: {
  9872. height: math.unit(6, "feet"),
  9873. weight: math.unit(150, "lb"),
  9874. name: "Front",
  9875. image: {
  9876. source: "./media/characters/natalie-nightring/front.svg",
  9877. extra: 1,
  9878. bottom: 0.06
  9879. }
  9880. },
  9881. },
  9882. [
  9883. {
  9884. name: "Uh Oh",
  9885. height: math.unit(0.1, "mm")
  9886. },
  9887. {
  9888. name: "Small",
  9889. height: math.unit(3, "inches")
  9890. },
  9891. {
  9892. name: "Human Scale",
  9893. height: math.unit(6, "feet")
  9894. },
  9895. {
  9896. name: "Librarian",
  9897. height: math.unit(50, "feet"),
  9898. default: true
  9899. },
  9900. {
  9901. name: "Immense",
  9902. height: math.unit(200, "miles")
  9903. },
  9904. ]
  9905. ))
  9906. characterMakers.push(() => makeCharacter(
  9907. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9908. {
  9909. front: {
  9910. height: math.unit(6, "feet"),
  9911. weight: math.unit(180, "lbs"),
  9912. name: "Front",
  9913. image: {
  9914. source: "./media/characters/danni-rosie/front.svg",
  9915. extra: 1260 / 1128,
  9916. bottom: 0.022
  9917. }
  9918. },
  9919. },
  9920. [
  9921. {
  9922. name: "Micro",
  9923. height: math.unit(2, "inches"),
  9924. default: true
  9925. },
  9926. ]
  9927. ))
  9928. characterMakers.push(() => makeCharacter(
  9929. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9930. {
  9931. front: {
  9932. height: math.unit(5 + 9 / 12, "feet"),
  9933. weight: math.unit(220, "lb"),
  9934. name: "Front",
  9935. image: {
  9936. source: "./media/characters/samantha-kruse/front.svg",
  9937. extra: (985 / 935),
  9938. bottom: 0.03
  9939. }
  9940. },
  9941. frontUndressed: {
  9942. height: math.unit(5 + 9 / 12, "feet"),
  9943. weight: math.unit(220, "lb"),
  9944. name: "Front (Undressed)",
  9945. image: {
  9946. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9947. extra: (973 / 923),
  9948. bottom: 0.025
  9949. }
  9950. },
  9951. fat: {
  9952. height: math.unit(5 + 9 / 12, "feet"),
  9953. weight: math.unit(900, "lb"),
  9954. name: "Front (Fat)",
  9955. image: {
  9956. source: "./media/characters/samantha-kruse/fat.svg",
  9957. extra: 2688 / 2561
  9958. }
  9959. },
  9960. },
  9961. [
  9962. {
  9963. name: "Normal",
  9964. height: math.unit(5 + 9 / 12, "feet"),
  9965. default: true
  9966. }
  9967. ]
  9968. ))
  9969. characterMakers.push(() => makeCharacter(
  9970. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9971. {
  9972. back: {
  9973. height: math.unit(5 + 4 / 12, "feet"),
  9974. weight: math.unit(4963, "lb"),
  9975. name: "Back",
  9976. image: {
  9977. source: "./media/characters/amelia-rosie/back.svg",
  9978. extra: 1113 / 963,
  9979. bottom: 0.01
  9980. }
  9981. },
  9982. },
  9983. [
  9984. {
  9985. name: "Level 0",
  9986. height: math.unit(5 + 4 / 12, "feet")
  9987. },
  9988. {
  9989. name: "Level 1",
  9990. height: math.unit(164597, "feet"),
  9991. default: true
  9992. },
  9993. {
  9994. name: "Level 2",
  9995. height: math.unit(956243, "miles")
  9996. },
  9997. {
  9998. name: "Level 3",
  9999. height: math.unit(29421709423, "miles")
  10000. },
  10001. {
  10002. name: "Level 4",
  10003. height: math.unit(154, "lightyears")
  10004. },
  10005. {
  10006. name: "Level 5",
  10007. height: math.unit(4738272, "lightyears")
  10008. },
  10009. {
  10010. name: "Level 6",
  10011. height: math.unit(145787152896, "lightyears")
  10012. },
  10013. ]
  10014. ))
  10015. characterMakers.push(() => makeCharacter(
  10016. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10017. {
  10018. front: {
  10019. height: math.unit(5 + 11 / 12, "feet"),
  10020. weight: math.unit(65, "kg"),
  10021. name: "Front",
  10022. image: {
  10023. source: "./media/characters/rook-kitara/front.svg",
  10024. extra: 1347 / 1274,
  10025. bottom: 0.005
  10026. }
  10027. },
  10028. },
  10029. [
  10030. {
  10031. name: "Totally Unfair",
  10032. height: math.unit(1.8, "mm")
  10033. },
  10034. {
  10035. name: "Lap Rookie",
  10036. height: math.unit(1.4, "feet")
  10037. },
  10038. {
  10039. name: "Normal",
  10040. height: math.unit(5 + 11 / 12, "feet"),
  10041. default: true
  10042. },
  10043. {
  10044. name: "How Did This Happen",
  10045. height: math.unit(80, "miles")
  10046. }
  10047. ]
  10048. ))
  10049. characterMakers.push(() => makeCharacter(
  10050. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10051. {
  10052. front: {
  10053. height: math.unit(7, "feet"),
  10054. weight: math.unit(300, "lb"),
  10055. name: "Front",
  10056. image: {
  10057. source: "./media/characters/pisces/front.svg",
  10058. extra: 2255 / 2115,
  10059. bottom: 0.03
  10060. }
  10061. },
  10062. back: {
  10063. height: math.unit(7, "feet"),
  10064. weight: math.unit(300, "lb"),
  10065. name: "Back",
  10066. image: {
  10067. source: "./media/characters/pisces/back.svg",
  10068. extra: 2146 / 2055,
  10069. bottom: 0.04
  10070. }
  10071. },
  10072. },
  10073. [
  10074. {
  10075. name: "Normal",
  10076. height: math.unit(7, "feet"),
  10077. default: true
  10078. },
  10079. {
  10080. name: "Swimming Pool",
  10081. height: math.unit(12.2, "meters")
  10082. },
  10083. {
  10084. name: "Olympic Swimming Pool",
  10085. height: math.unit(56.3, "meters")
  10086. },
  10087. {
  10088. name: "Lake Superior",
  10089. height: math.unit(93900, "meters")
  10090. },
  10091. {
  10092. name: "Mediterranean Sea",
  10093. height: math.unit(644457, "meters")
  10094. },
  10095. {
  10096. name: "World's Oceans",
  10097. height: math.unit(4567491, "meters")
  10098. },
  10099. ]
  10100. ))
  10101. characterMakers.push(() => makeCharacter(
  10102. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10103. {
  10104. front: {
  10105. height: math.unit(2.3, "meters"),
  10106. weight: math.unit(120, "kg"),
  10107. name: "Front",
  10108. image: {
  10109. source: "./media/characters/zelas/front.svg"
  10110. }
  10111. },
  10112. side: {
  10113. height: math.unit(2.3, "meters"),
  10114. weight: math.unit(120, "kg"),
  10115. name: "Side",
  10116. image: {
  10117. source: "./media/characters/zelas/side.svg"
  10118. }
  10119. },
  10120. back: {
  10121. height: math.unit(2.3, "meters"),
  10122. weight: math.unit(120, "kg"),
  10123. name: "Back",
  10124. image: {
  10125. source: "./media/characters/zelas/back.svg"
  10126. }
  10127. },
  10128. foot: {
  10129. height: math.unit(1.116, "feet"),
  10130. name: "Foot",
  10131. image: {
  10132. source: "./media/characters/zelas/foot.svg"
  10133. }
  10134. },
  10135. },
  10136. [
  10137. {
  10138. name: "Normal",
  10139. height: math.unit(2.3, "meters")
  10140. },
  10141. {
  10142. name: "Macro",
  10143. height: math.unit(30, "meters"),
  10144. default: true
  10145. },
  10146. ]
  10147. ))
  10148. characterMakers.push(() => makeCharacter(
  10149. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10150. {
  10151. front: {
  10152. height: math.unit(1, "inch"),
  10153. weight: math.unit(0.21, "grams"),
  10154. name: "Front",
  10155. image: {
  10156. source: "./media/characters/talbot/front.svg",
  10157. extra: 594 / 544
  10158. }
  10159. },
  10160. },
  10161. [
  10162. {
  10163. name: "Micro",
  10164. height: math.unit(1, "inch"),
  10165. default: true
  10166. },
  10167. ]
  10168. ))
  10169. characterMakers.push(() => makeCharacter(
  10170. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10171. {
  10172. front: {
  10173. height: math.unit(3 + 3 / 12, "feet"),
  10174. weight: math.unit(51.8, "lb"),
  10175. name: "Front",
  10176. image: {
  10177. source: "./media/characters/fliss/front.svg",
  10178. extra: 840 / 640
  10179. }
  10180. },
  10181. },
  10182. [
  10183. {
  10184. name: "Teeny Tiny",
  10185. height: math.unit(1, "mm")
  10186. },
  10187. {
  10188. name: "Small",
  10189. height: math.unit(1, "inch"),
  10190. default: true
  10191. },
  10192. {
  10193. name: "Standard Sylveon",
  10194. height: math.unit(3 + 3 / 12, "feet")
  10195. },
  10196. {
  10197. name: "Large Nuisance",
  10198. height: math.unit(33, "feet")
  10199. },
  10200. {
  10201. name: "City Filler",
  10202. height: math.unit(3000, "feet")
  10203. },
  10204. {
  10205. name: "New Horizon",
  10206. height: math.unit(6000, "miles")
  10207. },
  10208. ]
  10209. ))
  10210. characterMakers.push(() => makeCharacter(
  10211. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10212. {
  10213. front: {
  10214. height: math.unit(5, "cm"),
  10215. weight: math.unit(1.94, "g"),
  10216. name: "Front",
  10217. image: {
  10218. source: "./media/characters/fleta/front.svg",
  10219. extra: 835 / 803
  10220. }
  10221. },
  10222. back: {
  10223. height: math.unit(5, "cm"),
  10224. weight: math.unit(1.94, "g"),
  10225. name: "Back",
  10226. image: {
  10227. source: "./media/characters/fleta/back.svg",
  10228. extra: 835 / 803
  10229. }
  10230. },
  10231. },
  10232. [
  10233. {
  10234. name: "Micro",
  10235. height: math.unit(5, "cm"),
  10236. default: true
  10237. },
  10238. ]
  10239. ))
  10240. characterMakers.push(() => makeCharacter(
  10241. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10242. {
  10243. front: {
  10244. height: math.unit(6, "feet"),
  10245. weight: math.unit(225, "lb"),
  10246. name: "Front",
  10247. image: {
  10248. source: "./media/characters/dominic/front.svg",
  10249. extra: 1770 / 1620,
  10250. bottom: 0.025
  10251. }
  10252. },
  10253. back: {
  10254. height: math.unit(6, "feet"),
  10255. weight: math.unit(225, "lb"),
  10256. name: "Back",
  10257. image: {
  10258. source: "./media/characters/dominic/back.svg",
  10259. extra: 1745 / 1620,
  10260. bottom: 0.065
  10261. }
  10262. },
  10263. },
  10264. [
  10265. {
  10266. name: "Nano",
  10267. height: math.unit(0.1, "mm")
  10268. },
  10269. {
  10270. name: "Micro-",
  10271. height: math.unit(1, "mm")
  10272. },
  10273. {
  10274. name: "Micro",
  10275. height: math.unit(4, "inches")
  10276. },
  10277. {
  10278. name: "Normal",
  10279. height: math.unit(6 + 4 / 12, "feet"),
  10280. default: true
  10281. },
  10282. {
  10283. name: "Macro",
  10284. height: math.unit(115, "feet")
  10285. },
  10286. {
  10287. name: "Macro+",
  10288. height: math.unit(955, "feet")
  10289. },
  10290. {
  10291. name: "Megamacro",
  10292. height: math.unit(8990, "feet")
  10293. },
  10294. {
  10295. name: "Gigmacro",
  10296. height: math.unit(9310, "miles")
  10297. },
  10298. {
  10299. name: "Teramacro",
  10300. height: math.unit(1567005010, "miles")
  10301. },
  10302. {
  10303. name: "Examacro",
  10304. height: math.unit(1425, "parsecs")
  10305. },
  10306. ]
  10307. ))
  10308. characterMakers.push(() => makeCharacter(
  10309. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10310. {
  10311. front: {
  10312. height: math.unit(400, "feet"),
  10313. weight: math.unit(44444444, "lb"),
  10314. name: "Front",
  10315. image: {
  10316. source: "./media/characters/major-colonel/front.svg"
  10317. }
  10318. },
  10319. back: {
  10320. height: math.unit(400, "feet"),
  10321. weight: math.unit(44444444, "lb"),
  10322. name: "Back",
  10323. image: {
  10324. source: "./media/characters/major-colonel/back.svg"
  10325. }
  10326. },
  10327. },
  10328. [
  10329. {
  10330. name: "Macro",
  10331. height: math.unit(400, "feet"),
  10332. default: true
  10333. },
  10334. ]
  10335. ))
  10336. characterMakers.push(() => makeCharacter(
  10337. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10338. {
  10339. catFront: {
  10340. height: math.unit(6, "feet"),
  10341. weight: math.unit(120, "lb"),
  10342. name: "Front (Cat Side)",
  10343. image: {
  10344. source: "./media/characters/axel-lycan/cat-front.svg",
  10345. extra: 430 / 402,
  10346. bottom: 43 / 472.35
  10347. }
  10348. },
  10349. catBack: {
  10350. height: math.unit(6, "feet"),
  10351. weight: math.unit(120, "lb"),
  10352. name: "Back (Cat Side)",
  10353. image: {
  10354. source: "./media/characters/axel-lycan/cat-back.svg",
  10355. extra: 447 / 419,
  10356. bottom: 23.3 / 469
  10357. }
  10358. },
  10359. wolfFront: {
  10360. height: math.unit(6, "feet"),
  10361. weight: math.unit(120, "lb"),
  10362. name: "Front (Wolf Side)",
  10363. image: {
  10364. source: "./media/characters/axel-lycan/wolf-front.svg",
  10365. extra: 485 / 456,
  10366. bottom: 19 / 504
  10367. }
  10368. },
  10369. wolfBack: {
  10370. height: math.unit(6, "feet"),
  10371. weight: math.unit(120, "lb"),
  10372. name: "Back (Wolf Side)",
  10373. image: {
  10374. source: "./media/characters/axel-lycan/wolf-back.svg",
  10375. extra: 475 / 438,
  10376. bottom: 39.2 / 514
  10377. }
  10378. },
  10379. },
  10380. [
  10381. {
  10382. name: "Macro",
  10383. height: math.unit(1, "km"),
  10384. default: true
  10385. },
  10386. ]
  10387. ))
  10388. characterMakers.push(() => makeCharacter(
  10389. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10390. {
  10391. front: {
  10392. height: math.unit(5 + 9 / 12, "feet"),
  10393. weight: math.unit(175, "lb"),
  10394. name: "Front",
  10395. image: {
  10396. source: "./media/characters/vanrel-hyena/front.svg",
  10397. extra: 1086 / 1010,
  10398. bottom: 0.04
  10399. }
  10400. },
  10401. },
  10402. [
  10403. {
  10404. name: "Normal",
  10405. height: math.unit(5 + 9 / 12, "feet"),
  10406. default: true
  10407. },
  10408. ]
  10409. ))
  10410. characterMakers.push(() => makeCharacter(
  10411. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10412. {
  10413. front: {
  10414. height: math.unit(6, "feet"),
  10415. weight: math.unit(103, "lb"),
  10416. name: "Front",
  10417. image: {
  10418. source: "./media/characters/abbott-absol/front.svg",
  10419. extra: 2010 / 1842
  10420. }
  10421. },
  10422. },
  10423. [
  10424. {
  10425. name: "Megamicro",
  10426. height: math.unit(0.1, "mm")
  10427. },
  10428. {
  10429. name: "Micro",
  10430. height: math.unit(1, "inch")
  10431. },
  10432. {
  10433. name: "Normal",
  10434. height: math.unit(6, "feet"),
  10435. default: true
  10436. },
  10437. ]
  10438. ))
  10439. characterMakers.push(() => makeCharacter(
  10440. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10441. {
  10442. front: {
  10443. height: math.unit(6, "feet"),
  10444. weight: math.unit(264, "lb"),
  10445. name: "Front",
  10446. image: {
  10447. source: "./media/characters/hector/front.svg",
  10448. extra: 2280 / 2130,
  10449. bottom: 0.07
  10450. }
  10451. },
  10452. },
  10453. [
  10454. {
  10455. name: "Normal",
  10456. height: math.unit(12.25, "foot"),
  10457. default: true
  10458. },
  10459. {
  10460. name: "Macro",
  10461. height: math.unit(160, "feet")
  10462. },
  10463. ]
  10464. ))
  10465. characterMakers.push(() => makeCharacter(
  10466. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10467. {
  10468. front: {
  10469. height: math.unit(6, "feet"),
  10470. weight: math.unit(150, "lb"),
  10471. name: "Front",
  10472. image: {
  10473. source: "./media/characters/sal/front.svg",
  10474. extra: 1846 / 1699,
  10475. bottom: 0.04
  10476. }
  10477. },
  10478. },
  10479. [
  10480. {
  10481. name: "Megamacro",
  10482. height: math.unit(10, "miles"),
  10483. default: true
  10484. },
  10485. ]
  10486. ))
  10487. characterMakers.push(() => makeCharacter(
  10488. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10489. {
  10490. front: {
  10491. height: math.unit(3, "meters"),
  10492. weight: math.unit(450, "kg"),
  10493. name: "front",
  10494. image: {
  10495. source: "./media/characters/ranger/front.svg",
  10496. extra: 2401 / 2243,
  10497. bottom: 0.05
  10498. }
  10499. },
  10500. },
  10501. [
  10502. {
  10503. name: "Normal",
  10504. height: math.unit(3, "meters"),
  10505. default: true
  10506. },
  10507. ]
  10508. ))
  10509. characterMakers.push(() => makeCharacter(
  10510. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10511. {
  10512. front: {
  10513. height: math.unit(14, "feet"),
  10514. weight: math.unit(800, "kg"),
  10515. name: "Front",
  10516. image: {
  10517. source: "./media/characters/theresa/front.svg",
  10518. extra: 3575 / 3346,
  10519. bottom: 0.03
  10520. }
  10521. },
  10522. },
  10523. [
  10524. {
  10525. name: "Normal",
  10526. height: math.unit(14, "feet"),
  10527. default: true
  10528. },
  10529. ]
  10530. ))
  10531. characterMakers.push(() => makeCharacter(
  10532. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10533. {
  10534. front: {
  10535. height: math.unit(6, "feet"),
  10536. weight: math.unit(3, "kg"),
  10537. name: "Front",
  10538. image: {
  10539. source: "./media/characters/ine/front.svg",
  10540. extra: 678 / 539,
  10541. bottom: 0.023
  10542. }
  10543. },
  10544. },
  10545. [
  10546. {
  10547. name: "Normal",
  10548. height: math.unit(2.265, "feet"),
  10549. default: true
  10550. },
  10551. ]
  10552. ))
  10553. characterMakers.push(() => makeCharacter(
  10554. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10555. {
  10556. front: {
  10557. height: math.unit(5, "feet"),
  10558. weight: math.unit(30, "kg"),
  10559. name: "Front",
  10560. image: {
  10561. source: "./media/characters/vial/front.svg",
  10562. extra: 1365 / 1277,
  10563. bottom: 0.04
  10564. }
  10565. },
  10566. },
  10567. [
  10568. {
  10569. name: "Normal",
  10570. height: math.unit(5, "feet"),
  10571. default: true
  10572. },
  10573. ]
  10574. ))
  10575. characterMakers.push(() => makeCharacter(
  10576. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10577. {
  10578. side: {
  10579. height: math.unit(3.4, "meters"),
  10580. weight: math.unit(1000, "lb"),
  10581. name: "Side",
  10582. image: {
  10583. source: "./media/characters/rovoska/side.svg",
  10584. extra: 4403 / 1515
  10585. }
  10586. },
  10587. },
  10588. [
  10589. {
  10590. name: "Normal",
  10591. height: math.unit(3.4, "meters"),
  10592. default: true
  10593. },
  10594. ]
  10595. ))
  10596. characterMakers.push(() => makeCharacter(
  10597. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10598. {
  10599. front: {
  10600. height: math.unit(8, "feet"),
  10601. weight: math.unit(315, "lb"),
  10602. name: "Front",
  10603. image: {
  10604. source: "./media/characters/gunner-rotthbauer/front.svg"
  10605. }
  10606. },
  10607. back: {
  10608. height: math.unit(8, "feet"),
  10609. weight: math.unit(315, "lb"),
  10610. name: "Back",
  10611. image: {
  10612. source: "./media/characters/gunner-rotthbauer/back.svg"
  10613. }
  10614. },
  10615. },
  10616. [
  10617. {
  10618. name: "Micro",
  10619. height: math.unit(3.5, "inches")
  10620. },
  10621. {
  10622. name: "Normal",
  10623. height: math.unit(8, "feet"),
  10624. default: true
  10625. },
  10626. {
  10627. name: "Macro",
  10628. height: math.unit(250, "feet")
  10629. },
  10630. {
  10631. name: "Megamacro",
  10632. height: math.unit(1, "AU")
  10633. },
  10634. ]
  10635. ))
  10636. characterMakers.push(() => makeCharacter(
  10637. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10638. {
  10639. front: {
  10640. height: math.unit(5 + 5 / 12, "feet"),
  10641. weight: math.unit(140, "lb"),
  10642. name: "Front",
  10643. image: {
  10644. source: "./media/characters/allatia/front.svg",
  10645. extra: 1227 / 1180,
  10646. bottom: 0.027
  10647. }
  10648. },
  10649. },
  10650. [
  10651. {
  10652. name: "Normal",
  10653. height: math.unit(5 + 5 / 12, "feet")
  10654. },
  10655. {
  10656. name: "Macro",
  10657. height: math.unit(250, "feet"),
  10658. default: true
  10659. },
  10660. {
  10661. name: "Megamacro",
  10662. height: math.unit(8, "miles")
  10663. }
  10664. ]
  10665. ))
  10666. characterMakers.push(() => makeCharacter(
  10667. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10668. {
  10669. front: {
  10670. height: math.unit(6, "feet"),
  10671. weight: math.unit(120, "lb"),
  10672. name: "Front",
  10673. image: {
  10674. source: "./media/characters/tene/front.svg",
  10675. extra: 814/750,
  10676. bottom: 36/850
  10677. }
  10678. },
  10679. stomping: {
  10680. height: math.unit(2.025, "meters"),
  10681. weight: math.unit(120, "lb"),
  10682. name: "Stomping",
  10683. image: {
  10684. source: "./media/characters/tene/stomping.svg",
  10685. extra: 885/821,
  10686. bottom: 15/900
  10687. }
  10688. },
  10689. sitting: {
  10690. height: math.unit(1, "meter"),
  10691. weight: math.unit(120, "lb"),
  10692. name: "Sitting",
  10693. image: {
  10694. source: "./media/characters/tene/sitting.svg",
  10695. extra: 396/366,
  10696. bottom: 79/475
  10697. }
  10698. },
  10699. smiling: {
  10700. height: math.unit(1.2, "feet"),
  10701. name: "Smiling",
  10702. image: {
  10703. source: "./media/characters/tene/smiling.svg",
  10704. extra: 1364/1071,
  10705. bottom: 0/1364
  10706. }
  10707. },
  10708. smug: {
  10709. height: math.unit(1.3, "feet"),
  10710. name: "Smug",
  10711. image: {
  10712. source: "./media/characters/tene/smug.svg",
  10713. extra: 1323/1082,
  10714. bottom: 0/1323
  10715. }
  10716. },
  10717. feral: {
  10718. height: math.unit(3.9, "feet"),
  10719. weight: math.unit(250, "lb"),
  10720. name: "Feral",
  10721. image: {
  10722. source: "./media/characters/tene/feral.svg",
  10723. extra: 717 / 458,
  10724. bottom: 0.179
  10725. }
  10726. },
  10727. },
  10728. [
  10729. {
  10730. name: "Normal",
  10731. height: math.unit(6, "feet")
  10732. },
  10733. {
  10734. name: "Macro",
  10735. height: math.unit(300, "feet"),
  10736. default: true
  10737. },
  10738. {
  10739. name: "Megamacro",
  10740. height: math.unit(5, "miles")
  10741. },
  10742. ]
  10743. ))
  10744. characterMakers.push(() => makeCharacter(
  10745. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10746. {
  10747. side: {
  10748. height: math.unit(6, "feet"),
  10749. name: "Side",
  10750. image: {
  10751. source: "./media/characters/evander/side.svg",
  10752. extra: 877 / 477
  10753. }
  10754. },
  10755. },
  10756. [
  10757. {
  10758. name: "Normal",
  10759. height: math.unit(0.83, "meters"),
  10760. default: true
  10761. },
  10762. ]
  10763. ))
  10764. characterMakers.push(() => makeCharacter(
  10765. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10766. {
  10767. front: {
  10768. height: math.unit(12, "feet"),
  10769. weight: math.unit(1000, "lb"),
  10770. name: "Front",
  10771. image: {
  10772. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10773. extra: 1762 / 1611
  10774. }
  10775. },
  10776. back: {
  10777. height: math.unit(12, "feet"),
  10778. weight: math.unit(1000, "lb"),
  10779. name: "Back",
  10780. image: {
  10781. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10782. extra: 1762 / 1611
  10783. }
  10784. },
  10785. },
  10786. [
  10787. {
  10788. name: "Normal",
  10789. height: math.unit(12, "feet"),
  10790. default: true
  10791. },
  10792. {
  10793. name: "Kaiju",
  10794. height: math.unit(150, "feet")
  10795. },
  10796. ]
  10797. ))
  10798. characterMakers.push(() => makeCharacter(
  10799. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10800. {
  10801. front: {
  10802. height: math.unit(6, "feet"),
  10803. weight: math.unit(150, "lb"),
  10804. name: "Front",
  10805. image: {
  10806. source: "./media/characters/zero-alurus/front.svg"
  10807. }
  10808. },
  10809. back: {
  10810. height: math.unit(6, "feet"),
  10811. weight: math.unit(150, "lb"),
  10812. name: "Back",
  10813. image: {
  10814. source: "./media/characters/zero-alurus/back.svg"
  10815. }
  10816. },
  10817. },
  10818. [
  10819. {
  10820. name: "Normal",
  10821. height: math.unit(5 + 10 / 12, "feet")
  10822. },
  10823. {
  10824. name: "Macro",
  10825. height: math.unit(60, "feet"),
  10826. default: true
  10827. },
  10828. {
  10829. name: "Macro+",
  10830. height: math.unit(450, "feet")
  10831. },
  10832. ]
  10833. ))
  10834. characterMakers.push(() => makeCharacter(
  10835. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10836. {
  10837. front: {
  10838. height: math.unit(6, "feet"),
  10839. weight: math.unit(200, "lb"),
  10840. name: "Front",
  10841. image: {
  10842. source: "./media/characters/mega-shi/front.svg",
  10843. extra: 1279 / 1250,
  10844. bottom: 0.02
  10845. }
  10846. },
  10847. back: {
  10848. height: math.unit(6, "feet"),
  10849. weight: math.unit(200, "lb"),
  10850. name: "Back",
  10851. image: {
  10852. source: "./media/characters/mega-shi/back.svg",
  10853. extra: 1279 / 1250,
  10854. bottom: 0.02
  10855. }
  10856. },
  10857. },
  10858. [
  10859. {
  10860. name: "Micro",
  10861. height: math.unit(16 + 6 / 12, "feet")
  10862. },
  10863. {
  10864. name: "Third Dimension",
  10865. height: math.unit(40, "meters")
  10866. },
  10867. {
  10868. name: "Normal",
  10869. height: math.unit(660, "feet"),
  10870. default: true
  10871. },
  10872. {
  10873. name: "Megamacro",
  10874. height: math.unit(10, "miles")
  10875. },
  10876. {
  10877. name: "Planetary Launch",
  10878. height: math.unit(500, "miles")
  10879. },
  10880. {
  10881. name: "Interstellar",
  10882. height: math.unit(1e9, "miles")
  10883. },
  10884. {
  10885. name: "Leaving the Universe",
  10886. height: math.unit(1, "gigaparsec")
  10887. },
  10888. {
  10889. name: "Travelling Universes",
  10890. height: math.unit(30e15, "parsecs")
  10891. },
  10892. ]
  10893. ))
  10894. characterMakers.push(() => makeCharacter(
  10895. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10896. {
  10897. front: {
  10898. height: math.unit(5 + 4/12, "feet"),
  10899. weight: math.unit(120, "lb"),
  10900. name: "Front",
  10901. image: {
  10902. source: "./media/characters/odyssey/front.svg",
  10903. extra: 1747/1571,
  10904. bottom: 47/1794
  10905. }
  10906. },
  10907. side: {
  10908. height: math.unit(5.1, "feet"),
  10909. weight: math.unit(120, "lb"),
  10910. name: "Side",
  10911. image: {
  10912. source: "./media/characters/odyssey/side.svg",
  10913. extra: 1847/1619,
  10914. bottom: 47/1894
  10915. }
  10916. },
  10917. lounging: {
  10918. height: math.unit(1.464, "feet"),
  10919. weight: math.unit(120, "lb"),
  10920. name: "Lounging",
  10921. image: {
  10922. source: "./media/characters/odyssey/lounging.svg",
  10923. extra: 1235/837,
  10924. bottom: 551/1786
  10925. }
  10926. },
  10927. },
  10928. [
  10929. {
  10930. name: "Normal",
  10931. height: math.unit(5 + 4 / 12, "feet")
  10932. },
  10933. {
  10934. name: "Macro",
  10935. height: math.unit(1, "km")
  10936. },
  10937. {
  10938. name: "Megamacro",
  10939. height: math.unit(3000, "km")
  10940. },
  10941. {
  10942. name: "Gigamacro",
  10943. height: math.unit(1, "AU"),
  10944. default: true
  10945. },
  10946. {
  10947. name: "Omniversal",
  10948. height: math.unit(100e14, "lightyears")
  10949. },
  10950. ]
  10951. ))
  10952. characterMakers.push(() => makeCharacter(
  10953. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10954. {
  10955. front: {
  10956. height: math.unit(6, "feet"),
  10957. weight: math.unit(300, "lb"),
  10958. name: "Front",
  10959. image: {
  10960. source: "./media/characters/mekuto/front.svg",
  10961. extra: 921 / 832,
  10962. bottom: 0.03
  10963. }
  10964. },
  10965. hand: {
  10966. height: math.unit(6 / 10.24, "feet"),
  10967. name: "Hand",
  10968. image: {
  10969. source: "./media/characters/mekuto/hand.svg"
  10970. }
  10971. },
  10972. foot: {
  10973. height: math.unit(6 / 5.05, "feet"),
  10974. name: "Foot",
  10975. image: {
  10976. source: "./media/characters/mekuto/foot.svg"
  10977. }
  10978. },
  10979. },
  10980. [
  10981. {
  10982. name: "Minimicro",
  10983. height: math.unit(0.2, "inches")
  10984. },
  10985. {
  10986. name: "Micro",
  10987. height: math.unit(1.5, "inches")
  10988. },
  10989. {
  10990. name: "Normal",
  10991. height: math.unit(5 + 11 / 12, "feet"),
  10992. default: true
  10993. },
  10994. {
  10995. name: "Minimacro",
  10996. height: math.unit(17 + 9 / 12, "feet")
  10997. },
  10998. {
  10999. name: "Macro",
  11000. height: math.unit(177.5, "feet")
  11001. },
  11002. {
  11003. name: "Megamacro",
  11004. height: math.unit(152, "miles")
  11005. },
  11006. ]
  11007. ))
  11008. characterMakers.push(() => makeCharacter(
  11009. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11010. {
  11011. front: {
  11012. height: math.unit(6.5, "inches"),
  11013. weight: math.unit(13, "oz"),
  11014. name: "Front",
  11015. image: {
  11016. source: "./media/characters/dafydd-tomos/front.svg",
  11017. extra: 2990 / 2603,
  11018. bottom: 0.03
  11019. }
  11020. },
  11021. },
  11022. [
  11023. {
  11024. name: "Micro",
  11025. height: math.unit(6.5, "inches"),
  11026. default: true
  11027. },
  11028. ]
  11029. ))
  11030. characterMakers.push(() => makeCharacter(
  11031. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11032. {
  11033. front: {
  11034. height: math.unit(6, "feet"),
  11035. weight: math.unit(150, "lb"),
  11036. name: "Front",
  11037. image: {
  11038. source: "./media/characters/splinter/front.svg",
  11039. extra: 2990 / 2882,
  11040. bottom: 0.04
  11041. }
  11042. },
  11043. back: {
  11044. height: math.unit(6, "feet"),
  11045. weight: math.unit(150, "lb"),
  11046. name: "Back",
  11047. image: {
  11048. source: "./media/characters/splinter/back.svg",
  11049. extra: 2990 / 2882,
  11050. bottom: 0.04
  11051. }
  11052. },
  11053. },
  11054. [
  11055. {
  11056. name: "Normal",
  11057. height: math.unit(6, "feet")
  11058. },
  11059. {
  11060. name: "Macro",
  11061. height: math.unit(230, "meters"),
  11062. default: true
  11063. },
  11064. ]
  11065. ))
  11066. characterMakers.push(() => makeCharacter(
  11067. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11068. {
  11069. front: {
  11070. height: math.unit(4 + 10 / 12, "feet"),
  11071. weight: math.unit(480, "lb"),
  11072. name: "Front",
  11073. image: {
  11074. source: "./media/characters/snow-gabumon/front.svg",
  11075. extra: 1140 / 963,
  11076. bottom: 0.058
  11077. }
  11078. },
  11079. back: {
  11080. height: math.unit(4 + 10 / 12, "feet"),
  11081. weight: math.unit(480, "lb"),
  11082. name: "Back",
  11083. image: {
  11084. source: "./media/characters/snow-gabumon/back.svg",
  11085. extra: 1115 / 962,
  11086. bottom: 0.041
  11087. }
  11088. },
  11089. frontUndresed: {
  11090. height: math.unit(4 + 10 / 12, "feet"),
  11091. weight: math.unit(480, "lb"),
  11092. name: "Front (Undressed)",
  11093. image: {
  11094. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11095. extra: 1061 / 960,
  11096. bottom: 0.045
  11097. }
  11098. },
  11099. },
  11100. [
  11101. {
  11102. name: "Micro",
  11103. height: math.unit(1, "inch")
  11104. },
  11105. {
  11106. name: "Normal",
  11107. height: math.unit(4 + 10 / 12, "feet"),
  11108. default: true
  11109. },
  11110. {
  11111. name: "Macro",
  11112. height: math.unit(200, "feet")
  11113. },
  11114. {
  11115. name: "Megamacro",
  11116. height: math.unit(120, "miles")
  11117. },
  11118. {
  11119. name: "Gigamacro",
  11120. height: math.unit(9800, "miles")
  11121. },
  11122. ]
  11123. ))
  11124. characterMakers.push(() => makeCharacter(
  11125. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11126. {
  11127. front: {
  11128. height: math.unit(1.7, "meters"),
  11129. weight: math.unit(140, "lb"),
  11130. name: "Front",
  11131. image: {
  11132. source: "./media/characters/moody/front.svg",
  11133. extra: 3226 / 3007,
  11134. bottom: 0.087
  11135. }
  11136. },
  11137. },
  11138. [
  11139. {
  11140. name: "Micro",
  11141. height: math.unit(1, "mm")
  11142. },
  11143. {
  11144. name: "Normal",
  11145. height: math.unit(1.7, "meters"),
  11146. default: true
  11147. },
  11148. {
  11149. name: "Macro",
  11150. height: math.unit(80, "meters")
  11151. },
  11152. {
  11153. name: "Macro+",
  11154. height: math.unit(500, "meters")
  11155. },
  11156. ]
  11157. ))
  11158. characterMakers.push(() => makeCharacter(
  11159. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11160. {
  11161. front: {
  11162. height: math.unit(6, "feet"),
  11163. weight: math.unit(150, "lb"),
  11164. name: "Front",
  11165. image: {
  11166. source: "./media/characters/zyas/front.svg",
  11167. extra: 1180 / 1120,
  11168. bottom: 0.045
  11169. }
  11170. },
  11171. },
  11172. [
  11173. {
  11174. name: "Normal",
  11175. height: math.unit(10, "feet"),
  11176. default: true
  11177. },
  11178. {
  11179. name: "Macro",
  11180. height: math.unit(500, "feet")
  11181. },
  11182. {
  11183. name: "Megamacro",
  11184. height: math.unit(5, "miles")
  11185. },
  11186. {
  11187. name: "Teramacro",
  11188. height: math.unit(150000, "miles")
  11189. },
  11190. ]
  11191. ))
  11192. characterMakers.push(() => makeCharacter(
  11193. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11194. {
  11195. front: {
  11196. height: math.unit(6, "feet"),
  11197. weight: math.unit(150, "lb"),
  11198. name: "Front",
  11199. image: {
  11200. source: "./media/characters/cuon/front.svg",
  11201. extra: 1390 / 1320,
  11202. bottom: 0.008
  11203. }
  11204. },
  11205. },
  11206. [
  11207. {
  11208. name: "Micro",
  11209. height: math.unit(3, "inches")
  11210. },
  11211. {
  11212. name: "Normal",
  11213. height: math.unit(18 + 9 / 12, "feet"),
  11214. default: true
  11215. },
  11216. {
  11217. name: "Macro",
  11218. height: math.unit(360, "feet")
  11219. },
  11220. {
  11221. name: "Megamacro",
  11222. height: math.unit(360, "miles")
  11223. },
  11224. ]
  11225. ))
  11226. characterMakers.push(() => makeCharacter(
  11227. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11228. {
  11229. front: {
  11230. height: math.unit(2.4, "meters"),
  11231. weight: math.unit(70, "kg"),
  11232. name: "Front",
  11233. image: {
  11234. source: "./media/characters/nyanuxk/front.svg",
  11235. extra: 1172 / 1084,
  11236. bottom: 0.065
  11237. }
  11238. },
  11239. side: {
  11240. height: math.unit(2.4, "meters"),
  11241. weight: math.unit(70, "kg"),
  11242. name: "Side",
  11243. image: {
  11244. source: "./media/characters/nyanuxk/side.svg",
  11245. extra: 1190 / 1132,
  11246. bottom: 0.007
  11247. }
  11248. },
  11249. back: {
  11250. height: math.unit(2.4, "meters"),
  11251. weight: math.unit(70, "kg"),
  11252. name: "Back",
  11253. image: {
  11254. source: "./media/characters/nyanuxk/back.svg",
  11255. extra: 1200 / 1141,
  11256. bottom: 0.015
  11257. }
  11258. },
  11259. foot: {
  11260. height: math.unit(0.52, "meters"),
  11261. name: "Foot",
  11262. image: {
  11263. source: "./media/characters/nyanuxk/foot.svg"
  11264. }
  11265. },
  11266. },
  11267. [
  11268. {
  11269. name: "Micro",
  11270. height: math.unit(2, "cm")
  11271. },
  11272. {
  11273. name: "Normal",
  11274. height: math.unit(2.4, "meters"),
  11275. default: true
  11276. },
  11277. {
  11278. name: "Smaller Macro",
  11279. height: math.unit(120, "meters")
  11280. },
  11281. {
  11282. name: "Bigger Macro",
  11283. height: math.unit(1.2, "km")
  11284. },
  11285. {
  11286. name: "Megamacro",
  11287. height: math.unit(15, "kilometers")
  11288. },
  11289. {
  11290. name: "Gigamacro",
  11291. height: math.unit(2000, "km")
  11292. },
  11293. {
  11294. name: "Teramacro",
  11295. height: math.unit(500000, "km")
  11296. },
  11297. ]
  11298. ))
  11299. characterMakers.push(() => makeCharacter(
  11300. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11301. {
  11302. side: {
  11303. height: math.unit(6, "feet"),
  11304. name: "Side",
  11305. image: {
  11306. source: "./media/characters/ailbhe/side.svg",
  11307. extra: 757 / 464,
  11308. bottom: 0.041
  11309. }
  11310. },
  11311. },
  11312. [
  11313. {
  11314. name: "Normal",
  11315. height: math.unit(1.07, "meters"),
  11316. default: true
  11317. },
  11318. ]
  11319. ))
  11320. characterMakers.push(() => makeCharacter(
  11321. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11322. {
  11323. front: {
  11324. height: math.unit(6, "feet"),
  11325. weight: math.unit(120, "kg"),
  11326. name: "Front",
  11327. image: {
  11328. source: "./media/characters/zevulfius/front.svg",
  11329. extra: 965 / 903
  11330. }
  11331. },
  11332. side: {
  11333. height: math.unit(6, "feet"),
  11334. weight: math.unit(120, "kg"),
  11335. name: "Side",
  11336. image: {
  11337. source: "./media/characters/zevulfius/side.svg",
  11338. extra: 939 / 900
  11339. }
  11340. },
  11341. back: {
  11342. height: math.unit(6, "feet"),
  11343. weight: math.unit(120, "kg"),
  11344. name: "Back",
  11345. image: {
  11346. source: "./media/characters/zevulfius/back.svg",
  11347. extra: 918 / 854,
  11348. bottom: 0.005
  11349. }
  11350. },
  11351. foot: {
  11352. height: math.unit(6 / 3.72, "feet"),
  11353. name: "Foot",
  11354. image: {
  11355. source: "./media/characters/zevulfius/foot.svg"
  11356. }
  11357. },
  11358. },
  11359. [
  11360. {
  11361. name: "Macro",
  11362. height: math.unit(750, "meters")
  11363. },
  11364. {
  11365. name: "Megamacro",
  11366. height: math.unit(20, "km"),
  11367. default: true
  11368. },
  11369. {
  11370. name: "Gigamacro",
  11371. height: math.unit(2000, "km")
  11372. },
  11373. {
  11374. name: "Teramacro",
  11375. height: math.unit(250000, "km")
  11376. },
  11377. ]
  11378. ))
  11379. characterMakers.push(() => makeCharacter(
  11380. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11381. {
  11382. front: {
  11383. height: math.unit(100, "feet"),
  11384. weight: math.unit(350, "kg"),
  11385. name: "Front",
  11386. image: {
  11387. source: "./media/characters/rikes/front.svg",
  11388. extra: 1565 / 1483,
  11389. bottom: 0.017
  11390. }
  11391. },
  11392. },
  11393. [
  11394. {
  11395. name: "Macro",
  11396. height: math.unit(100, "feet"),
  11397. default: true
  11398. },
  11399. ]
  11400. ))
  11401. characterMakers.push(() => makeCharacter(
  11402. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11403. {
  11404. front: {
  11405. height: math.unit(8, "feet"),
  11406. weight: math.unit(356, "lb"),
  11407. name: "Front",
  11408. image: {
  11409. source: "./media/characters/adam-silver-mane/front.svg",
  11410. extra: 1036/937,
  11411. bottom: 63/1099
  11412. }
  11413. },
  11414. side: {
  11415. height: math.unit(8, "feet"),
  11416. weight: math.unit(356, "lb"),
  11417. name: "Side",
  11418. image: {
  11419. source: "./media/characters/adam-silver-mane/side.svg",
  11420. extra: 997/901,
  11421. bottom: 59/1056
  11422. }
  11423. },
  11424. frontNsfw: {
  11425. height: math.unit(8, "feet"),
  11426. weight: math.unit(356, "lb"),
  11427. name: "Front (NSFW)",
  11428. image: {
  11429. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11430. extra: 1036/937,
  11431. bottom: 63/1099
  11432. }
  11433. },
  11434. sideNsfw: {
  11435. height: math.unit(8, "feet"),
  11436. weight: math.unit(356, "lb"),
  11437. name: "Side (NSFW)",
  11438. image: {
  11439. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11440. extra: 997/901,
  11441. bottom: 59/1056
  11442. }
  11443. },
  11444. dick: {
  11445. height: math.unit(2.1, "feet"),
  11446. name: "Dick",
  11447. image: {
  11448. source: "./media/characters/adam-silver-mane/dick.svg"
  11449. }
  11450. },
  11451. taur: {
  11452. height: math.unit(16, "feet"),
  11453. weight: math.unit(1500, "kg"),
  11454. name: "Taur",
  11455. image: {
  11456. source: "./media/characters/adam-silver-mane/taur.svg",
  11457. extra: 1713 / 1571,
  11458. bottom: 0.01
  11459. }
  11460. },
  11461. },
  11462. [
  11463. {
  11464. name: "Normal",
  11465. height: math.unit(8, "feet")
  11466. },
  11467. {
  11468. name: "Minimacro",
  11469. height: math.unit(80, "feet")
  11470. },
  11471. {
  11472. name: "MDA",
  11473. height: math.unit(80, "meters")
  11474. },
  11475. {
  11476. name: "Macro",
  11477. height: math.unit(800, "feet"),
  11478. default: true
  11479. },
  11480. {
  11481. name: "Megamacro",
  11482. height: math.unit(8000, "feet")
  11483. },
  11484. {
  11485. name: "Gigamacro",
  11486. height: math.unit(800, "miles")
  11487. },
  11488. {
  11489. name: "Teramacro",
  11490. height: math.unit(80000, "miles")
  11491. },
  11492. {
  11493. name: "Celestial",
  11494. height: math.unit(8e6, "miles")
  11495. },
  11496. {
  11497. name: "Star Dragon",
  11498. height: math.unit(800000, "parsecs")
  11499. },
  11500. {
  11501. name: "Godly",
  11502. height: math.unit(800, "teraparsecs")
  11503. },
  11504. ]
  11505. ))
  11506. characterMakers.push(() => makeCharacter(
  11507. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11508. {
  11509. front: {
  11510. height: math.unit(6, "feet"),
  11511. weight: math.unit(150, "lb"),
  11512. name: "Front",
  11513. image: {
  11514. source: "./media/characters/ky'owin/front.svg",
  11515. extra: 3888 / 3068,
  11516. bottom: 0.015
  11517. }
  11518. },
  11519. },
  11520. [
  11521. {
  11522. name: "Normal",
  11523. height: math.unit(6 + 8 / 12, "feet")
  11524. },
  11525. {
  11526. name: "Large",
  11527. height: math.unit(68, "feet")
  11528. },
  11529. {
  11530. name: "Macro",
  11531. height: math.unit(132, "feet")
  11532. },
  11533. {
  11534. name: "Macro+",
  11535. height: math.unit(340, "feet")
  11536. },
  11537. {
  11538. name: "Macro++",
  11539. height: math.unit(680, "feet"),
  11540. default: true
  11541. },
  11542. {
  11543. name: "Megamacro",
  11544. height: math.unit(1, "mile")
  11545. },
  11546. {
  11547. name: "Megamacro+",
  11548. height: math.unit(10, "miles")
  11549. },
  11550. ]
  11551. ))
  11552. characterMakers.push(() => makeCharacter(
  11553. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11554. {
  11555. front: {
  11556. height: math.unit(4, "feet"),
  11557. weight: math.unit(50, "lb"),
  11558. name: "Front",
  11559. image: {
  11560. source: "./media/characters/mal/front.svg",
  11561. extra: 785 / 724,
  11562. bottom: 0.07
  11563. }
  11564. },
  11565. },
  11566. [
  11567. {
  11568. name: "Micro",
  11569. height: math.unit(4, "inches")
  11570. },
  11571. {
  11572. name: "Normal",
  11573. height: math.unit(4, "feet"),
  11574. default: true
  11575. },
  11576. {
  11577. name: "Macro",
  11578. height: math.unit(200, "feet")
  11579. },
  11580. ]
  11581. ))
  11582. characterMakers.push(() => makeCharacter(
  11583. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11584. {
  11585. front: {
  11586. height: math.unit(6, "feet"),
  11587. weight: math.unit(150, "lb"),
  11588. name: "Front",
  11589. image: {
  11590. source: "./media/characters/jordan-deware/front.svg",
  11591. extra: 1191 / 1012
  11592. }
  11593. },
  11594. },
  11595. [
  11596. {
  11597. name: "Nano",
  11598. height: math.unit(0.01, "mm")
  11599. },
  11600. {
  11601. name: "Minimicro",
  11602. height: math.unit(1, "mm")
  11603. },
  11604. {
  11605. name: "Micro",
  11606. height: math.unit(0.5, "inches")
  11607. },
  11608. {
  11609. name: "Normal",
  11610. height: math.unit(4, "feet"),
  11611. default: true
  11612. },
  11613. {
  11614. name: "Minimacro",
  11615. height: math.unit(40, "meters")
  11616. },
  11617. {
  11618. name: "Small Macro",
  11619. height: math.unit(400, "meters")
  11620. },
  11621. {
  11622. name: "Macro",
  11623. height: math.unit(4, "miles")
  11624. },
  11625. {
  11626. name: "Megamacro",
  11627. height: math.unit(40, "miles")
  11628. },
  11629. {
  11630. name: "Megamacro+",
  11631. height: math.unit(400, "miles")
  11632. },
  11633. {
  11634. name: "Gigamacro",
  11635. height: math.unit(400000, "miles")
  11636. },
  11637. ]
  11638. ))
  11639. characterMakers.push(() => makeCharacter(
  11640. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11641. {
  11642. side: {
  11643. height: math.unit(6, "feet"),
  11644. weight: math.unit(150, "lb"),
  11645. name: "Side",
  11646. image: {
  11647. source: "./media/characters/kimiko/side.svg",
  11648. extra: 600 / 358
  11649. }
  11650. },
  11651. },
  11652. [
  11653. {
  11654. name: "Normal",
  11655. height: math.unit(15, "feet"),
  11656. default: true
  11657. },
  11658. {
  11659. name: "Macro",
  11660. height: math.unit(220, "feet")
  11661. },
  11662. {
  11663. name: "Macro+",
  11664. height: math.unit(1450, "feet")
  11665. },
  11666. {
  11667. name: "Megamacro",
  11668. height: math.unit(11500, "feet")
  11669. },
  11670. {
  11671. name: "Gigamacro",
  11672. height: math.unit(9500, "miles")
  11673. },
  11674. {
  11675. name: "Teramacro",
  11676. height: math.unit(2208005005, "miles")
  11677. },
  11678. {
  11679. name: "Examacro",
  11680. height: math.unit(2750, "parsecs")
  11681. },
  11682. {
  11683. name: "Zettamacro",
  11684. height: math.unit(101500, "parsecs")
  11685. },
  11686. ]
  11687. ))
  11688. characterMakers.push(() => makeCharacter(
  11689. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11690. {
  11691. front: {
  11692. height: math.unit(6, "feet"),
  11693. weight: math.unit(70, "kg"),
  11694. name: "Front",
  11695. image: {
  11696. source: "./media/characters/andrew-sleepy/front.svg"
  11697. }
  11698. },
  11699. side: {
  11700. height: math.unit(6, "feet"),
  11701. weight: math.unit(70, "kg"),
  11702. name: "Side",
  11703. image: {
  11704. source: "./media/characters/andrew-sleepy/side.svg"
  11705. }
  11706. },
  11707. },
  11708. [
  11709. {
  11710. name: "Micro",
  11711. height: math.unit(1, "mm"),
  11712. default: true
  11713. },
  11714. ]
  11715. ))
  11716. characterMakers.push(() => makeCharacter(
  11717. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11718. {
  11719. front: {
  11720. height: math.unit(6, "feet"),
  11721. weight: math.unit(150, "lb"),
  11722. name: "Front",
  11723. image: {
  11724. source: "./media/characters/judio/front.svg",
  11725. extra: 1258 / 1110
  11726. }
  11727. },
  11728. },
  11729. [
  11730. {
  11731. name: "Normal",
  11732. height: math.unit(5 + 6 / 12, "feet")
  11733. },
  11734. {
  11735. name: "Macro",
  11736. height: math.unit(1000, "feet"),
  11737. default: true
  11738. },
  11739. {
  11740. name: "Megamacro",
  11741. height: math.unit(10, "miles")
  11742. },
  11743. ]
  11744. ))
  11745. characterMakers.push(() => makeCharacter(
  11746. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11747. {
  11748. frontDressed: {
  11749. height: math.unit(6, "feet"),
  11750. weight: math.unit(68, "kg"),
  11751. name: "Front (Dressed)",
  11752. image: {
  11753. source: "./media/characters/nomaxice/front-dressed.svg",
  11754. extra: 1137/824,
  11755. bottom: 74/1211
  11756. }
  11757. },
  11758. frontShorts: {
  11759. height: math.unit(6, "feet"),
  11760. weight: math.unit(68, "kg"),
  11761. name: "Front (Shorts)",
  11762. image: {
  11763. source: "./media/characters/nomaxice/front-shorts.svg",
  11764. extra: 1137/824,
  11765. bottom: 74/1211
  11766. }
  11767. },
  11768. back: {
  11769. height: math.unit(6, "feet"),
  11770. weight: math.unit(68, "kg"),
  11771. name: "Back",
  11772. image: {
  11773. source: "./media/characters/nomaxice/back.svg",
  11774. extra: 822/786,
  11775. bottom: 39/861
  11776. }
  11777. },
  11778. hand: {
  11779. height: math.unit(0.565, "feet"),
  11780. name: "Hand",
  11781. image: {
  11782. source: "./media/characters/nomaxice/hand.svg"
  11783. }
  11784. },
  11785. foot: {
  11786. height: math.unit(1, "feet"),
  11787. name: "Foot",
  11788. image: {
  11789. source: "./media/characters/nomaxice/foot.svg"
  11790. }
  11791. },
  11792. },
  11793. [
  11794. {
  11795. name: "Micro",
  11796. height: math.unit(8, "cm")
  11797. },
  11798. {
  11799. name: "Norm",
  11800. height: math.unit(1.82, "m")
  11801. },
  11802. {
  11803. name: "Norm+",
  11804. height: math.unit(8.8, "feet"),
  11805. default: true
  11806. },
  11807. {
  11808. name: "Big",
  11809. height: math.unit(8, "meters")
  11810. },
  11811. {
  11812. name: "Macro",
  11813. height: math.unit(18, "meters")
  11814. },
  11815. {
  11816. name: "Macro+",
  11817. height: math.unit(88, "meters")
  11818. },
  11819. ]
  11820. ))
  11821. characterMakers.push(() => makeCharacter(
  11822. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11823. {
  11824. front: {
  11825. height: math.unit(12, "feet"),
  11826. weight: math.unit(1.5, "tons"),
  11827. name: "Front",
  11828. image: {
  11829. source: "./media/characters/dydros/front.svg",
  11830. extra: 863 / 800,
  11831. bottom: 0.015
  11832. }
  11833. },
  11834. back: {
  11835. height: math.unit(12, "feet"),
  11836. weight: math.unit(1.5, "tons"),
  11837. name: "Back",
  11838. image: {
  11839. source: "./media/characters/dydros/back.svg",
  11840. extra: 900 / 843,
  11841. bottom: 0.005
  11842. }
  11843. },
  11844. },
  11845. [
  11846. {
  11847. name: "Normal",
  11848. height: math.unit(12, "feet"),
  11849. default: true
  11850. },
  11851. ]
  11852. ))
  11853. characterMakers.push(() => makeCharacter(
  11854. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11855. {
  11856. front: {
  11857. height: math.unit(6, "feet"),
  11858. weight: math.unit(100, "kg"),
  11859. name: "Front",
  11860. image: {
  11861. source: "./media/characters/riggi/front.svg",
  11862. extra: 5787 / 5303
  11863. }
  11864. },
  11865. hyper: {
  11866. height: math.unit(6 * 5 / 3, "feet"),
  11867. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11868. name: "Hyper",
  11869. image: {
  11870. source: "./media/characters/riggi/hyper.svg",
  11871. extra: 3595 / 3485
  11872. }
  11873. },
  11874. },
  11875. [
  11876. {
  11877. name: "Small Macro",
  11878. height: math.unit(50, "feet")
  11879. },
  11880. {
  11881. name: "Default",
  11882. height: math.unit(200, "feet"),
  11883. default: true
  11884. },
  11885. {
  11886. name: "Loom",
  11887. height: math.unit(10000, "feet")
  11888. },
  11889. {
  11890. name: "Cruising Altitude",
  11891. height: math.unit(30000, "feet")
  11892. },
  11893. {
  11894. name: "Megamacro",
  11895. height: math.unit(100, "miles")
  11896. },
  11897. {
  11898. name: "Continent Sized",
  11899. height: math.unit(2800, "miles")
  11900. },
  11901. {
  11902. name: "Earth Sized",
  11903. height: math.unit(8000, "miles")
  11904. },
  11905. ]
  11906. ))
  11907. characterMakers.push(() => makeCharacter(
  11908. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11909. {
  11910. front: {
  11911. height: math.unit(6, "feet"),
  11912. weight: math.unit(250, "lb"),
  11913. name: "Front",
  11914. image: {
  11915. source: "./media/characters/alexi/front.svg",
  11916. extra: 3483 / 3291,
  11917. bottom: 0.04
  11918. }
  11919. },
  11920. back: {
  11921. height: math.unit(6, "feet"),
  11922. weight: math.unit(250, "lb"),
  11923. name: "Back",
  11924. image: {
  11925. source: "./media/characters/alexi/back.svg",
  11926. extra: 3533 / 3356,
  11927. bottom: 0.021
  11928. }
  11929. },
  11930. frontTransforming: {
  11931. height: math.unit(8.58, "feet"),
  11932. weight: math.unit(1300, "lb"),
  11933. name: "Transforming",
  11934. image: {
  11935. source: "./media/characters/alexi/front-transforming.svg",
  11936. extra: 437 / 409,
  11937. bottom: 19 / 458.66
  11938. }
  11939. },
  11940. frontTransformed: {
  11941. height: math.unit(12.5, "feet"),
  11942. weight: math.unit(4000, "lb"),
  11943. name: "Transformed",
  11944. image: {
  11945. source: "./media/characters/alexi/front-transformed.svg",
  11946. extra: 639 / 614,
  11947. bottom: 30.55 / 671
  11948. }
  11949. },
  11950. },
  11951. [
  11952. {
  11953. name: "Normal",
  11954. height: math.unit(14, "feet"),
  11955. default: true
  11956. },
  11957. {
  11958. name: "Minimacro",
  11959. height: math.unit(30, "meters")
  11960. },
  11961. {
  11962. name: "Macro",
  11963. height: math.unit(500, "meters")
  11964. },
  11965. {
  11966. name: "Megamacro",
  11967. height: math.unit(9000, "km")
  11968. },
  11969. {
  11970. name: "Teramacro",
  11971. height: math.unit(384000, "km")
  11972. },
  11973. ]
  11974. ))
  11975. characterMakers.push(() => makeCharacter(
  11976. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11977. {
  11978. front: {
  11979. height: math.unit(6, "feet"),
  11980. weight: math.unit(150, "lb"),
  11981. name: "Front",
  11982. image: {
  11983. source: "./media/characters/kayroo/front.svg",
  11984. extra: 1153 / 1038,
  11985. bottom: 0.06
  11986. }
  11987. },
  11988. foot: {
  11989. height: math.unit(6, "feet"),
  11990. weight: math.unit(150, "lb"),
  11991. name: "Foot",
  11992. image: {
  11993. source: "./media/characters/kayroo/foot.svg"
  11994. }
  11995. },
  11996. },
  11997. [
  11998. {
  11999. name: "Normal",
  12000. height: math.unit(8, "feet"),
  12001. default: true
  12002. },
  12003. {
  12004. name: "Minimacro",
  12005. height: math.unit(250, "feet")
  12006. },
  12007. {
  12008. name: "Macro",
  12009. height: math.unit(2800, "feet")
  12010. },
  12011. {
  12012. name: "Megamacro",
  12013. height: math.unit(5200, "feet")
  12014. },
  12015. {
  12016. name: "Gigamacro",
  12017. height: math.unit(27000, "feet")
  12018. },
  12019. {
  12020. name: "Omega",
  12021. height: math.unit(45000, "feet")
  12022. },
  12023. ]
  12024. ))
  12025. characterMakers.push(() => makeCharacter(
  12026. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12027. {
  12028. front: {
  12029. height: math.unit(18, "feet"),
  12030. weight: math.unit(5800, "lb"),
  12031. name: "Front",
  12032. image: {
  12033. source: "./media/characters/rhys/front.svg",
  12034. extra: 3386 / 3090,
  12035. bottom: 0.07
  12036. }
  12037. },
  12038. },
  12039. [
  12040. {
  12041. name: "Normal",
  12042. height: math.unit(18, "feet"),
  12043. default: true
  12044. },
  12045. {
  12046. name: "Working Size",
  12047. height: math.unit(200, "feet")
  12048. },
  12049. {
  12050. name: "Demolition Size",
  12051. height: math.unit(2000, "feet")
  12052. },
  12053. {
  12054. name: "Maximum Licensed Size",
  12055. height: math.unit(5, "miles")
  12056. },
  12057. {
  12058. name: "Maximum Observed Size",
  12059. height: math.unit(10, "yottameters")
  12060. },
  12061. ]
  12062. ))
  12063. characterMakers.push(() => makeCharacter(
  12064. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12065. {
  12066. front: {
  12067. height: math.unit(6, "feet"),
  12068. weight: math.unit(250, "lb"),
  12069. name: "Front",
  12070. image: {
  12071. source: "./media/characters/toto/front.svg",
  12072. extra: 527 / 479,
  12073. bottom: 0.05
  12074. }
  12075. },
  12076. },
  12077. [
  12078. {
  12079. name: "Micro",
  12080. height: math.unit(3, "feet")
  12081. },
  12082. {
  12083. name: "Normal",
  12084. height: math.unit(10, "feet")
  12085. },
  12086. {
  12087. name: "Macro",
  12088. height: math.unit(150, "feet"),
  12089. default: true
  12090. },
  12091. {
  12092. name: "Megamacro",
  12093. height: math.unit(1200, "feet")
  12094. },
  12095. ]
  12096. ))
  12097. characterMakers.push(() => makeCharacter(
  12098. { name: "King", species: ["lion"], tags: ["anthro"] },
  12099. {
  12100. back: {
  12101. height: math.unit(6, "feet"),
  12102. weight: math.unit(150, "lb"),
  12103. name: "Back",
  12104. image: {
  12105. source: "./media/characters/king/back.svg"
  12106. }
  12107. },
  12108. },
  12109. [
  12110. {
  12111. name: "Micro",
  12112. height: math.unit(2, "inches")
  12113. },
  12114. {
  12115. name: "Normal",
  12116. height: math.unit(8, "feet")
  12117. },
  12118. {
  12119. name: "Macro",
  12120. height: math.unit(200, "feet"),
  12121. default: true
  12122. },
  12123. {
  12124. name: "Megamacro",
  12125. height: math.unit(50, "miles")
  12126. },
  12127. ]
  12128. ))
  12129. characterMakers.push(() => makeCharacter(
  12130. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12131. {
  12132. front: {
  12133. height: math.unit(11, "feet"),
  12134. weight: math.unit(1400, "lb"),
  12135. name: "Front",
  12136. image: {
  12137. source: "./media/characters/cordite/front.svg",
  12138. extra: 1919/1827,
  12139. bottom: 40/1959
  12140. }
  12141. },
  12142. side: {
  12143. height: math.unit(11, "feet"),
  12144. weight: math.unit(1400, "lb"),
  12145. name: "Side",
  12146. image: {
  12147. source: "./media/characters/cordite/side.svg",
  12148. extra: 1908/1793,
  12149. bottom: 38/1946
  12150. }
  12151. },
  12152. back: {
  12153. height: math.unit(11, "feet"),
  12154. weight: math.unit(1400, "lb"),
  12155. name: "Back",
  12156. image: {
  12157. source: "./media/characters/cordite/back.svg",
  12158. extra: 1938/1837,
  12159. bottom: 10/1948
  12160. }
  12161. },
  12162. feral: {
  12163. height: math.unit(2, "feet"),
  12164. weight: math.unit(90, "lb"),
  12165. name: "Feral",
  12166. image: {
  12167. source: "./media/characters/cordite/feral.svg",
  12168. extra: 1260 / 755,
  12169. bottom: 0.05
  12170. }
  12171. },
  12172. },
  12173. [
  12174. {
  12175. name: "Normal",
  12176. height: math.unit(11, "feet"),
  12177. default: true
  12178. },
  12179. ]
  12180. ))
  12181. characterMakers.push(() => makeCharacter(
  12182. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12183. {
  12184. front: {
  12185. height: math.unit(6, "feet"),
  12186. weight: math.unit(150, "lb"),
  12187. name: "Front",
  12188. image: {
  12189. source: "./media/characters/pianostrong/front.svg",
  12190. extra: 6577 / 6254,
  12191. bottom: 0.02
  12192. }
  12193. },
  12194. side: {
  12195. height: math.unit(6, "feet"),
  12196. weight: math.unit(150, "lb"),
  12197. name: "Side",
  12198. image: {
  12199. source: "./media/characters/pianostrong/side.svg",
  12200. extra: 6106 / 5730
  12201. }
  12202. },
  12203. back: {
  12204. height: math.unit(6, "feet"),
  12205. weight: math.unit(150, "lb"),
  12206. name: "Back",
  12207. image: {
  12208. source: "./media/characters/pianostrong/back.svg",
  12209. extra: 6085 / 5733,
  12210. bottom: 0.01
  12211. }
  12212. },
  12213. },
  12214. [
  12215. {
  12216. name: "Macro",
  12217. height: math.unit(100, "feet")
  12218. },
  12219. {
  12220. name: "Macro+",
  12221. height: math.unit(300, "feet"),
  12222. default: true
  12223. },
  12224. {
  12225. name: "Macro++",
  12226. height: math.unit(1000, "feet")
  12227. },
  12228. ]
  12229. ))
  12230. characterMakers.push(() => makeCharacter(
  12231. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12232. {
  12233. front: {
  12234. height: math.unit(6, "feet"),
  12235. weight: math.unit(150, "lb"),
  12236. name: "Front",
  12237. image: {
  12238. source: "./media/characters/kona/front.svg",
  12239. extra: 2960 / 2629,
  12240. bottom: 0.005
  12241. }
  12242. },
  12243. },
  12244. [
  12245. {
  12246. name: "Normal",
  12247. height: math.unit(11 + 8 / 12, "feet")
  12248. },
  12249. {
  12250. name: "Macro",
  12251. height: math.unit(850, "feet"),
  12252. default: true
  12253. },
  12254. {
  12255. name: "Macro+",
  12256. height: math.unit(1.5, "km"),
  12257. default: true
  12258. },
  12259. {
  12260. name: "Megamacro",
  12261. height: math.unit(80, "miles")
  12262. },
  12263. {
  12264. name: "Gigamacro",
  12265. height: math.unit(3500, "miles")
  12266. },
  12267. ]
  12268. ))
  12269. characterMakers.push(() => makeCharacter(
  12270. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12271. {
  12272. side: {
  12273. height: math.unit(1.9, "meters"),
  12274. weight: math.unit(326, "kg"),
  12275. name: "Side",
  12276. image: {
  12277. source: "./media/characters/levi/side.svg",
  12278. extra: 1704 / 1334,
  12279. bottom: 0.02
  12280. }
  12281. },
  12282. },
  12283. [
  12284. {
  12285. name: "Normal",
  12286. height: math.unit(1.9, "meters"),
  12287. default: true
  12288. },
  12289. {
  12290. name: "Macro",
  12291. height: math.unit(20, "meters")
  12292. },
  12293. {
  12294. name: "Macro+",
  12295. height: math.unit(200, "meters")
  12296. },
  12297. {
  12298. name: "Megamacro",
  12299. height: math.unit(2, "km")
  12300. },
  12301. {
  12302. name: "Megamacro+",
  12303. height: math.unit(20, "km")
  12304. },
  12305. {
  12306. name: "Gigamacro",
  12307. height: math.unit(2500, "km")
  12308. },
  12309. {
  12310. name: "Gigamacro+",
  12311. height: math.unit(120000, "km")
  12312. },
  12313. {
  12314. name: "Teramacro",
  12315. height: math.unit(7.77e6, "km")
  12316. },
  12317. ]
  12318. ))
  12319. characterMakers.push(() => makeCharacter(
  12320. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12321. {
  12322. front: {
  12323. height: math.unit(6 + 4/12, "feet"),
  12324. weight: math.unit(190, "lb"),
  12325. name: "Front",
  12326. image: {
  12327. source: "./media/characters/bmc/front.svg",
  12328. extra: 1626/1472,
  12329. bottom: 79/1705
  12330. }
  12331. },
  12332. back: {
  12333. height: math.unit(6 + 4/12, "feet"),
  12334. weight: math.unit(190, "lb"),
  12335. name: "Back",
  12336. image: {
  12337. source: "./media/characters/bmc/back.svg",
  12338. extra: 1640/1479,
  12339. bottom: 45/1685
  12340. }
  12341. },
  12342. frontArmor: {
  12343. height: math.unit(6 + 4/12, "feet"),
  12344. weight: math.unit(190, "lb"),
  12345. name: "Front-armor",
  12346. image: {
  12347. source: "./media/characters/bmc/front-armor.svg",
  12348. extra: 1538/1468,
  12349. bottom: 79/1617
  12350. }
  12351. },
  12352. },
  12353. [
  12354. {
  12355. name: "Human-sized",
  12356. height: math.unit(6 + 4 / 12, "feet")
  12357. },
  12358. {
  12359. name: "Interactive Size",
  12360. height: math.unit(25, "feet")
  12361. },
  12362. {
  12363. name: "Small",
  12364. height: math.unit(250, "feet")
  12365. },
  12366. {
  12367. name: "Normal",
  12368. height: math.unit(1250, "feet"),
  12369. default: true
  12370. },
  12371. {
  12372. name: "Good Day",
  12373. height: math.unit(88, "miles")
  12374. },
  12375. {
  12376. name: "Largest Measured Size",
  12377. height: math.unit(105.960, "galaxies")
  12378. },
  12379. ]
  12380. ))
  12381. characterMakers.push(() => makeCharacter(
  12382. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12383. {
  12384. front: {
  12385. height: math.unit(20, "feet"),
  12386. weight: math.unit(2016, "kg"),
  12387. name: "Front",
  12388. image: {
  12389. source: "./media/characters/sven-the-kaiju/front.svg",
  12390. extra: 1277/1250,
  12391. bottom: 35/1312
  12392. }
  12393. },
  12394. mouth: {
  12395. height: math.unit(1.85, "feet"),
  12396. name: "Mouth",
  12397. image: {
  12398. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12399. }
  12400. },
  12401. },
  12402. [
  12403. {
  12404. name: "Fairy",
  12405. height: math.unit(6, "inches")
  12406. },
  12407. {
  12408. name: "Normal",
  12409. height: math.unit(20, "feet"),
  12410. default: true
  12411. },
  12412. {
  12413. name: "Rampage",
  12414. height: math.unit(200, "feet")
  12415. },
  12416. {
  12417. name: "Archfey Forest Guardian",
  12418. height: math.unit(1, "mile")
  12419. },
  12420. ]
  12421. ))
  12422. characterMakers.push(() => makeCharacter(
  12423. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12424. {
  12425. front: {
  12426. height: math.unit(4, "meters"),
  12427. weight: math.unit(2, "tons"),
  12428. name: "Front",
  12429. image: {
  12430. source: "./media/characters/marik/front.svg",
  12431. extra: 1057 / 1003,
  12432. bottom: 0.08
  12433. }
  12434. },
  12435. },
  12436. [
  12437. {
  12438. name: "Normal",
  12439. height: math.unit(4, "meters"),
  12440. default: true
  12441. },
  12442. {
  12443. name: "Macro",
  12444. height: math.unit(20, "meters")
  12445. },
  12446. {
  12447. name: "Megamacro",
  12448. height: math.unit(50, "km")
  12449. },
  12450. {
  12451. name: "Gigamacro",
  12452. height: math.unit(100, "km")
  12453. },
  12454. {
  12455. name: "Alpha Macro",
  12456. height: math.unit(7.88e7, "yottameters")
  12457. },
  12458. ]
  12459. ))
  12460. characterMakers.push(() => makeCharacter(
  12461. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12462. {
  12463. front: {
  12464. height: math.unit(6, "feet"),
  12465. weight: math.unit(110, "lb"),
  12466. name: "Front",
  12467. image: {
  12468. source: "./media/characters/mel/front.svg",
  12469. extra: 736 / 617,
  12470. bottom: 0.017
  12471. }
  12472. },
  12473. },
  12474. [
  12475. {
  12476. name: "Pico",
  12477. height: math.unit(3, "pm")
  12478. },
  12479. {
  12480. name: "Nano",
  12481. height: math.unit(3, "nm")
  12482. },
  12483. {
  12484. name: "Micro",
  12485. height: math.unit(0.3, "mm"),
  12486. default: true
  12487. },
  12488. {
  12489. name: "Micro+",
  12490. height: math.unit(3, "mm")
  12491. },
  12492. {
  12493. name: "Normal",
  12494. height: math.unit(5 + 10.5 / 12, "feet")
  12495. },
  12496. ]
  12497. ))
  12498. characterMakers.push(() => makeCharacter(
  12499. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12500. {
  12501. kaiju: {
  12502. height: math.unit(1.75, "meters"),
  12503. weight: math.unit(55, "kg"),
  12504. name: "Kaiju",
  12505. image: {
  12506. source: "./media/characters/lykonous/kaiju.svg",
  12507. extra: 1055 / 946,
  12508. bottom: 0.135
  12509. }
  12510. },
  12511. },
  12512. [
  12513. {
  12514. name: "Normal",
  12515. height: math.unit(2.5, "meters"),
  12516. default: true
  12517. },
  12518. {
  12519. name: "Kaiju Dragon",
  12520. height: math.unit(60, "meters")
  12521. },
  12522. {
  12523. name: "Mega Kaiju",
  12524. height: math.unit(120, "km")
  12525. },
  12526. {
  12527. name: "Giga Kaiju",
  12528. height: math.unit(200, "megameters")
  12529. },
  12530. {
  12531. name: "Terra Kaiju",
  12532. height: math.unit(400, "gigameters")
  12533. },
  12534. {
  12535. name: "Kaiju Dragon God",
  12536. height: math.unit(13000, "exaparsecs")
  12537. },
  12538. ]
  12539. ))
  12540. characterMakers.push(() => makeCharacter(
  12541. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12542. {
  12543. front: {
  12544. height: math.unit(6, "feet"),
  12545. weight: math.unit(150, "lb"),
  12546. name: "Front",
  12547. image: {
  12548. source: "./media/characters/blü/front.svg",
  12549. extra: 1883 / 1564,
  12550. bottom: 0.031
  12551. }
  12552. },
  12553. },
  12554. [
  12555. {
  12556. name: "Normal",
  12557. height: math.unit(13, "feet"),
  12558. default: true
  12559. },
  12560. {
  12561. name: "Big Boi",
  12562. height: math.unit(150, "meters")
  12563. },
  12564. {
  12565. name: "Mini Stomper",
  12566. height: math.unit(300, "meters")
  12567. },
  12568. {
  12569. name: "Macro",
  12570. height: math.unit(1000, "meters")
  12571. },
  12572. {
  12573. name: "Megamacro",
  12574. height: math.unit(11000, "meters")
  12575. },
  12576. {
  12577. name: "Gigamacro",
  12578. height: math.unit(11000, "km")
  12579. },
  12580. {
  12581. name: "Teramacro",
  12582. height: math.unit(420000, "km")
  12583. },
  12584. {
  12585. name: "Examacro",
  12586. height: math.unit(120, "parsecs")
  12587. },
  12588. {
  12589. name: "God Tho",
  12590. height: math.unit(98000000000, "parsecs")
  12591. },
  12592. ]
  12593. ))
  12594. characterMakers.push(() => makeCharacter(
  12595. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12596. {
  12597. taurFront: {
  12598. height: math.unit(6, "feet"),
  12599. weight: math.unit(200, "lb"),
  12600. name: "Taur (Front)",
  12601. image: {
  12602. source: "./media/characters/scales/taur-front.svg",
  12603. extra: 1,
  12604. bottom: 0.05
  12605. }
  12606. },
  12607. taurBack: {
  12608. height: math.unit(6, "feet"),
  12609. weight: math.unit(200, "lb"),
  12610. name: "Taur (Back)",
  12611. image: {
  12612. source: "./media/characters/scales/taur-back.svg",
  12613. extra: 1,
  12614. bottom: 0.08
  12615. }
  12616. },
  12617. anthro: {
  12618. height: math.unit(6 * 7 / 12, "feet"),
  12619. weight: math.unit(100, "lb"),
  12620. name: "Anthro",
  12621. image: {
  12622. source: "./media/characters/scales/anthro.svg",
  12623. extra: 1,
  12624. bottom: 0.06
  12625. }
  12626. },
  12627. },
  12628. [
  12629. {
  12630. name: "Normal",
  12631. height: math.unit(12, "feet"),
  12632. default: true
  12633. },
  12634. ]
  12635. ))
  12636. characterMakers.push(() => makeCharacter(
  12637. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12638. {
  12639. front: {
  12640. height: math.unit(6, "feet"),
  12641. weight: math.unit(150, "lb"),
  12642. name: "Front",
  12643. image: {
  12644. source: "./media/characters/koragos/front.svg",
  12645. extra: 841 / 794,
  12646. bottom: 0.035
  12647. }
  12648. },
  12649. back: {
  12650. height: math.unit(6, "feet"),
  12651. weight: math.unit(150, "lb"),
  12652. name: "Back",
  12653. image: {
  12654. source: "./media/characters/koragos/back.svg",
  12655. extra: 841 / 810,
  12656. bottom: 0.022
  12657. }
  12658. },
  12659. },
  12660. [
  12661. {
  12662. name: "Normal",
  12663. height: math.unit(6 + 11 / 12, "feet"),
  12664. default: true
  12665. },
  12666. {
  12667. name: "Macro",
  12668. height: math.unit(490, "feet")
  12669. },
  12670. {
  12671. name: "Megamacro",
  12672. height: math.unit(10, "miles")
  12673. },
  12674. {
  12675. name: "Gigamacro",
  12676. height: math.unit(50, "miles")
  12677. },
  12678. ]
  12679. ))
  12680. characterMakers.push(() => makeCharacter(
  12681. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12682. {
  12683. front: {
  12684. height: math.unit(6, "feet"),
  12685. weight: math.unit(250, "lb"),
  12686. name: "Front",
  12687. image: {
  12688. source: "./media/characters/xylrem/front.svg",
  12689. extra: 3323 / 3050,
  12690. bottom: 0.065
  12691. }
  12692. },
  12693. },
  12694. [
  12695. {
  12696. name: "Micro",
  12697. height: math.unit(4, "feet")
  12698. },
  12699. {
  12700. name: "Normal",
  12701. height: math.unit(16, "feet"),
  12702. default: true
  12703. },
  12704. {
  12705. name: "Macro",
  12706. height: math.unit(2720, "feet")
  12707. },
  12708. {
  12709. name: "Megamacro",
  12710. height: math.unit(25000, "miles")
  12711. },
  12712. ]
  12713. ))
  12714. characterMakers.push(() => makeCharacter(
  12715. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12716. {
  12717. front: {
  12718. height: math.unit(8, "feet"),
  12719. weight: math.unit(250, "kg"),
  12720. name: "Front",
  12721. image: {
  12722. source: "./media/characters/ikideru/front.svg",
  12723. extra: 930 / 870,
  12724. bottom: 0.087
  12725. }
  12726. },
  12727. back: {
  12728. height: math.unit(8, "feet"),
  12729. weight: math.unit(250, "kg"),
  12730. name: "Back",
  12731. image: {
  12732. source: "./media/characters/ikideru/back.svg",
  12733. extra: 919 / 852,
  12734. bottom: 0.055
  12735. }
  12736. },
  12737. },
  12738. [
  12739. {
  12740. name: "Rare",
  12741. height: math.unit(8, "feet"),
  12742. default: true
  12743. },
  12744. {
  12745. name: "Playful Loom",
  12746. height: math.unit(80, "feet")
  12747. },
  12748. {
  12749. name: "City Leaner",
  12750. height: math.unit(230, "feet")
  12751. },
  12752. {
  12753. name: "Megamacro",
  12754. height: math.unit(2500, "feet")
  12755. },
  12756. {
  12757. name: "Gigamacro",
  12758. height: math.unit(26400, "feet")
  12759. },
  12760. {
  12761. name: "Tectonic Shifter",
  12762. height: math.unit(1.7, "megameters")
  12763. },
  12764. {
  12765. name: "Planet Carer",
  12766. height: math.unit(21, "megameters")
  12767. },
  12768. {
  12769. name: "God",
  12770. height: math.unit(11157.22, "parsecs")
  12771. },
  12772. ]
  12773. ))
  12774. characterMakers.push(() => makeCharacter(
  12775. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12776. {
  12777. front: {
  12778. height: math.unit(6, "feet"),
  12779. weight: math.unit(120, "lb"),
  12780. name: "Front",
  12781. image: {
  12782. source: "./media/characters/neo/front.svg"
  12783. }
  12784. },
  12785. },
  12786. [
  12787. {
  12788. name: "Micro",
  12789. height: math.unit(2, "inches"),
  12790. default: true
  12791. },
  12792. {
  12793. name: "Human Size",
  12794. height: math.unit(5 + 8 / 12, "feet")
  12795. },
  12796. ]
  12797. ))
  12798. characterMakers.push(() => makeCharacter(
  12799. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12800. {
  12801. front: {
  12802. height: math.unit(13 + 10 / 12, "feet"),
  12803. weight: math.unit(5320, "lb"),
  12804. name: "Front",
  12805. image: {
  12806. source: "./media/characters/chauncey-chantz/front.svg",
  12807. extra: 1587 / 1435,
  12808. bottom: 0.02
  12809. }
  12810. },
  12811. },
  12812. [
  12813. {
  12814. name: "Normal",
  12815. height: math.unit(13 + 10 / 12, "feet"),
  12816. default: true
  12817. },
  12818. {
  12819. name: "Macro",
  12820. height: math.unit(45, "feet")
  12821. },
  12822. {
  12823. name: "Megamacro",
  12824. height: math.unit(250, "miles")
  12825. },
  12826. {
  12827. name: "Planetary",
  12828. height: math.unit(10000, "miles")
  12829. },
  12830. {
  12831. name: "Galactic",
  12832. height: math.unit(40000, "parsecs")
  12833. },
  12834. {
  12835. name: "Universal",
  12836. height: math.unit(1, "yottameter")
  12837. },
  12838. ]
  12839. ))
  12840. characterMakers.push(() => makeCharacter(
  12841. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12842. {
  12843. front: {
  12844. height: math.unit(6, "feet"),
  12845. weight: math.unit(150, "lb"),
  12846. name: "Front",
  12847. image: {
  12848. source: "./media/characters/epifox/front.svg",
  12849. extra: 1,
  12850. bottom: 0.075
  12851. }
  12852. },
  12853. },
  12854. [
  12855. {
  12856. name: "Micro",
  12857. height: math.unit(6, "inches")
  12858. },
  12859. {
  12860. name: "Normal",
  12861. height: math.unit(12, "feet"),
  12862. default: true
  12863. },
  12864. {
  12865. name: "Macro",
  12866. height: math.unit(3810, "feet")
  12867. },
  12868. {
  12869. name: "Megamacro",
  12870. height: math.unit(500, "miles")
  12871. },
  12872. ]
  12873. ))
  12874. characterMakers.push(() => makeCharacter(
  12875. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12876. {
  12877. front: {
  12878. height: math.unit(1.8796, "m"),
  12879. weight: math.unit(230, "lb"),
  12880. name: "Front",
  12881. image: {
  12882. source: "./media/characters/colin-t/front.svg",
  12883. extra: 1272 / 1193,
  12884. bottom: 0.07
  12885. }
  12886. },
  12887. },
  12888. [
  12889. {
  12890. name: "Micro",
  12891. height: math.unit(0.571, "meters")
  12892. },
  12893. {
  12894. name: "Normal",
  12895. height: math.unit(1.8796, "meters"),
  12896. default: true
  12897. },
  12898. {
  12899. name: "Tall",
  12900. height: math.unit(4, "meters")
  12901. },
  12902. {
  12903. name: "Macro",
  12904. height: math.unit(67.241, "meters")
  12905. },
  12906. {
  12907. name: "Megamacro",
  12908. height: math.unit(371.856, "meters")
  12909. },
  12910. {
  12911. name: "Planetary",
  12912. height: math.unit(12631.5689, "km")
  12913. },
  12914. ]
  12915. ))
  12916. characterMakers.push(() => makeCharacter(
  12917. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12918. {
  12919. front: {
  12920. height: math.unit(1.85, "meters"),
  12921. weight: math.unit(80, "kg"),
  12922. name: "Front",
  12923. image: {
  12924. source: "./media/characters/matvei/front.svg",
  12925. extra: 614 / 594,
  12926. bottom: 0.01
  12927. }
  12928. },
  12929. },
  12930. [
  12931. {
  12932. name: "Normal",
  12933. height: math.unit(1.85, "meters"),
  12934. default: true
  12935. },
  12936. ]
  12937. ))
  12938. characterMakers.push(() => makeCharacter(
  12939. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12940. {
  12941. front: {
  12942. height: math.unit(5 + 9 / 12, "feet"),
  12943. weight: math.unit(70, "lb"),
  12944. name: "Front",
  12945. image: {
  12946. source: "./media/characters/quincy/front.svg",
  12947. extra: 3041 / 2751
  12948. }
  12949. },
  12950. back: {
  12951. height: math.unit(5 + 9 / 12, "feet"),
  12952. weight: math.unit(70, "lb"),
  12953. name: "Back",
  12954. image: {
  12955. source: "./media/characters/quincy/back.svg",
  12956. extra: 3041 / 2751
  12957. }
  12958. },
  12959. flying: {
  12960. height: math.unit(5 + 4 / 12, "feet"),
  12961. weight: math.unit(70, "lb"),
  12962. name: "Flying",
  12963. image: {
  12964. source: "./media/characters/quincy/flying.svg",
  12965. extra: 1044 / 930
  12966. }
  12967. },
  12968. },
  12969. [
  12970. {
  12971. name: "Micro",
  12972. height: math.unit(3, "cm")
  12973. },
  12974. {
  12975. name: "Normal",
  12976. height: math.unit(5 + 9 / 12, "feet")
  12977. },
  12978. {
  12979. name: "Macro",
  12980. height: math.unit(200, "meters"),
  12981. default: true
  12982. },
  12983. {
  12984. name: "Megamacro",
  12985. height: math.unit(1000, "meters")
  12986. },
  12987. ]
  12988. ))
  12989. characterMakers.push(() => makeCharacter(
  12990. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12991. {
  12992. front: {
  12993. height: math.unit(3 + 11/12, "feet"),
  12994. weight: math.unit(50, "lb"),
  12995. name: "Front",
  12996. image: {
  12997. source: "./media/characters/vanrel/front.svg",
  12998. extra: 1104/949,
  12999. bottom: 52/1156
  13000. }
  13001. },
  13002. back: {
  13003. height: math.unit(3 + 11/12, "feet"),
  13004. weight: math.unit(50, "lb"),
  13005. name: "Back",
  13006. image: {
  13007. source: "./media/characters/vanrel/back.svg",
  13008. extra: 1119/976,
  13009. bottom: 37/1156
  13010. }
  13011. },
  13012. tome: {
  13013. height: math.unit(1.35, "feet"),
  13014. weight: math.unit(10, "lb"),
  13015. name: "Vanrel's Tome",
  13016. rename: true,
  13017. image: {
  13018. source: "./media/characters/vanrel/tome.svg"
  13019. }
  13020. },
  13021. beans: {
  13022. height: math.unit(0.89, "feet"),
  13023. name: "Beans",
  13024. image: {
  13025. source: "./media/characters/vanrel/beans.svg"
  13026. }
  13027. },
  13028. },
  13029. [
  13030. {
  13031. name: "Normal",
  13032. height: math.unit(3 + 11/12, "feet"),
  13033. default: true
  13034. },
  13035. ]
  13036. ))
  13037. characterMakers.push(() => makeCharacter(
  13038. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13039. {
  13040. front: {
  13041. height: math.unit(7 + 5 / 12, "feet"),
  13042. name: "Front",
  13043. image: {
  13044. source: "./media/characters/kuiper-vanrel/front.svg",
  13045. extra: 1219/1169,
  13046. bottom: 69/1288
  13047. }
  13048. },
  13049. back: {
  13050. height: math.unit(7 + 5 / 12, "feet"),
  13051. name: "Back",
  13052. image: {
  13053. source: "./media/characters/kuiper-vanrel/back.svg",
  13054. extra: 1236/1193,
  13055. bottom: 27/1263
  13056. }
  13057. },
  13058. foot: {
  13059. height: math.unit(0.55, "meters"),
  13060. name: "Foot",
  13061. image: {
  13062. source: "./media/characters/kuiper-vanrel/foot.svg",
  13063. }
  13064. },
  13065. battle: {
  13066. height: math.unit(6.824, "feet"),
  13067. name: "Battle",
  13068. image: {
  13069. source: "./media/characters/kuiper-vanrel/battle.svg",
  13070. extra: 1466 / 1327,
  13071. bottom: 29 / 1492.5
  13072. }
  13073. },
  13074. meerkui: {
  13075. height: math.unit(18, "inches"),
  13076. name: "Meerkui",
  13077. image: {
  13078. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13079. extra: 1354/1289,
  13080. bottom: 69/1423
  13081. }
  13082. },
  13083. },
  13084. [
  13085. {
  13086. name: "Normal",
  13087. height: math.unit(7 + 5 / 12, "feet"),
  13088. default: true
  13089. },
  13090. ]
  13091. ))
  13092. characterMakers.push(() => makeCharacter(
  13093. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13094. {
  13095. front: {
  13096. height: math.unit(8 + 5 / 12, "feet"),
  13097. name: "Front",
  13098. image: {
  13099. source: "./media/characters/keset-vanrel/front.svg",
  13100. extra: 1231/1148,
  13101. bottom: 82/1313
  13102. }
  13103. },
  13104. back: {
  13105. height: math.unit(8 + 5 / 12, "feet"),
  13106. name: "Back",
  13107. image: {
  13108. source: "./media/characters/keset-vanrel/back.svg",
  13109. extra: 1240/1174,
  13110. bottom: 33/1273
  13111. }
  13112. },
  13113. hand: {
  13114. height: math.unit(0.6, "meters"),
  13115. name: "Hand",
  13116. image: {
  13117. source: "./media/characters/keset-vanrel/hand.svg"
  13118. }
  13119. },
  13120. foot: {
  13121. height: math.unit(0.94978, "meters"),
  13122. name: "Foot",
  13123. image: {
  13124. source: "./media/characters/keset-vanrel/foot.svg"
  13125. }
  13126. },
  13127. battle: {
  13128. height: math.unit(7.408, "feet"),
  13129. name: "Battle",
  13130. image: {
  13131. source: "./media/characters/keset-vanrel/battle.svg",
  13132. extra: 1890 / 1386,
  13133. bottom: 73.28 / 1970
  13134. }
  13135. },
  13136. },
  13137. [
  13138. {
  13139. name: "Normal",
  13140. height: math.unit(8 + 5 / 12, "feet"),
  13141. default: true
  13142. },
  13143. ]
  13144. ))
  13145. characterMakers.push(() => makeCharacter(
  13146. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13147. {
  13148. front: {
  13149. height: math.unit(6, "feet"),
  13150. weight: math.unit(150, "lb"),
  13151. name: "Front",
  13152. image: {
  13153. source: "./media/characters/neos/front.svg",
  13154. extra: 1696 / 992,
  13155. bottom: 0.14
  13156. }
  13157. },
  13158. },
  13159. [
  13160. {
  13161. name: "Normal",
  13162. height: math.unit(54, "cm"),
  13163. default: true
  13164. },
  13165. {
  13166. name: "Macro",
  13167. height: math.unit(100, "m")
  13168. },
  13169. {
  13170. name: "Megamacro",
  13171. height: math.unit(10, "km")
  13172. },
  13173. {
  13174. name: "Megamacro+",
  13175. height: math.unit(100, "km")
  13176. },
  13177. {
  13178. name: "Gigamacro",
  13179. height: math.unit(100, "Mm")
  13180. },
  13181. {
  13182. name: "Teramacro",
  13183. height: math.unit(100, "Gm")
  13184. },
  13185. {
  13186. name: "Examacro",
  13187. height: math.unit(100, "Em")
  13188. },
  13189. {
  13190. name: "Godly",
  13191. height: math.unit(10000, "Ym")
  13192. },
  13193. {
  13194. name: "Beyond Godly",
  13195. height: math.unit(25, "multiverses")
  13196. },
  13197. ]
  13198. ))
  13199. characterMakers.push(() => makeCharacter(
  13200. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13201. {
  13202. feminine: {
  13203. height: math.unit(5, "feet"),
  13204. weight: math.unit(100, "lb"),
  13205. name: "Feminine",
  13206. image: {
  13207. source: "./media/characters/sammy-mouse/feminine.svg",
  13208. extra: 2526 / 2425,
  13209. bottom: 0.123
  13210. }
  13211. },
  13212. masculine: {
  13213. height: math.unit(5, "feet"),
  13214. weight: math.unit(100, "lb"),
  13215. name: "Masculine",
  13216. image: {
  13217. source: "./media/characters/sammy-mouse/masculine.svg",
  13218. extra: 2526 / 2425,
  13219. bottom: 0.123
  13220. }
  13221. },
  13222. },
  13223. [
  13224. {
  13225. name: "Micro",
  13226. height: math.unit(5, "inches")
  13227. },
  13228. {
  13229. name: "Normal",
  13230. height: math.unit(5, "feet"),
  13231. default: true
  13232. },
  13233. {
  13234. name: "Macro",
  13235. height: math.unit(60, "feet")
  13236. },
  13237. ]
  13238. ))
  13239. characterMakers.push(() => makeCharacter(
  13240. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13241. {
  13242. front: {
  13243. height: math.unit(4, "feet"),
  13244. weight: math.unit(50, "lb"),
  13245. name: "Front",
  13246. image: {
  13247. source: "./media/characters/kole/front.svg",
  13248. extra: 1423 / 1303,
  13249. bottom: 0.025
  13250. }
  13251. },
  13252. back: {
  13253. height: math.unit(4, "feet"),
  13254. weight: math.unit(50, "lb"),
  13255. name: "Back",
  13256. image: {
  13257. source: "./media/characters/kole/back.svg",
  13258. extra: 1426 / 1280,
  13259. bottom: 0.02
  13260. }
  13261. },
  13262. },
  13263. [
  13264. {
  13265. name: "Normal",
  13266. height: math.unit(4, "feet"),
  13267. default: true
  13268. },
  13269. ]
  13270. ))
  13271. characterMakers.push(() => makeCharacter(
  13272. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13273. {
  13274. front: {
  13275. height: math.unit(2.5, "feet"),
  13276. weight: math.unit(32, "lb"),
  13277. name: "Front",
  13278. image: {
  13279. source: "./media/characters/rufran/front.svg",
  13280. extra: 1313/885,
  13281. bottom: 94/1407
  13282. }
  13283. },
  13284. side: {
  13285. height: math.unit(2.5, "feet"),
  13286. weight: math.unit(32, "lb"),
  13287. name: "Side",
  13288. image: {
  13289. source: "./media/characters/rufran/side.svg",
  13290. extra: 1109/852,
  13291. bottom: 118/1227
  13292. }
  13293. },
  13294. back: {
  13295. height: math.unit(2.5, "feet"),
  13296. weight: math.unit(32, "lb"),
  13297. name: "Back",
  13298. image: {
  13299. source: "./media/characters/rufran/back.svg",
  13300. extra: 1280/878,
  13301. bottom: 131/1411
  13302. }
  13303. },
  13304. mouth: {
  13305. height: math.unit(1.13, "feet"),
  13306. name: "Mouth",
  13307. image: {
  13308. source: "./media/characters/rufran/mouth.svg"
  13309. }
  13310. },
  13311. foot: {
  13312. height: math.unit(1.33, "feet"),
  13313. name: "Foot",
  13314. image: {
  13315. source: "./media/characters/rufran/foot.svg"
  13316. }
  13317. },
  13318. koboldFront: {
  13319. height: math.unit(2 + 6 / 12, "feet"),
  13320. weight: math.unit(20, "lb"),
  13321. name: "Front (Kobold)",
  13322. image: {
  13323. source: "./media/characters/rufran/kobold-front.svg",
  13324. extra: 2041 / 1839,
  13325. bottom: 0.055
  13326. }
  13327. },
  13328. koboldBack: {
  13329. height: math.unit(2 + 6 / 12, "feet"),
  13330. weight: math.unit(20, "lb"),
  13331. name: "Back (Kobold)",
  13332. image: {
  13333. source: "./media/characters/rufran/kobold-back.svg",
  13334. extra: 2054 / 1839,
  13335. bottom: 0.01
  13336. }
  13337. },
  13338. koboldHand: {
  13339. height: math.unit(0.2166, "meters"),
  13340. name: "Hand (Kobold)",
  13341. image: {
  13342. source: "./media/characters/rufran/kobold-hand.svg"
  13343. }
  13344. },
  13345. koboldFoot: {
  13346. height: math.unit(0.185, "meters"),
  13347. name: "Foot (Kobold)",
  13348. image: {
  13349. source: "./media/characters/rufran/kobold-foot.svg"
  13350. }
  13351. },
  13352. },
  13353. [
  13354. {
  13355. name: "Micro",
  13356. height: math.unit(1, "inch")
  13357. },
  13358. {
  13359. name: "Normal",
  13360. height: math.unit(2 + 6 / 12, "feet"),
  13361. default: true
  13362. },
  13363. {
  13364. name: "Big",
  13365. height: math.unit(60, "feet")
  13366. },
  13367. {
  13368. name: "Macro",
  13369. height: math.unit(325, "feet")
  13370. },
  13371. ]
  13372. ))
  13373. characterMakers.push(() => makeCharacter(
  13374. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13375. {
  13376. front: {
  13377. height: math.unit(0.3, "meters"),
  13378. weight: math.unit(3.5, "kg"),
  13379. name: "Front",
  13380. image: {
  13381. source: "./media/characters/chip/front.svg",
  13382. extra: 748 / 674
  13383. }
  13384. },
  13385. },
  13386. [
  13387. {
  13388. name: "Micro",
  13389. height: math.unit(1, "inch"),
  13390. default: true
  13391. },
  13392. ]
  13393. ))
  13394. characterMakers.push(() => makeCharacter(
  13395. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13396. {
  13397. side: {
  13398. height: math.unit(2.3, "meters"),
  13399. weight: math.unit(3500, "lb"),
  13400. name: "Side",
  13401. image: {
  13402. source: "./media/characters/torvid/side.svg",
  13403. extra: 1972 / 722,
  13404. bottom: 0.035
  13405. }
  13406. },
  13407. },
  13408. [
  13409. {
  13410. name: "Normal",
  13411. height: math.unit(2.3, "meters"),
  13412. default: true
  13413. },
  13414. ]
  13415. ))
  13416. characterMakers.push(() => makeCharacter(
  13417. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13418. {
  13419. front: {
  13420. height: math.unit(2, "meters"),
  13421. weight: math.unit(150.5, "kg"),
  13422. name: "Front",
  13423. image: {
  13424. source: "./media/characters/susan/front.svg",
  13425. extra: 693 / 635,
  13426. bottom: 0.05
  13427. }
  13428. },
  13429. },
  13430. [
  13431. {
  13432. name: "Megamacro",
  13433. height: math.unit(505, "miles"),
  13434. default: true
  13435. },
  13436. ]
  13437. ))
  13438. characterMakers.push(() => makeCharacter(
  13439. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13440. {
  13441. front: {
  13442. height: math.unit(6, "feet"),
  13443. weight: math.unit(150, "lb"),
  13444. name: "Front",
  13445. image: {
  13446. source: "./media/characters/raindrops/front.svg",
  13447. extra: 2655 / 2461,
  13448. bottom: 49 / 2705
  13449. }
  13450. },
  13451. back: {
  13452. height: math.unit(6, "feet"),
  13453. weight: math.unit(150, "lb"),
  13454. name: "Back",
  13455. image: {
  13456. source: "./media/characters/raindrops/back.svg",
  13457. extra: 2574 / 2400,
  13458. bottom: 65 / 2634
  13459. }
  13460. },
  13461. },
  13462. [
  13463. {
  13464. name: "Micro",
  13465. height: math.unit(6, "inches")
  13466. },
  13467. {
  13468. name: "Normal",
  13469. height: math.unit(6 + 2 / 12, "feet")
  13470. },
  13471. {
  13472. name: "Macro",
  13473. height: math.unit(131, "feet"),
  13474. default: true
  13475. },
  13476. {
  13477. name: "Megamacro",
  13478. height: math.unit(15, "miles")
  13479. },
  13480. {
  13481. name: "Gigamacro",
  13482. height: math.unit(4000, "miles")
  13483. },
  13484. {
  13485. name: "Teramacro",
  13486. height: math.unit(315000, "miles")
  13487. },
  13488. ]
  13489. ))
  13490. characterMakers.push(() => makeCharacter(
  13491. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13492. {
  13493. front: {
  13494. height: math.unit(2.794, "meters"),
  13495. weight: math.unit(325, "kg"),
  13496. name: "Front",
  13497. image: {
  13498. source: "./media/characters/tezwa/front.svg",
  13499. extra: 2083 / 1906,
  13500. bottom: 0.031
  13501. }
  13502. },
  13503. foot: {
  13504. height: math.unit(0.687, "meters"),
  13505. name: "Foot",
  13506. image: {
  13507. source: "./media/characters/tezwa/foot.svg"
  13508. }
  13509. },
  13510. },
  13511. [
  13512. {
  13513. name: "Normal",
  13514. height: math.unit(9 + 2 / 12, "feet"),
  13515. default: true
  13516. },
  13517. ]
  13518. ))
  13519. characterMakers.push(() => makeCharacter(
  13520. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13521. {
  13522. front: {
  13523. height: math.unit(58, "feet"),
  13524. weight: math.unit(89000, "lb"),
  13525. name: "Front",
  13526. image: {
  13527. source: "./media/characters/typhus/front.svg",
  13528. extra: 816 / 800,
  13529. bottom: 0.065
  13530. }
  13531. },
  13532. },
  13533. [
  13534. {
  13535. name: "Macro",
  13536. height: math.unit(58, "feet"),
  13537. default: true
  13538. },
  13539. ]
  13540. ))
  13541. characterMakers.push(() => makeCharacter(
  13542. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13543. {
  13544. front: {
  13545. height: math.unit(12, "feet"),
  13546. weight: math.unit(6, "tonnes"),
  13547. name: "Front",
  13548. image: {
  13549. source: "./media/characters/lyra-von-wulf/front.svg",
  13550. extra: 1,
  13551. bottom: 0.10
  13552. }
  13553. },
  13554. frontMecha: {
  13555. height: math.unit(12, "feet"),
  13556. weight: math.unit(12, "tonnes"),
  13557. name: "Front (Mecha)",
  13558. image: {
  13559. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13560. extra: 1,
  13561. bottom: 0.042
  13562. }
  13563. },
  13564. maw: {
  13565. height: math.unit(2.2, "feet"),
  13566. name: "Maw",
  13567. image: {
  13568. source: "./media/characters/lyra-von-wulf/maw.svg"
  13569. }
  13570. },
  13571. },
  13572. [
  13573. {
  13574. name: "Normal",
  13575. height: math.unit(12, "feet"),
  13576. default: true
  13577. },
  13578. {
  13579. name: "Classic",
  13580. height: math.unit(50, "feet")
  13581. },
  13582. {
  13583. name: "Macro",
  13584. height: math.unit(500, "feet")
  13585. },
  13586. {
  13587. name: "Megamacro",
  13588. height: math.unit(1, "mile")
  13589. },
  13590. {
  13591. name: "Gigamacro",
  13592. height: math.unit(400, "miles")
  13593. },
  13594. {
  13595. name: "Teramacro",
  13596. height: math.unit(22000, "miles")
  13597. },
  13598. {
  13599. name: "Solarmacro",
  13600. height: math.unit(8600000, "miles")
  13601. },
  13602. {
  13603. name: "Galactic",
  13604. height: math.unit(1057000, "lightyears")
  13605. },
  13606. ]
  13607. ))
  13608. characterMakers.push(() => makeCharacter(
  13609. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13610. {
  13611. front: {
  13612. height: math.unit(6 + 10 / 12, "feet"),
  13613. weight: math.unit(150, "lb"),
  13614. name: "Front",
  13615. image: {
  13616. source: "./media/characters/dixon/front.svg",
  13617. extra: 3361 / 3209,
  13618. bottom: 0.01
  13619. }
  13620. },
  13621. },
  13622. [
  13623. {
  13624. name: "Normal",
  13625. height: math.unit(6 + 10 / 12, "feet"),
  13626. default: true
  13627. },
  13628. {
  13629. name: "Big",
  13630. height: math.unit(12, "meters")
  13631. },
  13632. {
  13633. name: "Macro",
  13634. height: math.unit(500, "meters")
  13635. },
  13636. {
  13637. name: "Megamacro",
  13638. height: math.unit(2, "km")
  13639. },
  13640. ]
  13641. ))
  13642. characterMakers.push(() => makeCharacter(
  13643. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13644. {
  13645. front: {
  13646. height: math.unit(185, "cm"),
  13647. weight: math.unit(68, "kg"),
  13648. name: "Front",
  13649. image: {
  13650. source: "./media/characters/kauko/front.svg",
  13651. extra: 1455 / 1421,
  13652. bottom: 0.03
  13653. }
  13654. },
  13655. back: {
  13656. height: math.unit(185, "cm"),
  13657. weight: math.unit(68, "kg"),
  13658. name: "Back",
  13659. image: {
  13660. source: "./media/characters/kauko/back.svg",
  13661. extra: 1455 / 1421,
  13662. bottom: 0.004
  13663. }
  13664. },
  13665. },
  13666. [
  13667. {
  13668. name: "Normal",
  13669. height: math.unit(185, "cm"),
  13670. default: true
  13671. },
  13672. ]
  13673. ))
  13674. characterMakers.push(() => makeCharacter(
  13675. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13676. {
  13677. front: {
  13678. height: math.unit(6, "feet"),
  13679. weight: math.unit(150, "kg"),
  13680. name: "Front",
  13681. image: {
  13682. source: "./media/characters/varg/front.svg",
  13683. extra: 1108 / 1018,
  13684. bottom: 0.0375
  13685. }
  13686. },
  13687. },
  13688. [
  13689. {
  13690. name: "Normal",
  13691. height: math.unit(5, "meters")
  13692. },
  13693. {
  13694. name: "Macro",
  13695. height: math.unit(200, "meters")
  13696. },
  13697. {
  13698. name: "Megamacro",
  13699. height: math.unit(20, "kilometers")
  13700. },
  13701. {
  13702. name: "True Size",
  13703. height: math.unit(211, "km"),
  13704. default: true
  13705. },
  13706. {
  13707. name: "Gigamacro",
  13708. height: math.unit(1000, "km")
  13709. },
  13710. {
  13711. name: "Gigamacro+",
  13712. height: math.unit(8000, "km")
  13713. },
  13714. {
  13715. name: "Teramacro",
  13716. height: math.unit(1000000, "km")
  13717. },
  13718. ]
  13719. ))
  13720. characterMakers.push(() => makeCharacter(
  13721. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13722. {
  13723. front: {
  13724. height: math.unit(7 + 7 / 12, "feet"),
  13725. weight: math.unit(267, "lb"),
  13726. name: "Front",
  13727. image: {
  13728. source: "./media/characters/dayza/front.svg",
  13729. extra: 1262 / 1200,
  13730. bottom: 0.035
  13731. }
  13732. },
  13733. side: {
  13734. height: math.unit(7 + 7 / 12, "feet"),
  13735. weight: math.unit(267, "lb"),
  13736. name: "Side",
  13737. image: {
  13738. source: "./media/characters/dayza/side.svg",
  13739. extra: 1295 / 1245,
  13740. bottom: 0.05
  13741. }
  13742. },
  13743. back: {
  13744. height: math.unit(7 + 7 / 12, "feet"),
  13745. weight: math.unit(267, "lb"),
  13746. name: "Back",
  13747. image: {
  13748. source: "./media/characters/dayza/back.svg",
  13749. extra: 1241 / 1170
  13750. }
  13751. },
  13752. },
  13753. [
  13754. {
  13755. name: "Normal",
  13756. height: math.unit(7 + 7 / 12, "feet"),
  13757. default: true
  13758. },
  13759. {
  13760. name: "Macro",
  13761. height: math.unit(155, "feet")
  13762. },
  13763. ]
  13764. ))
  13765. characterMakers.push(() => makeCharacter(
  13766. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13767. {
  13768. front: {
  13769. height: math.unit(6 + 5 / 12, "feet"),
  13770. weight: math.unit(160, "lb"),
  13771. name: "Front",
  13772. image: {
  13773. source: "./media/characters/xanthos/front.svg",
  13774. extra: 1,
  13775. bottom: 0.04
  13776. }
  13777. },
  13778. back: {
  13779. height: math.unit(6 + 5 / 12, "feet"),
  13780. weight: math.unit(160, "lb"),
  13781. name: "Back",
  13782. image: {
  13783. source: "./media/characters/xanthos/back.svg",
  13784. extra: 1,
  13785. bottom: 0.03
  13786. }
  13787. },
  13788. hand: {
  13789. height: math.unit(0.928, "feet"),
  13790. name: "Hand",
  13791. image: {
  13792. source: "./media/characters/xanthos/hand.svg"
  13793. }
  13794. },
  13795. foot: {
  13796. height: math.unit(1.286, "feet"),
  13797. name: "Foot",
  13798. image: {
  13799. source: "./media/characters/xanthos/foot.svg"
  13800. }
  13801. },
  13802. },
  13803. [
  13804. {
  13805. name: "Normal",
  13806. height: math.unit(6 + 5 / 12, "feet"),
  13807. default: true
  13808. },
  13809. {
  13810. name: "Normal+",
  13811. height: math.unit(6, "meters")
  13812. },
  13813. {
  13814. name: "Macro",
  13815. height: math.unit(40, "feet")
  13816. },
  13817. {
  13818. name: "Macro+",
  13819. height: math.unit(200, "meters")
  13820. },
  13821. {
  13822. name: "Megamacro",
  13823. height: math.unit(20, "km")
  13824. },
  13825. {
  13826. name: "Megamacro+",
  13827. height: math.unit(100, "km")
  13828. },
  13829. {
  13830. name: "Gigamacro",
  13831. height: math.unit(200, "megameters")
  13832. },
  13833. {
  13834. name: "Gigamacro+",
  13835. height: math.unit(1.5, "gigameters")
  13836. },
  13837. ]
  13838. ))
  13839. characterMakers.push(() => makeCharacter(
  13840. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13841. {
  13842. front: {
  13843. height: math.unit(6 + 3 / 12, "feet"),
  13844. weight: math.unit(215, "lb"),
  13845. name: "Front",
  13846. image: {
  13847. source: "./media/characters/grynn/front.svg",
  13848. extra: 4627 / 4209,
  13849. bottom: 0.047
  13850. }
  13851. },
  13852. },
  13853. [
  13854. {
  13855. name: "Micro",
  13856. height: math.unit(6, "inches")
  13857. },
  13858. {
  13859. name: "Normal",
  13860. height: math.unit(6 + 3 / 12, "feet"),
  13861. default: true
  13862. },
  13863. {
  13864. name: "Big",
  13865. height: math.unit(104, "feet")
  13866. },
  13867. {
  13868. name: "Macro",
  13869. height: math.unit(944, "feet")
  13870. },
  13871. {
  13872. name: "Macro+",
  13873. height: math.unit(9480, "feet")
  13874. },
  13875. {
  13876. name: "Megamacro",
  13877. height: math.unit(78752, "feet")
  13878. },
  13879. {
  13880. name: "Megamacro+",
  13881. height: math.unit(630128, "feet")
  13882. },
  13883. {
  13884. name: "Megamacro++",
  13885. height: math.unit(3150695, "feet")
  13886. },
  13887. ]
  13888. ))
  13889. characterMakers.push(() => makeCharacter(
  13890. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13891. {
  13892. front: {
  13893. height: math.unit(7 + 5 / 12, "feet"),
  13894. weight: math.unit(450, "lb"),
  13895. name: "Front",
  13896. image: {
  13897. source: "./media/characters/mocha-aura/front.svg",
  13898. extra: 1907 / 1817,
  13899. bottom: 0.04
  13900. }
  13901. },
  13902. back: {
  13903. height: math.unit(7 + 5 / 12, "feet"),
  13904. weight: math.unit(450, "lb"),
  13905. name: "Back",
  13906. image: {
  13907. source: "./media/characters/mocha-aura/back.svg",
  13908. extra: 1900 / 1825,
  13909. bottom: 0.045
  13910. }
  13911. },
  13912. },
  13913. [
  13914. {
  13915. name: "Nano",
  13916. height: math.unit(1, "nm")
  13917. },
  13918. {
  13919. name: "Megamicro",
  13920. height: math.unit(1, "mm")
  13921. },
  13922. {
  13923. name: "Micro",
  13924. height: math.unit(3, "inches")
  13925. },
  13926. {
  13927. name: "Normal",
  13928. height: math.unit(7 + 5 / 12, "feet"),
  13929. default: true
  13930. },
  13931. {
  13932. name: "Macro",
  13933. height: math.unit(30, "feet")
  13934. },
  13935. {
  13936. name: "Megamacro",
  13937. height: math.unit(3500, "feet")
  13938. },
  13939. {
  13940. name: "Teramacro",
  13941. height: math.unit(500000, "miles")
  13942. },
  13943. {
  13944. name: "Petamacro",
  13945. height: math.unit(50000000000000000, "parsecs")
  13946. },
  13947. ]
  13948. ))
  13949. characterMakers.push(() => makeCharacter(
  13950. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13951. {
  13952. front: {
  13953. height: math.unit(6, "feet"),
  13954. weight: math.unit(150, "lb"),
  13955. name: "Front",
  13956. image: {
  13957. source: "./media/characters/ilisha-devya/front.svg",
  13958. extra: 1053/1049,
  13959. bottom: 270/1323
  13960. }
  13961. },
  13962. back: {
  13963. height: math.unit(6, "feet"),
  13964. weight: math.unit(150, "lb"),
  13965. name: "Back",
  13966. image: {
  13967. source: "./media/characters/ilisha-devya/back.svg",
  13968. extra: 1131/1128,
  13969. bottom: 39/1170
  13970. }
  13971. },
  13972. },
  13973. [
  13974. {
  13975. name: "Macro",
  13976. height: math.unit(500, "feet"),
  13977. default: true
  13978. },
  13979. {
  13980. name: "Megamacro",
  13981. height: math.unit(10, "miles")
  13982. },
  13983. {
  13984. name: "Gigamacro",
  13985. height: math.unit(100000, "miles")
  13986. },
  13987. {
  13988. name: "Examacro",
  13989. height: math.unit(1e9, "lightyears")
  13990. },
  13991. {
  13992. name: "Omniversal",
  13993. height: math.unit(1e33, "lightyears")
  13994. },
  13995. {
  13996. name: "Beyond Infinite",
  13997. height: math.unit(1e100, "lightyears")
  13998. },
  13999. ]
  14000. ))
  14001. characterMakers.push(() => makeCharacter(
  14002. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14003. {
  14004. Side: {
  14005. height: math.unit(6, "feet"),
  14006. weight: math.unit(150, "lb"),
  14007. name: "Side",
  14008. image: {
  14009. source: "./media/characters/mira/side.svg",
  14010. extra: 900 / 799,
  14011. bottom: 0.02
  14012. }
  14013. },
  14014. },
  14015. [
  14016. {
  14017. name: "Human Size",
  14018. height: math.unit(6, "feet")
  14019. },
  14020. {
  14021. name: "Macro",
  14022. height: math.unit(100, "feet"),
  14023. default: true
  14024. },
  14025. {
  14026. name: "Megamacro",
  14027. height: math.unit(10, "miles")
  14028. },
  14029. {
  14030. name: "Gigamacro",
  14031. height: math.unit(25000, "miles")
  14032. },
  14033. {
  14034. name: "Teramacro",
  14035. height: math.unit(300, "AU")
  14036. },
  14037. {
  14038. name: "Full Size",
  14039. height: math.unit(4.5e10, "lightyears")
  14040. },
  14041. ]
  14042. ))
  14043. characterMakers.push(() => makeCharacter(
  14044. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14045. {
  14046. front: {
  14047. height: math.unit(6, "feet"),
  14048. weight: math.unit(150, "lb"),
  14049. name: "Front",
  14050. image: {
  14051. source: "./media/characters/holly/front.svg",
  14052. extra: 639 / 606
  14053. }
  14054. },
  14055. back: {
  14056. height: math.unit(6, "feet"),
  14057. weight: math.unit(150, "lb"),
  14058. name: "Back",
  14059. image: {
  14060. source: "./media/characters/holly/back.svg",
  14061. extra: 623 / 598
  14062. }
  14063. },
  14064. frontWorking: {
  14065. height: math.unit(6, "feet"),
  14066. weight: math.unit(150, "lb"),
  14067. name: "Front (Working)",
  14068. image: {
  14069. source: "./media/characters/holly/front-working.svg",
  14070. extra: 607 / 577,
  14071. bottom: 0.048
  14072. }
  14073. },
  14074. },
  14075. [
  14076. {
  14077. name: "Normal",
  14078. height: math.unit(12 + 3 / 12, "feet"),
  14079. default: true
  14080. },
  14081. ]
  14082. ))
  14083. characterMakers.push(() => makeCharacter(
  14084. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14085. {
  14086. front: {
  14087. height: math.unit(6, "feet"),
  14088. weight: math.unit(150, "lb"),
  14089. name: "Front",
  14090. image: {
  14091. source: "./media/characters/porter/front.svg",
  14092. extra: 1,
  14093. bottom: 0.01
  14094. }
  14095. },
  14096. frontRobes: {
  14097. height: math.unit(6, "feet"),
  14098. weight: math.unit(150, "lb"),
  14099. name: "Front (Robes)",
  14100. image: {
  14101. source: "./media/characters/porter/front-robes.svg",
  14102. extra: 1.01,
  14103. bottom: 0.01
  14104. }
  14105. },
  14106. },
  14107. [
  14108. {
  14109. name: "Normal",
  14110. height: math.unit(11 + 9 / 12, "feet"),
  14111. default: true
  14112. },
  14113. ]
  14114. ))
  14115. characterMakers.push(() => makeCharacter(
  14116. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14117. {
  14118. legendary: {
  14119. height: math.unit(6, "feet"),
  14120. weight: math.unit(150, "lb"),
  14121. name: "Legendary",
  14122. image: {
  14123. source: "./media/characters/lucy/legendary.svg",
  14124. extra: 1355 / 1100,
  14125. bottom: 0.045
  14126. }
  14127. },
  14128. },
  14129. [
  14130. {
  14131. name: "Legendary",
  14132. height: math.unit(86882 * 2, "miles"),
  14133. default: true
  14134. },
  14135. ]
  14136. ))
  14137. characterMakers.push(() => makeCharacter(
  14138. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14139. {
  14140. front: {
  14141. height: math.unit(6, "feet"),
  14142. weight: math.unit(150, "lb"),
  14143. name: "Front",
  14144. image: {
  14145. source: "./media/characters/drusilla/front.svg",
  14146. extra: 678 / 635,
  14147. bottom: 0.03
  14148. }
  14149. },
  14150. back: {
  14151. height: math.unit(6, "feet"),
  14152. weight: math.unit(150, "lb"),
  14153. name: "Back",
  14154. image: {
  14155. source: "./media/characters/drusilla/back.svg",
  14156. extra: 678 / 635,
  14157. bottom: 0.005
  14158. }
  14159. },
  14160. },
  14161. [
  14162. {
  14163. name: "Macro",
  14164. height: math.unit(100, "feet")
  14165. },
  14166. {
  14167. name: "Canon Height",
  14168. height: math.unit(2000, "feet"),
  14169. default: true
  14170. },
  14171. ]
  14172. ))
  14173. characterMakers.push(() => makeCharacter(
  14174. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14175. {
  14176. front: {
  14177. height: math.unit(6, "feet"),
  14178. weight: math.unit(180, "lb"),
  14179. name: "Front",
  14180. image: {
  14181. source: "./media/characters/renard-thatch/front.svg",
  14182. extra: 2411 / 2275,
  14183. bottom: 0.01
  14184. }
  14185. },
  14186. frontPosing: {
  14187. height: math.unit(6, "feet"),
  14188. weight: math.unit(180, "lb"),
  14189. name: "Front (Posing)",
  14190. image: {
  14191. source: "./media/characters/renard-thatch/front-posing.svg",
  14192. extra: 2381 / 2261,
  14193. bottom: 0.01
  14194. }
  14195. },
  14196. back: {
  14197. height: math.unit(6, "feet"),
  14198. weight: math.unit(180, "lb"),
  14199. name: "Back",
  14200. image: {
  14201. source: "./media/characters/renard-thatch/back.svg",
  14202. extra: 2428 / 2288
  14203. }
  14204. },
  14205. },
  14206. [
  14207. {
  14208. name: "Micro",
  14209. height: math.unit(3, "inches")
  14210. },
  14211. {
  14212. name: "Default",
  14213. height: math.unit(6, "feet"),
  14214. default: true
  14215. },
  14216. {
  14217. name: "Macro",
  14218. height: math.unit(75, "feet")
  14219. },
  14220. ]
  14221. ))
  14222. characterMakers.push(() => makeCharacter(
  14223. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14224. {
  14225. front: {
  14226. height: math.unit(1450, "feet"),
  14227. weight: math.unit(1.21e6, "tons"),
  14228. name: "Front",
  14229. image: {
  14230. source: "./media/characters/sekvra/front.svg",
  14231. extra: 1193/1190,
  14232. bottom: 78/1271
  14233. }
  14234. },
  14235. side: {
  14236. height: math.unit(1450, "feet"),
  14237. weight: math.unit(1.21e6, "tons"),
  14238. name: "Side",
  14239. image: {
  14240. source: "./media/characters/sekvra/side.svg",
  14241. extra: 1193/1190,
  14242. bottom: 52/1245
  14243. }
  14244. },
  14245. back: {
  14246. height: math.unit(1450, "feet"),
  14247. weight: math.unit(1.21e6, "tons"),
  14248. name: "Back",
  14249. image: {
  14250. source: "./media/characters/sekvra/back.svg",
  14251. extra: 1219/1216,
  14252. bottom: 21/1240
  14253. }
  14254. },
  14255. frontClothed: {
  14256. height: math.unit(1450, "feet"),
  14257. weight: math.unit(1.21e6, "tons"),
  14258. name: "Front (Clothed)",
  14259. image: {
  14260. source: "./media/characters/sekvra/front-clothed.svg",
  14261. extra: 1192/1189,
  14262. bottom: 79/1271
  14263. }
  14264. },
  14265. },
  14266. [
  14267. {
  14268. name: "Macro",
  14269. height: math.unit(1450, "feet"),
  14270. default: true
  14271. },
  14272. {
  14273. name: "Megamacro",
  14274. height: math.unit(15000, "feet")
  14275. },
  14276. ]
  14277. ))
  14278. characterMakers.push(() => makeCharacter(
  14279. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14280. {
  14281. front: {
  14282. height: math.unit(6, "feet"),
  14283. weight: math.unit(150, "lb"),
  14284. name: "Front",
  14285. image: {
  14286. source: "./media/characters/carmine/front.svg",
  14287. extra: 1,
  14288. bottom: 0.035
  14289. }
  14290. },
  14291. frontArmor: {
  14292. height: math.unit(6, "feet"),
  14293. weight: math.unit(150, "lb"),
  14294. name: "Front (Armor)",
  14295. image: {
  14296. source: "./media/characters/carmine/front-armor.svg",
  14297. extra: 1,
  14298. bottom: 0.035
  14299. }
  14300. },
  14301. },
  14302. [
  14303. {
  14304. name: "Large",
  14305. height: math.unit(1, "mile")
  14306. },
  14307. {
  14308. name: "Huge",
  14309. height: math.unit(40, "miles"),
  14310. default: true
  14311. },
  14312. {
  14313. name: "Colossal",
  14314. height: math.unit(2500, "miles")
  14315. },
  14316. ]
  14317. ))
  14318. characterMakers.push(() => makeCharacter(
  14319. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14320. {
  14321. front: {
  14322. height: math.unit(6, "feet"),
  14323. weight: math.unit(150, "lb"),
  14324. name: "Front",
  14325. image: {
  14326. source: "./media/characters/elyssia/front.svg",
  14327. extra: 2201 / 2035,
  14328. bottom: 0.05
  14329. }
  14330. },
  14331. frontClothed: {
  14332. height: math.unit(6, "feet"),
  14333. weight: math.unit(150, "lb"),
  14334. name: "Front (Clothed)",
  14335. image: {
  14336. source: "./media/characters/elyssia/front-clothed.svg",
  14337. extra: 2201 / 2035,
  14338. bottom: 0.05
  14339. }
  14340. },
  14341. back: {
  14342. height: math.unit(6, "feet"),
  14343. weight: math.unit(150, "lb"),
  14344. name: "Back",
  14345. image: {
  14346. source: "./media/characters/elyssia/back.svg",
  14347. extra: 2201 / 2035,
  14348. bottom: 0.013
  14349. }
  14350. },
  14351. },
  14352. [
  14353. {
  14354. name: "Smaller",
  14355. height: math.unit(150, "feet")
  14356. },
  14357. {
  14358. name: "Standard",
  14359. height: math.unit(1400, "feet"),
  14360. default: true
  14361. },
  14362. {
  14363. name: "Distracted",
  14364. height: math.unit(15000, "feet")
  14365. },
  14366. ]
  14367. ))
  14368. characterMakers.push(() => makeCharacter(
  14369. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14370. {
  14371. front: {
  14372. height: math.unit(7 + 4/12, "feet"),
  14373. weight: math.unit(690, "lb"),
  14374. name: "Front",
  14375. image: {
  14376. source: "./media/characters/geno-maxwell/front.svg",
  14377. extra: 984/856,
  14378. bottom: 87/1071
  14379. }
  14380. },
  14381. back: {
  14382. height: math.unit(7 + 4/12, "feet"),
  14383. weight: math.unit(690, "lb"),
  14384. name: "Back",
  14385. image: {
  14386. source: "./media/characters/geno-maxwell/back.svg",
  14387. extra: 981/854,
  14388. bottom: 57/1038
  14389. }
  14390. },
  14391. frontCostume: {
  14392. height: math.unit(7 + 4/12, "feet"),
  14393. weight: math.unit(690, "lb"),
  14394. name: "Front (Costume)",
  14395. image: {
  14396. source: "./media/characters/geno-maxwell/front-costume.svg",
  14397. extra: 984/856,
  14398. bottom: 87/1071
  14399. }
  14400. },
  14401. backcostume: {
  14402. height: math.unit(7 + 4/12, "feet"),
  14403. weight: math.unit(690, "lb"),
  14404. name: "Back (Costume)",
  14405. image: {
  14406. source: "./media/characters/geno-maxwell/back-costume.svg",
  14407. extra: 981/854,
  14408. bottom: 57/1038
  14409. }
  14410. },
  14411. },
  14412. [
  14413. {
  14414. name: "Micro",
  14415. height: math.unit(3, "inches")
  14416. },
  14417. {
  14418. name: "Normal",
  14419. height: math.unit(7 + 4 / 12, "feet"),
  14420. default: true
  14421. },
  14422. {
  14423. name: "Macro",
  14424. height: math.unit(220, "feet")
  14425. },
  14426. {
  14427. name: "Megamacro",
  14428. height: math.unit(11, "miles")
  14429. },
  14430. ]
  14431. ))
  14432. characterMakers.push(() => makeCharacter(
  14433. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14434. {
  14435. front: {
  14436. height: math.unit(7 + 4/12, "feet"),
  14437. weight: math.unit(750, "lb"),
  14438. name: "Front",
  14439. image: {
  14440. source: "./media/characters/regena-maxwell/front.svg",
  14441. extra: 984/856,
  14442. bottom: 87/1071
  14443. }
  14444. },
  14445. back: {
  14446. height: math.unit(7 + 4/12, "feet"),
  14447. weight: math.unit(750, "lb"),
  14448. name: "Back",
  14449. image: {
  14450. source: "./media/characters/regena-maxwell/back.svg",
  14451. extra: 981/854,
  14452. bottom: 57/1038
  14453. }
  14454. },
  14455. frontCostume: {
  14456. height: math.unit(7 + 4/12, "feet"),
  14457. weight: math.unit(750, "lb"),
  14458. name: "Front (Costume)",
  14459. image: {
  14460. source: "./media/characters/regena-maxwell/front-costume.svg",
  14461. extra: 984/856,
  14462. bottom: 87/1071
  14463. }
  14464. },
  14465. backcostume: {
  14466. height: math.unit(7 + 4/12, "feet"),
  14467. weight: math.unit(750, "lb"),
  14468. name: "Back (Costume)",
  14469. image: {
  14470. source: "./media/characters/regena-maxwell/back-costume.svg",
  14471. extra: 981/854,
  14472. bottom: 57/1038
  14473. }
  14474. },
  14475. },
  14476. [
  14477. {
  14478. name: "Normal",
  14479. height: math.unit(7 + 4 / 12, "feet"),
  14480. default: true
  14481. },
  14482. {
  14483. name: "Macro",
  14484. height: math.unit(220, "feet")
  14485. },
  14486. {
  14487. name: "Megamacro",
  14488. height: math.unit(11, "miles")
  14489. },
  14490. ]
  14491. ))
  14492. characterMakers.push(() => makeCharacter(
  14493. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14494. {
  14495. front: {
  14496. height: math.unit(6, "feet"),
  14497. weight: math.unit(150, "lb"),
  14498. name: "Front",
  14499. image: {
  14500. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14501. extra: 860 / 690,
  14502. bottom: 0.03
  14503. }
  14504. },
  14505. },
  14506. [
  14507. {
  14508. name: "Normal",
  14509. height: math.unit(1.7, "meters"),
  14510. default: true
  14511. },
  14512. ]
  14513. ))
  14514. characterMakers.push(() => makeCharacter(
  14515. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14516. {
  14517. front: {
  14518. height: math.unit(6, "feet"),
  14519. weight: math.unit(150, "lb"),
  14520. name: "Front",
  14521. image: {
  14522. source: "./media/characters/quilly/front.svg",
  14523. extra: 890 / 776
  14524. }
  14525. },
  14526. },
  14527. [
  14528. {
  14529. name: "Gigamacro",
  14530. height: math.unit(404090, "miles"),
  14531. default: true
  14532. },
  14533. ]
  14534. ))
  14535. characterMakers.push(() => makeCharacter(
  14536. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14537. {
  14538. front: {
  14539. height: math.unit(7 + 8 / 12, "feet"),
  14540. weight: math.unit(350, "lb"),
  14541. name: "Front",
  14542. image: {
  14543. source: "./media/characters/tempest/front.svg",
  14544. extra: 1175 / 1086,
  14545. bottom: 0.02
  14546. }
  14547. },
  14548. },
  14549. [
  14550. {
  14551. name: "Normal",
  14552. height: math.unit(7 + 8 / 12, "feet"),
  14553. default: true
  14554. },
  14555. ]
  14556. ))
  14557. characterMakers.push(() => makeCharacter(
  14558. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14559. {
  14560. side: {
  14561. height: math.unit(4 + 5 / 12, "feet"),
  14562. weight: math.unit(80, "lb"),
  14563. name: "Side",
  14564. image: {
  14565. source: "./media/characters/rodger/side.svg",
  14566. extra: 1235 / 1118
  14567. }
  14568. },
  14569. },
  14570. [
  14571. {
  14572. name: "Micro",
  14573. height: math.unit(1, "inch")
  14574. },
  14575. {
  14576. name: "Normal",
  14577. height: math.unit(4 + 5 / 12, "feet"),
  14578. default: true
  14579. },
  14580. {
  14581. name: "Macro",
  14582. height: math.unit(120, "feet")
  14583. },
  14584. ]
  14585. ))
  14586. characterMakers.push(() => makeCharacter(
  14587. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14588. {
  14589. front: {
  14590. height: math.unit(6, "feet"),
  14591. weight: math.unit(150, "lb"),
  14592. name: "Front",
  14593. image: {
  14594. source: "./media/characters/danyel/front.svg",
  14595. extra: 1185 / 1123,
  14596. bottom: 0.05
  14597. }
  14598. },
  14599. },
  14600. [
  14601. {
  14602. name: "Shrunken",
  14603. height: math.unit(0.5, "mm")
  14604. },
  14605. {
  14606. name: "Micro",
  14607. height: math.unit(1, "mm"),
  14608. default: true
  14609. },
  14610. {
  14611. name: "Upsized",
  14612. height: math.unit(5 + 5 / 12, "feet")
  14613. },
  14614. ]
  14615. ))
  14616. characterMakers.push(() => makeCharacter(
  14617. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14618. {
  14619. front: {
  14620. height: math.unit(5 + 6 / 12, "feet"),
  14621. weight: math.unit(200, "lb"),
  14622. name: "Front",
  14623. image: {
  14624. source: "./media/characters/vivian-bijoux/front.svg",
  14625. extra: 1217/1209,
  14626. bottom: 76/1293
  14627. }
  14628. },
  14629. back: {
  14630. height: math.unit(5 + 6 / 12, "feet"),
  14631. weight: math.unit(200, "lb"),
  14632. name: "Back",
  14633. image: {
  14634. source: "./media/characters/vivian-bijoux/back.svg",
  14635. extra: 1214/1208,
  14636. bottom: 51/1265
  14637. }
  14638. },
  14639. dressed: {
  14640. height: math.unit(5 + 6 / 12, "feet"),
  14641. weight: math.unit(200, "lb"),
  14642. name: "Dressed",
  14643. image: {
  14644. source: "./media/characters/vivian-bijoux/dressed.svg",
  14645. extra: 1217/1209,
  14646. bottom: 76/1293
  14647. }
  14648. },
  14649. },
  14650. [
  14651. {
  14652. name: "Normal",
  14653. height: math.unit(5 + 6 / 12, "feet"),
  14654. default: true
  14655. },
  14656. {
  14657. name: "Bad Dream",
  14658. height: math.unit(500, "feet")
  14659. },
  14660. {
  14661. name: "Nightmare",
  14662. height: math.unit(500, "miles")
  14663. },
  14664. ]
  14665. ))
  14666. characterMakers.push(() => makeCharacter(
  14667. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14668. {
  14669. front: {
  14670. height: math.unit(6 + 1 / 12, "feet"),
  14671. weight: math.unit(260, "lb"),
  14672. name: "Front",
  14673. image: {
  14674. source: "./media/characters/zeta/front.svg",
  14675. extra: 1968 / 1889,
  14676. bottom: 0.06
  14677. }
  14678. },
  14679. back: {
  14680. height: math.unit(6 + 1 / 12, "feet"),
  14681. weight: math.unit(260, "lb"),
  14682. name: "Back",
  14683. image: {
  14684. source: "./media/characters/zeta/back.svg",
  14685. extra: 1944 / 1858,
  14686. bottom: 0.03
  14687. }
  14688. },
  14689. hand: {
  14690. height: math.unit(1.112, "feet"),
  14691. name: "Hand",
  14692. image: {
  14693. source: "./media/characters/zeta/hand.svg"
  14694. }
  14695. },
  14696. foot: {
  14697. height: math.unit(1.48, "feet"),
  14698. name: "Foot",
  14699. image: {
  14700. source: "./media/characters/zeta/foot.svg"
  14701. }
  14702. },
  14703. },
  14704. [
  14705. {
  14706. name: "Micro",
  14707. height: math.unit(6, "inches")
  14708. },
  14709. {
  14710. name: "Normal",
  14711. height: math.unit(6 + 1 / 12, "feet"),
  14712. default: true
  14713. },
  14714. {
  14715. name: "Macro",
  14716. height: math.unit(20, "feet")
  14717. },
  14718. ]
  14719. ))
  14720. characterMakers.push(() => makeCharacter(
  14721. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14722. {
  14723. front: {
  14724. height: math.unit(6, "feet"),
  14725. weight: math.unit(150, "lb"),
  14726. name: "Front",
  14727. image: {
  14728. source: "./media/characters/jamie-larsen/front.svg",
  14729. extra: 962 / 933,
  14730. bottom: 0.02
  14731. }
  14732. },
  14733. back: {
  14734. height: math.unit(6, "feet"),
  14735. weight: math.unit(150, "lb"),
  14736. name: "Back",
  14737. image: {
  14738. source: "./media/characters/jamie-larsen/back.svg",
  14739. extra: 997 / 946
  14740. }
  14741. },
  14742. },
  14743. [
  14744. {
  14745. name: "Macro",
  14746. height: math.unit(28 + 7 / 12, "feet"),
  14747. default: true
  14748. },
  14749. {
  14750. name: "Macro+",
  14751. height: math.unit(180, "feet")
  14752. },
  14753. {
  14754. name: "Megamacro",
  14755. height: math.unit(10, "miles")
  14756. },
  14757. {
  14758. name: "Gigamacro",
  14759. height: math.unit(200000, "miles")
  14760. },
  14761. ]
  14762. ))
  14763. characterMakers.push(() => makeCharacter(
  14764. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14765. {
  14766. front: {
  14767. height: math.unit(6, "feet"),
  14768. weight: math.unit(120, "lb"),
  14769. name: "Front",
  14770. image: {
  14771. source: "./media/characters/vance/front.svg",
  14772. extra: 1980 / 1890,
  14773. bottom: 0.09
  14774. }
  14775. },
  14776. back: {
  14777. height: math.unit(6, "feet"),
  14778. weight: math.unit(120, "lb"),
  14779. name: "Back",
  14780. image: {
  14781. source: "./media/characters/vance/back.svg",
  14782. extra: 2081 / 1994,
  14783. bottom: 0.014
  14784. }
  14785. },
  14786. hand: {
  14787. height: math.unit(0.88, "feet"),
  14788. name: "Hand",
  14789. image: {
  14790. source: "./media/characters/vance/hand.svg"
  14791. }
  14792. },
  14793. foot: {
  14794. height: math.unit(0.64, "feet"),
  14795. name: "Foot",
  14796. image: {
  14797. source: "./media/characters/vance/foot.svg"
  14798. }
  14799. },
  14800. },
  14801. [
  14802. {
  14803. name: "Small",
  14804. height: math.unit(90, "feet"),
  14805. default: true
  14806. },
  14807. {
  14808. name: "Macro",
  14809. height: math.unit(100, "meters")
  14810. },
  14811. {
  14812. name: "Megamacro",
  14813. height: math.unit(15, "miles")
  14814. },
  14815. ]
  14816. ))
  14817. characterMakers.push(() => makeCharacter(
  14818. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14819. {
  14820. front: {
  14821. height: math.unit(6, "feet"),
  14822. weight: math.unit(180, "lb"),
  14823. name: "Front",
  14824. image: {
  14825. source: "./media/characters/xochitl/front.svg",
  14826. extra: 2297 / 2261,
  14827. bottom: 0.065
  14828. }
  14829. },
  14830. back: {
  14831. height: math.unit(6, "feet"),
  14832. weight: math.unit(180, "lb"),
  14833. name: "Back",
  14834. image: {
  14835. source: "./media/characters/xochitl/back.svg",
  14836. extra: 2386 / 2354,
  14837. bottom: 0.01
  14838. }
  14839. },
  14840. foot: {
  14841. height: math.unit(6 / 5 * 1.15, "feet"),
  14842. weight: math.unit(150, "lb"),
  14843. name: "Foot",
  14844. image: {
  14845. source: "./media/characters/xochitl/foot.svg"
  14846. }
  14847. },
  14848. },
  14849. [
  14850. {
  14851. name: "Macro",
  14852. height: math.unit(80, "feet")
  14853. },
  14854. {
  14855. name: "Macro+",
  14856. height: math.unit(400, "feet"),
  14857. default: true
  14858. },
  14859. {
  14860. name: "Gigamacro",
  14861. height: math.unit(80000, "miles")
  14862. },
  14863. {
  14864. name: "Gigamacro+",
  14865. height: math.unit(400000, "miles")
  14866. },
  14867. {
  14868. name: "Teramacro",
  14869. height: math.unit(300, "AU")
  14870. },
  14871. ]
  14872. ))
  14873. characterMakers.push(() => makeCharacter(
  14874. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14875. {
  14876. front: {
  14877. height: math.unit(6, "feet"),
  14878. weight: math.unit(150, "lb"),
  14879. name: "Front",
  14880. image: {
  14881. source: "./media/characters/vincent/front.svg",
  14882. extra: 1130 / 1080,
  14883. bottom: 0.055
  14884. }
  14885. },
  14886. beak: {
  14887. height: math.unit(6 * 0.1, "feet"),
  14888. name: "Beak",
  14889. image: {
  14890. source: "./media/characters/vincent/beak.svg"
  14891. }
  14892. },
  14893. hand: {
  14894. height: math.unit(6 * 0.85, "feet"),
  14895. weight: math.unit(150, "lb"),
  14896. name: "Hand",
  14897. image: {
  14898. source: "./media/characters/vincent/hand.svg"
  14899. }
  14900. },
  14901. foot: {
  14902. height: math.unit(6 * 0.19, "feet"),
  14903. weight: math.unit(150, "lb"),
  14904. name: "Foot",
  14905. image: {
  14906. source: "./media/characters/vincent/foot.svg"
  14907. }
  14908. },
  14909. },
  14910. [
  14911. {
  14912. name: "Base",
  14913. height: math.unit(6 + 5 / 12, "feet"),
  14914. default: true
  14915. },
  14916. {
  14917. name: "Macro",
  14918. height: math.unit(300, "feet")
  14919. },
  14920. {
  14921. name: "Megamacro",
  14922. height: math.unit(2, "miles")
  14923. },
  14924. {
  14925. name: "Gigamacro",
  14926. height: math.unit(1000, "miles")
  14927. },
  14928. ]
  14929. ))
  14930. characterMakers.push(() => makeCharacter(
  14931. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14932. {
  14933. front: {
  14934. height: math.unit(2, "meters"),
  14935. weight: math.unit(500, "kg"),
  14936. name: "Front",
  14937. image: {
  14938. source: "./media/characters/coatl/front.svg",
  14939. extra: 3948 / 3500,
  14940. bottom: 0.082
  14941. }
  14942. },
  14943. },
  14944. [
  14945. {
  14946. name: "Normal",
  14947. height: math.unit(4, "meters")
  14948. },
  14949. {
  14950. name: "Macro",
  14951. height: math.unit(100, "meters"),
  14952. default: true
  14953. },
  14954. {
  14955. name: "Macro+",
  14956. height: math.unit(300, "meters")
  14957. },
  14958. {
  14959. name: "Megamacro",
  14960. height: math.unit(3, "gigameters")
  14961. },
  14962. {
  14963. name: "Megamacro+",
  14964. height: math.unit(300, "terameters")
  14965. },
  14966. {
  14967. name: "Megamacro++",
  14968. height: math.unit(3, "lightyears")
  14969. },
  14970. ]
  14971. ))
  14972. characterMakers.push(() => makeCharacter(
  14973. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14974. {
  14975. front: {
  14976. height: math.unit(6, "feet"),
  14977. weight: math.unit(50, "kg"),
  14978. name: "front",
  14979. image: {
  14980. source: "./media/characters/shiroryu/front.svg",
  14981. extra: 1990 / 1935
  14982. }
  14983. },
  14984. },
  14985. [
  14986. {
  14987. name: "Mortal Mingling",
  14988. height: math.unit(3, "meters")
  14989. },
  14990. {
  14991. name: "Kaiju-ish",
  14992. height: math.unit(250, "meters")
  14993. },
  14994. {
  14995. name: "Somewhat Godly",
  14996. height: math.unit(400, "km"),
  14997. default: true
  14998. },
  14999. {
  15000. name: "Planetary",
  15001. height: math.unit(300, "megameters")
  15002. },
  15003. {
  15004. name: "Galaxy-dwarfing",
  15005. height: math.unit(450, "kiloparsecs")
  15006. },
  15007. {
  15008. name: "Universe Eater",
  15009. height: math.unit(150, "gigaparsecs")
  15010. },
  15011. {
  15012. name: "Almost Immeasurable",
  15013. height: math.unit(1.3e266, "yottaparsecs")
  15014. },
  15015. ]
  15016. ))
  15017. characterMakers.push(() => makeCharacter(
  15018. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15019. {
  15020. front: {
  15021. height: math.unit(6, "feet"),
  15022. weight: math.unit(150, "lb"),
  15023. name: "Front",
  15024. image: {
  15025. source: "./media/characters/umeko/front.svg",
  15026. extra: 1,
  15027. bottom: 0.019
  15028. }
  15029. },
  15030. frontArmored: {
  15031. height: math.unit(6, "feet"),
  15032. weight: math.unit(150, "lb"),
  15033. name: "Front (Armored)",
  15034. image: {
  15035. source: "./media/characters/umeko/front-armored.svg",
  15036. extra: 1,
  15037. bottom: 0.021
  15038. }
  15039. },
  15040. },
  15041. [
  15042. {
  15043. name: "Macro",
  15044. height: math.unit(220, "feet"),
  15045. default: true
  15046. },
  15047. {
  15048. name: "Guardian Dragon",
  15049. height: math.unit(50, "miles")
  15050. },
  15051. {
  15052. name: "Cosmic",
  15053. height: math.unit(800000, "miles")
  15054. },
  15055. ]
  15056. ))
  15057. characterMakers.push(() => makeCharacter(
  15058. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15059. {
  15060. front: {
  15061. height: math.unit(6, "feet"),
  15062. weight: math.unit(150, "lb"),
  15063. name: "Front",
  15064. image: {
  15065. source: "./media/characters/cassidy/front.svg",
  15066. extra: 810/808,
  15067. bottom: 41/851
  15068. }
  15069. },
  15070. },
  15071. [
  15072. {
  15073. name: "Canon Height",
  15074. height: math.unit(120, "feet"),
  15075. default: true
  15076. },
  15077. {
  15078. name: "Macro+",
  15079. height: math.unit(400, "feet")
  15080. },
  15081. {
  15082. name: "Macro++",
  15083. height: math.unit(4000, "feet")
  15084. },
  15085. {
  15086. name: "Megamacro",
  15087. height: math.unit(3, "miles")
  15088. },
  15089. ]
  15090. ))
  15091. characterMakers.push(() => makeCharacter(
  15092. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15093. {
  15094. front: {
  15095. height: math.unit(6, "feet"),
  15096. weight: math.unit(150, "lb"),
  15097. name: "Front",
  15098. image: {
  15099. source: "./media/characters/isaac/front.svg",
  15100. extra: 896 / 815,
  15101. bottom: 0.11
  15102. }
  15103. },
  15104. },
  15105. [
  15106. {
  15107. name: "Human Size",
  15108. height: math.unit(8, "feet"),
  15109. default: true
  15110. },
  15111. {
  15112. name: "Macro",
  15113. height: math.unit(400, "feet")
  15114. },
  15115. {
  15116. name: "Megamacro",
  15117. height: math.unit(50, "miles")
  15118. },
  15119. {
  15120. name: "Canon Height",
  15121. height: math.unit(200, "AU")
  15122. },
  15123. ]
  15124. ))
  15125. characterMakers.push(() => makeCharacter(
  15126. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15127. {
  15128. front: {
  15129. height: math.unit(6, "feet"),
  15130. weight: math.unit(72, "kg"),
  15131. name: "Front",
  15132. image: {
  15133. source: "./media/characters/sleekit/front.svg",
  15134. extra: 4693 / 4487,
  15135. bottom: 0.012
  15136. }
  15137. },
  15138. },
  15139. [
  15140. {
  15141. name: "Minimum Height",
  15142. height: math.unit(10, "meters")
  15143. },
  15144. {
  15145. name: "Smaller",
  15146. height: math.unit(25, "meters")
  15147. },
  15148. {
  15149. name: "Larger",
  15150. height: math.unit(38, "meters"),
  15151. default: true
  15152. },
  15153. {
  15154. name: "Maximum height",
  15155. height: math.unit(100, "meters")
  15156. },
  15157. ]
  15158. ))
  15159. characterMakers.push(() => makeCharacter(
  15160. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15161. {
  15162. front: {
  15163. height: math.unit(6, "feet"),
  15164. weight: math.unit(150, "lb"),
  15165. name: "Front",
  15166. image: {
  15167. source: "./media/characters/nillia/front.svg",
  15168. extra: 2195 / 2037,
  15169. bottom: 0.005
  15170. }
  15171. },
  15172. back: {
  15173. height: math.unit(6, "feet"),
  15174. weight: math.unit(150, "lb"),
  15175. name: "Back",
  15176. image: {
  15177. source: "./media/characters/nillia/back.svg",
  15178. extra: 2195 / 2037,
  15179. bottom: 0.005
  15180. }
  15181. },
  15182. },
  15183. [
  15184. {
  15185. name: "Canon Height",
  15186. height: math.unit(489, "feet"),
  15187. default: true
  15188. }
  15189. ]
  15190. ))
  15191. characterMakers.push(() => makeCharacter(
  15192. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15193. {
  15194. front: {
  15195. height: math.unit(6, "feet"),
  15196. weight: math.unit(150, "lb"),
  15197. name: "Front",
  15198. image: {
  15199. source: "./media/characters/mesmyriza/front.svg",
  15200. extra: 2067 / 1784,
  15201. bottom: 0.035
  15202. }
  15203. },
  15204. foot: {
  15205. height: math.unit(6 / (250 / 35), "feet"),
  15206. name: "Foot",
  15207. image: {
  15208. source: "./media/characters/mesmyriza/foot.svg"
  15209. }
  15210. },
  15211. },
  15212. [
  15213. {
  15214. name: "Macro",
  15215. height: math.unit(457, "meters"),
  15216. default: true
  15217. },
  15218. {
  15219. name: "Megamacro",
  15220. height: math.unit(8, "megameters")
  15221. },
  15222. ]
  15223. ))
  15224. characterMakers.push(() => makeCharacter(
  15225. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15226. {
  15227. front: {
  15228. height: math.unit(6, "feet"),
  15229. weight: math.unit(250, "lb"),
  15230. name: "Front",
  15231. image: {
  15232. source: "./media/characters/saudade/front.svg",
  15233. extra: 1172 / 1139,
  15234. bottom: 0.035
  15235. }
  15236. },
  15237. },
  15238. [
  15239. {
  15240. name: "Micro",
  15241. height: math.unit(3, "inches")
  15242. },
  15243. {
  15244. name: "Normal",
  15245. height: math.unit(6, "feet"),
  15246. default: true
  15247. },
  15248. {
  15249. name: "Macro",
  15250. height: math.unit(50, "feet")
  15251. },
  15252. {
  15253. name: "Megamacro",
  15254. height: math.unit(2800, "feet")
  15255. },
  15256. ]
  15257. ))
  15258. characterMakers.push(() => makeCharacter(
  15259. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15260. {
  15261. front: {
  15262. height: math.unit(5 + 4 / 12, "feet"),
  15263. weight: math.unit(100, "lb"),
  15264. name: "Front",
  15265. image: {
  15266. source: "./media/characters/keireer/front.svg",
  15267. extra: 716 / 666,
  15268. bottom: 0.05
  15269. }
  15270. },
  15271. },
  15272. [
  15273. {
  15274. name: "Normal",
  15275. height: math.unit(5 + 4 / 12, "feet"),
  15276. default: true
  15277. },
  15278. ]
  15279. ))
  15280. characterMakers.push(() => makeCharacter(
  15281. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15282. {
  15283. front: {
  15284. height: math.unit(5.5, "feet"),
  15285. weight: math.unit(90, "kg"),
  15286. name: "Front",
  15287. image: {
  15288. source: "./media/characters/mirja/front.svg",
  15289. extra: 1452/1262,
  15290. bottom: 67/1519
  15291. }
  15292. },
  15293. frontDressed: {
  15294. height: math.unit(5.5, "feet"),
  15295. weight: math.unit(90, "lb"),
  15296. name: "Front (Dressed)",
  15297. image: {
  15298. source: "./media/characters/mirja/dressed.svg",
  15299. extra: 1452/1262,
  15300. bottom: 67/1519
  15301. }
  15302. },
  15303. back: {
  15304. height: math.unit(6, "feet"),
  15305. weight: math.unit(90, "lb"),
  15306. name: "Back",
  15307. image: {
  15308. source: "./media/characters/mirja/back.svg",
  15309. extra: 1892/1795,
  15310. bottom: 48/1940
  15311. }
  15312. },
  15313. maw: {
  15314. height: math.unit(1.312, "feet"),
  15315. name: "Maw",
  15316. image: {
  15317. source: "./media/characters/mirja/maw.svg"
  15318. }
  15319. },
  15320. paw: {
  15321. height: math.unit(1.15, "feet"),
  15322. name: "Paw",
  15323. image: {
  15324. source: "./media/characters/mirja/paw.svg"
  15325. }
  15326. },
  15327. },
  15328. [
  15329. {
  15330. name: "\"Incognito\"",
  15331. height: math.unit(3, "meters")
  15332. },
  15333. {
  15334. name: "Strolling Size",
  15335. height: math.unit(15, "km")
  15336. },
  15337. {
  15338. name: "Larger Strolling Size",
  15339. height: math.unit(400, "km")
  15340. },
  15341. {
  15342. name: "Preferred Size",
  15343. height: math.unit(5000, "km"),
  15344. default: true
  15345. },
  15346. {
  15347. name: "True Size",
  15348. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15349. },
  15350. ]
  15351. ))
  15352. characterMakers.push(() => makeCharacter(
  15353. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15354. {
  15355. front: {
  15356. height: math.unit(15, "feet"),
  15357. weight: math.unit(880, "kg"),
  15358. name: "Front",
  15359. image: {
  15360. source: "./media/characters/nightraver/front.svg",
  15361. extra: 2444 / 2160,
  15362. bottom: 0.027
  15363. }
  15364. },
  15365. back: {
  15366. height: math.unit(15, "feet"),
  15367. weight: math.unit(880, "kg"),
  15368. name: "Back",
  15369. image: {
  15370. source: "./media/characters/nightraver/back.svg",
  15371. extra: 2309 / 2180,
  15372. bottom: 0.005
  15373. }
  15374. },
  15375. sole: {
  15376. height: math.unit(2.878, "feet"),
  15377. name: "Sole",
  15378. image: {
  15379. source: "./media/characters/nightraver/sole.svg"
  15380. }
  15381. },
  15382. foot: {
  15383. height: math.unit(2.285, "feet"),
  15384. name: "Foot",
  15385. image: {
  15386. source: "./media/characters/nightraver/foot.svg"
  15387. }
  15388. },
  15389. maw: {
  15390. height: math.unit(2.67, "feet"),
  15391. name: "Maw",
  15392. image: {
  15393. source: "./media/characters/nightraver/maw.svg"
  15394. }
  15395. },
  15396. },
  15397. [
  15398. {
  15399. name: "Micro",
  15400. height: math.unit(1, "cm")
  15401. },
  15402. {
  15403. name: "Normal",
  15404. height: math.unit(15, "feet"),
  15405. default: true
  15406. },
  15407. {
  15408. name: "Macro",
  15409. height: math.unit(300, "feet")
  15410. },
  15411. {
  15412. name: "Megamacro",
  15413. height: math.unit(300, "miles")
  15414. },
  15415. {
  15416. name: "Gigamacro",
  15417. height: math.unit(10000, "miles")
  15418. },
  15419. ]
  15420. ))
  15421. characterMakers.push(() => makeCharacter(
  15422. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15423. {
  15424. side: {
  15425. height: math.unit(2, "inches"),
  15426. weight: math.unit(5, "grams"),
  15427. name: "Side",
  15428. image: {
  15429. source: "./media/characters/arc/side.svg"
  15430. }
  15431. },
  15432. },
  15433. [
  15434. {
  15435. name: "Micro",
  15436. height: math.unit(2, "inches"),
  15437. default: true
  15438. },
  15439. ]
  15440. ))
  15441. characterMakers.push(() => makeCharacter(
  15442. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15443. {
  15444. front: {
  15445. height: math.unit(1.1938, "meters"),
  15446. weight: math.unit(54, "kg"),
  15447. name: "Front",
  15448. image: {
  15449. source: "./media/characters/nebula-shahar/front.svg",
  15450. extra: 1642 / 1436,
  15451. bottom: 0.06
  15452. }
  15453. },
  15454. },
  15455. [
  15456. {
  15457. name: "Megamicro",
  15458. height: math.unit(0.3, "mm")
  15459. },
  15460. {
  15461. name: "Micro",
  15462. height: math.unit(3, "cm")
  15463. },
  15464. {
  15465. name: "Normal",
  15466. height: math.unit(138, "cm"),
  15467. default: true
  15468. },
  15469. {
  15470. name: "Macro",
  15471. height: math.unit(30, "m")
  15472. },
  15473. ]
  15474. ))
  15475. characterMakers.push(() => makeCharacter(
  15476. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15477. {
  15478. front: {
  15479. height: math.unit(5.24, "feet"),
  15480. weight: math.unit(150, "lb"),
  15481. name: "Front",
  15482. image: {
  15483. source: "./media/characters/shayla/front.svg",
  15484. extra: 1512 / 1414,
  15485. bottom: 0.01
  15486. }
  15487. },
  15488. back: {
  15489. height: math.unit(5.24, "feet"),
  15490. weight: math.unit(150, "lb"),
  15491. name: "Back",
  15492. image: {
  15493. source: "./media/characters/shayla/back.svg",
  15494. extra: 1512 / 1414
  15495. }
  15496. },
  15497. hand: {
  15498. height: math.unit(0.7781496062992126, "feet"),
  15499. name: "Hand",
  15500. image: {
  15501. source: "./media/characters/shayla/hand.svg"
  15502. }
  15503. },
  15504. foot: {
  15505. height: math.unit(1.4206036745406823, "feet"),
  15506. name: "Foot",
  15507. image: {
  15508. source: "./media/characters/shayla/foot.svg"
  15509. }
  15510. },
  15511. },
  15512. [
  15513. {
  15514. name: "Micro",
  15515. height: math.unit(0.32, "feet")
  15516. },
  15517. {
  15518. name: "Normal",
  15519. height: math.unit(5.24, "feet"),
  15520. default: true
  15521. },
  15522. {
  15523. name: "Macro",
  15524. height: math.unit(492.12, "feet")
  15525. },
  15526. {
  15527. name: "Megamacro",
  15528. height: math.unit(186.41, "miles")
  15529. },
  15530. ]
  15531. ))
  15532. characterMakers.push(() => makeCharacter(
  15533. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15534. {
  15535. front: {
  15536. height: math.unit(2.2, "m"),
  15537. weight: math.unit(120, "kg"),
  15538. name: "Front",
  15539. image: {
  15540. source: "./media/characters/pia-jr/front.svg",
  15541. extra: 1000 / 970,
  15542. bottom: 0.035
  15543. }
  15544. },
  15545. hand: {
  15546. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15547. name: "Hand",
  15548. image: {
  15549. source: "./media/characters/pia-jr/hand.svg"
  15550. }
  15551. },
  15552. paw: {
  15553. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15554. name: "Paw",
  15555. image: {
  15556. source: "./media/characters/pia-jr/paw.svg"
  15557. }
  15558. },
  15559. },
  15560. [
  15561. {
  15562. name: "Micro",
  15563. height: math.unit(1.2, "cm")
  15564. },
  15565. {
  15566. name: "Normal",
  15567. height: math.unit(2.2, "m"),
  15568. default: true
  15569. },
  15570. {
  15571. name: "Macro",
  15572. height: math.unit(180, "m")
  15573. },
  15574. {
  15575. name: "Megamacro",
  15576. height: math.unit(420, "km")
  15577. },
  15578. ]
  15579. ))
  15580. characterMakers.push(() => makeCharacter(
  15581. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15582. {
  15583. front: {
  15584. height: math.unit(2, "m"),
  15585. weight: math.unit(115, "kg"),
  15586. name: "Front",
  15587. image: {
  15588. source: "./media/characters/pia-sr/front.svg",
  15589. extra: 760 / 730,
  15590. bottom: 0.015
  15591. }
  15592. },
  15593. back: {
  15594. height: math.unit(2, "m"),
  15595. weight: math.unit(115, "kg"),
  15596. name: "Back",
  15597. image: {
  15598. source: "./media/characters/pia-sr/back.svg",
  15599. extra: 760 / 730,
  15600. bottom: 0.01
  15601. }
  15602. },
  15603. hand: {
  15604. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15605. name: "Hand",
  15606. image: {
  15607. source: "./media/characters/pia-sr/hand.svg"
  15608. }
  15609. },
  15610. foot: {
  15611. height: math.unit(1.83, "feet"),
  15612. name: "Foot",
  15613. image: {
  15614. source: "./media/characters/pia-sr/foot.svg"
  15615. }
  15616. },
  15617. },
  15618. [
  15619. {
  15620. name: "Micro",
  15621. height: math.unit(88, "mm")
  15622. },
  15623. {
  15624. name: "Normal",
  15625. height: math.unit(2, "m"),
  15626. default: true
  15627. },
  15628. {
  15629. name: "Macro",
  15630. height: math.unit(200, "m")
  15631. },
  15632. {
  15633. name: "Megamacro",
  15634. height: math.unit(420, "km")
  15635. },
  15636. ]
  15637. ))
  15638. characterMakers.push(() => makeCharacter(
  15639. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15640. {
  15641. front: {
  15642. height: math.unit(8 + 2 / 12, "feet"),
  15643. weight: math.unit(300, "lb"),
  15644. name: "Front",
  15645. image: {
  15646. source: "./media/characters/kibibyte/front.svg",
  15647. extra: 2221 / 2098,
  15648. bottom: 0.04
  15649. }
  15650. },
  15651. },
  15652. [
  15653. {
  15654. name: "Normal",
  15655. height: math.unit(8 + 2 / 12, "feet"),
  15656. default: true
  15657. },
  15658. {
  15659. name: "Socialable Macro",
  15660. height: math.unit(50, "feet")
  15661. },
  15662. {
  15663. name: "Macro",
  15664. height: math.unit(300, "feet")
  15665. },
  15666. {
  15667. name: "Megamacro",
  15668. height: math.unit(500, "miles")
  15669. },
  15670. ]
  15671. ))
  15672. characterMakers.push(() => makeCharacter(
  15673. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15674. {
  15675. front: {
  15676. height: math.unit(6, "feet"),
  15677. weight: math.unit(150, "lb"),
  15678. name: "Front",
  15679. image: {
  15680. source: "./media/characters/felix/front.svg",
  15681. extra: 762 / 722,
  15682. bottom: 0.02
  15683. }
  15684. },
  15685. frontClothed: {
  15686. height: math.unit(6, "feet"),
  15687. weight: math.unit(150, "lb"),
  15688. name: "Front (Clothed)",
  15689. image: {
  15690. source: "./media/characters/felix/front-clothed.svg",
  15691. extra: 762 / 722,
  15692. bottom: 0.02
  15693. }
  15694. },
  15695. },
  15696. [
  15697. {
  15698. name: "Normal",
  15699. height: math.unit(6 + 8 / 12, "feet"),
  15700. default: true
  15701. },
  15702. {
  15703. name: "Macro",
  15704. height: math.unit(2600, "feet")
  15705. },
  15706. {
  15707. name: "Megamacro",
  15708. height: math.unit(450, "miles")
  15709. },
  15710. ]
  15711. ))
  15712. characterMakers.push(() => makeCharacter(
  15713. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15714. {
  15715. front: {
  15716. height: math.unit(6 + 1 / 12, "feet"),
  15717. weight: math.unit(250, "lb"),
  15718. name: "Front",
  15719. image: {
  15720. source: "./media/characters/tobo/front.svg",
  15721. extra: 608 / 586,
  15722. bottom: 0.023
  15723. }
  15724. },
  15725. back: {
  15726. height: math.unit(6 + 1 / 12, "feet"),
  15727. weight: math.unit(250, "lb"),
  15728. name: "Back",
  15729. image: {
  15730. source: "./media/characters/tobo/back.svg",
  15731. extra: 608 / 586
  15732. }
  15733. },
  15734. },
  15735. [
  15736. {
  15737. name: "Nano",
  15738. height: math.unit(2, "nm")
  15739. },
  15740. {
  15741. name: "Megamicro",
  15742. height: math.unit(0.1, "mm")
  15743. },
  15744. {
  15745. name: "Micro",
  15746. height: math.unit(1, "inch"),
  15747. default: true
  15748. },
  15749. {
  15750. name: "Human-sized",
  15751. height: math.unit(6 + 1 / 12, "feet")
  15752. },
  15753. {
  15754. name: "Macro",
  15755. height: math.unit(250, "feet")
  15756. },
  15757. {
  15758. name: "Megamacro",
  15759. height: math.unit(75, "miles")
  15760. },
  15761. {
  15762. name: "Texas-sized",
  15763. height: math.unit(750, "miles")
  15764. },
  15765. {
  15766. name: "Teramacro",
  15767. height: math.unit(50000, "miles")
  15768. },
  15769. ]
  15770. ))
  15771. characterMakers.push(() => makeCharacter(
  15772. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15773. {
  15774. front: {
  15775. height: math.unit(6, "feet"),
  15776. weight: math.unit(269, "lb"),
  15777. name: "Front",
  15778. image: {
  15779. source: "./media/characters/danny-kapowsky/front.svg",
  15780. extra: 766 / 736,
  15781. bottom: 0.044
  15782. }
  15783. },
  15784. back: {
  15785. height: math.unit(6, "feet"),
  15786. weight: math.unit(269, "lb"),
  15787. name: "Back",
  15788. image: {
  15789. source: "./media/characters/danny-kapowsky/back.svg",
  15790. extra: 797 / 760,
  15791. bottom: 0.025
  15792. }
  15793. },
  15794. },
  15795. [
  15796. {
  15797. name: "Macro",
  15798. height: math.unit(150, "feet"),
  15799. default: true
  15800. },
  15801. {
  15802. name: "Macro+",
  15803. height: math.unit(200, "feet")
  15804. },
  15805. {
  15806. name: "Macro++",
  15807. height: math.unit(300, "feet")
  15808. },
  15809. {
  15810. name: "Macro+++",
  15811. height: math.unit(400, "feet")
  15812. },
  15813. ]
  15814. ))
  15815. characterMakers.push(() => makeCharacter(
  15816. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15817. {
  15818. side: {
  15819. height: math.unit(6, "feet"),
  15820. weight: math.unit(170, "lb"),
  15821. name: "Side",
  15822. image: {
  15823. source: "./media/characters/finn/side.svg",
  15824. extra: 1953 / 1807,
  15825. bottom: 0.057
  15826. }
  15827. },
  15828. },
  15829. [
  15830. {
  15831. name: "Megamacro",
  15832. height: math.unit(14445, "feet"),
  15833. default: true
  15834. },
  15835. ]
  15836. ))
  15837. characterMakers.push(() => makeCharacter(
  15838. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15839. {
  15840. front: {
  15841. height: math.unit(5 + 6 / 12, "feet"),
  15842. weight: math.unit(125, "lb"),
  15843. name: "Front",
  15844. image: {
  15845. source: "./media/characters/roy/front.svg",
  15846. extra: 1,
  15847. bottom: 0.11
  15848. }
  15849. },
  15850. },
  15851. [
  15852. {
  15853. name: "Micro",
  15854. height: math.unit(3, "inches"),
  15855. default: true
  15856. },
  15857. {
  15858. name: "Normal",
  15859. height: math.unit(5 + 6 / 12, "feet")
  15860. },
  15861. {
  15862. name: "Lesser Macro",
  15863. height: math.unit(60, "feet")
  15864. },
  15865. {
  15866. name: "Greater Macro",
  15867. height: math.unit(120, "feet")
  15868. },
  15869. ]
  15870. ))
  15871. characterMakers.push(() => makeCharacter(
  15872. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15873. {
  15874. front: {
  15875. height: math.unit(6, "feet"),
  15876. weight: math.unit(100, "lb"),
  15877. name: "Front",
  15878. image: {
  15879. source: "./media/characters/aevsivs/front.svg",
  15880. extra: 1,
  15881. bottom: 0.03
  15882. }
  15883. },
  15884. back: {
  15885. height: math.unit(6, "feet"),
  15886. weight: math.unit(100, "lb"),
  15887. name: "Back",
  15888. image: {
  15889. source: "./media/characters/aevsivs/back.svg"
  15890. }
  15891. },
  15892. },
  15893. [
  15894. {
  15895. name: "Micro",
  15896. height: math.unit(2, "inches"),
  15897. default: true
  15898. },
  15899. {
  15900. name: "Normal",
  15901. height: math.unit(5, "feet")
  15902. },
  15903. ]
  15904. ))
  15905. characterMakers.push(() => makeCharacter(
  15906. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15907. {
  15908. front: {
  15909. height: math.unit(5 + 7 / 12, "feet"),
  15910. weight: math.unit(159, "lb"),
  15911. name: "Front",
  15912. image: {
  15913. source: "./media/characters/hildegard/front.svg",
  15914. extra: 289 / 269,
  15915. bottom: 7.63 / 297.8
  15916. }
  15917. },
  15918. back: {
  15919. height: math.unit(5 + 7 / 12, "feet"),
  15920. weight: math.unit(159, "lb"),
  15921. name: "Back",
  15922. image: {
  15923. source: "./media/characters/hildegard/back.svg",
  15924. extra: 280 / 260,
  15925. bottom: 2.3 / 282
  15926. }
  15927. },
  15928. },
  15929. [
  15930. {
  15931. name: "Normal",
  15932. height: math.unit(5 + 7 / 12, "feet"),
  15933. default: true
  15934. },
  15935. ]
  15936. ))
  15937. characterMakers.push(() => makeCharacter(
  15938. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15939. {
  15940. bernard: {
  15941. height: math.unit(2 + 7 / 12, "feet"),
  15942. weight: math.unit(66, "lb"),
  15943. name: "Bernard",
  15944. rename: true,
  15945. image: {
  15946. source: "./media/characters/bernard-wilder/bernard.svg",
  15947. extra: 192 / 128,
  15948. bottom: 0.05
  15949. }
  15950. },
  15951. wilder: {
  15952. height: math.unit(5 + 8 / 12, "feet"),
  15953. weight: math.unit(143, "lb"),
  15954. name: "Wilder",
  15955. rename: true,
  15956. image: {
  15957. source: "./media/characters/bernard-wilder/wilder.svg",
  15958. extra: 361 / 312,
  15959. bottom: 0.02
  15960. }
  15961. },
  15962. },
  15963. [
  15964. {
  15965. name: "Normal",
  15966. height: math.unit(2 + 7 / 12, "feet"),
  15967. default: true
  15968. },
  15969. ]
  15970. ))
  15971. characterMakers.push(() => makeCharacter(
  15972. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15973. {
  15974. anthro: {
  15975. height: math.unit(6 + 1 / 12, "feet"),
  15976. weight: math.unit(155, "lb"),
  15977. name: "Anthro",
  15978. image: {
  15979. source: "./media/characters/hearth/anthro.svg",
  15980. extra: 1178/1136,
  15981. bottom: 28/1206
  15982. }
  15983. },
  15984. feral: {
  15985. height: math.unit(3.78, "feet"),
  15986. weight: math.unit(35, "kg"),
  15987. name: "Feral",
  15988. image: {
  15989. source: "./media/characters/hearth/feral.svg",
  15990. extra: 153 / 135,
  15991. bottom: 0.03
  15992. }
  15993. },
  15994. },
  15995. [
  15996. {
  15997. name: "Normal",
  15998. height: math.unit(6 + 1 / 12, "feet"),
  15999. default: true
  16000. },
  16001. ]
  16002. ))
  16003. characterMakers.push(() => makeCharacter(
  16004. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16005. {
  16006. front: {
  16007. height: math.unit(6, "feet"),
  16008. weight: math.unit(182, "lb"),
  16009. name: "Front",
  16010. image: {
  16011. source: "./media/characters/ingrid/front.svg",
  16012. extra: 294 / 268,
  16013. bottom: 0.027
  16014. }
  16015. },
  16016. },
  16017. [
  16018. {
  16019. name: "Normal",
  16020. height: math.unit(6, "feet"),
  16021. default: true
  16022. },
  16023. ]
  16024. ))
  16025. characterMakers.push(() => makeCharacter(
  16026. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16027. {
  16028. eevee: {
  16029. height: math.unit(2 + 10 / 12, "feet"),
  16030. weight: math.unit(86, "lb"),
  16031. name: "Malgam",
  16032. image: {
  16033. source: "./media/characters/malgam/eevee.svg",
  16034. extra: 952/784,
  16035. bottom: 38/990
  16036. }
  16037. },
  16038. sylveon: {
  16039. height: math.unit(4, "feet"),
  16040. weight: math.unit(101, "lb"),
  16041. name: "Future Malgam",
  16042. rename: true,
  16043. image: {
  16044. source: "./media/characters/malgam/sylveon.svg",
  16045. extra: 371 / 325,
  16046. bottom: 0.015
  16047. }
  16048. },
  16049. gigantamax: {
  16050. height: math.unit(50, "feet"),
  16051. name: "Gigantamax Malgam",
  16052. rename: true,
  16053. image: {
  16054. source: "./media/characters/malgam/gigantamax.svg"
  16055. }
  16056. },
  16057. },
  16058. [
  16059. {
  16060. name: "Normal",
  16061. height: math.unit(2 + 10 / 12, "feet"),
  16062. default: true
  16063. },
  16064. ]
  16065. ))
  16066. characterMakers.push(() => makeCharacter(
  16067. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16068. {
  16069. front: {
  16070. height: math.unit(5 + 11 / 12, "feet"),
  16071. weight: math.unit(188, "lb"),
  16072. name: "Front",
  16073. image: {
  16074. source: "./media/characters/fleur/front.svg",
  16075. extra: 309 / 283,
  16076. bottom: 0.007
  16077. }
  16078. },
  16079. },
  16080. [
  16081. {
  16082. name: "Normal",
  16083. height: math.unit(5 + 11 / 12, "feet"),
  16084. default: true
  16085. },
  16086. ]
  16087. ))
  16088. characterMakers.push(() => makeCharacter(
  16089. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16090. {
  16091. front: {
  16092. height: math.unit(5 + 4 / 12, "feet"),
  16093. weight: math.unit(122, "lb"),
  16094. name: "Front",
  16095. image: {
  16096. source: "./media/characters/jude/front.svg",
  16097. extra: 288 / 273,
  16098. bottom: 0.03
  16099. }
  16100. },
  16101. },
  16102. [
  16103. {
  16104. name: "Normal",
  16105. height: math.unit(5 + 4 / 12, "feet"),
  16106. default: true
  16107. },
  16108. ]
  16109. ))
  16110. characterMakers.push(() => makeCharacter(
  16111. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16112. {
  16113. front: {
  16114. height: math.unit(5 + 11 / 12, "feet"),
  16115. weight: math.unit(190, "lb"),
  16116. name: "Front",
  16117. image: {
  16118. source: "./media/characters/seara/front.svg",
  16119. extra: 1,
  16120. bottom: 0.05
  16121. }
  16122. },
  16123. },
  16124. [
  16125. {
  16126. name: "Normal",
  16127. height: math.unit(5 + 11 / 12, "feet"),
  16128. default: true
  16129. },
  16130. ]
  16131. ))
  16132. characterMakers.push(() => makeCharacter(
  16133. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16134. {
  16135. front: {
  16136. height: math.unit(16 + 5 / 12, "feet"),
  16137. weight: math.unit(524, "lb"),
  16138. name: "Front",
  16139. image: {
  16140. source: "./media/characters/caspian-lugia/front.svg",
  16141. extra: 1,
  16142. bottom: 0.04
  16143. }
  16144. },
  16145. },
  16146. [
  16147. {
  16148. name: "Normal",
  16149. height: math.unit(16 + 5 / 12, "feet"),
  16150. default: true
  16151. },
  16152. ]
  16153. ))
  16154. characterMakers.push(() => makeCharacter(
  16155. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16156. {
  16157. front: {
  16158. height: math.unit(5 + 7 / 12, "feet"),
  16159. weight: math.unit(170, "lb"),
  16160. name: "Front",
  16161. image: {
  16162. source: "./media/characters/mika/front.svg",
  16163. extra: 1,
  16164. bottom: 0.016
  16165. }
  16166. },
  16167. },
  16168. [
  16169. {
  16170. name: "Normal",
  16171. height: math.unit(5 + 7 / 12, "feet"),
  16172. default: true
  16173. },
  16174. ]
  16175. ))
  16176. characterMakers.push(() => makeCharacter(
  16177. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16178. {
  16179. front: {
  16180. height: math.unit(6 + 2 / 12, "feet"),
  16181. weight: math.unit(268, "lb"),
  16182. name: "Front",
  16183. image: {
  16184. source: "./media/characters/sol/front.svg",
  16185. extra: 247 / 231,
  16186. bottom: 0.05
  16187. }
  16188. },
  16189. },
  16190. [
  16191. {
  16192. name: "Normal",
  16193. height: math.unit(6 + 2 / 12, "feet"),
  16194. default: true
  16195. },
  16196. ]
  16197. ))
  16198. characterMakers.push(() => makeCharacter(
  16199. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16200. {
  16201. buizel: {
  16202. height: math.unit(2 + 5 / 12, "feet"),
  16203. weight: math.unit(87, "lb"),
  16204. name: "Front",
  16205. image: {
  16206. source: "./media/characters/umiko/buizel.svg",
  16207. extra: 172 / 157,
  16208. bottom: 0.01
  16209. },
  16210. form: "buizel",
  16211. default: true
  16212. },
  16213. floatzel: {
  16214. height: math.unit(5 + 9 / 12, "feet"),
  16215. weight: math.unit(250, "lb"),
  16216. name: "Front",
  16217. image: {
  16218. source: "./media/characters/umiko/floatzel.svg",
  16219. extra: 1076/1006,
  16220. bottom: 15/1091
  16221. },
  16222. form: "floatzel",
  16223. default: true
  16224. },
  16225. },
  16226. [
  16227. {
  16228. name: "Normal",
  16229. height: math.unit(2 + 5 / 12, "feet"),
  16230. form: "buizel",
  16231. default: true
  16232. },
  16233. {
  16234. name: "Normal",
  16235. height: math.unit(5 + 9 / 12, "feet"),
  16236. form: "floatzel",
  16237. default: true
  16238. },
  16239. ],
  16240. {
  16241. "buizel": {
  16242. name: "Buizel"
  16243. },
  16244. "floatzel": {
  16245. name: "Floatzel",
  16246. default: true
  16247. }
  16248. }
  16249. ))
  16250. characterMakers.push(() => makeCharacter(
  16251. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16252. {
  16253. front: {
  16254. height: math.unit(6 + 2 / 12, "feet"),
  16255. weight: math.unit(146, "lb"),
  16256. name: "Front",
  16257. image: {
  16258. source: "./media/characters/iliac/front.svg",
  16259. extra: 389 / 365,
  16260. bottom: 0.035
  16261. }
  16262. },
  16263. },
  16264. [
  16265. {
  16266. name: "Normal",
  16267. height: math.unit(6 + 2 / 12, "feet"),
  16268. default: true
  16269. },
  16270. ]
  16271. ))
  16272. characterMakers.push(() => makeCharacter(
  16273. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16274. {
  16275. front: {
  16276. height: math.unit(6, "feet"),
  16277. weight: math.unit(170, "lb"),
  16278. name: "Front",
  16279. image: {
  16280. source: "./media/characters/topaz/front.svg",
  16281. extra: 317 / 303,
  16282. bottom: 0.055
  16283. }
  16284. },
  16285. },
  16286. [
  16287. {
  16288. name: "Normal",
  16289. height: math.unit(6, "feet"),
  16290. default: true
  16291. },
  16292. ]
  16293. ))
  16294. characterMakers.push(() => makeCharacter(
  16295. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16296. {
  16297. front: {
  16298. height: math.unit(5 + 11 / 12, "feet"),
  16299. weight: math.unit(144, "lb"),
  16300. name: "Front",
  16301. image: {
  16302. source: "./media/characters/gabriel/front.svg",
  16303. extra: 285 / 262,
  16304. bottom: 0.004
  16305. }
  16306. },
  16307. },
  16308. [
  16309. {
  16310. name: "Normal",
  16311. height: math.unit(5 + 11 / 12, "feet"),
  16312. default: true
  16313. },
  16314. ]
  16315. ))
  16316. characterMakers.push(() => makeCharacter(
  16317. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16318. {
  16319. side: {
  16320. height: math.unit(6 + 5 / 12, "feet"),
  16321. weight: math.unit(300, "lb"),
  16322. name: "Side",
  16323. image: {
  16324. source: "./media/characters/tempest-suicune/side.svg",
  16325. extra: 195 / 154,
  16326. bottom: 0.04
  16327. }
  16328. },
  16329. },
  16330. [
  16331. {
  16332. name: "Normal",
  16333. height: math.unit(6 + 5 / 12, "feet"),
  16334. default: true
  16335. },
  16336. ]
  16337. ))
  16338. characterMakers.push(() => makeCharacter(
  16339. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16340. {
  16341. front: {
  16342. height: math.unit(7 + 2 / 12, "feet"),
  16343. weight: math.unit(322, "lb"),
  16344. name: "Front",
  16345. image: {
  16346. source: "./media/characters/vulcan/front.svg",
  16347. extra: 154 / 147,
  16348. bottom: 0.04
  16349. }
  16350. },
  16351. },
  16352. [
  16353. {
  16354. name: "Normal",
  16355. height: math.unit(7 + 2 / 12, "feet"),
  16356. default: true
  16357. },
  16358. ]
  16359. ))
  16360. characterMakers.push(() => makeCharacter(
  16361. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16362. {
  16363. front: {
  16364. height: math.unit(5 + 10 / 12, "feet"),
  16365. weight: math.unit(264, "lb"),
  16366. name: "Front",
  16367. image: {
  16368. source: "./media/characters/gault/front.svg",
  16369. extra: 161 / 140,
  16370. bottom: 0.028
  16371. }
  16372. },
  16373. },
  16374. [
  16375. {
  16376. name: "Normal",
  16377. height: math.unit(5 + 10 / 12, "feet"),
  16378. default: true
  16379. },
  16380. ]
  16381. ))
  16382. characterMakers.push(() => makeCharacter(
  16383. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16384. {
  16385. front: {
  16386. height: math.unit(6, "feet"),
  16387. weight: math.unit(150, "lb"),
  16388. name: "Front",
  16389. image: {
  16390. source: "./media/characters/shard/front.svg",
  16391. extra: 273 / 238,
  16392. bottom: 0.02
  16393. }
  16394. },
  16395. },
  16396. [
  16397. {
  16398. name: "Normal",
  16399. height: math.unit(3 + 6 / 12, "feet"),
  16400. default: true
  16401. },
  16402. ]
  16403. ))
  16404. characterMakers.push(() => makeCharacter(
  16405. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16406. {
  16407. front: {
  16408. height: math.unit(5 + 11 / 12, "feet"),
  16409. weight: math.unit(146, "lb"),
  16410. name: "Front",
  16411. image: {
  16412. source: "./media/characters/ashe/front.svg",
  16413. extra: 400 / 373,
  16414. bottom: 0.01
  16415. }
  16416. },
  16417. },
  16418. [
  16419. {
  16420. name: "Normal",
  16421. height: math.unit(5 + 11 / 12, "feet"),
  16422. default: true
  16423. },
  16424. ]
  16425. ))
  16426. characterMakers.push(() => makeCharacter(
  16427. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16428. {
  16429. front: {
  16430. height: math.unit(5 + 5 / 12, "feet"),
  16431. weight: math.unit(135, "lb"),
  16432. name: "Front",
  16433. image: {
  16434. source: "./media/characters/beatrix/front.svg",
  16435. extra: 392 / 379,
  16436. bottom: 0.01
  16437. }
  16438. },
  16439. },
  16440. [
  16441. {
  16442. name: "Normal",
  16443. height: math.unit(6, "feet"),
  16444. default: true
  16445. },
  16446. ]
  16447. ))
  16448. characterMakers.push(() => makeCharacter(
  16449. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16450. {
  16451. front: {
  16452. height: math.unit(6 + 2/12, "feet"),
  16453. weight: math.unit(135, "lb"),
  16454. name: "Front",
  16455. image: {
  16456. source: "./media/characters/ignatius/front.svg",
  16457. extra: 1380/1259,
  16458. bottom: 27/1407
  16459. }
  16460. },
  16461. },
  16462. [
  16463. {
  16464. name: "Normal",
  16465. height: math.unit(6 + 2/12, "feet"),
  16466. default: true
  16467. },
  16468. ]
  16469. ))
  16470. characterMakers.push(() => makeCharacter(
  16471. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16472. {
  16473. front: {
  16474. height: math.unit(6 + 2 / 12, "feet"),
  16475. weight: math.unit(138, "lb"),
  16476. name: "Front",
  16477. image: {
  16478. source: "./media/characters/mei-li/front.svg",
  16479. extra: 237 / 229,
  16480. bottom: 0.03
  16481. }
  16482. },
  16483. },
  16484. [
  16485. {
  16486. name: "Normal",
  16487. height: math.unit(6 + 2 / 12, "feet"),
  16488. default: true
  16489. },
  16490. ]
  16491. ))
  16492. characterMakers.push(() => makeCharacter(
  16493. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16494. {
  16495. front: {
  16496. height: math.unit(2 + 4 / 12, "feet"),
  16497. weight: math.unit(62, "lb"),
  16498. name: "Front",
  16499. image: {
  16500. source: "./media/characters/puru/front.svg",
  16501. extra: 206 / 149,
  16502. bottom: 0.06
  16503. }
  16504. },
  16505. },
  16506. [
  16507. {
  16508. name: "Normal",
  16509. height: math.unit(2 + 4 / 12, "feet"),
  16510. default: true
  16511. },
  16512. ]
  16513. ))
  16514. characterMakers.push(() => makeCharacter(
  16515. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16516. {
  16517. anthro: {
  16518. height: math.unit(5 + 8/12, "feet"),
  16519. weight: math.unit(200, "lb"),
  16520. energyNeed: math.unit(2000, "kcal"),
  16521. name: "Anthro",
  16522. image: {
  16523. source: "./media/characters/kee/anthro.svg",
  16524. extra: 3251/3184,
  16525. bottom: 250/3501
  16526. }
  16527. },
  16528. taur: {
  16529. height: math.unit(11, "feet"),
  16530. weight: math.unit(500, "lb"),
  16531. energyNeed: math.unit(5000, "kcal"),
  16532. name: "Taur",
  16533. image: {
  16534. source: "./media/characters/kee/taur.svg",
  16535. extra: 1362/1320,
  16536. bottom: 83/1445
  16537. }
  16538. },
  16539. },
  16540. [
  16541. {
  16542. name: "Normal",
  16543. height: math.unit(5 + 8/12, "feet"),
  16544. default: true
  16545. },
  16546. {
  16547. name: "Macro",
  16548. height: math.unit(35, "feet")
  16549. },
  16550. ]
  16551. ))
  16552. characterMakers.push(() => makeCharacter(
  16553. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16554. {
  16555. anthro: {
  16556. height: math.unit(7, "feet"),
  16557. weight: math.unit(190, "lb"),
  16558. name: "Anthro",
  16559. image: {
  16560. source: "./media/characters/cobalt-dracha/anthro.svg",
  16561. extra: 231 / 225,
  16562. bottom: 0.04
  16563. }
  16564. },
  16565. feral: {
  16566. height: math.unit(9 + 7 / 12, "feet"),
  16567. weight: math.unit(294, "lb"),
  16568. name: "Feral",
  16569. image: {
  16570. source: "./media/characters/cobalt-dracha/feral.svg",
  16571. extra: 692 / 633,
  16572. bottom: 0.05
  16573. }
  16574. },
  16575. },
  16576. [
  16577. {
  16578. name: "Normal",
  16579. height: math.unit(7, "feet"),
  16580. default: true
  16581. },
  16582. ]
  16583. ))
  16584. characterMakers.push(() => makeCharacter(
  16585. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16586. {
  16587. fallen: {
  16588. height: math.unit(11 + 8 / 12, "feet"),
  16589. weight: math.unit(485, "lb"),
  16590. name: "Java (Fallen)",
  16591. rename: true,
  16592. image: {
  16593. source: "./media/characters/java/fallen.svg",
  16594. extra: 226 / 208,
  16595. bottom: 0.005
  16596. }
  16597. },
  16598. godkin: {
  16599. height: math.unit(10 + 6 / 12, "feet"),
  16600. weight: math.unit(328, "lb"),
  16601. name: "Java (Godkin)",
  16602. rename: true,
  16603. image: {
  16604. source: "./media/characters/java/godkin.svg",
  16605. extra: 1104/1068,
  16606. bottom: 36/1140
  16607. }
  16608. },
  16609. },
  16610. [
  16611. {
  16612. name: "Normal",
  16613. height: math.unit(11 + 8 / 12, "feet"),
  16614. default: true
  16615. },
  16616. ]
  16617. ))
  16618. characterMakers.push(() => makeCharacter(
  16619. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16620. {
  16621. front: {
  16622. height: math.unit(5 + 9 / 12, "feet"),
  16623. weight: math.unit(170, "lb"),
  16624. name: "Front",
  16625. image: {
  16626. source: "./media/characters/purna/front.svg",
  16627. extra: 239 / 229,
  16628. bottom: 0.01
  16629. }
  16630. },
  16631. },
  16632. [
  16633. {
  16634. name: "Normal",
  16635. height: math.unit(5 + 9 / 12, "feet"),
  16636. default: true
  16637. },
  16638. ]
  16639. ))
  16640. characterMakers.push(() => makeCharacter(
  16641. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16642. {
  16643. front: {
  16644. height: math.unit(5 + 9 / 12, "feet"),
  16645. weight: math.unit(142, "lb"),
  16646. name: "Front",
  16647. image: {
  16648. source: "./media/characters/kuva/front.svg",
  16649. extra: 281 / 271,
  16650. bottom: 0.006
  16651. }
  16652. },
  16653. },
  16654. [
  16655. {
  16656. name: "Normal",
  16657. height: math.unit(5 + 9 / 12, "feet"),
  16658. default: true
  16659. },
  16660. ]
  16661. ))
  16662. characterMakers.push(() => makeCharacter(
  16663. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16664. {
  16665. anthro: {
  16666. height: math.unit(9 + 2 / 12, "feet"),
  16667. weight: math.unit(270, "lb"),
  16668. name: "Anthro",
  16669. image: {
  16670. source: "./media/characters/embra/anthro.svg",
  16671. extra: 200 / 187,
  16672. bottom: 0.02
  16673. }
  16674. },
  16675. feral: {
  16676. height: math.unit(18 + 8 / 12, "feet"),
  16677. weight: math.unit(576, "lb"),
  16678. name: "Feral",
  16679. image: {
  16680. source: "./media/characters/embra/feral.svg",
  16681. extra: 152 / 137,
  16682. bottom: 0.037
  16683. }
  16684. },
  16685. },
  16686. [
  16687. {
  16688. name: "Normal",
  16689. height: math.unit(9 + 2 / 12, "feet"),
  16690. default: true
  16691. },
  16692. ]
  16693. ))
  16694. characterMakers.push(() => makeCharacter(
  16695. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16696. {
  16697. anthro: {
  16698. height: math.unit(10 + 9 / 12, "feet"),
  16699. weight: math.unit(224, "lb"),
  16700. name: "Anthro",
  16701. image: {
  16702. source: "./media/characters/grottos/anthro.svg",
  16703. extra: 350 / 332,
  16704. bottom: 0.045
  16705. }
  16706. },
  16707. feral: {
  16708. height: math.unit(20 + 7 / 12, "feet"),
  16709. weight: math.unit(629, "lb"),
  16710. name: "Feral",
  16711. image: {
  16712. source: "./media/characters/grottos/feral.svg",
  16713. extra: 207 / 190,
  16714. bottom: 0.05
  16715. }
  16716. },
  16717. },
  16718. [
  16719. {
  16720. name: "Normal",
  16721. height: math.unit(10 + 9 / 12, "feet"),
  16722. default: true
  16723. },
  16724. ]
  16725. ))
  16726. characterMakers.push(() => makeCharacter(
  16727. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16728. {
  16729. anthro: {
  16730. height: math.unit(9 + 6 / 12, "feet"),
  16731. weight: math.unit(298, "lb"),
  16732. name: "Anthro",
  16733. image: {
  16734. source: "./media/characters/frifna/anthro.svg",
  16735. extra: 282 / 269,
  16736. bottom: 0.015
  16737. }
  16738. },
  16739. feral: {
  16740. height: math.unit(16 + 2 / 12, "feet"),
  16741. weight: math.unit(624, "lb"),
  16742. name: "Feral",
  16743. image: {
  16744. source: "./media/characters/frifna/feral.svg"
  16745. }
  16746. },
  16747. },
  16748. [
  16749. {
  16750. name: "Normal",
  16751. height: math.unit(9 + 6 / 12, "feet"),
  16752. default: true
  16753. },
  16754. ]
  16755. ))
  16756. characterMakers.push(() => makeCharacter(
  16757. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16758. {
  16759. front: {
  16760. height: math.unit(6 + 2 / 12, "feet"),
  16761. weight: math.unit(168, "lb"),
  16762. name: "Front",
  16763. image: {
  16764. source: "./media/characters/elise/front.svg",
  16765. extra: 276 / 271
  16766. }
  16767. },
  16768. },
  16769. [
  16770. {
  16771. name: "Normal",
  16772. height: math.unit(6 + 2 / 12, "feet"),
  16773. default: true
  16774. },
  16775. ]
  16776. ))
  16777. characterMakers.push(() => makeCharacter(
  16778. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16779. {
  16780. front: {
  16781. height: math.unit(5 + 10 / 12, "feet"),
  16782. weight: math.unit(210, "lb"),
  16783. name: "Front",
  16784. image: {
  16785. source: "./media/characters/glade/front.svg",
  16786. extra: 258 / 247,
  16787. bottom: 0.008
  16788. }
  16789. },
  16790. },
  16791. [
  16792. {
  16793. name: "Normal",
  16794. height: math.unit(5 + 10 / 12, "feet"),
  16795. default: true
  16796. },
  16797. ]
  16798. ))
  16799. characterMakers.push(() => makeCharacter(
  16800. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16801. {
  16802. front: {
  16803. height: math.unit(5 + 10 / 12, "feet"),
  16804. weight: math.unit(129, "lb"),
  16805. name: "Front",
  16806. image: {
  16807. source: "./media/characters/rina/front.svg",
  16808. extra: 266 / 255,
  16809. bottom: 0.005
  16810. }
  16811. },
  16812. },
  16813. [
  16814. {
  16815. name: "Normal",
  16816. height: math.unit(5 + 10 / 12, "feet"),
  16817. default: true
  16818. },
  16819. ]
  16820. ))
  16821. characterMakers.push(() => makeCharacter(
  16822. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16823. {
  16824. front: {
  16825. height: math.unit(6 + 1 / 12, "feet"),
  16826. weight: math.unit(192, "lb"),
  16827. name: "Front",
  16828. image: {
  16829. source: "./media/characters/veronica/front.svg",
  16830. extra: 319 / 309,
  16831. bottom: 0.005
  16832. }
  16833. },
  16834. },
  16835. [
  16836. {
  16837. name: "Normal",
  16838. height: math.unit(6 + 1 / 12, "feet"),
  16839. default: true
  16840. },
  16841. ]
  16842. ))
  16843. characterMakers.push(() => makeCharacter(
  16844. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16845. {
  16846. front: {
  16847. height: math.unit(9 + 3 / 12, "feet"),
  16848. weight: math.unit(1100, "lb"),
  16849. name: "Front",
  16850. image: {
  16851. source: "./media/characters/braxton/front.svg",
  16852. extra: 1057 / 984,
  16853. bottom: 0.05
  16854. }
  16855. },
  16856. },
  16857. [
  16858. {
  16859. name: "Normal",
  16860. height: math.unit(9 + 3 / 12, "feet")
  16861. },
  16862. {
  16863. name: "Giant",
  16864. height: math.unit(300, "feet"),
  16865. default: true
  16866. },
  16867. {
  16868. name: "Macro",
  16869. height: math.unit(700, "feet")
  16870. },
  16871. {
  16872. name: "Megamacro",
  16873. height: math.unit(6000, "feet")
  16874. },
  16875. ]
  16876. ))
  16877. characterMakers.push(() => makeCharacter(
  16878. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16879. {
  16880. front: {
  16881. height: math.unit(6 + 7 / 12, "feet"),
  16882. weight: math.unit(150, "lb"),
  16883. name: "Front",
  16884. image: {
  16885. source: "./media/characters/blue-feyonics/front.svg",
  16886. extra: 1403 / 1306,
  16887. bottom: 0.047
  16888. }
  16889. },
  16890. },
  16891. [
  16892. {
  16893. name: "Normal",
  16894. height: math.unit(6 + 7 / 12, "feet"),
  16895. default: true
  16896. },
  16897. ]
  16898. ))
  16899. characterMakers.push(() => makeCharacter(
  16900. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16901. {
  16902. front: {
  16903. height: math.unit(1.8, "meters"),
  16904. weight: math.unit(60, "kg"),
  16905. name: "Front",
  16906. image: {
  16907. source: "./media/characters/maxwell/front.svg",
  16908. extra: 2060 / 1873
  16909. }
  16910. },
  16911. },
  16912. [
  16913. {
  16914. name: "Micro",
  16915. height: math.unit(1, "mm")
  16916. },
  16917. {
  16918. name: "Normal",
  16919. height: math.unit(1.8, "meter"),
  16920. default: true
  16921. },
  16922. {
  16923. name: "Macro",
  16924. height: math.unit(30, "meters")
  16925. },
  16926. {
  16927. name: "Megamacro",
  16928. height: math.unit(10, "km")
  16929. },
  16930. ]
  16931. ))
  16932. characterMakers.push(() => makeCharacter(
  16933. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16934. {
  16935. front: {
  16936. height: math.unit(6, "feet"),
  16937. weight: math.unit(150, "lb"),
  16938. name: "Front",
  16939. image: {
  16940. source: "./media/characters/jack/front.svg",
  16941. extra: 1754 / 1640,
  16942. bottom: 0.01
  16943. }
  16944. },
  16945. },
  16946. [
  16947. {
  16948. name: "Normal",
  16949. height: math.unit(80000, "feet"),
  16950. default: true
  16951. },
  16952. {
  16953. name: "Max size",
  16954. height: math.unit(10, "lightyears")
  16955. },
  16956. ]
  16957. ))
  16958. characterMakers.push(() => makeCharacter(
  16959. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16960. {
  16961. urban: {
  16962. height: math.unit(5, "feet"),
  16963. weight: math.unit(240, "lb"),
  16964. name: "Urban",
  16965. image: {
  16966. source: "./media/characters/cafat/urban.svg",
  16967. extra: 1223/1126,
  16968. bottom: 205/1428
  16969. }
  16970. },
  16971. summer: {
  16972. height: math.unit(5, "feet"),
  16973. weight: math.unit(240, "lb"),
  16974. name: "Summer",
  16975. image: {
  16976. source: "./media/characters/cafat/summer.svg",
  16977. extra: 1223/1126,
  16978. bottom: 205/1428
  16979. }
  16980. },
  16981. winter: {
  16982. height: math.unit(5, "feet"),
  16983. weight: math.unit(240, "lb"),
  16984. name: "Winter",
  16985. image: {
  16986. source: "./media/characters/cafat/winter.svg",
  16987. extra: 1223/1126,
  16988. bottom: 205/1428
  16989. }
  16990. },
  16991. lingerie: {
  16992. height: math.unit(5, "feet"),
  16993. weight: math.unit(240, "lb"),
  16994. name: "Lingerie",
  16995. image: {
  16996. source: "./media/characters/cafat/lingerie.svg",
  16997. extra: 1223/1126,
  16998. bottom: 205/1428
  16999. }
  17000. },
  17001. upright: {
  17002. height: math.unit(6.3, "feet"),
  17003. weight: math.unit(240, "lb"),
  17004. name: "Upright",
  17005. image: {
  17006. source: "./media/characters/cafat/upright.svg",
  17007. bottom: 0.01
  17008. }
  17009. },
  17010. uprightFull: {
  17011. height: math.unit(6.3, "feet"),
  17012. weight: math.unit(240, "lb"),
  17013. name: "Upright (Full)",
  17014. image: {
  17015. source: "./media/characters/cafat/upright-full.svg",
  17016. bottom: 0.01
  17017. }
  17018. },
  17019. },
  17020. [
  17021. {
  17022. name: "Small",
  17023. height: math.unit(5, "feet"),
  17024. default: true
  17025. },
  17026. {
  17027. name: "Large",
  17028. height: math.unit(13, "feet")
  17029. },
  17030. ]
  17031. ))
  17032. characterMakers.push(() => makeCharacter(
  17033. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17034. {
  17035. front: {
  17036. height: math.unit(6, "feet"),
  17037. weight: math.unit(150, "lb"),
  17038. name: "Front",
  17039. image: {
  17040. source: "./media/characters/verin-raharra/front.svg",
  17041. extra: 5019 / 4835,
  17042. bottom: 0.023
  17043. }
  17044. },
  17045. },
  17046. [
  17047. {
  17048. name: "Normal",
  17049. height: math.unit(7 + 5 / 12, "feet"),
  17050. default: true
  17051. },
  17052. {
  17053. name: "Upsized",
  17054. height: math.unit(20, "feet")
  17055. },
  17056. ]
  17057. ))
  17058. characterMakers.push(() => makeCharacter(
  17059. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17060. {
  17061. front: {
  17062. height: math.unit(7, "feet"),
  17063. weight: math.unit(230, "lb"),
  17064. name: "Front",
  17065. image: {
  17066. source: "./media/characters/nakata/front.svg",
  17067. extra: 1.005,
  17068. bottom: 0.01
  17069. }
  17070. },
  17071. },
  17072. [
  17073. {
  17074. name: "Normal",
  17075. height: math.unit(7, "feet"),
  17076. default: true
  17077. },
  17078. {
  17079. name: "Big",
  17080. height: math.unit(14, "feet")
  17081. },
  17082. {
  17083. name: "Macro",
  17084. height: math.unit(400, "feet")
  17085. },
  17086. ]
  17087. ))
  17088. characterMakers.push(() => makeCharacter(
  17089. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17090. {
  17091. front: {
  17092. height: math.unit(4.91, "feet"),
  17093. weight: math.unit(100, "lb"),
  17094. name: "Front",
  17095. image: {
  17096. source: "./media/characters/lily/front.svg",
  17097. extra: 1585 / 1415,
  17098. bottom: 0.02
  17099. }
  17100. },
  17101. },
  17102. [
  17103. {
  17104. name: "Normal",
  17105. height: math.unit(4.91, "feet"),
  17106. default: true
  17107. },
  17108. ]
  17109. ))
  17110. characterMakers.push(() => makeCharacter(
  17111. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17112. {
  17113. laying: {
  17114. height: math.unit(4 + 4 / 12, "feet"),
  17115. weight: math.unit(600, "lb"),
  17116. name: "Laying",
  17117. image: {
  17118. source: "./media/characters/sheila/laying.svg",
  17119. extra: 1333 / 1265,
  17120. bottom: 0.16
  17121. }
  17122. },
  17123. },
  17124. [
  17125. {
  17126. name: "Normal",
  17127. height: math.unit(4 + 4 / 12, "feet"),
  17128. default: true
  17129. },
  17130. ]
  17131. ))
  17132. characterMakers.push(() => makeCharacter(
  17133. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17134. {
  17135. front: {
  17136. height: math.unit(6, "feet"),
  17137. weight: math.unit(190, "lb"),
  17138. name: "Front",
  17139. image: {
  17140. source: "./media/characters/sax/front.svg",
  17141. extra: 1187 / 973,
  17142. bottom: 0.042
  17143. }
  17144. },
  17145. },
  17146. [
  17147. {
  17148. name: "Micro",
  17149. height: math.unit(4, "inches"),
  17150. default: true
  17151. },
  17152. ]
  17153. ))
  17154. characterMakers.push(() => makeCharacter(
  17155. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17156. {
  17157. front: {
  17158. height: math.unit(6, "feet"),
  17159. weight: math.unit(150, "lb"),
  17160. name: "Front",
  17161. image: {
  17162. source: "./media/characters/pandora/front.svg",
  17163. extra: 2720 / 2556,
  17164. bottom: 0.015
  17165. }
  17166. },
  17167. back: {
  17168. height: math.unit(6, "feet"),
  17169. weight: math.unit(150, "lb"),
  17170. name: "Back",
  17171. image: {
  17172. source: "./media/characters/pandora/back.svg",
  17173. extra: 2720 / 2556,
  17174. bottom: 0.01
  17175. }
  17176. },
  17177. beans: {
  17178. height: math.unit(6 / 8, "feet"),
  17179. name: "Beans",
  17180. image: {
  17181. source: "./media/characters/pandora/beans.svg"
  17182. }
  17183. },
  17184. collar: {
  17185. height: math.unit(0.31, "feet"),
  17186. name: "Collar",
  17187. image: {
  17188. source: "./media/characters/pandora/collar.svg"
  17189. }
  17190. },
  17191. skirt: {
  17192. height: math.unit(6, "feet"),
  17193. weight: math.unit(150, "lb"),
  17194. name: "Skirt",
  17195. image: {
  17196. source: "./media/characters/pandora/skirt.svg",
  17197. extra: 1622 / 1525,
  17198. bottom: 0.015
  17199. }
  17200. },
  17201. hoodie: {
  17202. height: math.unit(6, "feet"),
  17203. weight: math.unit(150, "lb"),
  17204. name: "Hoodie",
  17205. image: {
  17206. source: "./media/characters/pandora/hoodie.svg",
  17207. extra: 1622 / 1525,
  17208. bottom: 0.015
  17209. }
  17210. },
  17211. casual: {
  17212. height: math.unit(6, "feet"),
  17213. weight: math.unit(150, "lb"),
  17214. name: "Casual",
  17215. image: {
  17216. source: "./media/characters/pandora/casual.svg",
  17217. extra: 1622 / 1525,
  17218. bottom: 0.015
  17219. }
  17220. },
  17221. },
  17222. [
  17223. {
  17224. name: "Normal",
  17225. height: math.unit(6, "feet")
  17226. },
  17227. {
  17228. name: "Big Steppy",
  17229. height: math.unit(1, "km"),
  17230. default: true
  17231. },
  17232. {
  17233. name: "Galactic Steppy",
  17234. height: math.unit(2, "gigameters")
  17235. },
  17236. ]
  17237. ))
  17238. characterMakers.push(() => makeCharacter(
  17239. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17240. {
  17241. side: {
  17242. height: math.unit(10, "feet"),
  17243. weight: math.unit(800, "kg"),
  17244. name: "Side",
  17245. image: {
  17246. source: "./media/characters/venio-darcony/side.svg",
  17247. extra: 1373 / 1003,
  17248. bottom: 0.037
  17249. }
  17250. },
  17251. front: {
  17252. height: math.unit(19, "feet"),
  17253. weight: math.unit(800, "kg"),
  17254. name: "Front",
  17255. image: {
  17256. source: "./media/characters/venio-darcony/front.svg"
  17257. }
  17258. },
  17259. back: {
  17260. height: math.unit(19, "feet"),
  17261. weight: math.unit(800, "kg"),
  17262. name: "Back",
  17263. image: {
  17264. source: "./media/characters/venio-darcony/back.svg"
  17265. }
  17266. },
  17267. sideNsfw: {
  17268. height: math.unit(10, "feet"),
  17269. weight: math.unit(800, "kg"),
  17270. name: "Side (NSFW)",
  17271. image: {
  17272. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17273. extra: 1373 / 1003,
  17274. bottom: 0.037
  17275. }
  17276. },
  17277. frontNsfw: {
  17278. height: math.unit(19, "feet"),
  17279. weight: math.unit(800, "kg"),
  17280. name: "Front (NSFW)",
  17281. image: {
  17282. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17283. }
  17284. },
  17285. backNsfw: {
  17286. height: math.unit(19, "feet"),
  17287. weight: math.unit(800, "kg"),
  17288. name: "Back (NSFW)",
  17289. image: {
  17290. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17291. }
  17292. },
  17293. sideArmored: {
  17294. height: math.unit(10, "feet"),
  17295. weight: math.unit(800, "kg"),
  17296. name: "Side (Armored)",
  17297. image: {
  17298. source: "./media/characters/venio-darcony/side-armored.svg",
  17299. extra: 1373 / 1003,
  17300. bottom: 0.037
  17301. }
  17302. },
  17303. frontArmored: {
  17304. height: math.unit(19, "feet"),
  17305. weight: math.unit(900, "kg"),
  17306. name: "Front (Armored)",
  17307. image: {
  17308. source: "./media/characters/venio-darcony/front-armored.svg"
  17309. }
  17310. },
  17311. backArmored: {
  17312. height: math.unit(19, "feet"),
  17313. weight: math.unit(900, "kg"),
  17314. name: "Back (Armored)",
  17315. image: {
  17316. source: "./media/characters/venio-darcony/back-armored.svg"
  17317. }
  17318. },
  17319. sword: {
  17320. height: math.unit(10, "feet"),
  17321. weight: math.unit(50, "lb"),
  17322. name: "Sword",
  17323. image: {
  17324. source: "./media/characters/venio-darcony/sword.svg"
  17325. }
  17326. },
  17327. },
  17328. [
  17329. {
  17330. name: "Normal",
  17331. height: math.unit(10, "feet")
  17332. },
  17333. {
  17334. name: "Macro",
  17335. height: math.unit(130, "feet"),
  17336. default: true
  17337. },
  17338. {
  17339. name: "Macro+",
  17340. height: math.unit(240, "feet")
  17341. },
  17342. ]
  17343. ))
  17344. characterMakers.push(() => makeCharacter(
  17345. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17346. {
  17347. front: {
  17348. height: math.unit(6, "feet"),
  17349. weight: math.unit(150, "lb"),
  17350. name: "Front",
  17351. image: {
  17352. source: "./media/characters/veski/front.svg",
  17353. extra: 1299 / 1225,
  17354. bottom: 0.04
  17355. }
  17356. },
  17357. back: {
  17358. height: math.unit(6, "feet"),
  17359. weight: math.unit(150, "lb"),
  17360. name: "Back",
  17361. image: {
  17362. source: "./media/characters/veski/back.svg",
  17363. extra: 1299 / 1225,
  17364. bottom: 0.008
  17365. }
  17366. },
  17367. maw: {
  17368. height: math.unit(1.5 * 1.21, "feet"),
  17369. name: "Maw",
  17370. image: {
  17371. source: "./media/characters/veski/maw.svg"
  17372. }
  17373. },
  17374. },
  17375. [
  17376. {
  17377. name: "Macro",
  17378. height: math.unit(2, "km"),
  17379. default: true
  17380. },
  17381. ]
  17382. ))
  17383. characterMakers.push(() => makeCharacter(
  17384. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17385. {
  17386. front: {
  17387. height: math.unit(5 + 7 / 12, "feet"),
  17388. name: "Front",
  17389. image: {
  17390. source: "./media/characters/isabelle/front.svg",
  17391. extra: 2130 / 1976,
  17392. bottom: 0.05
  17393. }
  17394. },
  17395. },
  17396. [
  17397. {
  17398. name: "Supermicro",
  17399. height: math.unit(10, "micrometers")
  17400. },
  17401. {
  17402. name: "Micro",
  17403. height: math.unit(1, "inch")
  17404. },
  17405. {
  17406. name: "Tiny",
  17407. height: math.unit(5, "inches")
  17408. },
  17409. {
  17410. name: "Standard",
  17411. height: math.unit(5 + 7 / 12, "inches")
  17412. },
  17413. {
  17414. name: "Macro",
  17415. height: math.unit(80, "meters"),
  17416. default: true
  17417. },
  17418. {
  17419. name: "Megamacro",
  17420. height: math.unit(250, "meters")
  17421. },
  17422. {
  17423. name: "Gigamacro",
  17424. height: math.unit(5, "km")
  17425. },
  17426. {
  17427. name: "Cosmic",
  17428. height: math.unit(2.5e6, "miles")
  17429. },
  17430. ]
  17431. ))
  17432. characterMakers.push(() => makeCharacter(
  17433. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17434. {
  17435. front: {
  17436. height: math.unit(6, "feet"),
  17437. weight: math.unit(150, "lb"),
  17438. name: "Front",
  17439. image: {
  17440. source: "./media/characters/hanzo/front.svg",
  17441. extra: 374 / 344,
  17442. bottom: 0.02
  17443. }
  17444. },
  17445. },
  17446. [
  17447. {
  17448. name: "Normal",
  17449. height: math.unit(8, "feet"),
  17450. default: true
  17451. },
  17452. ]
  17453. ))
  17454. characterMakers.push(() => makeCharacter(
  17455. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17456. {
  17457. front: {
  17458. height: math.unit(7, "feet"),
  17459. weight: math.unit(130, "lb"),
  17460. name: "Front",
  17461. image: {
  17462. source: "./media/characters/anna/front.svg",
  17463. extra: 169 / 145,
  17464. bottom: 0.06
  17465. }
  17466. },
  17467. full: {
  17468. height: math.unit(4.96, "feet"),
  17469. weight: math.unit(220, "lb"),
  17470. name: "Full",
  17471. image: {
  17472. source: "./media/characters/anna/full.svg",
  17473. extra: 138 / 114,
  17474. bottom: 0.15
  17475. }
  17476. },
  17477. tongue: {
  17478. height: math.unit(2.53, "feet"),
  17479. name: "Tongue",
  17480. image: {
  17481. source: "./media/characters/anna/tongue.svg"
  17482. }
  17483. },
  17484. },
  17485. [
  17486. {
  17487. name: "Normal",
  17488. height: math.unit(7, "feet"),
  17489. default: true
  17490. },
  17491. ]
  17492. ))
  17493. characterMakers.push(() => makeCharacter(
  17494. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17495. {
  17496. front: {
  17497. height: math.unit(7, "feet"),
  17498. weight: math.unit(150, "lb"),
  17499. name: "Front",
  17500. image: {
  17501. source: "./media/characters/ian-corvid/front.svg",
  17502. extra: 150 / 142,
  17503. bottom: 0.02
  17504. }
  17505. },
  17506. back: {
  17507. height: math.unit(7, "feet"),
  17508. weight: math.unit(150, "lb"),
  17509. name: "Back",
  17510. image: {
  17511. source: "./media/characters/ian-corvid/back.svg",
  17512. extra: 150 / 143,
  17513. bottom: 0.01
  17514. }
  17515. },
  17516. stomping: {
  17517. height: math.unit(7, "feet"),
  17518. weight: math.unit(150, "lb"),
  17519. name: "Stomping",
  17520. image: {
  17521. source: "./media/characters/ian-corvid/stomping.svg",
  17522. extra: 76 / 72
  17523. }
  17524. },
  17525. sitting: {
  17526. height: math.unit(7 / 1.8, "feet"),
  17527. weight: math.unit(150, "lb"),
  17528. name: "Sitting",
  17529. image: {
  17530. source: "./media/characters/ian-corvid/sitting.svg",
  17531. extra: 1400 / 1269,
  17532. bottom: 0.15
  17533. }
  17534. },
  17535. },
  17536. [
  17537. {
  17538. name: "Tiny Microw",
  17539. height: math.unit(1, "inch")
  17540. },
  17541. {
  17542. name: "Microw",
  17543. height: math.unit(6, "inches")
  17544. },
  17545. {
  17546. name: "Crow",
  17547. height: math.unit(7 + 1 / 12, "feet"),
  17548. default: true
  17549. },
  17550. {
  17551. name: "Macrow",
  17552. height: math.unit(176, "feet")
  17553. },
  17554. ]
  17555. ))
  17556. characterMakers.push(() => makeCharacter(
  17557. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17558. {
  17559. front: {
  17560. height: math.unit(5 + 7 / 12, "feet"),
  17561. weight: math.unit(147, "lb"),
  17562. name: "Front",
  17563. image: {
  17564. source: "./media/characters/natalie-kellon/front.svg",
  17565. extra: 1214 / 1141,
  17566. bottom: 0.02
  17567. }
  17568. },
  17569. },
  17570. [
  17571. {
  17572. name: "Micro",
  17573. height: math.unit(1 / 16, "inch")
  17574. },
  17575. {
  17576. name: "Tiny",
  17577. height: math.unit(4, "inches")
  17578. },
  17579. {
  17580. name: "Normal",
  17581. height: math.unit(5 + 7 / 12, "feet"),
  17582. default: true
  17583. },
  17584. {
  17585. name: "Amazon",
  17586. height: math.unit(12, "feet")
  17587. },
  17588. {
  17589. name: "Giantess",
  17590. height: math.unit(160, "meters")
  17591. },
  17592. {
  17593. name: "Titaness",
  17594. height: math.unit(800, "meters")
  17595. },
  17596. ]
  17597. ))
  17598. characterMakers.push(() => makeCharacter(
  17599. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17600. {
  17601. front: {
  17602. height: math.unit(6, "feet"),
  17603. weight: math.unit(150, "lb"),
  17604. name: "Front",
  17605. image: {
  17606. source: "./media/characters/alluria/front.svg",
  17607. extra: 806 / 738,
  17608. bottom: 0.01
  17609. }
  17610. },
  17611. side: {
  17612. height: math.unit(6, "feet"),
  17613. weight: math.unit(150, "lb"),
  17614. name: "Side",
  17615. image: {
  17616. source: "./media/characters/alluria/side.svg",
  17617. extra: 800 / 750,
  17618. }
  17619. },
  17620. back: {
  17621. height: math.unit(6, "feet"),
  17622. weight: math.unit(150, "lb"),
  17623. name: "Back",
  17624. image: {
  17625. source: "./media/characters/alluria/back.svg",
  17626. extra: 806 / 738,
  17627. }
  17628. },
  17629. frontMaid: {
  17630. height: math.unit(6, "feet"),
  17631. weight: math.unit(150, "lb"),
  17632. name: "Front (Maid)",
  17633. image: {
  17634. source: "./media/characters/alluria/front-maid.svg",
  17635. extra: 806 / 738,
  17636. bottom: 0.01
  17637. }
  17638. },
  17639. sideMaid: {
  17640. height: math.unit(6, "feet"),
  17641. weight: math.unit(150, "lb"),
  17642. name: "Side (Maid)",
  17643. image: {
  17644. source: "./media/characters/alluria/side-maid.svg",
  17645. extra: 800 / 750,
  17646. bottom: 0.005
  17647. }
  17648. },
  17649. backMaid: {
  17650. height: math.unit(6, "feet"),
  17651. weight: math.unit(150, "lb"),
  17652. name: "Back (Maid)",
  17653. image: {
  17654. source: "./media/characters/alluria/back-maid.svg",
  17655. extra: 806 / 738,
  17656. }
  17657. },
  17658. },
  17659. [
  17660. {
  17661. name: "Micro",
  17662. height: math.unit(6, "inches"),
  17663. default: true
  17664. },
  17665. ]
  17666. ))
  17667. characterMakers.push(() => makeCharacter(
  17668. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17669. {
  17670. front: {
  17671. height: math.unit(6, "feet"),
  17672. weight: math.unit(150, "lb"),
  17673. name: "Front",
  17674. image: {
  17675. source: "./media/characters/kyle/front.svg",
  17676. extra: 1069 / 962,
  17677. bottom: 77.228 / 1727.45
  17678. }
  17679. },
  17680. },
  17681. [
  17682. {
  17683. name: "Macro",
  17684. height: math.unit(150, "feet"),
  17685. default: true
  17686. },
  17687. ]
  17688. ))
  17689. characterMakers.push(() => makeCharacter(
  17690. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17691. {
  17692. front: {
  17693. height: math.unit(6, "feet"),
  17694. weight: math.unit(300, "lb"),
  17695. name: "Front",
  17696. image: {
  17697. source: "./media/characters/duncan/front.svg",
  17698. extra: 1650 / 1482,
  17699. bottom: 0.05
  17700. }
  17701. },
  17702. },
  17703. [
  17704. {
  17705. name: "Macro",
  17706. height: math.unit(100, "feet"),
  17707. default: true
  17708. },
  17709. ]
  17710. ))
  17711. characterMakers.push(() => makeCharacter(
  17712. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17713. {
  17714. front: {
  17715. height: math.unit(5 + 4 / 12, "feet"),
  17716. weight: math.unit(220, "lb"),
  17717. name: "Front",
  17718. image: {
  17719. source: "./media/characters/memory/front.svg",
  17720. extra: 3641 / 3545,
  17721. bottom: 0.03
  17722. }
  17723. },
  17724. back: {
  17725. height: math.unit(5 + 4 / 12, "feet"),
  17726. weight: math.unit(220, "lb"),
  17727. name: "Back",
  17728. image: {
  17729. source: "./media/characters/memory/back.svg",
  17730. extra: 3641 / 3545,
  17731. bottom: 0.025
  17732. }
  17733. },
  17734. frontSkirt: {
  17735. height: math.unit(5 + 4 / 12, "feet"),
  17736. weight: math.unit(220, "lb"),
  17737. name: "Front (Skirt)",
  17738. image: {
  17739. source: "./media/characters/memory/front-skirt.svg",
  17740. extra: 3641 / 3545,
  17741. bottom: 0.03
  17742. }
  17743. },
  17744. frontDress: {
  17745. height: math.unit(5 + 4 / 12, "feet"),
  17746. weight: math.unit(220, "lb"),
  17747. name: "Front (Dress)",
  17748. image: {
  17749. source: "./media/characters/memory/front-dress.svg",
  17750. extra: 3641 / 3545,
  17751. bottom: 0.03
  17752. }
  17753. },
  17754. },
  17755. [
  17756. {
  17757. name: "Micro",
  17758. height: math.unit(6, "inches"),
  17759. default: true
  17760. },
  17761. {
  17762. name: "Normal",
  17763. height: math.unit(5 + 4 / 12, "feet")
  17764. },
  17765. ]
  17766. ))
  17767. characterMakers.push(() => makeCharacter(
  17768. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17769. {
  17770. front: {
  17771. height: math.unit(4 + 11 / 12, "feet"),
  17772. weight: math.unit(100, "lb"),
  17773. name: "Front",
  17774. image: {
  17775. source: "./media/characters/luno/front.svg",
  17776. extra: 1535 / 1487,
  17777. bottom: 0.03
  17778. }
  17779. },
  17780. },
  17781. [
  17782. {
  17783. name: "Micro",
  17784. height: math.unit(3, "inches")
  17785. },
  17786. {
  17787. name: "Normal",
  17788. height: math.unit(4 + 11 / 12, "feet"),
  17789. default: true
  17790. },
  17791. {
  17792. name: "Macro",
  17793. height: math.unit(300, "feet")
  17794. },
  17795. {
  17796. name: "Megamacro",
  17797. height: math.unit(700, "miles")
  17798. },
  17799. ]
  17800. ))
  17801. characterMakers.push(() => makeCharacter(
  17802. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17803. {
  17804. front: {
  17805. height: math.unit(6 + 2 / 12, "feet"),
  17806. weight: math.unit(170, "lb"),
  17807. name: "Front",
  17808. image: {
  17809. source: "./media/characters/jamesy/front.svg",
  17810. extra: 440 / 382,
  17811. bottom: 0.005
  17812. }
  17813. },
  17814. },
  17815. [
  17816. {
  17817. name: "Micro",
  17818. height: math.unit(3, "inches")
  17819. },
  17820. {
  17821. name: "Normal",
  17822. height: math.unit(6 + 2 / 12, "feet"),
  17823. default: true
  17824. },
  17825. {
  17826. name: "Macro",
  17827. height: math.unit(300, "feet")
  17828. },
  17829. {
  17830. name: "Megamacro",
  17831. height: math.unit(700, "miles")
  17832. },
  17833. ]
  17834. ))
  17835. characterMakers.push(() => makeCharacter(
  17836. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17837. {
  17838. front: {
  17839. height: math.unit(6, "feet"),
  17840. weight: math.unit(160, "lb"),
  17841. name: "Front",
  17842. image: {
  17843. source: "./media/characters/mark/front.svg",
  17844. extra: 3300 / 3100,
  17845. bottom: 136.42 / 3440.47
  17846. }
  17847. },
  17848. },
  17849. [
  17850. {
  17851. name: "Macro",
  17852. height: math.unit(120, "meters")
  17853. },
  17854. {
  17855. name: "Bigger Macro",
  17856. height: math.unit(350, "meters")
  17857. },
  17858. {
  17859. name: "Megamacro",
  17860. height: math.unit(8, "km"),
  17861. default: true
  17862. },
  17863. {
  17864. name: "Continental",
  17865. height: math.unit(4550, "km")
  17866. },
  17867. {
  17868. name: "Planetary",
  17869. height: math.unit(65000, "km")
  17870. },
  17871. ]
  17872. ))
  17873. characterMakers.push(() => makeCharacter(
  17874. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17875. {
  17876. front: {
  17877. height: math.unit(6, "feet"),
  17878. weight: math.unit(400, "lb"),
  17879. name: "Front",
  17880. image: {
  17881. source: "./media/characters/mac/front.svg",
  17882. extra: 1048 / 987.7,
  17883. bottom: 60 / 1107.6,
  17884. }
  17885. },
  17886. },
  17887. [
  17888. {
  17889. name: "Macro",
  17890. height: math.unit(500, "feet"),
  17891. default: true
  17892. },
  17893. ]
  17894. ))
  17895. characterMakers.push(() => makeCharacter(
  17896. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17897. {
  17898. front: {
  17899. height: math.unit(5 + 2 / 12, "feet"),
  17900. weight: math.unit(190, "lb"),
  17901. name: "Front",
  17902. image: {
  17903. source: "./media/characters/bari/front.svg",
  17904. extra: 3156 / 2880,
  17905. bottom: 0.03
  17906. }
  17907. },
  17908. back: {
  17909. height: math.unit(5 + 2 / 12, "feet"),
  17910. weight: math.unit(190, "lb"),
  17911. name: "Back",
  17912. image: {
  17913. source: "./media/characters/bari/back.svg",
  17914. extra: 3260 / 2834,
  17915. bottom: 0.025
  17916. }
  17917. },
  17918. frontPlush: {
  17919. height: math.unit(5 + 2 / 12, "feet"),
  17920. weight: math.unit(190, "lb"),
  17921. name: "Front (Plush)",
  17922. image: {
  17923. source: "./media/characters/bari/front-plush.svg",
  17924. extra: 1112 / 1061,
  17925. bottom: 0.002
  17926. }
  17927. },
  17928. },
  17929. [
  17930. {
  17931. name: "Micro",
  17932. height: math.unit(3, "inches")
  17933. },
  17934. {
  17935. name: "Normal",
  17936. height: math.unit(5 + 2 / 12, "feet"),
  17937. default: true
  17938. },
  17939. {
  17940. name: "Macro",
  17941. height: math.unit(20, "feet")
  17942. },
  17943. ]
  17944. ))
  17945. characterMakers.push(() => makeCharacter(
  17946. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17947. {
  17948. front: {
  17949. height: math.unit(6 + 1 / 12, "feet"),
  17950. weight: math.unit(275, "lb"),
  17951. name: "Front",
  17952. image: {
  17953. source: "./media/characters/hunter-misha-raven/front.svg"
  17954. }
  17955. },
  17956. },
  17957. [
  17958. {
  17959. name: "Mortal",
  17960. height: math.unit(6 + 1 / 12, "feet")
  17961. },
  17962. {
  17963. name: "Divine",
  17964. height: math.unit(1.12134e34, "parsecs"),
  17965. default: true
  17966. },
  17967. ]
  17968. ))
  17969. characterMakers.push(() => makeCharacter(
  17970. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17971. {
  17972. front: {
  17973. height: math.unit(6 + 3 / 12, "feet"),
  17974. weight: math.unit(220, "lb"),
  17975. name: "Front",
  17976. image: {
  17977. source: "./media/characters/max-calore/front.svg",
  17978. extra: 1700 / 1648,
  17979. bottom: 0.01
  17980. }
  17981. },
  17982. back: {
  17983. height: math.unit(6 + 3 / 12, "feet"),
  17984. weight: math.unit(220, "lb"),
  17985. name: "Back",
  17986. image: {
  17987. source: "./media/characters/max-calore/back.svg",
  17988. extra: 1700 / 1648,
  17989. bottom: 0.01
  17990. }
  17991. },
  17992. },
  17993. [
  17994. {
  17995. name: "Normal",
  17996. height: math.unit(6 + 3 / 12, "feet"),
  17997. default: true
  17998. },
  17999. ]
  18000. ))
  18001. characterMakers.push(() => makeCharacter(
  18002. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18003. {
  18004. side: {
  18005. height: math.unit(2 + 8 / 12, "feet"),
  18006. weight: math.unit(99, "lb"),
  18007. name: "Side",
  18008. image: {
  18009. source: "./media/characters/aspen/side.svg",
  18010. extra: 152 / 138,
  18011. bottom: 0.032
  18012. }
  18013. },
  18014. },
  18015. [
  18016. {
  18017. name: "Normal",
  18018. height: math.unit(2 + 8 / 12, "feet"),
  18019. default: true
  18020. },
  18021. ]
  18022. ))
  18023. characterMakers.push(() => makeCharacter(
  18024. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18025. {
  18026. side: {
  18027. height: math.unit(3 + 2 / 12, "feet"),
  18028. weight: math.unit(224, "lb"),
  18029. name: "Side",
  18030. image: {
  18031. source: "./media/characters/sheila-feral-wolf/side.svg",
  18032. extra: 179 / 166,
  18033. bottom: 0.03
  18034. }
  18035. },
  18036. },
  18037. [
  18038. {
  18039. name: "Normal",
  18040. height: math.unit(3 + 2 / 12, "feet"),
  18041. default: true
  18042. },
  18043. ]
  18044. ))
  18045. characterMakers.push(() => makeCharacter(
  18046. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18047. {
  18048. side: {
  18049. height: math.unit(1 + 9 / 12, "feet"),
  18050. weight: math.unit(38, "lb"),
  18051. name: "Side",
  18052. image: {
  18053. source: "./media/characters/michelle/side.svg",
  18054. extra: 147 / 136.7,
  18055. bottom: 0.03
  18056. }
  18057. },
  18058. },
  18059. [
  18060. {
  18061. name: "Normal",
  18062. height: math.unit(1 + 9 / 12, "feet"),
  18063. default: true
  18064. },
  18065. ]
  18066. ))
  18067. characterMakers.push(() => makeCharacter(
  18068. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18069. {
  18070. front: {
  18071. height: math.unit(1.54, "feet"),
  18072. weight: math.unit(50, "lb"),
  18073. name: "Front",
  18074. image: {
  18075. source: "./media/characters/nino/front.svg"
  18076. }
  18077. },
  18078. },
  18079. [
  18080. {
  18081. name: "Normal",
  18082. height: math.unit(1.54, "feet"),
  18083. default: true
  18084. },
  18085. ]
  18086. ))
  18087. characterMakers.push(() => makeCharacter(
  18088. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18089. {
  18090. front: {
  18091. height: math.unit(1.49, "feet"),
  18092. weight: math.unit(45, "lb"),
  18093. name: "Front",
  18094. image: {
  18095. source: "./media/characters/viola/front.svg"
  18096. }
  18097. },
  18098. },
  18099. [
  18100. {
  18101. name: "Normal",
  18102. height: math.unit(1.49, "feet"),
  18103. default: true
  18104. },
  18105. ]
  18106. ))
  18107. characterMakers.push(() => makeCharacter(
  18108. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18109. {
  18110. front: {
  18111. height: math.unit(6 + 5 / 12, "feet"),
  18112. weight: math.unit(580, "lb"),
  18113. name: "Front",
  18114. image: {
  18115. source: "./media/characters/atlas/front.svg",
  18116. extra: 298.5 / 290,
  18117. bottom: 0.015
  18118. }
  18119. },
  18120. },
  18121. [
  18122. {
  18123. name: "Normal",
  18124. height: math.unit(6 + 5 / 12, "feet"),
  18125. default: true
  18126. },
  18127. ]
  18128. ))
  18129. characterMakers.push(() => makeCharacter(
  18130. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18131. {
  18132. side: {
  18133. height: math.unit(15.6, "inches"),
  18134. weight: math.unit(10, "lb"),
  18135. name: "Side",
  18136. image: {
  18137. source: "./media/characters/davy/side.svg",
  18138. extra: 200 / 170,
  18139. bottom: 0.01
  18140. }
  18141. },
  18142. },
  18143. [
  18144. {
  18145. name: "Normal",
  18146. height: math.unit(15.6, "inches"),
  18147. default: true
  18148. },
  18149. ]
  18150. ))
  18151. characterMakers.push(() => makeCharacter(
  18152. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18153. {
  18154. side: {
  18155. height: math.unit(4 + 8 / 12, "feet"),
  18156. weight: math.unit(166, "lb"),
  18157. name: "Side",
  18158. image: {
  18159. source: "./media/characters/fiona/side.svg",
  18160. extra: 232 / 220,
  18161. bottom: 0.03
  18162. }
  18163. },
  18164. },
  18165. [
  18166. {
  18167. name: "Normal",
  18168. height: math.unit(4 + 8 / 12, "feet"),
  18169. default: true
  18170. },
  18171. ]
  18172. ))
  18173. characterMakers.push(() => makeCharacter(
  18174. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18175. {
  18176. front: {
  18177. height: math.unit(26, "inches"),
  18178. weight: math.unit(35, "lb"),
  18179. name: "Front",
  18180. image: {
  18181. source: "./media/characters/lyla/front.svg",
  18182. bottom: 0.1
  18183. }
  18184. },
  18185. },
  18186. [
  18187. {
  18188. name: "Normal",
  18189. height: math.unit(3, "feet"),
  18190. default: true
  18191. },
  18192. ]
  18193. ))
  18194. characterMakers.push(() => makeCharacter(
  18195. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18196. {
  18197. side: {
  18198. height: math.unit(1.8, "feet"),
  18199. weight: math.unit(44, "lb"),
  18200. name: "Side",
  18201. image: {
  18202. source: "./media/characters/perseus/side.svg",
  18203. bottom: 0.21
  18204. }
  18205. },
  18206. },
  18207. [
  18208. {
  18209. name: "Normal",
  18210. height: math.unit(1.8, "feet"),
  18211. default: true
  18212. },
  18213. ]
  18214. ))
  18215. characterMakers.push(() => makeCharacter(
  18216. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18217. {
  18218. side: {
  18219. height: math.unit(4 + 2 / 12, "feet"),
  18220. weight: math.unit(20, "lb"),
  18221. name: "Side",
  18222. image: {
  18223. source: "./media/characters/remus/side.svg"
  18224. }
  18225. },
  18226. },
  18227. [
  18228. {
  18229. name: "Normal",
  18230. height: math.unit(4 + 2 / 12, "feet"),
  18231. default: true
  18232. },
  18233. ]
  18234. ))
  18235. characterMakers.push(() => makeCharacter(
  18236. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18237. {
  18238. front: {
  18239. height: math.unit(4 + 11 / 12, "feet"),
  18240. weight: math.unit(114, "lb"),
  18241. name: "Front",
  18242. image: {
  18243. source: "./media/characters/raf/front.svg",
  18244. extra: 1504/1339,
  18245. bottom: 26/1530
  18246. }
  18247. },
  18248. side: {
  18249. height: math.unit(4 + 11 / 12, "feet"),
  18250. weight: math.unit(114, "lb"),
  18251. name: "Side",
  18252. image: {
  18253. source: "./media/characters/raf/side.svg",
  18254. extra: 1466/1316,
  18255. bottom: 29/1495
  18256. }
  18257. },
  18258. paw: {
  18259. height: math.unit(1.45, "feet"),
  18260. name: "Paw",
  18261. image: {
  18262. source: "./media/characters/raf/paw.svg"
  18263. },
  18264. extraAttributes: {
  18265. "toeSize": {
  18266. name: "Toe Size",
  18267. power: 2,
  18268. type: "area",
  18269. base: math.unit(0.004, "m^2")
  18270. },
  18271. "padSize": {
  18272. name: "Pad Size",
  18273. power: 2,
  18274. type: "area",
  18275. base: math.unit(0.04, "m^2")
  18276. },
  18277. "footSize": {
  18278. name: "Foot Size",
  18279. power: 2,
  18280. type: "area",
  18281. base: math.unit(0.08, "m^2")
  18282. },
  18283. }
  18284. },
  18285. },
  18286. [
  18287. {
  18288. name: "Micro",
  18289. height: math.unit(2, "inches")
  18290. },
  18291. {
  18292. name: "Normal",
  18293. height: math.unit(4 + 11 / 12, "feet"),
  18294. default: true
  18295. },
  18296. {
  18297. name: "Macro",
  18298. height: math.unit(70, "feet")
  18299. },
  18300. ]
  18301. ))
  18302. characterMakers.push(() => makeCharacter(
  18303. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18304. {
  18305. front: {
  18306. height: math.unit(1.5, "meters"),
  18307. weight: math.unit(68, "kg"),
  18308. name: "Front",
  18309. image: {
  18310. source: "./media/characters/liam-einarr/front.svg",
  18311. extra: 2822 / 2666
  18312. }
  18313. },
  18314. back: {
  18315. height: math.unit(1.5, "meters"),
  18316. weight: math.unit(68, "kg"),
  18317. name: "Back",
  18318. image: {
  18319. source: "./media/characters/liam-einarr/back.svg",
  18320. extra: 2822 / 2666,
  18321. bottom: 0.015
  18322. }
  18323. },
  18324. },
  18325. [
  18326. {
  18327. name: "Normal",
  18328. height: math.unit(1.5, "meters"),
  18329. default: true
  18330. },
  18331. {
  18332. name: "Macro",
  18333. height: math.unit(150, "meters")
  18334. },
  18335. {
  18336. name: "Megamacro",
  18337. height: math.unit(35, "km")
  18338. },
  18339. ]
  18340. ))
  18341. characterMakers.push(() => makeCharacter(
  18342. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18343. {
  18344. front: {
  18345. height: math.unit(6, "feet"),
  18346. weight: math.unit(75, "kg"),
  18347. name: "Front",
  18348. image: {
  18349. source: "./media/characters/linda/front.svg",
  18350. extra: 930 / 874,
  18351. bottom: 0.004
  18352. }
  18353. },
  18354. },
  18355. [
  18356. {
  18357. name: "Normal",
  18358. height: math.unit(6, "feet"),
  18359. default: true
  18360. },
  18361. ]
  18362. ))
  18363. characterMakers.push(() => makeCharacter(
  18364. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18365. {
  18366. front: {
  18367. height: math.unit(6 + 8 / 12, "feet"),
  18368. weight: math.unit(220, "lb"),
  18369. name: "Front",
  18370. image: {
  18371. source: "./media/characters/caylex/front.svg",
  18372. extra: 821 / 772,
  18373. bottom: 0.07
  18374. }
  18375. },
  18376. back: {
  18377. height: math.unit(6 + 8 / 12, "feet"),
  18378. weight: math.unit(220, "lb"),
  18379. name: "Back",
  18380. image: {
  18381. source: "./media/characters/caylex/back.svg",
  18382. extra: 821 / 772,
  18383. bottom: 0.022
  18384. }
  18385. },
  18386. hand: {
  18387. height: math.unit(1.25, "feet"),
  18388. name: "Hand",
  18389. image: {
  18390. source: "./media/characters/caylex/hand.svg"
  18391. }
  18392. },
  18393. foot: {
  18394. height: math.unit(1.6, "feet"),
  18395. name: "Foot",
  18396. image: {
  18397. source: "./media/characters/caylex/foot.svg"
  18398. }
  18399. },
  18400. armored: {
  18401. height: math.unit(6 + 8 / 12, "feet"),
  18402. weight: math.unit(250, "lb"),
  18403. name: "Armored",
  18404. image: {
  18405. source: "./media/characters/caylex/armored.svg",
  18406. extra: 1420 / 1310,
  18407. bottom: 0.045
  18408. }
  18409. },
  18410. },
  18411. [
  18412. {
  18413. name: "Normal",
  18414. height: math.unit(6 + 8 / 12, "feet"),
  18415. default: true
  18416. },
  18417. {
  18418. name: "Normal+",
  18419. height: math.unit(12, "feet")
  18420. },
  18421. ]
  18422. ))
  18423. characterMakers.push(() => makeCharacter(
  18424. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18425. {
  18426. front: {
  18427. height: math.unit(7 + 6 / 12, "feet"),
  18428. weight: math.unit(288, "lb"),
  18429. name: "Front",
  18430. image: {
  18431. source: "./media/characters/alana/front.svg",
  18432. extra: 679 / 653,
  18433. bottom: 22.5 / 701
  18434. }
  18435. },
  18436. },
  18437. [
  18438. {
  18439. name: "Normal",
  18440. height: math.unit(7 + 6 / 12, "feet")
  18441. },
  18442. {
  18443. name: "Large",
  18444. height: math.unit(50, "feet")
  18445. },
  18446. {
  18447. name: "Macro",
  18448. height: math.unit(100, "feet"),
  18449. default: true
  18450. },
  18451. {
  18452. name: "Macro+",
  18453. height: math.unit(200, "feet")
  18454. },
  18455. ]
  18456. ))
  18457. characterMakers.push(() => makeCharacter(
  18458. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18459. {
  18460. front: {
  18461. height: math.unit(6 + 1 / 12, "feet"),
  18462. weight: math.unit(210, "lb"),
  18463. name: "Front",
  18464. image: {
  18465. source: "./media/characters/hasani/front.svg",
  18466. extra: 244 / 232,
  18467. bottom: 0.01
  18468. }
  18469. },
  18470. back: {
  18471. height: math.unit(6 + 1 / 12, "feet"),
  18472. weight: math.unit(210, "lb"),
  18473. name: "Back",
  18474. image: {
  18475. source: "./media/characters/hasani/back.svg",
  18476. extra: 244 / 232,
  18477. bottom: 0.01
  18478. }
  18479. },
  18480. },
  18481. [
  18482. {
  18483. name: "Normal",
  18484. height: math.unit(6 + 1 / 12, "feet")
  18485. },
  18486. {
  18487. name: "Macro",
  18488. height: math.unit(175, "feet"),
  18489. default: true
  18490. },
  18491. ]
  18492. ))
  18493. characterMakers.push(() => makeCharacter(
  18494. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18495. {
  18496. front: {
  18497. height: math.unit(1.82, "meters"),
  18498. weight: math.unit(140, "lb"),
  18499. name: "Front",
  18500. image: {
  18501. source: "./media/characters/nita/front.svg",
  18502. extra: 2473 / 2363,
  18503. bottom: 0.01
  18504. }
  18505. },
  18506. },
  18507. [
  18508. {
  18509. name: "Normal",
  18510. height: math.unit(1.82, "m")
  18511. },
  18512. {
  18513. name: "Macro",
  18514. height: math.unit(300, "m")
  18515. },
  18516. {
  18517. name: "Mistake Canon",
  18518. height: math.unit(0.5, "miles"),
  18519. default: true
  18520. },
  18521. {
  18522. name: "Big Mistake",
  18523. height: math.unit(13, "miles")
  18524. },
  18525. {
  18526. name: "Playing God",
  18527. height: math.unit(2450, "miles")
  18528. },
  18529. ]
  18530. ))
  18531. characterMakers.push(() => makeCharacter(
  18532. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18533. {
  18534. front: {
  18535. height: math.unit(4, "feet"),
  18536. weight: math.unit(120, "lb"),
  18537. name: "Front",
  18538. image: {
  18539. source: "./media/characters/shiriko/front.svg",
  18540. extra: 970/934,
  18541. bottom: 5/975
  18542. }
  18543. },
  18544. },
  18545. [
  18546. {
  18547. name: "Normal",
  18548. height: math.unit(4, "feet"),
  18549. default: true
  18550. },
  18551. ]
  18552. ))
  18553. characterMakers.push(() => makeCharacter(
  18554. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18555. {
  18556. front: {
  18557. height: math.unit(6, "feet"),
  18558. name: "front",
  18559. image: {
  18560. source: "./media/characters/deja/front.svg",
  18561. extra: 926 / 840,
  18562. bottom: 0.07
  18563. }
  18564. },
  18565. },
  18566. [
  18567. {
  18568. name: "Planck Length",
  18569. height: math.unit(1.6e-35, "meters")
  18570. },
  18571. {
  18572. name: "Normal",
  18573. height: math.unit(30.48, "meters"),
  18574. default: true
  18575. },
  18576. {
  18577. name: "Universal",
  18578. height: math.unit(8.8e26, "meters")
  18579. },
  18580. ]
  18581. ))
  18582. characterMakers.push(() => makeCharacter(
  18583. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18584. {
  18585. side: {
  18586. height: math.unit(8, "feet"),
  18587. weight: math.unit(6300, "lb"),
  18588. name: "Side",
  18589. image: {
  18590. source: "./media/characters/anima/side.svg",
  18591. bottom: 0.035
  18592. }
  18593. },
  18594. },
  18595. [
  18596. {
  18597. name: "Normal",
  18598. height: math.unit(8, "feet"),
  18599. default: true
  18600. },
  18601. ]
  18602. ))
  18603. characterMakers.push(() => makeCharacter(
  18604. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18605. {
  18606. front: {
  18607. height: math.unit(8, "feet"),
  18608. weight: math.unit(350, "lb"),
  18609. name: "Front",
  18610. image: {
  18611. source: "./media/characters/bianca/front.svg",
  18612. extra: 234 / 225,
  18613. bottom: 0.03
  18614. }
  18615. },
  18616. },
  18617. [
  18618. {
  18619. name: "Normal",
  18620. height: math.unit(8, "feet"),
  18621. default: true
  18622. },
  18623. ]
  18624. ))
  18625. characterMakers.push(() => makeCharacter(
  18626. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18627. {
  18628. front: {
  18629. height: math.unit(11 + 5/12, "feet"),
  18630. weight: math.unit(1200, "lb"),
  18631. name: "Front",
  18632. image: {
  18633. source: "./media/characters/adinia/front.svg",
  18634. extra: 1767/1641,
  18635. bottom: 44/1811
  18636. },
  18637. extraAttributes: {
  18638. "energyIntake": {
  18639. name: "Energy Intake",
  18640. power: 3,
  18641. type: "energy",
  18642. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18643. },
  18644. }
  18645. },
  18646. back: {
  18647. height: math.unit(11 + 5/12, "feet"),
  18648. weight: math.unit(1200, "lb"),
  18649. name: "Back",
  18650. image: {
  18651. source: "./media/characters/adinia/back.svg",
  18652. extra: 1834/1684,
  18653. bottom: 14/1848
  18654. },
  18655. extraAttributes: {
  18656. "energyIntake": {
  18657. name: "Energy Intake",
  18658. power: 3,
  18659. type: "energy",
  18660. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18661. },
  18662. }
  18663. },
  18664. maw: {
  18665. height: math.unit(3.79, "feet"),
  18666. name: "Maw",
  18667. image: {
  18668. source: "./media/characters/adinia/maw.svg"
  18669. }
  18670. },
  18671. rump: {
  18672. height: math.unit(4.6, "feet"),
  18673. name: "Rump",
  18674. image: {
  18675. source: "./media/characters/adinia/rump.svg"
  18676. }
  18677. },
  18678. },
  18679. [
  18680. {
  18681. name: "Normal",
  18682. height: math.unit(11 + 5 / 12, "feet"),
  18683. default: true
  18684. },
  18685. ]
  18686. ))
  18687. characterMakers.push(() => makeCharacter(
  18688. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18689. {
  18690. front: {
  18691. height: math.unit(3, "meters"),
  18692. weight: math.unit(200, "kg"),
  18693. name: "Front",
  18694. image: {
  18695. source: "./media/characters/lykasa/front.svg",
  18696. extra: 1076 / 976,
  18697. bottom: 0.06
  18698. }
  18699. },
  18700. },
  18701. [
  18702. {
  18703. name: "Normal",
  18704. height: math.unit(3, "meters")
  18705. },
  18706. {
  18707. name: "Kaiju",
  18708. height: math.unit(120, "meters"),
  18709. default: true
  18710. },
  18711. {
  18712. name: "Mega Kaiju",
  18713. height: math.unit(240, "km")
  18714. },
  18715. {
  18716. name: "Giga Kaiju",
  18717. height: math.unit(400, "megameters")
  18718. },
  18719. {
  18720. name: "Tera Kaiju",
  18721. height: math.unit(800, "gigameters")
  18722. },
  18723. {
  18724. name: "Kaiju Dragon Goddess",
  18725. height: math.unit(26, "zettaparsecs")
  18726. },
  18727. ]
  18728. ))
  18729. characterMakers.push(() => makeCharacter(
  18730. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18731. {
  18732. side: {
  18733. height: math.unit(283 / 124 * 6, "feet"),
  18734. weight: math.unit(35000, "lb"),
  18735. name: "Side",
  18736. image: {
  18737. source: "./media/characters/malfaren/side.svg",
  18738. extra: 1310/529,
  18739. bottom: 24/1334
  18740. }
  18741. },
  18742. front: {
  18743. height: math.unit(22.36, "feet"),
  18744. weight: math.unit(35000, "lb"),
  18745. name: "Front",
  18746. image: {
  18747. source: "./media/characters/malfaren/front.svg",
  18748. extra: 1237/1115,
  18749. bottom: 32/1269
  18750. }
  18751. },
  18752. maw: {
  18753. height: math.unit(6.9, "feet"),
  18754. name: "Maw",
  18755. image: {
  18756. source: "./media/characters/malfaren/maw.svg"
  18757. }
  18758. },
  18759. dick: {
  18760. height: math.unit(6.19, "feet"),
  18761. name: "Dick",
  18762. image: {
  18763. source: "./media/characters/malfaren/dick.svg"
  18764. }
  18765. },
  18766. eye: {
  18767. height: math.unit(0.69, "feet"),
  18768. name: "Eye",
  18769. image: {
  18770. source: "./media/characters/malfaren/eye.svg"
  18771. }
  18772. },
  18773. },
  18774. [
  18775. {
  18776. name: "Big",
  18777. height: math.unit(283 / 162 * 6, "feet"),
  18778. },
  18779. {
  18780. name: "Bigger",
  18781. height: math.unit(283 / 124 * 6, "feet")
  18782. },
  18783. {
  18784. name: "Massive",
  18785. height: math.unit(283 / 92 * 6, "feet"),
  18786. default: true
  18787. },
  18788. {
  18789. name: "👀💦",
  18790. height: math.unit(283 / 73 * 6, "feet"),
  18791. },
  18792. ]
  18793. ))
  18794. characterMakers.push(() => makeCharacter(
  18795. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18796. {
  18797. front: {
  18798. height: math.unit(1.7, "m"),
  18799. weight: math.unit(70, "kg"),
  18800. name: "Front",
  18801. image: {
  18802. source: "./media/characters/kernel/front.svg",
  18803. extra: 222 / 210,
  18804. bottom: 0.007
  18805. }
  18806. },
  18807. },
  18808. [
  18809. {
  18810. name: "Nano",
  18811. height: math.unit(17, "micrometers")
  18812. },
  18813. {
  18814. name: "Micro",
  18815. height: math.unit(1.7, "mm")
  18816. },
  18817. {
  18818. name: "Small",
  18819. height: math.unit(1.7, "cm")
  18820. },
  18821. {
  18822. name: "Normal",
  18823. height: math.unit(1.7, "m"),
  18824. default: true
  18825. },
  18826. ]
  18827. ))
  18828. characterMakers.push(() => makeCharacter(
  18829. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18830. {
  18831. front: {
  18832. height: math.unit(1.75, "meters"),
  18833. weight: math.unit(65, "kg"),
  18834. name: "Front",
  18835. image: {
  18836. source: "./media/characters/jayne-folest/front.svg",
  18837. extra: 2115 / 2007,
  18838. bottom: 0.02
  18839. }
  18840. },
  18841. back: {
  18842. height: math.unit(1.75, "meters"),
  18843. weight: math.unit(65, "kg"),
  18844. name: "Back",
  18845. image: {
  18846. source: "./media/characters/jayne-folest/back.svg",
  18847. extra: 2115 / 2007,
  18848. bottom: 0.005
  18849. }
  18850. },
  18851. frontClothed: {
  18852. height: math.unit(1.75, "meters"),
  18853. weight: math.unit(65, "kg"),
  18854. name: "Front (Clothed)",
  18855. image: {
  18856. source: "./media/characters/jayne-folest/front-clothed.svg",
  18857. extra: 2115 / 2007,
  18858. bottom: 0.035
  18859. }
  18860. },
  18861. hand: {
  18862. height: math.unit(1 / 1.260, "feet"),
  18863. name: "Hand",
  18864. image: {
  18865. source: "./media/characters/jayne-folest/hand.svg"
  18866. }
  18867. },
  18868. foot: {
  18869. height: math.unit(1 / 0.918, "feet"),
  18870. name: "Foot",
  18871. image: {
  18872. source: "./media/characters/jayne-folest/foot.svg"
  18873. }
  18874. },
  18875. },
  18876. [
  18877. {
  18878. name: "Micro",
  18879. height: math.unit(4, "cm")
  18880. },
  18881. {
  18882. name: "Normal",
  18883. height: math.unit(1.75, "meters")
  18884. },
  18885. {
  18886. name: "Macro",
  18887. height: math.unit(47.5, "meters"),
  18888. default: true
  18889. },
  18890. ]
  18891. ))
  18892. characterMakers.push(() => makeCharacter(
  18893. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18894. {
  18895. front: {
  18896. height: math.unit(180, "cm"),
  18897. weight: math.unit(70, "kg"),
  18898. name: "Front",
  18899. image: {
  18900. source: "./media/characters/algier/front.svg",
  18901. extra: 596 / 572,
  18902. bottom: 0.04
  18903. }
  18904. },
  18905. back: {
  18906. height: math.unit(180, "cm"),
  18907. weight: math.unit(70, "kg"),
  18908. name: "Back",
  18909. image: {
  18910. source: "./media/characters/algier/back.svg",
  18911. extra: 596 / 572,
  18912. bottom: 0.025
  18913. }
  18914. },
  18915. frontdressed: {
  18916. height: math.unit(180, "cm"),
  18917. weight: math.unit(150, "kg"),
  18918. name: "Front-dressed",
  18919. image: {
  18920. source: "./media/characters/algier/front-dressed.svg",
  18921. extra: 596 / 572,
  18922. bottom: 0.038
  18923. }
  18924. },
  18925. },
  18926. [
  18927. {
  18928. name: "Micro",
  18929. height: math.unit(5, "cm")
  18930. },
  18931. {
  18932. name: "Normal",
  18933. height: math.unit(180, "cm"),
  18934. default: true
  18935. },
  18936. {
  18937. name: "Macro",
  18938. height: math.unit(64, "m")
  18939. },
  18940. ]
  18941. ))
  18942. characterMakers.push(() => makeCharacter(
  18943. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18944. {
  18945. upright: {
  18946. height: math.unit(7, "feet"),
  18947. weight: math.unit(300, "lb"),
  18948. name: "Upright",
  18949. image: {
  18950. source: "./media/characters/pretzel/upright.svg",
  18951. extra: 534 / 522,
  18952. bottom: 0.065
  18953. }
  18954. },
  18955. sprawling: {
  18956. height: math.unit(3.75, "feet"),
  18957. weight: math.unit(300, "lb"),
  18958. name: "Sprawling",
  18959. image: {
  18960. source: "./media/characters/pretzel/sprawling.svg",
  18961. extra: 314 / 281,
  18962. bottom: 0.1
  18963. }
  18964. },
  18965. tongue: {
  18966. height: math.unit(2, "feet"),
  18967. name: "Tongue",
  18968. image: {
  18969. source: "./media/characters/pretzel/tongue.svg"
  18970. }
  18971. },
  18972. },
  18973. [
  18974. {
  18975. name: "Normal",
  18976. height: math.unit(7, "feet"),
  18977. default: true
  18978. },
  18979. {
  18980. name: "Oversized",
  18981. height: math.unit(15, "feet")
  18982. },
  18983. {
  18984. name: "Huge",
  18985. height: math.unit(30, "feet")
  18986. },
  18987. {
  18988. name: "Macro",
  18989. height: math.unit(250, "feet")
  18990. },
  18991. ]
  18992. ))
  18993. characterMakers.push(() => makeCharacter(
  18994. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18995. {
  18996. sideFront: {
  18997. height: math.unit(5 + 2 / 12, "feet"),
  18998. weight: math.unit(120, "lb"),
  18999. name: "Front Side",
  19000. image: {
  19001. source: "./media/characters/roxi/side-front.svg",
  19002. extra: 2924 / 2717,
  19003. bottom: 0.08
  19004. }
  19005. },
  19006. sideBack: {
  19007. height: math.unit(5 + 2 / 12, "feet"),
  19008. weight: math.unit(120, "lb"),
  19009. name: "Back Side",
  19010. image: {
  19011. source: "./media/characters/roxi/side-back.svg",
  19012. extra: 2904 / 2693,
  19013. bottom: 0.06
  19014. }
  19015. },
  19016. front: {
  19017. height: math.unit(5 + 2 / 12, "feet"),
  19018. weight: math.unit(120, "lb"),
  19019. name: "Front",
  19020. image: {
  19021. source: "./media/characters/roxi/front.svg",
  19022. extra: 2028 / 1907,
  19023. bottom: 0.01
  19024. }
  19025. },
  19026. frontAlt: {
  19027. height: math.unit(5 + 2 / 12, "feet"),
  19028. weight: math.unit(120, "lb"),
  19029. name: "Front (Alt)",
  19030. image: {
  19031. source: "./media/characters/roxi/front-alt.svg",
  19032. extra: 1828 / 1798,
  19033. bottom: 0.01
  19034. }
  19035. },
  19036. sitting: {
  19037. height: math.unit(2.8, "feet"),
  19038. weight: math.unit(120, "lb"),
  19039. name: "Sitting",
  19040. image: {
  19041. source: "./media/characters/roxi/sitting.svg",
  19042. extra: 2660 / 2462,
  19043. bottom: 0.1
  19044. }
  19045. },
  19046. },
  19047. [
  19048. {
  19049. name: "Normal",
  19050. height: math.unit(5 + 2 / 12, "feet"),
  19051. default: true
  19052. },
  19053. ]
  19054. ))
  19055. characterMakers.push(() => makeCharacter(
  19056. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19057. {
  19058. side: {
  19059. height: math.unit(55, "feet"),
  19060. weight: math.unit(153, "tons"),
  19061. name: "Side",
  19062. image: {
  19063. source: "./media/characters/shadow/side.svg",
  19064. extra: 701 / 628,
  19065. bottom: 0.02
  19066. }
  19067. },
  19068. flying: {
  19069. height: math.unit(145, "feet"),
  19070. weight: math.unit(153, "tons"),
  19071. name: "Flying",
  19072. image: {
  19073. source: "./media/characters/shadow/flying.svg"
  19074. }
  19075. },
  19076. },
  19077. [
  19078. {
  19079. name: "Normal",
  19080. height: math.unit(55, "feet"),
  19081. default: true
  19082. },
  19083. ]
  19084. ))
  19085. characterMakers.push(() => makeCharacter(
  19086. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19087. {
  19088. front: {
  19089. height: math.unit(6, "feet"),
  19090. weight: math.unit(200, "lb"),
  19091. name: "Front",
  19092. image: {
  19093. source: "./media/characters/marcie/front.svg",
  19094. extra: 960 / 876,
  19095. bottom: 58 / 1017.87
  19096. }
  19097. },
  19098. },
  19099. [
  19100. {
  19101. name: "Macro",
  19102. height: math.unit(1, "mile"),
  19103. default: true
  19104. },
  19105. ]
  19106. ))
  19107. characterMakers.push(() => makeCharacter(
  19108. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19109. {
  19110. front: {
  19111. height: math.unit(7, "feet"),
  19112. weight: math.unit(200, "lb"),
  19113. name: "Front",
  19114. image: {
  19115. source: "./media/characters/kachina/front.svg",
  19116. extra: 1290.68 / 1119,
  19117. bottom: 36.5 / 1327.18
  19118. }
  19119. },
  19120. },
  19121. [
  19122. {
  19123. name: "Normal",
  19124. height: math.unit(7, "feet"),
  19125. default: true
  19126. },
  19127. ]
  19128. ))
  19129. characterMakers.push(() => makeCharacter(
  19130. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19131. {
  19132. looking: {
  19133. height: math.unit(2, "meters"),
  19134. weight: math.unit(300, "kg"),
  19135. name: "Looking",
  19136. image: {
  19137. source: "./media/characters/kash/looking.svg",
  19138. extra: 474 / 344,
  19139. bottom: 0.03
  19140. }
  19141. },
  19142. side: {
  19143. height: math.unit(2, "meters"),
  19144. weight: math.unit(300, "kg"),
  19145. name: "Side",
  19146. image: {
  19147. source: "./media/characters/kash/side.svg",
  19148. extra: 302 / 251,
  19149. bottom: 0.03
  19150. }
  19151. },
  19152. front: {
  19153. height: math.unit(2, "meters"),
  19154. weight: math.unit(300, "kg"),
  19155. name: "Front",
  19156. image: {
  19157. source: "./media/characters/kash/front.svg",
  19158. extra: 495 / 360,
  19159. bottom: 0.015
  19160. }
  19161. },
  19162. },
  19163. [
  19164. {
  19165. name: "Normal",
  19166. height: math.unit(2, "meters"),
  19167. default: true
  19168. },
  19169. {
  19170. name: "Big",
  19171. height: math.unit(3, "meters")
  19172. },
  19173. {
  19174. name: "Large",
  19175. height: math.unit(5, "meters")
  19176. },
  19177. ]
  19178. ))
  19179. characterMakers.push(() => makeCharacter(
  19180. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19181. {
  19182. feeding: {
  19183. height: math.unit(6.7, "feet"),
  19184. weight: math.unit(350, "lb"),
  19185. name: "Feeding",
  19186. image: {
  19187. source: "./media/characters/lalim/feeding.svg",
  19188. }
  19189. },
  19190. },
  19191. [
  19192. {
  19193. name: "Normal",
  19194. height: math.unit(6.7, "feet"),
  19195. default: true
  19196. },
  19197. ]
  19198. ))
  19199. characterMakers.push(() => makeCharacter(
  19200. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19201. {
  19202. front: {
  19203. height: math.unit(9.5, "feet"),
  19204. weight: math.unit(600, "lb"),
  19205. name: "Front",
  19206. image: {
  19207. source: "./media/characters/de'vout/front.svg",
  19208. extra: 1443 / 1328,
  19209. bottom: 0.025
  19210. }
  19211. },
  19212. back: {
  19213. height: math.unit(9.5, "feet"),
  19214. weight: math.unit(600, "lb"),
  19215. name: "Back",
  19216. image: {
  19217. source: "./media/characters/de'vout/back.svg",
  19218. extra: 1443 / 1328
  19219. }
  19220. },
  19221. frontDressed: {
  19222. height: math.unit(9.5, "feet"),
  19223. weight: math.unit(600, "lb"),
  19224. name: "Front (Dressed",
  19225. image: {
  19226. source: "./media/characters/de'vout/front-dressed.svg",
  19227. extra: 1443 / 1328,
  19228. bottom: 0.025
  19229. }
  19230. },
  19231. backDressed: {
  19232. height: math.unit(9.5, "feet"),
  19233. weight: math.unit(600, "lb"),
  19234. name: "Back (Dressed",
  19235. image: {
  19236. source: "./media/characters/de'vout/back-dressed.svg",
  19237. extra: 1443 / 1328
  19238. }
  19239. },
  19240. },
  19241. [
  19242. {
  19243. name: "Normal",
  19244. height: math.unit(9.5, "feet"),
  19245. default: true
  19246. },
  19247. ]
  19248. ))
  19249. characterMakers.push(() => makeCharacter(
  19250. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19251. {
  19252. front: {
  19253. height: math.unit(8, "feet"),
  19254. weight: math.unit(225, "lb"),
  19255. name: "Front",
  19256. image: {
  19257. source: "./media/characters/talana/front.svg",
  19258. extra: 1410 / 1300,
  19259. bottom: 0.015
  19260. }
  19261. },
  19262. frontDressed: {
  19263. height: math.unit(8, "feet"),
  19264. weight: math.unit(225, "lb"),
  19265. name: "Front (Dressed",
  19266. image: {
  19267. source: "./media/characters/talana/front-dressed.svg",
  19268. extra: 1410 / 1300,
  19269. bottom: 0.015
  19270. }
  19271. },
  19272. },
  19273. [
  19274. {
  19275. name: "Normal",
  19276. height: math.unit(8, "feet"),
  19277. default: true
  19278. },
  19279. ]
  19280. ))
  19281. characterMakers.push(() => makeCharacter(
  19282. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19283. {
  19284. side: {
  19285. height: math.unit(7.2, "feet"),
  19286. weight: math.unit(150, "lb"),
  19287. name: "Side",
  19288. image: {
  19289. source: "./media/characters/xeauvok/side.svg",
  19290. extra: 1975 / 1523,
  19291. bottom: 0.07
  19292. }
  19293. },
  19294. },
  19295. [
  19296. {
  19297. name: "Normal",
  19298. height: math.unit(7.2, "feet"),
  19299. default: true
  19300. },
  19301. ]
  19302. ))
  19303. characterMakers.push(() => makeCharacter(
  19304. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19305. {
  19306. side: {
  19307. height: math.unit(4, "meters"),
  19308. weight: math.unit(2200, "kg"),
  19309. name: "Side",
  19310. image: {
  19311. source: "./media/characters/zara/side.svg",
  19312. extra: 765/744,
  19313. bottom: 156/921
  19314. }
  19315. },
  19316. },
  19317. [
  19318. {
  19319. name: "Normal",
  19320. height: math.unit(4, "meters"),
  19321. default: true
  19322. },
  19323. ]
  19324. ))
  19325. characterMakers.push(() => makeCharacter(
  19326. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19327. {
  19328. side: {
  19329. height: math.unit(6, "feet"),
  19330. weight: math.unit(150, "lb"),
  19331. name: "Side",
  19332. image: {
  19333. source: "./media/characters/richard-dragon/side.svg",
  19334. extra: 845 / 340,
  19335. bottom: 0.017
  19336. }
  19337. },
  19338. maw: {
  19339. height: math.unit(2.97, "feet"),
  19340. name: "Maw",
  19341. image: {
  19342. source: "./media/characters/richard-dragon/maw.svg"
  19343. }
  19344. },
  19345. },
  19346. [
  19347. ]
  19348. ))
  19349. characterMakers.push(() => makeCharacter(
  19350. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19351. {
  19352. front: {
  19353. height: math.unit(4, "feet"),
  19354. weight: math.unit(100, "lb"),
  19355. name: "Front",
  19356. image: {
  19357. source: "./media/characters/richard-smeargle/front.svg",
  19358. extra: 2952 / 2820,
  19359. bottom: 0.028
  19360. }
  19361. },
  19362. },
  19363. [
  19364. {
  19365. name: "Normal",
  19366. height: math.unit(4, "feet"),
  19367. default: true
  19368. },
  19369. {
  19370. name: "Dynamax",
  19371. height: math.unit(20, "meters")
  19372. },
  19373. ]
  19374. ))
  19375. characterMakers.push(() => makeCharacter(
  19376. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19377. {
  19378. front: {
  19379. height: math.unit(6, "feet"),
  19380. weight: math.unit(110, "lb"),
  19381. name: "Front",
  19382. image: {
  19383. source: "./media/characters/klay/front.svg",
  19384. extra: 962 / 883,
  19385. bottom: 0.04
  19386. }
  19387. },
  19388. back: {
  19389. height: math.unit(6, "feet"),
  19390. weight: math.unit(110, "lb"),
  19391. name: "Back",
  19392. image: {
  19393. source: "./media/characters/klay/back.svg",
  19394. extra: 962 / 883
  19395. }
  19396. },
  19397. beans: {
  19398. height: math.unit(1.15, "feet"),
  19399. name: "Beans",
  19400. image: {
  19401. source: "./media/characters/klay/beans.svg"
  19402. }
  19403. },
  19404. },
  19405. [
  19406. {
  19407. name: "Micro",
  19408. height: math.unit(6, "inches")
  19409. },
  19410. {
  19411. name: "Mini",
  19412. height: math.unit(3, "feet")
  19413. },
  19414. {
  19415. name: "Normal",
  19416. height: math.unit(6, "feet"),
  19417. default: true
  19418. },
  19419. {
  19420. name: "Big",
  19421. height: math.unit(25, "feet")
  19422. },
  19423. {
  19424. name: "Macro",
  19425. height: math.unit(100, "feet")
  19426. },
  19427. {
  19428. name: "Megamacro",
  19429. height: math.unit(400, "feet")
  19430. },
  19431. ]
  19432. ))
  19433. characterMakers.push(() => makeCharacter(
  19434. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19435. {
  19436. front: {
  19437. height: math.unit(6, "feet"),
  19438. weight: math.unit(160, "lb"),
  19439. name: "Front",
  19440. image: {
  19441. source: "./media/characters/marcus/front.svg",
  19442. extra: 734 / 676,
  19443. bottom: 0.03
  19444. }
  19445. },
  19446. },
  19447. [
  19448. {
  19449. name: "Little",
  19450. height: math.unit(6, "feet")
  19451. },
  19452. {
  19453. name: "Normal",
  19454. height: math.unit(110, "feet"),
  19455. default: true
  19456. },
  19457. {
  19458. name: "Macro",
  19459. height: math.unit(250, "feet")
  19460. },
  19461. {
  19462. name: "Megamacro",
  19463. height: math.unit(1000, "feet")
  19464. },
  19465. ]
  19466. ))
  19467. characterMakers.push(() => makeCharacter(
  19468. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19469. {
  19470. front: {
  19471. height: math.unit(7, "feet"),
  19472. weight: math.unit(275, "lb"),
  19473. name: "Front",
  19474. image: {
  19475. source: "./media/characters/claude-delroute/front.svg",
  19476. extra: 902/827,
  19477. bottom: 26/928
  19478. }
  19479. },
  19480. side: {
  19481. height: math.unit(7, "feet"),
  19482. weight: math.unit(275, "lb"),
  19483. name: "Side",
  19484. image: {
  19485. source: "./media/characters/claude-delroute/side.svg",
  19486. extra: 908/853,
  19487. bottom: 16/924
  19488. }
  19489. },
  19490. back: {
  19491. height: math.unit(7, "feet"),
  19492. weight: math.unit(275, "lb"),
  19493. name: "Back",
  19494. image: {
  19495. source: "./media/characters/claude-delroute/back.svg",
  19496. extra: 911/829,
  19497. bottom: 18/929
  19498. }
  19499. },
  19500. maw: {
  19501. height: math.unit(0.6407, "meters"),
  19502. name: "Maw",
  19503. image: {
  19504. source: "./media/characters/claude-delroute/maw.svg"
  19505. }
  19506. },
  19507. },
  19508. [
  19509. {
  19510. name: "Normal",
  19511. height: math.unit(7, "feet"),
  19512. default: true
  19513. },
  19514. {
  19515. name: "Lorge",
  19516. height: math.unit(20, "feet")
  19517. },
  19518. ]
  19519. ))
  19520. characterMakers.push(() => makeCharacter(
  19521. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19522. {
  19523. front: {
  19524. height: math.unit(8 + 4 / 12, "feet"),
  19525. weight: math.unit(600, "lb"),
  19526. name: "Front",
  19527. image: {
  19528. source: "./media/characters/dragonien/front.svg",
  19529. extra: 100 / 94,
  19530. bottom: 3.3 / 103.3445
  19531. }
  19532. },
  19533. back: {
  19534. height: math.unit(8 + 4 / 12, "feet"),
  19535. weight: math.unit(600, "lb"),
  19536. name: "Back",
  19537. image: {
  19538. source: "./media/characters/dragonien/back.svg",
  19539. extra: 776 / 746,
  19540. bottom: 6.4 / 782.0616
  19541. }
  19542. },
  19543. foot: {
  19544. height: math.unit(1.54, "feet"),
  19545. name: "Foot",
  19546. image: {
  19547. source: "./media/characters/dragonien/foot.svg",
  19548. }
  19549. },
  19550. },
  19551. [
  19552. {
  19553. name: "Normal",
  19554. height: math.unit(8 + 4 / 12, "feet"),
  19555. default: true
  19556. },
  19557. {
  19558. name: "Macro",
  19559. height: math.unit(200, "feet")
  19560. },
  19561. {
  19562. name: "Megamacro",
  19563. height: math.unit(1, "mile")
  19564. },
  19565. {
  19566. name: "Gigamacro",
  19567. height: math.unit(1000, "miles")
  19568. },
  19569. ]
  19570. ))
  19571. characterMakers.push(() => makeCharacter(
  19572. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19573. {
  19574. front: {
  19575. height: math.unit(5 + 2 / 12, "feet"),
  19576. weight: math.unit(110, "lb"),
  19577. name: "Front",
  19578. image: {
  19579. source: "./media/characters/desta/front.svg",
  19580. extra: 767 / 726,
  19581. bottom: 11.7 / 779
  19582. }
  19583. },
  19584. back: {
  19585. height: math.unit(5 + 2 / 12, "feet"),
  19586. weight: math.unit(110, "lb"),
  19587. name: "Back",
  19588. image: {
  19589. source: "./media/characters/desta/back.svg",
  19590. extra: 777 / 728,
  19591. bottom: 6 / 784
  19592. }
  19593. },
  19594. frontAlt: {
  19595. height: math.unit(5 + 2 / 12, "feet"),
  19596. weight: math.unit(110, "lb"),
  19597. name: "Front",
  19598. image: {
  19599. source: "./media/characters/desta/front-alt.svg",
  19600. extra: 1482 / 1417
  19601. }
  19602. },
  19603. side: {
  19604. height: math.unit(5 + 2 / 12, "feet"),
  19605. weight: math.unit(110, "lb"),
  19606. name: "Side",
  19607. image: {
  19608. source: "./media/characters/desta/side.svg",
  19609. extra: 2579 / 2491,
  19610. bottom: 0.053
  19611. }
  19612. },
  19613. },
  19614. [
  19615. {
  19616. name: "Micro",
  19617. height: math.unit(6, "inches")
  19618. },
  19619. {
  19620. name: "Normal",
  19621. height: math.unit(5 + 2 / 12, "feet"),
  19622. default: true
  19623. },
  19624. {
  19625. name: "Macro",
  19626. height: math.unit(62, "feet")
  19627. },
  19628. {
  19629. name: "Megamacro",
  19630. height: math.unit(1800, "feet")
  19631. },
  19632. ]
  19633. ))
  19634. characterMakers.push(() => makeCharacter(
  19635. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19636. {
  19637. front: {
  19638. height: math.unit(10, "feet"),
  19639. weight: math.unit(700, "lb"),
  19640. name: "Front",
  19641. image: {
  19642. source: "./media/characters/storm-alystar/front.svg",
  19643. extra: 2112 / 1898,
  19644. bottom: 0.034
  19645. }
  19646. },
  19647. },
  19648. [
  19649. {
  19650. name: "Micro",
  19651. height: math.unit(3.5, "inches")
  19652. },
  19653. {
  19654. name: "Normal",
  19655. height: math.unit(10, "feet"),
  19656. default: true
  19657. },
  19658. {
  19659. name: "Macro",
  19660. height: math.unit(400, "feet")
  19661. },
  19662. {
  19663. name: "Deific",
  19664. height: math.unit(60, "miles")
  19665. },
  19666. ]
  19667. ))
  19668. characterMakers.push(() => makeCharacter(
  19669. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19670. {
  19671. front: {
  19672. height: math.unit(2.35, "meters"),
  19673. weight: math.unit(119, "kg"),
  19674. name: "Front",
  19675. image: {
  19676. source: "./media/characters/ilia/front.svg",
  19677. extra: 1285 / 1255,
  19678. bottom: 0.06
  19679. }
  19680. },
  19681. },
  19682. [
  19683. {
  19684. name: "Normal",
  19685. height: math.unit(2.35, "meters")
  19686. },
  19687. {
  19688. name: "Macro",
  19689. height: math.unit(140, "meters"),
  19690. default: true
  19691. },
  19692. {
  19693. name: "Megamacro",
  19694. height: math.unit(100, "miles")
  19695. },
  19696. ]
  19697. ))
  19698. characterMakers.push(() => makeCharacter(
  19699. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19700. {
  19701. front: {
  19702. height: math.unit(6 + 5 / 12, "feet"),
  19703. weight: math.unit(190, "lb"),
  19704. name: "Front",
  19705. image: {
  19706. source: "./media/characters/kingdead/front.svg",
  19707. extra: 1228 / 1177
  19708. }
  19709. },
  19710. },
  19711. [
  19712. {
  19713. name: "Micro",
  19714. height: math.unit(7, "inches")
  19715. },
  19716. {
  19717. name: "Normal",
  19718. height: math.unit(6 + 5 / 12, "feet")
  19719. },
  19720. {
  19721. name: "Macro",
  19722. height: math.unit(150, "feet"),
  19723. default: true
  19724. },
  19725. {
  19726. name: "Megamacro",
  19727. height: math.unit(200, "miles")
  19728. },
  19729. ]
  19730. ))
  19731. characterMakers.push(() => makeCharacter(
  19732. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19733. {
  19734. front: {
  19735. height: math.unit(8, "feet"),
  19736. weight: math.unit(600, "lb"),
  19737. name: "Front",
  19738. image: {
  19739. source: "./media/characters/kyrehx/front.svg",
  19740. extra: 1195 / 1095,
  19741. bottom: 0.034
  19742. }
  19743. },
  19744. },
  19745. [
  19746. {
  19747. name: "Micro",
  19748. height: math.unit(2, "inches")
  19749. },
  19750. {
  19751. name: "Normal",
  19752. height: math.unit(8, "feet"),
  19753. default: true
  19754. },
  19755. {
  19756. name: "Macro",
  19757. height: math.unit(255, "feet")
  19758. },
  19759. ]
  19760. ))
  19761. characterMakers.push(() => makeCharacter(
  19762. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19763. {
  19764. front: {
  19765. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19766. weight: math.unit(184, "lb"),
  19767. name: "Front",
  19768. image: {
  19769. source: "./media/characters/xang/front.svg",
  19770. extra: 845 / 755
  19771. }
  19772. },
  19773. },
  19774. [
  19775. {
  19776. name: "Normal",
  19777. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19778. default: true
  19779. },
  19780. {
  19781. name: "Macro",
  19782. height: math.unit(0.935 * 146, "feet")
  19783. },
  19784. {
  19785. name: "Megamacro",
  19786. height: math.unit(0.935 * 3, "miles")
  19787. },
  19788. ]
  19789. ))
  19790. characterMakers.push(() => makeCharacter(
  19791. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19792. {
  19793. frontDressed: {
  19794. height: math.unit(5 + 7 / 12, "feet"),
  19795. weight: math.unit(140, "lb"),
  19796. name: "Front (Dressed)",
  19797. image: {
  19798. source: "./media/characters/doc-weardno/front-dressed.svg",
  19799. extra: 263 / 234
  19800. }
  19801. },
  19802. backDressed: {
  19803. height: math.unit(5 + 7 / 12, "feet"),
  19804. weight: math.unit(140, "lb"),
  19805. name: "Back (Dressed)",
  19806. image: {
  19807. source: "./media/characters/doc-weardno/back-dressed.svg",
  19808. extra: 266 / 238
  19809. }
  19810. },
  19811. front: {
  19812. height: math.unit(5 + 7 / 12, "feet"),
  19813. weight: math.unit(140, "lb"),
  19814. name: "Front",
  19815. image: {
  19816. source: "./media/characters/doc-weardno/front.svg",
  19817. extra: 254 / 233
  19818. }
  19819. },
  19820. },
  19821. [
  19822. {
  19823. name: "Micro",
  19824. height: math.unit(3, "inches")
  19825. },
  19826. {
  19827. name: "Normal",
  19828. height: math.unit(5 + 7 / 12, "feet"),
  19829. default: true
  19830. },
  19831. {
  19832. name: "Macro",
  19833. height: math.unit(25, "feet")
  19834. },
  19835. {
  19836. name: "Megamacro",
  19837. height: math.unit(2, "miles")
  19838. },
  19839. ]
  19840. ))
  19841. characterMakers.push(() => makeCharacter(
  19842. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19843. {
  19844. front: {
  19845. height: math.unit(6 + 2 / 12, "feet"),
  19846. weight: math.unit(153, "lb"),
  19847. name: "Front",
  19848. image: {
  19849. source: "./media/characters/seth-whilst/front.svg",
  19850. bottom: 0.07
  19851. }
  19852. },
  19853. },
  19854. [
  19855. {
  19856. name: "Micro",
  19857. height: math.unit(5, "inches")
  19858. },
  19859. {
  19860. name: "Normal",
  19861. height: math.unit(6 + 2 / 12, "feet"),
  19862. default: true
  19863. },
  19864. ]
  19865. ))
  19866. characterMakers.push(() => makeCharacter(
  19867. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19868. {
  19869. front: {
  19870. height: math.unit(3, "inches"),
  19871. weight: math.unit(8, "grams"),
  19872. name: "Front",
  19873. image: {
  19874. source: "./media/characters/pocket-jabari/front.svg",
  19875. extra: 1024 / 974,
  19876. bottom: 0.039
  19877. }
  19878. },
  19879. },
  19880. [
  19881. {
  19882. name: "Minimicro",
  19883. height: math.unit(8, "mm")
  19884. },
  19885. {
  19886. name: "Micro",
  19887. height: math.unit(3, "inches"),
  19888. default: true
  19889. },
  19890. {
  19891. name: "Normal",
  19892. height: math.unit(3, "feet")
  19893. },
  19894. ]
  19895. ))
  19896. characterMakers.push(() => makeCharacter(
  19897. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19898. {
  19899. frontDressed: {
  19900. height: math.unit(15, "feet"),
  19901. weight: math.unit(3280, "lb"),
  19902. name: "Front (Dressed)",
  19903. image: {
  19904. source: "./media/characters/sapphy/front-dressed.svg",
  19905. extra: 1951/1654,
  19906. bottom: 194/2145
  19907. },
  19908. form: "anthro",
  19909. default: true
  19910. },
  19911. backDressed: {
  19912. height: math.unit(15, "feet"),
  19913. weight: math.unit(3280, "lb"),
  19914. name: "Back (Dressed)",
  19915. image: {
  19916. source: "./media/characters/sapphy/back-dressed.svg",
  19917. extra: 2058/1918,
  19918. bottom: 125/2183
  19919. },
  19920. form: "anthro"
  19921. },
  19922. frontNude: {
  19923. height: math.unit(15, "feet"),
  19924. weight: math.unit(3280, "lb"),
  19925. name: "Front (Nude)",
  19926. image: {
  19927. source: "./media/characters/sapphy/front-nude.svg",
  19928. extra: 1951/1654,
  19929. bottom: 194/2145
  19930. },
  19931. form: "anthro"
  19932. },
  19933. backNude: {
  19934. height: math.unit(15, "feet"),
  19935. weight: math.unit(3280, "lb"),
  19936. name: "Back (Nude)",
  19937. image: {
  19938. source: "./media/characters/sapphy/back-nude.svg",
  19939. extra: 2058/1918,
  19940. bottom: 125/2183
  19941. },
  19942. form: "anthro"
  19943. },
  19944. full: {
  19945. height: math.unit(15, "feet"),
  19946. weight: math.unit(3280, "lb"),
  19947. name: "Full",
  19948. image: {
  19949. source: "./media/characters/sapphy/full.svg",
  19950. extra: 1396/1317,
  19951. bottom: 44/1440
  19952. },
  19953. form: "anthro"
  19954. },
  19955. dick: {
  19956. height: math.unit(3.8, "feet"),
  19957. name: "Dick",
  19958. image: {
  19959. source: "./media/characters/sapphy/dick.svg"
  19960. },
  19961. form: "anthro"
  19962. },
  19963. feral: {
  19964. height: math.unit(35, "feet"),
  19965. weight: math.unit(160, "tons"),
  19966. name: "Feral",
  19967. image: {
  19968. source: "./media/characters/sapphy/feral.svg",
  19969. extra: 1050/573,
  19970. bottom: 60/1110
  19971. },
  19972. form: "feral",
  19973. default: true
  19974. },
  19975. },
  19976. [
  19977. {
  19978. name: "Normal",
  19979. height: math.unit(15, "feet"),
  19980. form: "anthro"
  19981. },
  19982. {
  19983. name: "Casual Macro",
  19984. height: math.unit(120, "feet"),
  19985. form: "anthro"
  19986. },
  19987. {
  19988. name: "Macro",
  19989. height: math.unit(2150, "feet"),
  19990. default: true,
  19991. form: "anthro"
  19992. },
  19993. {
  19994. name: "Megamacro",
  19995. height: math.unit(8, "miles"),
  19996. form: "anthro"
  19997. },
  19998. {
  19999. name: "Galaxy Mom",
  20000. height: math.unit(6, "megalightyears"),
  20001. form: "anthro"
  20002. },
  20003. {
  20004. name: "Normal",
  20005. height: math.unit(35, "feet"),
  20006. form: "feral",
  20007. default: true
  20008. },
  20009. {
  20010. name: "Macro",
  20011. height: math.unit(300, "feet"),
  20012. form: "feral"
  20013. },
  20014. {
  20015. name: "Galaxy Mom",
  20016. height: math.unit(10, "megalightyears"),
  20017. form: "feral"
  20018. },
  20019. ],
  20020. {
  20021. "anthro": {
  20022. name: "Anthro",
  20023. default: true
  20024. },
  20025. "feral": {
  20026. name: "Feral"
  20027. }
  20028. }
  20029. ))
  20030. characterMakers.push(() => makeCharacter(
  20031. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20032. {
  20033. hyenaFront: {
  20034. height: math.unit(6, "feet"),
  20035. weight: math.unit(190, "lb"),
  20036. name: "Front",
  20037. image: {
  20038. source: "./media/characters/kiro/hyena-front.svg",
  20039. extra: 927/839,
  20040. bottom: 91/1018
  20041. },
  20042. form: "hyena",
  20043. default: true
  20044. },
  20045. front: {
  20046. height: math.unit(6, "feet"),
  20047. weight: math.unit(170, "lb"),
  20048. name: "Front",
  20049. image: {
  20050. source: "./media/characters/kiro/front.svg",
  20051. extra: 1064 / 1012,
  20052. bottom: 0.052
  20053. },
  20054. form: "folf",
  20055. default: true
  20056. },
  20057. },
  20058. [
  20059. {
  20060. name: "Micro",
  20061. height: math.unit(6, "inches"),
  20062. form: "folf"
  20063. },
  20064. {
  20065. name: "Normal",
  20066. height: math.unit(6, "feet"),
  20067. form: "folf",
  20068. default: true
  20069. },
  20070. {
  20071. name: "Macro",
  20072. height: math.unit(72, "feet"),
  20073. form: "folf"
  20074. },
  20075. {
  20076. name: "Micro",
  20077. height: math.unit(6, "inches"),
  20078. form: "hyena"
  20079. },
  20080. {
  20081. name: "Normal",
  20082. height: math.unit(6, "feet"),
  20083. form: "hyena",
  20084. default: true
  20085. },
  20086. {
  20087. name: "Macro",
  20088. height: math.unit(72, "feet"),
  20089. form: "hyena"
  20090. },
  20091. ],
  20092. {
  20093. "hyena": {
  20094. name: "Hyena",
  20095. default: true
  20096. },
  20097. "folf": {
  20098. name: "Folf",
  20099. },
  20100. }
  20101. ))
  20102. characterMakers.push(() => makeCharacter(
  20103. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20104. {
  20105. front: {
  20106. height: math.unit(5 + 9 / 12, "feet"),
  20107. weight: math.unit(175, "lb"),
  20108. name: "Front",
  20109. image: {
  20110. source: "./media/characters/irishfox/front.svg",
  20111. extra: 1912 / 1680,
  20112. bottom: 0.02
  20113. }
  20114. },
  20115. },
  20116. [
  20117. {
  20118. name: "Nano",
  20119. height: math.unit(1, "mm")
  20120. },
  20121. {
  20122. name: "Micro",
  20123. height: math.unit(2, "inches")
  20124. },
  20125. {
  20126. name: "Normal",
  20127. height: math.unit(5 + 9 / 12, "feet"),
  20128. default: true
  20129. },
  20130. {
  20131. name: "Macro",
  20132. height: math.unit(45, "feet")
  20133. },
  20134. ]
  20135. ))
  20136. characterMakers.push(() => makeCharacter(
  20137. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20138. {
  20139. front: {
  20140. height: math.unit(6 + 1 / 12, "feet"),
  20141. weight: math.unit(75, "lb"),
  20142. name: "Front",
  20143. image: {
  20144. source: "./media/characters/aronai-sieyes/front.svg",
  20145. extra: 1532/1450,
  20146. bottom: 42/1574
  20147. }
  20148. },
  20149. side: {
  20150. height: math.unit(6 + 1 / 12, "feet"),
  20151. weight: math.unit(75, "lb"),
  20152. name: "Side",
  20153. image: {
  20154. source: "./media/characters/aronai-sieyes/side.svg",
  20155. extra: 1422/1365,
  20156. bottom: 148/1570
  20157. }
  20158. },
  20159. back: {
  20160. height: math.unit(6 + 1 / 12, "feet"),
  20161. weight: math.unit(75, "lb"),
  20162. name: "Back",
  20163. image: {
  20164. source: "./media/characters/aronai-sieyes/back.svg",
  20165. extra: 1526/1464,
  20166. bottom: 51/1577
  20167. }
  20168. },
  20169. dressed: {
  20170. height: math.unit(6 + 1 / 12, "feet"),
  20171. weight: math.unit(75, "lb"),
  20172. name: "Dressed",
  20173. image: {
  20174. source: "./media/characters/aronai-sieyes/dressed.svg",
  20175. extra: 1559/1483,
  20176. bottom: 39/1598
  20177. }
  20178. },
  20179. slit: {
  20180. height: math.unit(1.3, "feet"),
  20181. name: "Slit",
  20182. image: {
  20183. source: "./media/characters/aronai-sieyes/slit.svg"
  20184. }
  20185. },
  20186. slitSpread: {
  20187. height: math.unit(0.9, "feet"),
  20188. name: "Slit (Spread)",
  20189. image: {
  20190. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20191. }
  20192. },
  20193. rump: {
  20194. height: math.unit(1.3, "feet"),
  20195. name: "Rump",
  20196. image: {
  20197. source: "./media/characters/aronai-sieyes/rump.svg"
  20198. }
  20199. },
  20200. maw: {
  20201. height: math.unit(1.25, "feet"),
  20202. name: "Maw",
  20203. image: {
  20204. source: "./media/characters/aronai-sieyes/maw.svg"
  20205. }
  20206. },
  20207. feral: {
  20208. height: math.unit(18, "feet"),
  20209. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20210. name: "Feral",
  20211. image: {
  20212. source: "./media/characters/aronai-sieyes/feral.svg",
  20213. extra: 1530 / 1240,
  20214. bottom: 0.035
  20215. }
  20216. },
  20217. },
  20218. [
  20219. {
  20220. name: "Micro",
  20221. height: math.unit(2, "inches")
  20222. },
  20223. {
  20224. name: "Normal",
  20225. height: math.unit(6 + 1 / 12, "feet"),
  20226. default: true
  20227. }
  20228. ]
  20229. ))
  20230. characterMakers.push(() => makeCharacter(
  20231. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20232. {
  20233. front: {
  20234. height: math.unit(12, "feet"),
  20235. weight: math.unit(410, "kg"),
  20236. name: "Front",
  20237. image: {
  20238. source: "./media/characters/xuna/front.svg",
  20239. extra: 2184 / 1980
  20240. }
  20241. },
  20242. side: {
  20243. height: math.unit(12, "feet"),
  20244. weight: math.unit(410, "kg"),
  20245. name: "Side",
  20246. image: {
  20247. source: "./media/characters/xuna/side.svg",
  20248. extra: 2184 / 1980
  20249. }
  20250. },
  20251. back: {
  20252. height: math.unit(12, "feet"),
  20253. weight: math.unit(410, "kg"),
  20254. name: "Back",
  20255. image: {
  20256. source: "./media/characters/xuna/back.svg",
  20257. extra: 2184 / 1980
  20258. }
  20259. },
  20260. },
  20261. [
  20262. {
  20263. name: "Nano glow",
  20264. height: math.unit(10, "nm")
  20265. },
  20266. {
  20267. name: "Micro floof",
  20268. height: math.unit(0.3, "m")
  20269. },
  20270. {
  20271. name: "Huggable softy boi",
  20272. height: math.unit(3.6576, "m"),
  20273. default: true
  20274. },
  20275. {
  20276. name: "Admirable floof",
  20277. height: math.unit(80, "meters")
  20278. },
  20279. {
  20280. name: "Gentle macro",
  20281. height: math.unit(300, "meters")
  20282. },
  20283. {
  20284. name: "Very careful floof",
  20285. height: math.unit(3200, "meters")
  20286. },
  20287. {
  20288. name: "The mega floof",
  20289. height: math.unit(36000, "meters")
  20290. },
  20291. {
  20292. name: "Giga-fur-Wicker",
  20293. height: math.unit(4800000, "meters")
  20294. },
  20295. {
  20296. name: "Licky world",
  20297. height: math.unit(20000000, "meters")
  20298. },
  20299. {
  20300. name: "Floofy cyan sun",
  20301. height: math.unit(1500000000, "meters")
  20302. },
  20303. {
  20304. name: "Milky Wicker",
  20305. height: math.unit(1000000000000000000000, "meters")
  20306. },
  20307. {
  20308. name: "The observing Wicker",
  20309. height: math.unit(999999999999999999999999999, "meters")
  20310. },
  20311. ]
  20312. ))
  20313. characterMakers.push(() => makeCharacter(
  20314. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20315. {
  20316. front: {
  20317. height: math.unit(5 + 9 / 12, "feet"),
  20318. weight: math.unit(150, "lb"),
  20319. name: "Front",
  20320. image: {
  20321. source: "./media/characters/arokha-sieyes/front.svg",
  20322. extra: 1425 / 1284,
  20323. bottom: 0.05
  20324. }
  20325. },
  20326. },
  20327. [
  20328. {
  20329. name: "Normal",
  20330. height: math.unit(5 + 9 / 12, "feet")
  20331. },
  20332. {
  20333. name: "Macro",
  20334. height: math.unit(30, "meters"),
  20335. default: true
  20336. },
  20337. ]
  20338. ))
  20339. characterMakers.push(() => makeCharacter(
  20340. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20341. {
  20342. front: {
  20343. height: math.unit(6, "feet"),
  20344. weight: math.unit(180, "lb"),
  20345. name: "Front",
  20346. image: {
  20347. source: "./media/characters/arokh-sieyes/front.svg",
  20348. extra: 1830 / 1769,
  20349. bottom: 0.01
  20350. }
  20351. },
  20352. },
  20353. [
  20354. {
  20355. name: "Normal",
  20356. height: math.unit(6, "feet")
  20357. },
  20358. {
  20359. name: "Macro",
  20360. height: math.unit(30, "meters"),
  20361. default: true
  20362. },
  20363. ]
  20364. ))
  20365. characterMakers.push(() => makeCharacter(
  20366. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20367. {
  20368. side: {
  20369. height: math.unit(13 + 1 / 12, "feet"),
  20370. weight: math.unit(8.5, "tonnes"),
  20371. preyCapacity: math.unit(36, "people"),
  20372. name: "Side",
  20373. image: {
  20374. source: "./media/characters/goldeneye/side.svg",
  20375. extra: 1139/741,
  20376. bottom: 98/1237
  20377. }
  20378. },
  20379. front: {
  20380. height: math.unit(5.1, "feet"),
  20381. weight: math.unit(8.5, "tonnes"),
  20382. preyCapacity: math.unit(36, "people"),
  20383. name: "Front",
  20384. image: {
  20385. source: "./media/characters/goldeneye/front.svg",
  20386. extra: 635/365,
  20387. bottom: 598/1233
  20388. }
  20389. },
  20390. maw: {
  20391. height: math.unit(6.6, "feet"),
  20392. name: "Maw",
  20393. image: {
  20394. source: "./media/characters/goldeneye/maw.svg"
  20395. }
  20396. },
  20397. headFront: {
  20398. height: math.unit(8, "feet"),
  20399. name: "Head (Front)",
  20400. image: {
  20401. source: "./media/characters/goldeneye/head-front.svg"
  20402. }
  20403. },
  20404. headSide: {
  20405. height: math.unit(6, "feet"),
  20406. name: "Head (Side)",
  20407. image: {
  20408. source: "./media/characters/goldeneye/head-side.svg"
  20409. }
  20410. },
  20411. headBack: {
  20412. height: math.unit(8, "feet"),
  20413. name: "Head (Back)",
  20414. image: {
  20415. source: "./media/characters/goldeneye/head-back.svg"
  20416. }
  20417. },
  20418. paw: {
  20419. height: math.unit(3.4, "feet"),
  20420. name: "Paw",
  20421. image: {
  20422. source: "./media/characters/goldeneye/paw.svg"
  20423. }
  20424. },
  20425. toering: {
  20426. height: math.unit(0.45, "feet"),
  20427. name: "Toering",
  20428. image: {
  20429. source: "./media/characters/goldeneye/toering.svg"
  20430. }
  20431. },
  20432. eyes: {
  20433. height: math.unit(0.5, "feet"),
  20434. name: "Eyes",
  20435. image: {
  20436. source: "./media/characters/goldeneye/eyes.svg"
  20437. }
  20438. },
  20439. },
  20440. [
  20441. {
  20442. name: "Normal",
  20443. height: math.unit(13 + 1 / 12, "feet"),
  20444. default: true
  20445. },
  20446. ]
  20447. ))
  20448. characterMakers.push(() => makeCharacter(
  20449. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20450. {
  20451. front: {
  20452. height: math.unit(6 + 1 / 12, "feet"),
  20453. weight: math.unit(210, "lb"),
  20454. name: "Front",
  20455. image: {
  20456. source: "./media/characters/leonardo-lycheborne/front.svg",
  20457. extra: 776/723,
  20458. bottom: 34/810
  20459. }
  20460. },
  20461. side: {
  20462. height: math.unit(6 + 1 / 12, "feet"),
  20463. weight: math.unit(210, "lb"),
  20464. name: "Side",
  20465. image: {
  20466. source: "./media/characters/leonardo-lycheborne/side.svg",
  20467. extra: 780/728,
  20468. bottom: 12/792
  20469. }
  20470. },
  20471. back: {
  20472. height: math.unit(6 + 1 / 12, "feet"),
  20473. weight: math.unit(210, "lb"),
  20474. name: "Back",
  20475. image: {
  20476. source: "./media/characters/leonardo-lycheborne/back.svg",
  20477. extra: 775/721,
  20478. bottom: 17/792
  20479. }
  20480. },
  20481. hand: {
  20482. height: math.unit(1.08, "feet"),
  20483. name: "Hand",
  20484. image: {
  20485. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20486. }
  20487. },
  20488. foot: {
  20489. height: math.unit(1.32, "feet"),
  20490. name: "Foot",
  20491. image: {
  20492. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20493. }
  20494. },
  20495. maw: {
  20496. height: math.unit(1, "feet"),
  20497. name: "Maw",
  20498. image: {
  20499. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20500. }
  20501. },
  20502. were: {
  20503. height: math.unit(20, "feet"),
  20504. weight: math.unit(7800, "lb"),
  20505. name: "Were",
  20506. image: {
  20507. source: "./media/characters/leonardo-lycheborne/were.svg",
  20508. extra: 1224/1165,
  20509. bottom: 72/1296
  20510. }
  20511. },
  20512. feral: {
  20513. height: math.unit(7.5, "feet"),
  20514. weight: math.unit(600, "lb"),
  20515. name: "Feral",
  20516. image: {
  20517. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20518. extra: 797/702,
  20519. bottom: 139/936
  20520. }
  20521. },
  20522. taur: {
  20523. height: math.unit(11, "feet"),
  20524. weight: math.unit(3300, "lb"),
  20525. name: "Taur",
  20526. image: {
  20527. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20528. extra: 1271/1197,
  20529. bottom: 47/1318
  20530. }
  20531. },
  20532. barghest: {
  20533. height: math.unit(11, "feet"),
  20534. weight: math.unit(1300, "lb"),
  20535. name: "Barghest",
  20536. image: {
  20537. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20538. extra: 1291/1204,
  20539. bottom: 37/1328
  20540. }
  20541. },
  20542. dick: {
  20543. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20544. name: "Dick",
  20545. image: {
  20546. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20547. }
  20548. },
  20549. dickWere: {
  20550. height: math.unit((20) / 3.8, "feet"),
  20551. name: "Dick (Were)",
  20552. image: {
  20553. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20554. }
  20555. },
  20556. },
  20557. [
  20558. {
  20559. name: "Normal",
  20560. height: math.unit(6 + 1 / 12, "feet"),
  20561. default: true
  20562. },
  20563. ]
  20564. ))
  20565. characterMakers.push(() => makeCharacter(
  20566. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20567. {
  20568. front: {
  20569. height: math.unit(10, "feet"),
  20570. weight: math.unit(350, "lb"),
  20571. name: "Front",
  20572. image: {
  20573. source: "./media/characters/jet/front.svg",
  20574. extra: 2050 / 1980,
  20575. bottom: 0.013
  20576. }
  20577. },
  20578. back: {
  20579. height: math.unit(10, "feet"),
  20580. weight: math.unit(350, "lb"),
  20581. name: "Back",
  20582. image: {
  20583. source: "./media/characters/jet/back.svg",
  20584. extra: 2050 / 1980,
  20585. bottom: 0.013
  20586. }
  20587. },
  20588. },
  20589. [
  20590. {
  20591. name: "Micro",
  20592. height: math.unit(6, "inches")
  20593. },
  20594. {
  20595. name: "Normal",
  20596. height: math.unit(10, "feet"),
  20597. default: true
  20598. },
  20599. {
  20600. name: "Macro",
  20601. height: math.unit(100, "feet")
  20602. },
  20603. ]
  20604. ))
  20605. characterMakers.push(() => makeCharacter(
  20606. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20607. {
  20608. front: {
  20609. height: math.unit(15, "feet"),
  20610. weight: math.unit(2800, "lb"),
  20611. name: "Front",
  20612. image: {
  20613. source: "./media/characters/tanarath/front.svg",
  20614. extra: 2392 / 2220,
  20615. bottom: 0.03
  20616. }
  20617. },
  20618. back: {
  20619. height: math.unit(15, "feet"),
  20620. weight: math.unit(2800, "lb"),
  20621. name: "Back",
  20622. image: {
  20623. source: "./media/characters/tanarath/back.svg",
  20624. extra: 2392 / 2220,
  20625. bottom: 0.03
  20626. }
  20627. },
  20628. },
  20629. [
  20630. {
  20631. name: "Normal",
  20632. height: math.unit(15, "feet"),
  20633. default: true
  20634. },
  20635. ]
  20636. ))
  20637. characterMakers.push(() => makeCharacter(
  20638. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20639. {
  20640. front: {
  20641. height: math.unit(7 + 1 / 12, "feet"),
  20642. weight: math.unit(175, "lb"),
  20643. name: "Front",
  20644. image: {
  20645. source: "./media/characters/patty-cattybatty/front.svg",
  20646. extra: 908 / 874,
  20647. bottom: 0.025
  20648. }
  20649. },
  20650. },
  20651. [
  20652. {
  20653. name: "Micro",
  20654. height: math.unit(1, "inch")
  20655. },
  20656. {
  20657. name: "Normal",
  20658. height: math.unit(7 + 1 / 12, "feet")
  20659. },
  20660. {
  20661. name: "Mini Macro",
  20662. height: math.unit(155, "feet")
  20663. },
  20664. {
  20665. name: "Macro",
  20666. height: math.unit(1077, "feet")
  20667. },
  20668. {
  20669. name: "Mega Macro",
  20670. height: math.unit(47650, "feet"),
  20671. default: true
  20672. },
  20673. {
  20674. name: "Giga Macro",
  20675. height: math.unit(440, "miles")
  20676. },
  20677. {
  20678. name: "Tera Macro",
  20679. height: math.unit(8700, "miles")
  20680. },
  20681. {
  20682. name: "Planetary Macro",
  20683. height: math.unit(32700, "miles")
  20684. },
  20685. {
  20686. name: "Solar Macro",
  20687. height: math.unit(550000, "miles")
  20688. },
  20689. {
  20690. name: "Celestial Macro",
  20691. height: math.unit(2.5, "AU")
  20692. },
  20693. ]
  20694. ))
  20695. characterMakers.push(() => makeCharacter(
  20696. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20697. {
  20698. front: {
  20699. height: math.unit(4 + 5 / 12, "feet"),
  20700. weight: math.unit(90, "lb"),
  20701. name: "Front",
  20702. image: {
  20703. source: "./media/characters/cappu/front.svg",
  20704. extra: 1247 / 1152,
  20705. bottom: 0.012
  20706. }
  20707. },
  20708. },
  20709. [
  20710. {
  20711. name: "Normal",
  20712. height: math.unit(4 + 5 / 12, "feet"),
  20713. default: true
  20714. },
  20715. ]
  20716. ))
  20717. characterMakers.push(() => makeCharacter(
  20718. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20719. {
  20720. frontDressed: {
  20721. height: math.unit(70, "cm"),
  20722. weight: math.unit(6, "kg"),
  20723. name: "Front (Dressed)",
  20724. image: {
  20725. source: "./media/characters/sebi/front-dressed.svg",
  20726. extra: 713.5 / 686.5,
  20727. bottom: 0.003
  20728. }
  20729. },
  20730. front: {
  20731. height: math.unit(70, "cm"),
  20732. weight: math.unit(5, "kg"),
  20733. name: "Front",
  20734. image: {
  20735. source: "./media/characters/sebi/front.svg",
  20736. extra: 713.5 / 686.5,
  20737. bottom: 0.003
  20738. }
  20739. }
  20740. },
  20741. [
  20742. {
  20743. name: "Normal",
  20744. height: math.unit(70, "cm"),
  20745. default: true
  20746. },
  20747. {
  20748. name: "Macro",
  20749. height: math.unit(8, "meters")
  20750. },
  20751. ]
  20752. ))
  20753. characterMakers.push(() => makeCharacter(
  20754. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20755. {
  20756. front: {
  20757. height: math.unit(6, "feet"),
  20758. weight: math.unit(150, "lb"),
  20759. name: "Front",
  20760. image: {
  20761. source: "./media/characters/typhek/front.svg",
  20762. extra: 1948 / 1929,
  20763. bottom: 0.025
  20764. }
  20765. },
  20766. side: {
  20767. height: math.unit(6, "feet"),
  20768. weight: math.unit(150, "lb"),
  20769. name: "Side",
  20770. image: {
  20771. source: "./media/characters/typhek/side.svg",
  20772. extra: 2034 / 2010,
  20773. bottom: 0.003
  20774. }
  20775. },
  20776. back: {
  20777. height: math.unit(6, "feet"),
  20778. weight: math.unit(150, "lb"),
  20779. name: "Back",
  20780. image: {
  20781. source: "./media/characters/typhek/back.svg",
  20782. extra: 2005 / 1978,
  20783. bottom: 0.004
  20784. }
  20785. },
  20786. palm: {
  20787. height: math.unit(1.2, "feet"),
  20788. name: "Palm",
  20789. image: {
  20790. source: "./media/characters/typhek/palm.svg"
  20791. }
  20792. },
  20793. fist: {
  20794. height: math.unit(1.1, "feet"),
  20795. name: "Fist",
  20796. image: {
  20797. source: "./media/characters/typhek/fist.svg"
  20798. }
  20799. },
  20800. foot: {
  20801. height: math.unit(1.57, "feet"),
  20802. name: "Foot",
  20803. image: {
  20804. source: "./media/characters/typhek/foot.svg"
  20805. }
  20806. },
  20807. sole: {
  20808. height: math.unit(2.05, "feet"),
  20809. name: "Sole",
  20810. image: {
  20811. source: "./media/characters/typhek/sole.svg"
  20812. }
  20813. },
  20814. },
  20815. [
  20816. {
  20817. name: "Macro",
  20818. height: math.unit(40, "stories"),
  20819. default: true
  20820. },
  20821. {
  20822. name: "Megamacro",
  20823. height: math.unit(1, "mile")
  20824. },
  20825. {
  20826. name: "Gigamacro",
  20827. height: math.unit(4000, "solarradii")
  20828. },
  20829. {
  20830. name: "Universal",
  20831. height: math.unit(1.1, "universes")
  20832. }
  20833. ]
  20834. ))
  20835. characterMakers.push(() => makeCharacter(
  20836. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20837. {
  20838. side: {
  20839. height: math.unit(5 + 7 / 12, "feet"),
  20840. weight: math.unit(150, "lb"),
  20841. name: "Side",
  20842. image: {
  20843. source: "./media/characters/kassy/side.svg",
  20844. extra: 1280 / 1225,
  20845. bottom: 0.002
  20846. }
  20847. },
  20848. front: {
  20849. height: math.unit(5 + 7 / 12, "feet"),
  20850. weight: math.unit(150, "lb"),
  20851. name: "Front",
  20852. image: {
  20853. source: "./media/characters/kassy/front.svg",
  20854. extra: 1280 / 1225,
  20855. bottom: 0.025
  20856. }
  20857. },
  20858. back: {
  20859. height: math.unit(5 + 7 / 12, "feet"),
  20860. weight: math.unit(150, "lb"),
  20861. name: "Back",
  20862. image: {
  20863. source: "./media/characters/kassy/back.svg",
  20864. extra: 1280 / 1225,
  20865. bottom: 0.002
  20866. }
  20867. },
  20868. foot: {
  20869. height: math.unit(1.266, "feet"),
  20870. name: "Foot",
  20871. image: {
  20872. source: "./media/characters/kassy/foot.svg"
  20873. }
  20874. },
  20875. },
  20876. [
  20877. {
  20878. name: "Normal",
  20879. height: math.unit(5 + 7 / 12, "feet")
  20880. },
  20881. {
  20882. name: "Macro",
  20883. height: math.unit(137, "feet"),
  20884. default: true
  20885. },
  20886. {
  20887. name: "Megamacro",
  20888. height: math.unit(1, "mile")
  20889. },
  20890. ]
  20891. ))
  20892. characterMakers.push(() => makeCharacter(
  20893. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20894. {
  20895. front: {
  20896. height: math.unit(6 + 1 / 12, "feet"),
  20897. weight: math.unit(200, "lb"),
  20898. name: "Front",
  20899. image: {
  20900. source: "./media/characters/neil/front.svg",
  20901. extra: 1326 / 1250,
  20902. bottom: 0.023
  20903. }
  20904. },
  20905. },
  20906. [
  20907. {
  20908. name: "Normal",
  20909. height: math.unit(6 + 1 / 12, "feet"),
  20910. default: true
  20911. },
  20912. {
  20913. name: "Macro",
  20914. height: math.unit(200, "feet")
  20915. },
  20916. ]
  20917. ))
  20918. characterMakers.push(() => makeCharacter(
  20919. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20920. {
  20921. front: {
  20922. height: math.unit(5 + 9 / 12, "feet"),
  20923. weight: math.unit(190, "lb"),
  20924. name: "Front",
  20925. image: {
  20926. source: "./media/characters/atticus/front.svg",
  20927. extra: 2934 / 2785,
  20928. bottom: 0.025
  20929. }
  20930. },
  20931. },
  20932. [
  20933. {
  20934. name: "Normal",
  20935. height: math.unit(5 + 9 / 12, "feet"),
  20936. default: true
  20937. },
  20938. {
  20939. name: "Macro",
  20940. height: math.unit(180, "feet")
  20941. },
  20942. ]
  20943. ))
  20944. characterMakers.push(() => makeCharacter(
  20945. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20946. {
  20947. side: {
  20948. height: math.unit(9, "feet"),
  20949. weight: math.unit(650, "lb"),
  20950. name: "Side",
  20951. image: {
  20952. source: "./media/characters/milo/side.svg",
  20953. extra: 2644 / 2310,
  20954. bottom: 0.032
  20955. }
  20956. },
  20957. },
  20958. [
  20959. {
  20960. name: "Normal",
  20961. height: math.unit(9, "feet"),
  20962. default: true
  20963. },
  20964. {
  20965. name: "Macro",
  20966. height: math.unit(300, "feet")
  20967. },
  20968. ]
  20969. ))
  20970. characterMakers.push(() => makeCharacter(
  20971. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20972. {
  20973. side: {
  20974. height: math.unit(8, "meters"),
  20975. weight: math.unit(90000, "kg"),
  20976. name: "Side",
  20977. image: {
  20978. source: "./media/characters/ijzer/side.svg",
  20979. extra: 2756 / 1600,
  20980. bottom: 0.01
  20981. }
  20982. },
  20983. },
  20984. [
  20985. {
  20986. name: "Small",
  20987. height: math.unit(3, "meters")
  20988. },
  20989. {
  20990. name: "Normal",
  20991. height: math.unit(8, "meters"),
  20992. default: true
  20993. },
  20994. {
  20995. name: "Normal+",
  20996. height: math.unit(10, "meters")
  20997. },
  20998. {
  20999. name: "Bigger",
  21000. height: math.unit(24, "meters")
  21001. },
  21002. {
  21003. name: "Huge",
  21004. height: math.unit(80, "meters")
  21005. },
  21006. ]
  21007. ))
  21008. characterMakers.push(() => makeCharacter(
  21009. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21010. {
  21011. front: {
  21012. height: math.unit(6 + 2 / 12, "feet"),
  21013. weight: math.unit(153, "lb"),
  21014. name: "Front",
  21015. image: {
  21016. source: "./media/characters/luca-cervicum/front.svg",
  21017. extra: 370 / 327,
  21018. bottom: 0.015
  21019. }
  21020. },
  21021. back: {
  21022. height: math.unit(6 + 2 / 12, "feet"),
  21023. weight: math.unit(153, "lb"),
  21024. name: "Back",
  21025. image: {
  21026. source: "./media/characters/luca-cervicum/back.svg",
  21027. extra: 367 / 333,
  21028. bottom: 0.005
  21029. }
  21030. },
  21031. frontGear: {
  21032. height: math.unit(6 + 2 / 12, "feet"),
  21033. weight: math.unit(173, "lb"),
  21034. name: "Front (Gear)",
  21035. image: {
  21036. source: "./media/characters/luca-cervicum/front-gear.svg",
  21037. extra: 377 / 333,
  21038. bottom: 0.006
  21039. }
  21040. },
  21041. },
  21042. [
  21043. {
  21044. name: "Normal",
  21045. height: math.unit(6 + 2 / 12, "feet"),
  21046. default: true
  21047. },
  21048. ]
  21049. ))
  21050. characterMakers.push(() => makeCharacter(
  21051. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21052. {
  21053. front: {
  21054. height: math.unit(6 + 1 / 12, "feet"),
  21055. weight: math.unit(304, "lb"),
  21056. name: "Front",
  21057. image: {
  21058. source: "./media/characters/oliver/front.svg",
  21059. extra: 157 / 143,
  21060. bottom: 0.08
  21061. }
  21062. },
  21063. },
  21064. [
  21065. {
  21066. name: "Normal",
  21067. height: math.unit(6 + 1 / 12, "feet"),
  21068. default: true
  21069. },
  21070. ]
  21071. ))
  21072. characterMakers.push(() => makeCharacter(
  21073. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21074. {
  21075. front: {
  21076. height: math.unit(5 + 7 / 12, "feet"),
  21077. weight: math.unit(140, "lb"),
  21078. name: "Front",
  21079. image: {
  21080. source: "./media/characters/shane/front.svg",
  21081. extra: 304 / 289,
  21082. bottom: 0.005
  21083. }
  21084. },
  21085. },
  21086. [
  21087. {
  21088. name: "Normal",
  21089. height: math.unit(5 + 7 / 12, "feet"),
  21090. default: true
  21091. },
  21092. ]
  21093. ))
  21094. characterMakers.push(() => makeCharacter(
  21095. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21096. {
  21097. front: {
  21098. height: math.unit(5 + 9 / 12, "feet"),
  21099. weight: math.unit(178, "lb"),
  21100. name: "Front",
  21101. image: {
  21102. source: "./media/characters/shin/front.svg",
  21103. extra: 159 / 151,
  21104. bottom: 0.015
  21105. }
  21106. },
  21107. },
  21108. [
  21109. {
  21110. name: "Normal",
  21111. height: math.unit(5 + 9 / 12, "feet"),
  21112. default: true
  21113. },
  21114. ]
  21115. ))
  21116. characterMakers.push(() => makeCharacter(
  21117. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21118. {
  21119. front: {
  21120. height: math.unit(5 + 10 / 12, "feet"),
  21121. weight: math.unit(168, "lb"),
  21122. name: "Front",
  21123. image: {
  21124. source: "./media/characters/xerxes/front.svg",
  21125. extra: 282 / 260,
  21126. bottom: 0.045
  21127. }
  21128. },
  21129. },
  21130. [
  21131. {
  21132. name: "Normal",
  21133. height: math.unit(5 + 10 / 12, "feet"),
  21134. default: true
  21135. },
  21136. ]
  21137. ))
  21138. characterMakers.push(() => makeCharacter(
  21139. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21140. {
  21141. front: {
  21142. height: math.unit(6 + 7 / 12, "feet"),
  21143. weight: math.unit(208, "lb"),
  21144. name: "Front",
  21145. image: {
  21146. source: "./media/characters/chaska/front.svg",
  21147. extra: 332 / 319,
  21148. bottom: 0.015
  21149. }
  21150. },
  21151. },
  21152. [
  21153. {
  21154. name: "Normal",
  21155. height: math.unit(6 + 7 / 12, "feet"),
  21156. default: true
  21157. },
  21158. ]
  21159. ))
  21160. characterMakers.push(() => makeCharacter(
  21161. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21162. {
  21163. front: {
  21164. height: math.unit(5 + 8 / 12, "feet"),
  21165. weight: math.unit(208, "lb"),
  21166. name: "Front",
  21167. image: {
  21168. source: "./media/characters/enuk/front.svg",
  21169. extra: 437 / 406,
  21170. bottom: 0.02
  21171. }
  21172. },
  21173. },
  21174. [
  21175. {
  21176. name: "Normal",
  21177. height: math.unit(5 + 8 / 12, "feet"),
  21178. default: true
  21179. },
  21180. ]
  21181. ))
  21182. characterMakers.push(() => makeCharacter(
  21183. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21184. {
  21185. front: {
  21186. height: math.unit(5 + 10 / 12, "feet"),
  21187. weight: math.unit(252, "lb"),
  21188. name: "Front",
  21189. image: {
  21190. source: "./media/characters/bruun/front.svg",
  21191. extra: 197 / 187,
  21192. bottom: 0.012
  21193. }
  21194. },
  21195. },
  21196. [
  21197. {
  21198. name: "Normal",
  21199. height: math.unit(5 + 10 / 12, "feet"),
  21200. default: true
  21201. },
  21202. ]
  21203. ))
  21204. characterMakers.push(() => makeCharacter(
  21205. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21206. {
  21207. front: {
  21208. height: math.unit(6 + 10 / 12, "feet"),
  21209. weight: math.unit(255, "lb"),
  21210. name: "Front",
  21211. image: {
  21212. source: "./media/characters/alexeev/front.svg",
  21213. extra: 213 / 200,
  21214. bottom: 0.05
  21215. }
  21216. },
  21217. },
  21218. [
  21219. {
  21220. name: "Normal",
  21221. height: math.unit(6 + 10 / 12, "feet"),
  21222. default: true
  21223. },
  21224. ]
  21225. ))
  21226. characterMakers.push(() => makeCharacter(
  21227. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21228. {
  21229. front: {
  21230. height: math.unit(2 + 8 / 12, "feet"),
  21231. weight: math.unit(22, "lb"),
  21232. name: "Front",
  21233. image: {
  21234. source: "./media/characters/evelyn/front.svg",
  21235. extra: 208 / 180
  21236. }
  21237. },
  21238. },
  21239. [
  21240. {
  21241. name: "Normal",
  21242. height: math.unit(2 + 8 / 12, "feet"),
  21243. default: true
  21244. },
  21245. ]
  21246. ))
  21247. characterMakers.push(() => makeCharacter(
  21248. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21249. {
  21250. front: {
  21251. height: math.unit(5 + 9 / 12, "feet"),
  21252. weight: math.unit(139, "lb"),
  21253. name: "Front",
  21254. image: {
  21255. source: "./media/characters/inca/front.svg",
  21256. extra: 294 / 291,
  21257. bottom: 0.03
  21258. }
  21259. },
  21260. },
  21261. [
  21262. {
  21263. name: "Normal",
  21264. height: math.unit(5 + 9 / 12, "feet"),
  21265. default: true
  21266. },
  21267. ]
  21268. ))
  21269. characterMakers.push(() => makeCharacter(
  21270. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21271. {
  21272. front: {
  21273. height: math.unit(6 + 3 / 12, "feet"),
  21274. weight: math.unit(185, "lb"),
  21275. name: "Front",
  21276. image: {
  21277. source: "./media/characters/mera/front.svg",
  21278. extra: 291 / 277,
  21279. bottom: 0.03
  21280. }
  21281. },
  21282. },
  21283. [
  21284. {
  21285. name: "Normal",
  21286. height: math.unit(6 + 3 / 12, "feet"),
  21287. default: true
  21288. },
  21289. ]
  21290. ))
  21291. characterMakers.push(() => makeCharacter(
  21292. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21293. {
  21294. front: {
  21295. height: math.unit(6 + 7 / 12, "feet"),
  21296. weight: math.unit(160, "lb"),
  21297. name: "Front",
  21298. image: {
  21299. source: "./media/characters/ceres/front.svg",
  21300. extra: 1023 / 950,
  21301. bottom: 0.027
  21302. }
  21303. },
  21304. back: {
  21305. height: math.unit(6 + 7 / 12, "feet"),
  21306. weight: math.unit(160, "lb"),
  21307. name: "Back",
  21308. image: {
  21309. source: "./media/characters/ceres/back.svg",
  21310. extra: 1023 / 950
  21311. }
  21312. },
  21313. },
  21314. [
  21315. {
  21316. name: "Normal",
  21317. height: math.unit(6 + 7 / 12, "feet"),
  21318. default: true
  21319. },
  21320. ]
  21321. ))
  21322. characterMakers.push(() => makeCharacter(
  21323. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21324. {
  21325. front: {
  21326. height: math.unit(5 + 10 / 12, "feet"),
  21327. weight: math.unit(150, "lb"),
  21328. name: "Front",
  21329. image: {
  21330. source: "./media/characters/kris/front.svg",
  21331. extra: 885 / 803,
  21332. bottom: 0.03
  21333. }
  21334. },
  21335. },
  21336. [
  21337. {
  21338. name: "Normal",
  21339. height: math.unit(5 + 10 / 12, "feet"),
  21340. default: true
  21341. },
  21342. ]
  21343. ))
  21344. characterMakers.push(() => makeCharacter(
  21345. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21346. {
  21347. front: {
  21348. height: math.unit(7, "feet"),
  21349. weight: math.unit(120, "kg"),
  21350. name: "Front",
  21351. image: {
  21352. source: "./media/characters/taluthus/front.svg",
  21353. extra: 903 / 833,
  21354. bottom: 0.015
  21355. }
  21356. },
  21357. },
  21358. [
  21359. {
  21360. name: "Normal",
  21361. height: math.unit(7, "feet"),
  21362. default: true
  21363. },
  21364. {
  21365. name: "Macro",
  21366. height: math.unit(300, "feet")
  21367. },
  21368. ]
  21369. ))
  21370. characterMakers.push(() => makeCharacter(
  21371. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21372. {
  21373. front: {
  21374. height: math.unit(5 + 9 / 12, "feet"),
  21375. weight: math.unit(145, "lb"),
  21376. name: "Front",
  21377. image: {
  21378. source: "./media/characters/dawn/front.svg",
  21379. extra: 2094 / 2016,
  21380. bottom: 0.025
  21381. }
  21382. },
  21383. back: {
  21384. height: math.unit(5 + 9 / 12, "feet"),
  21385. weight: math.unit(160, "lb"),
  21386. name: "Back",
  21387. image: {
  21388. source: "./media/characters/dawn/back.svg",
  21389. extra: 2112 / 2080,
  21390. bottom: 0.005
  21391. }
  21392. },
  21393. },
  21394. [
  21395. {
  21396. name: "Normal",
  21397. height: math.unit(6 + 7 / 12, "feet"),
  21398. default: true
  21399. },
  21400. ]
  21401. ))
  21402. characterMakers.push(() => makeCharacter(
  21403. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21404. {
  21405. anthro: {
  21406. height: math.unit(8 + 3 / 12, "feet"),
  21407. weight: math.unit(450, "lb"),
  21408. name: "Anthro",
  21409. image: {
  21410. source: "./media/characters/arador/anthro.svg",
  21411. extra: 1835 / 1718,
  21412. bottom: 0.025
  21413. }
  21414. },
  21415. feral: {
  21416. height: math.unit(4, "feet"),
  21417. weight: math.unit(200, "lb"),
  21418. name: "Feral",
  21419. image: {
  21420. source: "./media/characters/arador/feral.svg",
  21421. extra: 1683 / 1514,
  21422. bottom: 0.07
  21423. }
  21424. },
  21425. },
  21426. [
  21427. {
  21428. name: "Normal",
  21429. height: math.unit(8 + 3 / 12, "feet")
  21430. },
  21431. {
  21432. name: "Macro",
  21433. height: math.unit(82.5, "feet"),
  21434. default: true
  21435. },
  21436. ]
  21437. ))
  21438. characterMakers.push(() => makeCharacter(
  21439. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21440. {
  21441. front: {
  21442. height: math.unit(5 + 10 / 12, "feet"),
  21443. weight: math.unit(125, "lb"),
  21444. name: "Front",
  21445. image: {
  21446. source: "./media/characters/dharsi/front.svg",
  21447. extra: 716 / 630,
  21448. bottom: 0.035
  21449. }
  21450. },
  21451. },
  21452. [
  21453. {
  21454. name: "Nano",
  21455. height: math.unit(100, "nm")
  21456. },
  21457. {
  21458. name: "Micro",
  21459. height: math.unit(2, "inches")
  21460. },
  21461. {
  21462. name: "Normal",
  21463. height: math.unit(5 + 10 / 12, "feet"),
  21464. default: true
  21465. },
  21466. {
  21467. name: "Macro",
  21468. height: math.unit(1000, "feet")
  21469. },
  21470. {
  21471. name: "Megamacro",
  21472. height: math.unit(10, "miles")
  21473. },
  21474. {
  21475. name: "Gigamacro",
  21476. height: math.unit(3000, "miles")
  21477. },
  21478. {
  21479. name: "Teramacro",
  21480. height: math.unit(500000, "miles")
  21481. },
  21482. {
  21483. name: "Teramacro+",
  21484. height: math.unit(30, "galaxies")
  21485. },
  21486. ]
  21487. ))
  21488. characterMakers.push(() => makeCharacter(
  21489. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21490. {
  21491. front: {
  21492. height: math.unit(6, "feet"),
  21493. weight: math.unit(150, "lb"),
  21494. name: "Front",
  21495. image: {
  21496. source: "./media/characters/deathy/front.svg",
  21497. extra: 1552 / 1463,
  21498. bottom: 0.025
  21499. }
  21500. },
  21501. side: {
  21502. height: math.unit(6, "feet"),
  21503. weight: math.unit(150, "lb"),
  21504. name: "Side",
  21505. image: {
  21506. source: "./media/characters/deathy/side.svg",
  21507. extra: 1604 / 1455,
  21508. bottom: 0.025
  21509. }
  21510. },
  21511. back: {
  21512. height: math.unit(6, "feet"),
  21513. weight: math.unit(150, "lb"),
  21514. name: "Back",
  21515. image: {
  21516. source: "./media/characters/deathy/back.svg",
  21517. extra: 1580 / 1463,
  21518. bottom: 0.005
  21519. }
  21520. },
  21521. },
  21522. [
  21523. {
  21524. name: "Micro",
  21525. height: math.unit(5, "millimeters")
  21526. },
  21527. {
  21528. name: "Normal",
  21529. height: math.unit(6 + 5 / 12, "feet"),
  21530. default: true
  21531. },
  21532. ]
  21533. ))
  21534. characterMakers.push(() => makeCharacter(
  21535. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21536. {
  21537. front: {
  21538. height: math.unit(16, "feet"),
  21539. weight: math.unit(4000, "lb"),
  21540. name: "Front",
  21541. image: {
  21542. source: "./media/characters/juniper/front.svg",
  21543. bottom: 0.04
  21544. }
  21545. },
  21546. },
  21547. [
  21548. {
  21549. name: "Normal",
  21550. height: math.unit(16, "feet"),
  21551. default: true
  21552. },
  21553. ]
  21554. ))
  21555. characterMakers.push(() => makeCharacter(
  21556. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21557. {
  21558. front: {
  21559. height: math.unit(6, "feet"),
  21560. weight: math.unit(150, "lb"),
  21561. name: "Front",
  21562. image: {
  21563. source: "./media/characters/hipster/front.svg",
  21564. extra: 1312 / 1209,
  21565. bottom: 0.025
  21566. }
  21567. },
  21568. back: {
  21569. height: math.unit(6, "feet"),
  21570. weight: math.unit(150, "lb"),
  21571. name: "Back",
  21572. image: {
  21573. source: "./media/characters/hipster/back.svg",
  21574. extra: 1281 / 1196,
  21575. bottom: 0.01
  21576. }
  21577. },
  21578. },
  21579. [
  21580. {
  21581. name: "Micro",
  21582. height: math.unit(1, "mm")
  21583. },
  21584. {
  21585. name: "Normal",
  21586. height: math.unit(4, "inches"),
  21587. default: true
  21588. },
  21589. {
  21590. name: "Macro",
  21591. height: math.unit(500, "feet")
  21592. },
  21593. {
  21594. name: "Megamacro",
  21595. height: math.unit(1000, "miles")
  21596. },
  21597. ]
  21598. ))
  21599. characterMakers.push(() => makeCharacter(
  21600. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21601. {
  21602. front: {
  21603. height: math.unit(6, "feet"),
  21604. weight: math.unit(150, "lb"),
  21605. name: "Front",
  21606. image: {
  21607. source: "./media/characters/tendirmuldr/front.svg",
  21608. extra: 1878 / 1772,
  21609. bottom: 0.015
  21610. }
  21611. },
  21612. },
  21613. [
  21614. {
  21615. name: "Megamacro",
  21616. height: math.unit(1500, "miles"),
  21617. default: true
  21618. },
  21619. ]
  21620. ))
  21621. characterMakers.push(() => makeCharacter(
  21622. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21623. {
  21624. front: {
  21625. height: math.unit(14, "feet"),
  21626. weight: math.unit(12000, "lb"),
  21627. name: "Front",
  21628. image: {
  21629. source: "./media/characters/mort/front.svg",
  21630. extra: 365 / 318,
  21631. bottom: 0.01
  21632. }
  21633. },
  21634. side: {
  21635. height: math.unit(14, "feet"),
  21636. weight: math.unit(12000, "lb"),
  21637. name: "Side",
  21638. image: {
  21639. source: "./media/characters/mort/side.svg",
  21640. extra: 365 / 318,
  21641. bottom: 0.052
  21642. },
  21643. default: true
  21644. },
  21645. back: {
  21646. height: math.unit(14, "feet"),
  21647. weight: math.unit(12000, "lb"),
  21648. name: "Back",
  21649. image: {
  21650. source: "./media/characters/mort/back.svg",
  21651. extra: 371 / 332,
  21652. bottom: 0.18
  21653. }
  21654. },
  21655. },
  21656. [
  21657. {
  21658. name: "Normal",
  21659. height: math.unit(14, "feet"),
  21660. default: true
  21661. },
  21662. ]
  21663. ))
  21664. characterMakers.push(() => makeCharacter(
  21665. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21666. {
  21667. front: {
  21668. height: math.unit(8, "feet"),
  21669. weight: math.unit(1, "ton"),
  21670. name: "Front",
  21671. image: {
  21672. source: "./media/characters/lycoa/front.svg",
  21673. extra: 1836/1728,
  21674. bottom: 81/1917
  21675. }
  21676. },
  21677. back: {
  21678. height: math.unit(8, "feet"),
  21679. weight: math.unit(1, "ton"),
  21680. name: "Back",
  21681. image: {
  21682. source: "./media/characters/lycoa/back.svg",
  21683. extra: 1785/1720,
  21684. bottom: 91/1876
  21685. }
  21686. },
  21687. head: {
  21688. height: math.unit(1.6243, "feet"),
  21689. name: "Head",
  21690. image: {
  21691. source: "./media/characters/lycoa/head.svg",
  21692. extra: 1011/782,
  21693. bottom: 0/1011
  21694. }
  21695. },
  21696. tailmaw: {
  21697. height: math.unit(1.9, "feet"),
  21698. name: "Tailmaw",
  21699. image: {
  21700. source: "./media/characters/lycoa/tailmaw.svg"
  21701. }
  21702. },
  21703. tentacles: {
  21704. height: math.unit(2.1, "feet"),
  21705. name: "Tentacles",
  21706. image: {
  21707. source: "./media/characters/lycoa/tentacles.svg"
  21708. }
  21709. },
  21710. dick: {
  21711. height: math.unit(1.73, "feet"),
  21712. name: "Dick",
  21713. image: {
  21714. source: "./media/characters/lycoa/dick.svg"
  21715. }
  21716. },
  21717. },
  21718. [
  21719. {
  21720. name: "Normal",
  21721. height: math.unit(8, "feet"),
  21722. default: true
  21723. },
  21724. {
  21725. name: "Macro",
  21726. height: math.unit(30, "feet")
  21727. },
  21728. ]
  21729. ))
  21730. characterMakers.push(() => makeCharacter(
  21731. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21732. {
  21733. front: {
  21734. height: math.unit(4 + 2 / 12, "feet"),
  21735. weight: math.unit(70, "lb"),
  21736. name: "Front",
  21737. image: {
  21738. source: "./media/characters/naldara/front.svg",
  21739. extra: 1664/1387,
  21740. bottom: 81/1745
  21741. },
  21742. form: "anthro",
  21743. default: true
  21744. },
  21745. naga: {
  21746. height: math.unit(20, "feet"),
  21747. weight: math.unit(15000, "kg"),
  21748. name: "Front",
  21749. image: {
  21750. source: "./media/characters/naldara/naga.svg",
  21751. extra: 1590/1396,
  21752. bottom: 285/1875
  21753. },
  21754. form: "naga",
  21755. default: true
  21756. },
  21757. },
  21758. [
  21759. {
  21760. name: "Normal",
  21761. height: math.unit(4 + 2 / 12, "feet"),
  21762. form: "anthro",
  21763. default: true
  21764. },
  21765. {
  21766. name: "Normal",
  21767. height: math.unit(20, "feet"),
  21768. form: "naga",
  21769. default: true
  21770. },
  21771. ],
  21772. {
  21773. "anthro": {
  21774. name: "Anthro",
  21775. default: true
  21776. },
  21777. "naga": {
  21778. name: "Naga"
  21779. }
  21780. }
  21781. ))
  21782. characterMakers.push(() => makeCharacter(
  21783. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21784. {
  21785. front: {
  21786. height: math.unit(13 + 7 / 12, "feet"),
  21787. weight: math.unit(1500, "lb"),
  21788. name: "Front",
  21789. image: {
  21790. source: "./media/characters/briar/front.svg",
  21791. extra: 1223/1157,
  21792. bottom: 123/1346
  21793. }
  21794. },
  21795. },
  21796. [
  21797. {
  21798. name: "Normal",
  21799. height: math.unit(13 + 7 / 12, "feet"),
  21800. default: true
  21801. },
  21802. ]
  21803. ))
  21804. characterMakers.push(() => makeCharacter(
  21805. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21806. {
  21807. side: {
  21808. height: math.unit(16, "feet"),
  21809. weight: math.unit(500, "lb"),
  21810. name: "Side",
  21811. image: {
  21812. source: "./media/characters/vanguard/side.svg",
  21813. extra: 1022/914,
  21814. bottom: 30/1052
  21815. }
  21816. },
  21817. sideAlt: {
  21818. height: math.unit(10, "feet"),
  21819. weight: math.unit(500, "lb"),
  21820. name: "Side (Alt)",
  21821. image: {
  21822. source: "./media/characters/vanguard/side-alt.svg",
  21823. extra: 502 / 425,
  21824. bottom: 0.087
  21825. }
  21826. },
  21827. },
  21828. [
  21829. {
  21830. name: "Normal",
  21831. height: math.unit(17.71, "feet"),
  21832. default: true
  21833. },
  21834. ]
  21835. ))
  21836. characterMakers.push(() => makeCharacter(
  21837. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21838. {
  21839. front: {
  21840. height: math.unit(7.5, "feet"),
  21841. weight: math.unit(2, "lb"),
  21842. name: "Front",
  21843. image: {
  21844. source: "./media/characters/artemis/work-safe-front.svg",
  21845. extra: 1192 / 1075,
  21846. bottom: 0.07
  21847. },
  21848. form: "work-safe",
  21849. default: true
  21850. },
  21851. frontNsfw: {
  21852. height: math.unit(7.5, "feet"),
  21853. weight: math.unit(2, "lb"),
  21854. name: "Front",
  21855. image: {
  21856. source: "./media/characters/artemis/calibrating-front.svg",
  21857. extra: 1192 / 1075,
  21858. bottom: 0.07
  21859. },
  21860. form: "calibrating",
  21861. default: true
  21862. },
  21863. frontNsfwer: {
  21864. height: math.unit(7.5, "feet"),
  21865. weight: math.unit(2, "lb"),
  21866. name: "Front",
  21867. image: {
  21868. source: "./media/characters/artemis/oversize-load-front.svg",
  21869. extra: 1192 / 1075,
  21870. bottom: 0.07
  21871. },
  21872. form: "oversize-load",
  21873. default: true
  21874. },
  21875. side: {
  21876. height: math.unit(7.5, "feet"),
  21877. weight: math.unit(2, "lb"),
  21878. name: "Side",
  21879. image: {
  21880. source: "./media/characters/artemis/work-safe-side.svg",
  21881. extra: 1192 / 1075,
  21882. bottom: 0.07
  21883. },
  21884. form: "work-safe"
  21885. },
  21886. sideNsfw: {
  21887. height: math.unit(7.5, "feet"),
  21888. weight: math.unit(2, "lb"),
  21889. name: "Side",
  21890. image: {
  21891. source: "./media/characters/artemis/calibrating-side.svg",
  21892. extra: 1192 / 1075,
  21893. bottom: 0.07
  21894. },
  21895. form: "calibrating"
  21896. },
  21897. sideNsfwer: {
  21898. height: math.unit(7.5, "feet"),
  21899. weight: math.unit(2, "lb"),
  21900. name: "Side",
  21901. image: {
  21902. source: "./media/characters/artemis/oversize-load-side.svg",
  21903. extra: 1192 / 1075,
  21904. bottom: 0.07
  21905. },
  21906. form: "oversize-load"
  21907. },
  21908. maw: {
  21909. height: math.unit(1.1, "feet"),
  21910. name: "Maw",
  21911. image: {
  21912. source: "./media/characters/artemis/maw.svg"
  21913. },
  21914. form: "work-safe"
  21915. },
  21916. stomach: {
  21917. height: math.unit(0.95, "feet"),
  21918. name: "Stomach",
  21919. image: {
  21920. source: "./media/characters/artemis/stomach.svg"
  21921. },
  21922. form: "work-safe"
  21923. },
  21924. dickCanine: {
  21925. height: math.unit(1, "feet"),
  21926. name: "Dick (Canine)",
  21927. image: {
  21928. source: "./media/characters/artemis/dick-canine.svg"
  21929. },
  21930. form: "calibrating"
  21931. },
  21932. dickEquine: {
  21933. height: math.unit(0.85, "feet"),
  21934. name: "Dick (Equine)",
  21935. image: {
  21936. source: "./media/characters/artemis/dick-equine.svg"
  21937. },
  21938. form: "calibrating"
  21939. },
  21940. dickExotic: {
  21941. height: math.unit(0.85, "feet"),
  21942. name: "Dick (Exotic)",
  21943. image: {
  21944. source: "./media/characters/artemis/dick-exotic.svg"
  21945. },
  21946. form: "calibrating"
  21947. },
  21948. dickCanineBigger: {
  21949. height: math.unit(1 * 1.33, "feet"),
  21950. name: "Dick (Canine)",
  21951. image: {
  21952. source: "./media/characters/artemis/dick-canine.svg"
  21953. },
  21954. form: "oversize-load"
  21955. },
  21956. dickEquineBigger: {
  21957. height: math.unit(0.85 * 1.33, "feet"),
  21958. name: "Dick (Equine)",
  21959. image: {
  21960. source: "./media/characters/artemis/dick-equine.svg"
  21961. },
  21962. form: "oversize-load"
  21963. },
  21964. dickExoticBigger: {
  21965. height: math.unit(0.85 * 1.33, "feet"),
  21966. name: "Dick (Exotic)",
  21967. image: {
  21968. source: "./media/characters/artemis/dick-exotic.svg"
  21969. },
  21970. form: "oversize-load"
  21971. },
  21972. },
  21973. [
  21974. {
  21975. name: "Normal",
  21976. height: math.unit(7.5, "feet"),
  21977. form: "work-safe",
  21978. default: true
  21979. },
  21980. {
  21981. name: "Normal",
  21982. height: math.unit(7.5, "feet"),
  21983. form: "calibrating",
  21984. default: true
  21985. },
  21986. {
  21987. name: "Normal",
  21988. height: math.unit(7.5, "feet"),
  21989. form: "oversize-load",
  21990. default: true
  21991. },
  21992. {
  21993. name: "Enlarged",
  21994. height: math.unit(12, "feet"),
  21995. form: "work-safe",
  21996. },
  21997. {
  21998. name: "Enlarged",
  21999. height: math.unit(12, "feet"),
  22000. form: "calibrating",
  22001. },
  22002. {
  22003. name: "Enlarged",
  22004. height: math.unit(12, "feet"),
  22005. form: "oversize-load",
  22006. },
  22007. ],
  22008. {
  22009. "work-safe": {
  22010. name: "Work-Safe",
  22011. default: true
  22012. },
  22013. "calibrating": {
  22014. name: "Calibrating"
  22015. },
  22016. "oversize-load": {
  22017. name: "Oversize Load"
  22018. }
  22019. }
  22020. ))
  22021. characterMakers.push(() => makeCharacter(
  22022. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22023. {
  22024. front: {
  22025. height: math.unit(5 + 3 / 12, "feet"),
  22026. weight: math.unit(160, "lb"),
  22027. name: "Front",
  22028. image: {
  22029. source: "./media/characters/kira/front.svg",
  22030. extra: 906 / 786,
  22031. bottom: 0.01
  22032. }
  22033. },
  22034. back: {
  22035. height: math.unit(5 + 3 / 12, "feet"),
  22036. weight: math.unit(160, "lb"),
  22037. name: "Back",
  22038. image: {
  22039. source: "./media/characters/kira/back.svg",
  22040. extra: 882 / 757,
  22041. bottom: 0.005
  22042. }
  22043. },
  22044. frontDressed: {
  22045. height: math.unit(5 + 3 / 12, "feet"),
  22046. weight: math.unit(160, "lb"),
  22047. name: "Front (Dressed)",
  22048. image: {
  22049. source: "./media/characters/kira/front-dressed.svg",
  22050. extra: 906 / 786,
  22051. bottom: 0.01
  22052. }
  22053. },
  22054. beans: {
  22055. height: math.unit(0.92, "feet"),
  22056. name: "Beans",
  22057. image: {
  22058. source: "./media/characters/kira/beans.svg"
  22059. }
  22060. },
  22061. },
  22062. [
  22063. {
  22064. name: "Normal",
  22065. height: math.unit(5 + 3 / 12, "feet"),
  22066. default: true
  22067. },
  22068. ]
  22069. ))
  22070. characterMakers.push(() => makeCharacter(
  22071. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22072. {
  22073. front: {
  22074. height: math.unit(5 + 4 / 12, "feet"),
  22075. weight: math.unit(145, "lb"),
  22076. name: "Front",
  22077. image: {
  22078. source: "./media/characters/scramble/front.svg",
  22079. extra: 763 / 727,
  22080. bottom: 0.05
  22081. }
  22082. },
  22083. back: {
  22084. height: math.unit(5 + 4 / 12, "feet"),
  22085. weight: math.unit(145, "lb"),
  22086. name: "Back",
  22087. image: {
  22088. source: "./media/characters/scramble/back.svg",
  22089. extra: 826 / 737,
  22090. bottom: 0.002
  22091. }
  22092. },
  22093. },
  22094. [
  22095. {
  22096. name: "Normal",
  22097. height: math.unit(5 + 4 / 12, "feet"),
  22098. default: true
  22099. },
  22100. ]
  22101. ))
  22102. characterMakers.push(() => makeCharacter(
  22103. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22104. {
  22105. side: {
  22106. height: math.unit(6 + 2 / 12, "feet"),
  22107. weight: math.unit(190, "lb"),
  22108. name: "Side",
  22109. image: {
  22110. source: "./media/characters/biscuit/side.svg",
  22111. extra: 858 / 791,
  22112. bottom: 0.044
  22113. }
  22114. },
  22115. },
  22116. [
  22117. {
  22118. name: "Normal",
  22119. height: math.unit(6 + 2 / 12, "feet"),
  22120. default: true
  22121. },
  22122. ]
  22123. ))
  22124. characterMakers.push(() => makeCharacter(
  22125. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22126. {
  22127. front: {
  22128. height: math.unit(5 + 2 / 12, "feet"),
  22129. weight: math.unit(120, "lb"),
  22130. name: "Front",
  22131. image: {
  22132. source: "./media/characters/poffin/front.svg",
  22133. extra: 786 / 680,
  22134. bottom: 0.005
  22135. }
  22136. },
  22137. },
  22138. [
  22139. {
  22140. name: "Normal",
  22141. height: math.unit(5 + 2 / 12, "feet"),
  22142. default: true
  22143. },
  22144. ]
  22145. ))
  22146. characterMakers.push(() => makeCharacter(
  22147. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22148. {
  22149. front: {
  22150. height: math.unit(6 + 3 / 12, "feet"),
  22151. weight: math.unit(519, "lb"),
  22152. name: "Front",
  22153. image: {
  22154. source: "./media/characters/dhari/front.svg",
  22155. extra: 1048 / 946,
  22156. bottom: 0.015
  22157. }
  22158. },
  22159. back: {
  22160. height: math.unit(6 + 3 / 12, "feet"),
  22161. weight: math.unit(519, "lb"),
  22162. name: "Back",
  22163. image: {
  22164. source: "./media/characters/dhari/back.svg",
  22165. extra: 1048 / 931,
  22166. bottom: 0.005
  22167. }
  22168. },
  22169. frontDressed: {
  22170. height: math.unit(6 + 3 / 12, "feet"),
  22171. weight: math.unit(519, "lb"),
  22172. name: "Front (Dressed)",
  22173. image: {
  22174. source: "./media/characters/dhari/front-dressed.svg",
  22175. extra: 1713 / 1546,
  22176. bottom: 0.02
  22177. }
  22178. },
  22179. backDressed: {
  22180. height: math.unit(6 + 3 / 12, "feet"),
  22181. weight: math.unit(519, "lb"),
  22182. name: "Back (Dressed)",
  22183. image: {
  22184. source: "./media/characters/dhari/back-dressed.svg",
  22185. extra: 1699 / 1537,
  22186. bottom: 0.01
  22187. }
  22188. },
  22189. maw: {
  22190. height: math.unit(0.95, "feet"),
  22191. name: "Maw",
  22192. image: {
  22193. source: "./media/characters/dhari/maw.svg"
  22194. }
  22195. },
  22196. wereFront: {
  22197. height: math.unit(12 + 8 / 12, "feet"),
  22198. weight: math.unit(4000, "lb"),
  22199. name: "Front (Were)",
  22200. image: {
  22201. source: "./media/characters/dhari/were-front.svg",
  22202. extra: 1065 / 969,
  22203. bottom: 0.015
  22204. }
  22205. },
  22206. wereBack: {
  22207. height: math.unit(12 + 8 / 12, "feet"),
  22208. weight: math.unit(4000, "lb"),
  22209. name: "Back (Were)",
  22210. image: {
  22211. source: "./media/characters/dhari/were-back.svg",
  22212. extra: 1065 / 969,
  22213. bottom: 0.012
  22214. }
  22215. },
  22216. wereMaw: {
  22217. height: math.unit(0.625, "meters"),
  22218. name: "Maw (Were)",
  22219. image: {
  22220. source: "./media/characters/dhari/were-maw.svg"
  22221. }
  22222. },
  22223. },
  22224. [
  22225. {
  22226. name: "Normal",
  22227. height: math.unit(6 + 3 / 12, "feet"),
  22228. default: true
  22229. },
  22230. ]
  22231. ))
  22232. characterMakers.push(() => makeCharacter(
  22233. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22234. {
  22235. anthro: {
  22236. height: math.unit(5 + 7 / 12, "feet"),
  22237. weight: math.unit(175, "lb"),
  22238. name: "Anthro",
  22239. image: {
  22240. source: "./media/characters/rena-dyne/anthro.svg",
  22241. extra: 1849 / 1785,
  22242. bottom: 0.005
  22243. }
  22244. },
  22245. taur: {
  22246. height: math.unit(15 + 6 / 12, "feet"),
  22247. weight: math.unit(8000, "lb"),
  22248. name: "Taur",
  22249. image: {
  22250. source: "./media/characters/rena-dyne/taur.svg",
  22251. extra: 2315 / 2234,
  22252. bottom: 0.033
  22253. }
  22254. },
  22255. },
  22256. [
  22257. {
  22258. name: "Normal",
  22259. height: math.unit(5 + 7 / 12, "feet"),
  22260. default: true
  22261. },
  22262. ]
  22263. ))
  22264. characterMakers.push(() => makeCharacter(
  22265. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22266. {
  22267. front: {
  22268. height: math.unit(8, "feet"),
  22269. weight: math.unit(600, "lb"),
  22270. name: "Front",
  22271. image: {
  22272. source: "./media/characters/weremeep/front.svg",
  22273. extra: 970/849,
  22274. bottom: 7/977
  22275. }
  22276. },
  22277. },
  22278. [
  22279. {
  22280. name: "Normal",
  22281. height: math.unit(8, "feet"),
  22282. default: true
  22283. },
  22284. {
  22285. name: "Lorg",
  22286. height: math.unit(12, "feet")
  22287. },
  22288. {
  22289. name: "Oh Lawd She Comin'",
  22290. height: math.unit(20, "feet")
  22291. },
  22292. ]
  22293. ))
  22294. characterMakers.push(() => makeCharacter(
  22295. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22296. {
  22297. front: {
  22298. height: math.unit(4, "feet"),
  22299. weight: math.unit(90, "lb"),
  22300. name: "Front",
  22301. image: {
  22302. source: "./media/characters/reza/front.svg",
  22303. extra: 1183 / 1111,
  22304. bottom: 0.017
  22305. }
  22306. },
  22307. back: {
  22308. height: math.unit(4, "feet"),
  22309. weight: math.unit(90, "lb"),
  22310. name: "Back",
  22311. image: {
  22312. source: "./media/characters/reza/back.svg",
  22313. extra: 1183 / 1111,
  22314. bottom: 0.01
  22315. }
  22316. },
  22317. drake: {
  22318. height: math.unit(30, "feet"),
  22319. weight: math.unit(246960, "lb"),
  22320. name: "Drake",
  22321. image: {
  22322. source: "./media/characters/reza/drake.svg",
  22323. extra: 2350 / 2024,
  22324. bottom: 60.7 / 2403
  22325. }
  22326. },
  22327. },
  22328. [
  22329. {
  22330. name: "Normal",
  22331. height: math.unit(4, "feet"),
  22332. default: true
  22333. },
  22334. ]
  22335. ))
  22336. characterMakers.push(() => makeCharacter(
  22337. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22338. {
  22339. side: {
  22340. height: math.unit(15, "feet"),
  22341. weight: math.unit(14, "tons"),
  22342. name: "Side",
  22343. image: {
  22344. source: "./media/characters/athea/side.svg",
  22345. extra: 960 / 540,
  22346. bottom: 0.003
  22347. }
  22348. },
  22349. sitting: {
  22350. height: math.unit(6 * 2.85, "feet"),
  22351. weight: math.unit(14, "tons"),
  22352. name: "Sitting",
  22353. image: {
  22354. source: "./media/characters/athea/sitting.svg",
  22355. extra: 621 / 581,
  22356. bottom: 0.075
  22357. }
  22358. },
  22359. maw: {
  22360. height: math.unit(7.59498031496063, "feet"),
  22361. name: "Maw",
  22362. image: {
  22363. source: "./media/characters/athea/maw.svg"
  22364. }
  22365. },
  22366. },
  22367. [
  22368. {
  22369. name: "Lap Cat",
  22370. height: math.unit(2.5, "feet")
  22371. },
  22372. {
  22373. name: "Minimacro",
  22374. height: math.unit(15, "feet"),
  22375. default: true
  22376. },
  22377. {
  22378. name: "Macro",
  22379. height: math.unit(120, "feet")
  22380. },
  22381. {
  22382. name: "Macro+",
  22383. height: math.unit(640, "feet")
  22384. },
  22385. {
  22386. name: "Colossus",
  22387. height: math.unit(2.2, "miles")
  22388. },
  22389. ]
  22390. ))
  22391. characterMakers.push(() => makeCharacter(
  22392. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22393. {
  22394. front: {
  22395. height: math.unit(8 + 8 / 12, "feet"),
  22396. weight: math.unit(130, "kg"),
  22397. name: "Front",
  22398. image: {
  22399. source: "./media/characters/seroko/front.svg",
  22400. extra: 1385 / 1280,
  22401. bottom: 0.025
  22402. }
  22403. },
  22404. back: {
  22405. height: math.unit(8 + 8 / 12, "feet"),
  22406. weight: math.unit(130, "kg"),
  22407. name: "Back",
  22408. image: {
  22409. source: "./media/characters/seroko/back.svg",
  22410. extra: 1369 / 1238,
  22411. bottom: 0.018
  22412. }
  22413. },
  22414. frontDressed: {
  22415. height: math.unit(8 + 8 / 12, "feet"),
  22416. weight: math.unit(130, "kg"),
  22417. name: "Front (Dressed)",
  22418. image: {
  22419. source: "./media/characters/seroko/front-dressed.svg",
  22420. extra: 1366 / 1275,
  22421. bottom: 0.03
  22422. }
  22423. },
  22424. },
  22425. [
  22426. {
  22427. name: "Normal",
  22428. height: math.unit(8 + 8 / 12, "feet"),
  22429. default: true
  22430. },
  22431. ]
  22432. ))
  22433. characterMakers.push(() => makeCharacter(
  22434. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22435. {
  22436. front: {
  22437. height: math.unit(5.5, "feet"),
  22438. weight: math.unit(160, "lb"),
  22439. name: "Front",
  22440. image: {
  22441. source: "./media/characters/quatzi/front.svg",
  22442. extra: 2346 / 2242,
  22443. bottom: 0.015
  22444. }
  22445. },
  22446. },
  22447. [
  22448. {
  22449. name: "Normal",
  22450. height: math.unit(5.5, "feet"),
  22451. default: true
  22452. },
  22453. {
  22454. name: "Big",
  22455. height: math.unit(7.7, "feet")
  22456. },
  22457. ]
  22458. ))
  22459. characterMakers.push(() => makeCharacter(
  22460. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22461. {
  22462. front: {
  22463. height: math.unit(5 + 11 / 12, "feet"),
  22464. weight: math.unit(180, "lb"),
  22465. name: "Front",
  22466. image: {
  22467. source: "./media/characters/sen/front.svg",
  22468. extra: 1321 / 1254,
  22469. bottom: 0.015
  22470. }
  22471. },
  22472. side: {
  22473. height: math.unit(5 + 11 / 12, "feet"),
  22474. weight: math.unit(180, "lb"),
  22475. name: "Side",
  22476. image: {
  22477. source: "./media/characters/sen/side.svg",
  22478. extra: 1321 / 1254,
  22479. bottom: 0.007
  22480. }
  22481. },
  22482. back: {
  22483. height: math.unit(5 + 11 / 12, "feet"),
  22484. weight: math.unit(180, "lb"),
  22485. name: "Back",
  22486. image: {
  22487. source: "./media/characters/sen/back.svg",
  22488. extra: 1321 / 1254
  22489. }
  22490. },
  22491. },
  22492. [
  22493. {
  22494. name: "Normal",
  22495. height: math.unit(5 + 11 / 12, "feet"),
  22496. default: true
  22497. },
  22498. ]
  22499. ))
  22500. characterMakers.push(() => makeCharacter(
  22501. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22502. {
  22503. front: {
  22504. height: math.unit(166.6, "cm"),
  22505. weight: math.unit(66.6, "kg"),
  22506. name: "Front",
  22507. image: {
  22508. source: "./media/characters/fruity/front.svg",
  22509. extra: 1510 / 1386,
  22510. bottom: 0.04
  22511. }
  22512. },
  22513. back: {
  22514. height: math.unit(166.6, "cm"),
  22515. weight: math.unit(66.6, "lb"),
  22516. name: "Back",
  22517. image: {
  22518. source: "./media/characters/fruity/back.svg",
  22519. extra: 1563 / 1435,
  22520. bottom: 0.005
  22521. }
  22522. },
  22523. },
  22524. [
  22525. {
  22526. name: "Normal",
  22527. height: math.unit(166.6, "cm"),
  22528. default: true
  22529. },
  22530. {
  22531. name: "Demonic",
  22532. height: math.unit(166.6, "feet")
  22533. },
  22534. ]
  22535. ))
  22536. characterMakers.push(() => makeCharacter(
  22537. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22538. {
  22539. side: {
  22540. height: math.unit(10, "feet"),
  22541. weight: math.unit(500, "lb"),
  22542. name: "Side",
  22543. image: {
  22544. source: "./media/characters/zost/side.svg",
  22545. extra: 2870/2533,
  22546. bottom: 252/3122
  22547. }
  22548. },
  22549. mawFront: {
  22550. height: math.unit(1.08, "meters"),
  22551. name: "Maw (Front)",
  22552. image: {
  22553. source: "./media/characters/zost/maw-front.svg"
  22554. }
  22555. },
  22556. mawSide: {
  22557. height: math.unit(2.66, "feet"),
  22558. name: "Maw (Side)",
  22559. image: {
  22560. source: "./media/characters/zost/maw-side.svg"
  22561. }
  22562. },
  22563. wingspan: {
  22564. height: math.unit(7.4, "feet"),
  22565. name: "Wingspan",
  22566. image: {
  22567. source: "./media/characters/zost/wingspan.svg"
  22568. }
  22569. },
  22570. },
  22571. [
  22572. {
  22573. name: "Normal",
  22574. height: math.unit(10, "feet"),
  22575. default: true
  22576. },
  22577. ]
  22578. ))
  22579. characterMakers.push(() => makeCharacter(
  22580. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22581. {
  22582. front: {
  22583. height: math.unit(5 + 4 / 12, "feet"),
  22584. weight: math.unit(120, "lb"),
  22585. name: "Front",
  22586. image: {
  22587. source: "./media/characters/luci/front.svg",
  22588. extra: 1985 / 1884,
  22589. bottom: 0.04
  22590. }
  22591. },
  22592. back: {
  22593. height: math.unit(5 + 4 / 12, "feet"),
  22594. weight: math.unit(120, "lb"),
  22595. name: "Back",
  22596. image: {
  22597. source: "./media/characters/luci/back.svg",
  22598. extra: 1892 / 1791,
  22599. bottom: 0.002
  22600. }
  22601. },
  22602. },
  22603. [
  22604. {
  22605. name: "Normal",
  22606. height: math.unit(5 + 4 / 12, "feet"),
  22607. default: true
  22608. },
  22609. ]
  22610. ))
  22611. characterMakers.push(() => makeCharacter(
  22612. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22613. {
  22614. front: {
  22615. height: math.unit(1500, "feet"),
  22616. weight: math.unit(3.8e6, "tons"),
  22617. name: "Front",
  22618. image: {
  22619. source: "./media/characters/2th/front.svg",
  22620. extra: 3489 / 3350,
  22621. bottom: 0.1
  22622. }
  22623. },
  22624. foot: {
  22625. height: math.unit(461, "feet"),
  22626. name: "Foot",
  22627. image: {
  22628. source: "./media/characters/2th/foot.svg"
  22629. }
  22630. },
  22631. },
  22632. [
  22633. {
  22634. name: "\"Micro\"",
  22635. height: math.unit(15 + 7 / 12, "feet")
  22636. },
  22637. {
  22638. name: "Normal",
  22639. height: math.unit(1500, "feet"),
  22640. default: true
  22641. },
  22642. {
  22643. name: "Macro",
  22644. height: math.unit(5000, "feet")
  22645. },
  22646. {
  22647. name: "Megamacro",
  22648. height: math.unit(15, "miles")
  22649. },
  22650. {
  22651. name: "Gigamacro",
  22652. height: math.unit(4000, "miles")
  22653. },
  22654. {
  22655. name: "Galactic",
  22656. height: math.unit(50, "AU")
  22657. },
  22658. ]
  22659. ))
  22660. characterMakers.push(() => makeCharacter(
  22661. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22662. {
  22663. front: {
  22664. height: math.unit(5 + 6 / 12, "feet"),
  22665. weight: math.unit(220, "lb"),
  22666. name: "Front",
  22667. image: {
  22668. source: "./media/characters/amethyst/front.svg",
  22669. extra: 2078 / 2040,
  22670. bottom: 0.045
  22671. }
  22672. },
  22673. back: {
  22674. height: math.unit(5 + 6 / 12, "feet"),
  22675. weight: math.unit(220, "lb"),
  22676. name: "Back",
  22677. image: {
  22678. source: "./media/characters/amethyst/back.svg",
  22679. extra: 2021 / 1989,
  22680. bottom: 0.02
  22681. }
  22682. },
  22683. },
  22684. [
  22685. {
  22686. name: "Normal",
  22687. height: math.unit(5 + 6 / 12, "feet"),
  22688. default: true
  22689. },
  22690. ]
  22691. ))
  22692. characterMakers.push(() => makeCharacter(
  22693. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22694. {
  22695. front: {
  22696. height: math.unit(4 + 11 / 12, "feet"),
  22697. weight: math.unit(120, "lb"),
  22698. name: "Front",
  22699. image: {
  22700. source: "./media/characters/yumi-akiyama/front.svg",
  22701. extra: 1327 / 1235,
  22702. bottom: 0.02
  22703. }
  22704. },
  22705. back: {
  22706. height: math.unit(4 + 11 / 12, "feet"),
  22707. weight: math.unit(120, "lb"),
  22708. name: "Back",
  22709. image: {
  22710. source: "./media/characters/yumi-akiyama/back.svg",
  22711. extra: 1287 / 1245,
  22712. bottom: 0.002
  22713. }
  22714. },
  22715. },
  22716. [
  22717. {
  22718. name: "Galactic",
  22719. height: math.unit(50, "galaxies"),
  22720. default: true
  22721. },
  22722. {
  22723. name: "Universal",
  22724. height: math.unit(100, "universes")
  22725. },
  22726. ]
  22727. ))
  22728. characterMakers.push(() => makeCharacter(
  22729. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22730. {
  22731. front: {
  22732. height: math.unit(8, "feet"),
  22733. weight: math.unit(500, "lb"),
  22734. name: "Front",
  22735. image: {
  22736. source: "./media/characters/rifter-yrmori/front.svg",
  22737. extra: 1180 / 1125,
  22738. bottom: 0.02
  22739. }
  22740. },
  22741. back: {
  22742. height: math.unit(8, "feet"),
  22743. weight: math.unit(500, "lb"),
  22744. name: "Back",
  22745. image: {
  22746. source: "./media/characters/rifter-yrmori/back.svg",
  22747. extra: 1190 / 1145,
  22748. bottom: 0.001
  22749. }
  22750. },
  22751. wings: {
  22752. height: math.unit(7.75, "feet"),
  22753. weight: math.unit(500, "lb"),
  22754. name: "Wings",
  22755. image: {
  22756. source: "./media/characters/rifter-yrmori/wings.svg",
  22757. extra: 1357 / 1285
  22758. }
  22759. },
  22760. maw: {
  22761. height: math.unit(0.8, "feet"),
  22762. name: "Maw",
  22763. image: {
  22764. source: "./media/characters/rifter-yrmori/maw.svg"
  22765. }
  22766. },
  22767. mawfront: {
  22768. height: math.unit(1.45, "feet"),
  22769. name: "Maw (Front)",
  22770. image: {
  22771. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22772. }
  22773. },
  22774. },
  22775. [
  22776. {
  22777. name: "Normal",
  22778. height: math.unit(8, "feet"),
  22779. default: true
  22780. },
  22781. {
  22782. name: "Macro",
  22783. height: math.unit(42, "meters")
  22784. },
  22785. ]
  22786. ))
  22787. characterMakers.push(() => makeCharacter(
  22788. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22789. {
  22790. were: {
  22791. height: math.unit(25 + 6 / 12, "feet"),
  22792. weight: math.unit(10000, "lb"),
  22793. name: "Were",
  22794. image: {
  22795. source: "./media/characters/tahajin/were.svg",
  22796. extra: 801 / 770,
  22797. bottom: 0.042
  22798. }
  22799. },
  22800. aquatic: {
  22801. height: math.unit(6 + 4 / 12, "feet"),
  22802. weight: math.unit(160, "lb"),
  22803. name: "Aquatic",
  22804. image: {
  22805. source: "./media/characters/tahajin/aquatic.svg",
  22806. extra: 572 / 542,
  22807. bottom: 0.04
  22808. }
  22809. },
  22810. chow: {
  22811. height: math.unit(8 + 11 / 12, "feet"),
  22812. weight: math.unit(450, "lb"),
  22813. name: "Chow",
  22814. image: {
  22815. source: "./media/characters/tahajin/chow.svg",
  22816. extra: 660 / 640,
  22817. bottom: 0.015
  22818. }
  22819. },
  22820. demiNaga: {
  22821. height: math.unit(6 + 8 / 12, "feet"),
  22822. weight: math.unit(300, "lb"),
  22823. name: "Demi Naga",
  22824. image: {
  22825. source: "./media/characters/tahajin/demi-naga.svg",
  22826. extra: 643 / 615,
  22827. bottom: 0.1
  22828. }
  22829. },
  22830. data: {
  22831. height: math.unit(5, "inches"),
  22832. weight: math.unit(0.1, "lb"),
  22833. name: "Data",
  22834. image: {
  22835. source: "./media/characters/tahajin/data.svg"
  22836. }
  22837. },
  22838. fluu: {
  22839. height: math.unit(5 + 7 / 12, "feet"),
  22840. weight: math.unit(140, "lb"),
  22841. name: "Fluu",
  22842. image: {
  22843. source: "./media/characters/tahajin/fluu.svg",
  22844. extra: 628 / 592,
  22845. bottom: 0.02
  22846. }
  22847. },
  22848. starWarrior: {
  22849. height: math.unit(4 + 5 / 12, "feet"),
  22850. weight: math.unit(50, "lb"),
  22851. name: "Star Warrior",
  22852. image: {
  22853. source: "./media/characters/tahajin/star-warrior.svg"
  22854. }
  22855. },
  22856. },
  22857. [
  22858. {
  22859. name: "Normal",
  22860. height: math.unit(25 + 6 / 12, "feet"),
  22861. default: true
  22862. },
  22863. ]
  22864. ))
  22865. characterMakers.push(() => makeCharacter(
  22866. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22867. {
  22868. front: {
  22869. height: math.unit(8, "feet"),
  22870. weight: math.unit(350, "lb"),
  22871. name: "Front",
  22872. image: {
  22873. source: "./media/characters/gabira/front.svg",
  22874. extra: 1261/1154,
  22875. bottom: 51/1312
  22876. }
  22877. },
  22878. back: {
  22879. height: math.unit(8, "feet"),
  22880. weight: math.unit(350, "lb"),
  22881. name: "Back",
  22882. image: {
  22883. source: "./media/characters/gabira/back.svg",
  22884. extra: 1265/1163,
  22885. bottom: 46/1311
  22886. }
  22887. },
  22888. head: {
  22889. height: math.unit(2.85, "feet"),
  22890. name: "Head",
  22891. image: {
  22892. source: "./media/characters/gabira/head.svg"
  22893. }
  22894. },
  22895. },
  22896. [
  22897. {
  22898. name: "Normal",
  22899. height: math.unit(8, "feet"),
  22900. default: true
  22901. },
  22902. ]
  22903. ))
  22904. characterMakers.push(() => makeCharacter(
  22905. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22906. {
  22907. front: {
  22908. height: math.unit(5 + 3 / 12, "feet"),
  22909. weight: math.unit(137, "lb"),
  22910. name: "Front",
  22911. image: {
  22912. source: "./media/characters/sasha-katraine/front.svg",
  22913. extra: 1745/1694,
  22914. bottom: 37/1782
  22915. }
  22916. },
  22917. back: {
  22918. height: math.unit(5 + 3 / 12, "feet"),
  22919. weight: math.unit(137, "lb"),
  22920. name: "Back",
  22921. image: {
  22922. source: "./media/characters/sasha-katraine/back.svg",
  22923. extra: 1776/1699,
  22924. bottom: 26/1802
  22925. }
  22926. },
  22927. },
  22928. [
  22929. {
  22930. name: "Micro",
  22931. height: math.unit(5, "inches")
  22932. },
  22933. {
  22934. name: "Normal",
  22935. height: math.unit(5 + 3 / 12, "feet"),
  22936. default: true
  22937. },
  22938. ]
  22939. ))
  22940. characterMakers.push(() => makeCharacter(
  22941. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22942. {
  22943. side: {
  22944. height: math.unit(4, "inches"),
  22945. weight: math.unit(200, "grams"),
  22946. name: "Side",
  22947. image: {
  22948. source: "./media/characters/der/side.svg",
  22949. extra: 719 / 400,
  22950. bottom: 30.6 / 749.9187
  22951. }
  22952. },
  22953. },
  22954. [
  22955. {
  22956. name: "Micro",
  22957. height: math.unit(4, "inches"),
  22958. default: true
  22959. },
  22960. ]
  22961. ))
  22962. characterMakers.push(() => makeCharacter(
  22963. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22964. {
  22965. side: {
  22966. height: math.unit(30, "meters"),
  22967. weight: math.unit(700, "tonnes"),
  22968. name: "Side",
  22969. image: {
  22970. source: "./media/characters/fixerdragon/side.svg",
  22971. extra: (1293.0514 - 116.03) / 1106.86,
  22972. bottom: 116.03 / 1293.0514
  22973. }
  22974. },
  22975. },
  22976. [
  22977. {
  22978. name: "Planck",
  22979. height: math.unit(1.6e-35, "meters")
  22980. },
  22981. {
  22982. name: "Micro",
  22983. height: math.unit(0.4, "meters")
  22984. },
  22985. {
  22986. name: "Normal",
  22987. height: math.unit(30, "meters"),
  22988. default: true
  22989. },
  22990. {
  22991. name: "Megamacro",
  22992. height: math.unit(1.2, "megameters")
  22993. },
  22994. {
  22995. name: "Teramacro",
  22996. height: math.unit(130, "terameters")
  22997. },
  22998. {
  22999. name: "Yottamacro",
  23000. height: math.unit(6200, "yottameters")
  23001. },
  23002. ]
  23003. ));
  23004. characterMakers.push(() => makeCharacter(
  23005. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23006. {
  23007. front: {
  23008. height: math.unit(8, "feet"),
  23009. weight: math.unit(250, "lb"),
  23010. name: "Front",
  23011. image: {
  23012. source: "./media/characters/kite/front.svg",
  23013. extra: 2796 / 2659,
  23014. bottom: 0.002
  23015. }
  23016. },
  23017. },
  23018. [
  23019. {
  23020. name: "Normal",
  23021. height: math.unit(8, "feet"),
  23022. default: true
  23023. },
  23024. {
  23025. name: "Macro",
  23026. height: math.unit(360, "feet")
  23027. },
  23028. {
  23029. name: "Megamacro",
  23030. height: math.unit(1500, "feet")
  23031. },
  23032. ]
  23033. ))
  23034. characterMakers.push(() => makeCharacter(
  23035. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23036. {
  23037. front: {
  23038. height: math.unit(5 + 11/12, "feet"),
  23039. weight: math.unit(170, "lb"),
  23040. name: "Front",
  23041. image: {
  23042. source: "./media/characters/poojawa-vynar/front.svg",
  23043. extra: 1735/1585,
  23044. bottom: 96/1831
  23045. }
  23046. },
  23047. back: {
  23048. height: math.unit(5 + 11/12, "feet"),
  23049. weight: math.unit(170, "lb"),
  23050. name: "Back",
  23051. image: {
  23052. source: "./media/characters/poojawa-vynar/back.svg",
  23053. extra: 1749/1607,
  23054. bottom: 28/1777
  23055. }
  23056. },
  23057. male: {
  23058. height: math.unit(5 + 11/12, "feet"),
  23059. weight: math.unit(170, "lb"),
  23060. name: "Male",
  23061. image: {
  23062. source: "./media/characters/poojawa-vynar/male.svg",
  23063. extra: 1855/1713,
  23064. bottom: 63/1918
  23065. }
  23066. },
  23067. taur: {
  23068. height: math.unit(5 + 11/12, "feet"),
  23069. weight: math.unit(170, "lb"),
  23070. name: "Taur",
  23071. image: {
  23072. source: "./media/characters/poojawa-vynar/taur.svg",
  23073. extra: 1151/1059,
  23074. bottom: 356/1507
  23075. }
  23076. },
  23077. frontDressed: {
  23078. height: math.unit(5 + 11/12, "feet"),
  23079. weight: math.unit(170, "lb"),
  23080. name: "Front (Dressed)",
  23081. image: {
  23082. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23083. extra: 1735/1585,
  23084. bottom: 96/1831
  23085. }
  23086. },
  23087. backDressed: {
  23088. height: math.unit(5 + 11/12, "feet"),
  23089. weight: math.unit(170, "lb"),
  23090. name: "Back (Dressed)",
  23091. image: {
  23092. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23093. extra: 1749/1607,
  23094. bottom: 28/1777
  23095. }
  23096. },
  23097. maleDressed: {
  23098. height: math.unit(5 + 11/12, "feet"),
  23099. weight: math.unit(170, "lb"),
  23100. name: "Male (Dressed)",
  23101. image: {
  23102. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23103. extra: 1855/1713,
  23104. bottom: 63/1918
  23105. }
  23106. },
  23107. taurDressed: {
  23108. height: math.unit(5 + 11/12, "feet"),
  23109. weight: math.unit(170, "lb"),
  23110. name: "Taur (Dressed)",
  23111. image: {
  23112. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23113. extra: 1151/1059,
  23114. bottom: 356/1507
  23115. }
  23116. },
  23117. maw: {
  23118. height: math.unit(1.46, "feet"),
  23119. name: "Maw",
  23120. image: {
  23121. source: "./media/characters/poojawa-vynar/maw.svg"
  23122. }
  23123. },
  23124. head: {
  23125. height: math.unit(2.34, "feet"),
  23126. name: "Head",
  23127. image: {
  23128. source: "./media/characters/poojawa-vynar/head.svg"
  23129. }
  23130. },
  23131. paw: {
  23132. height: math.unit(1.61, "feet"),
  23133. name: "Paw",
  23134. image: {
  23135. source: "./media/characters/poojawa-vynar/paw.svg"
  23136. }
  23137. },
  23138. pawToering: {
  23139. height: math.unit(1.72, "feet"),
  23140. name: "Paw (Toering)",
  23141. image: {
  23142. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23143. }
  23144. },
  23145. toering: {
  23146. height: math.unit(2.9, "inches"),
  23147. name: "Toering",
  23148. image: {
  23149. source: "./media/characters/poojawa-vynar/toering.svg"
  23150. }
  23151. },
  23152. shaft: {
  23153. height: math.unit(0.625, "feet"),
  23154. name: "Shaft",
  23155. image: {
  23156. source: "./media/characters/poojawa-vynar/shaft.svg"
  23157. }
  23158. },
  23159. spade: {
  23160. height: math.unit(0.42, "feet"),
  23161. name: "Spade",
  23162. image: {
  23163. source: "./media/characters/poojawa-vynar/spade.svg"
  23164. }
  23165. },
  23166. },
  23167. [
  23168. {
  23169. name: "Shortstack",
  23170. height: math.unit(4, "feet")
  23171. },
  23172. {
  23173. name: "Normal",
  23174. height: math.unit(5 + 11 / 12, "feet"),
  23175. default: true
  23176. },
  23177. {
  23178. name: "Tauric",
  23179. height: math.unit(4, "meters")
  23180. },
  23181. ]
  23182. ))
  23183. characterMakers.push(() => makeCharacter(
  23184. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23185. {
  23186. front: {
  23187. height: math.unit(293, "meters"),
  23188. weight: math.unit(70400, "tons"),
  23189. name: "Front",
  23190. image: {
  23191. source: "./media/characters/violette/front.svg",
  23192. extra: 1227 / 1180,
  23193. bottom: 0.005
  23194. }
  23195. },
  23196. back: {
  23197. height: math.unit(293, "meters"),
  23198. weight: math.unit(70400, "tons"),
  23199. name: "Back",
  23200. image: {
  23201. source: "./media/characters/violette/back.svg",
  23202. extra: 1227 / 1180,
  23203. bottom: 0.005
  23204. }
  23205. },
  23206. },
  23207. [
  23208. {
  23209. name: "Macro",
  23210. height: math.unit(293, "meters"),
  23211. default: true
  23212. },
  23213. ]
  23214. ))
  23215. characterMakers.push(() => makeCharacter(
  23216. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23217. {
  23218. front: {
  23219. height: math.unit(1050, "feet"),
  23220. weight: math.unit(200000, "tons"),
  23221. name: "Front",
  23222. image: {
  23223. source: "./media/characters/alessandra/front.svg",
  23224. extra: 960 / 912,
  23225. bottom: 0.06
  23226. }
  23227. },
  23228. },
  23229. [
  23230. {
  23231. name: "Macro",
  23232. height: math.unit(1050, "feet")
  23233. },
  23234. {
  23235. name: "Macro+",
  23236. height: math.unit(900, "meters"),
  23237. default: true
  23238. },
  23239. ]
  23240. ))
  23241. characterMakers.push(() => makeCharacter(
  23242. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23243. {
  23244. front: {
  23245. height: math.unit(5, "feet"),
  23246. weight: math.unit(187, "lb"),
  23247. name: "Front",
  23248. image: {
  23249. source: "./media/characters/person/front.svg",
  23250. extra: 3087 / 2945,
  23251. bottom: 91 / 3181
  23252. }
  23253. },
  23254. },
  23255. [
  23256. {
  23257. name: "Micro",
  23258. height: math.unit(3, "inches")
  23259. },
  23260. {
  23261. name: "Normal",
  23262. height: math.unit(5, "feet"),
  23263. default: true
  23264. },
  23265. {
  23266. name: "Macro",
  23267. height: math.unit(90, "feet")
  23268. },
  23269. {
  23270. name: "Max Size",
  23271. height: math.unit(280, "feet")
  23272. },
  23273. ]
  23274. ))
  23275. characterMakers.push(() => makeCharacter(
  23276. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23277. {
  23278. front: {
  23279. height: math.unit(4.5, "meters"),
  23280. weight: math.unit(3200, "lb"),
  23281. name: "Front",
  23282. image: {
  23283. source: "./media/characters/ty/front.svg",
  23284. extra: 1038 / 960,
  23285. bottom: 31.156 / 1068
  23286. }
  23287. },
  23288. back: {
  23289. height: math.unit(4.5, "meters"),
  23290. weight: math.unit(3200, "lb"),
  23291. name: "Back",
  23292. image: {
  23293. source: "./media/characters/ty/back.svg",
  23294. extra: 1044 / 966,
  23295. bottom: 7.48 / 1049
  23296. }
  23297. },
  23298. },
  23299. [
  23300. {
  23301. name: "Normal",
  23302. height: math.unit(4.5, "meters"),
  23303. default: true
  23304. },
  23305. ]
  23306. ))
  23307. characterMakers.push(() => makeCharacter(
  23308. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23309. {
  23310. front: {
  23311. height: math.unit(5 + 4 / 12, "feet"),
  23312. weight: math.unit(115, "lb"),
  23313. name: "Front",
  23314. image: {
  23315. source: "./media/characters/rocky/front.svg",
  23316. extra: 1012 / 975,
  23317. bottom: 54 / 1066
  23318. }
  23319. },
  23320. },
  23321. [
  23322. {
  23323. name: "Normal",
  23324. height: math.unit(5 + 4 / 12, "feet"),
  23325. default: true
  23326. },
  23327. ]
  23328. ))
  23329. characterMakers.push(() => makeCharacter(
  23330. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23331. {
  23332. upright: {
  23333. height: math.unit(6, "meters"),
  23334. weight: math.unit(4000, "kg"),
  23335. name: "Upright",
  23336. image: {
  23337. source: "./media/characters/ruin/upright.svg",
  23338. extra: 668 / 661,
  23339. bottom: 42 / 799.8396
  23340. }
  23341. },
  23342. },
  23343. [
  23344. {
  23345. name: "Normal",
  23346. height: math.unit(6, "meters"),
  23347. default: true
  23348. },
  23349. ]
  23350. ))
  23351. characterMakers.push(() => makeCharacter(
  23352. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23353. {
  23354. front: {
  23355. height: math.unit(5, "feet"),
  23356. weight: math.unit(106, "lb"),
  23357. name: "Front",
  23358. image: {
  23359. source: "./media/characters/robin/front.svg",
  23360. extra: 862 / 799,
  23361. bottom: 42.4 / 914.8856
  23362. }
  23363. },
  23364. },
  23365. [
  23366. {
  23367. name: "Normal",
  23368. height: math.unit(5, "feet"),
  23369. default: true
  23370. },
  23371. ]
  23372. ))
  23373. characterMakers.push(() => makeCharacter(
  23374. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23375. {
  23376. side: {
  23377. height: math.unit(3, "feet"),
  23378. weight: math.unit(225, "lb"),
  23379. name: "Side",
  23380. image: {
  23381. source: "./media/characters/saian/side.svg",
  23382. extra: 566 / 356,
  23383. bottom: 79.7 / 643
  23384. }
  23385. },
  23386. maw: {
  23387. height: math.unit(2.85, "feet"),
  23388. name: "Maw",
  23389. image: {
  23390. source: "./media/characters/saian/maw.svg"
  23391. }
  23392. },
  23393. },
  23394. [
  23395. {
  23396. name: "Normal",
  23397. height: math.unit(3, "feet"),
  23398. default: true
  23399. },
  23400. ]
  23401. ))
  23402. characterMakers.push(() => makeCharacter(
  23403. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23404. {
  23405. side: {
  23406. height: math.unit(8, "feet"),
  23407. weight: math.unit(300, "lb"),
  23408. name: "Side",
  23409. image: {
  23410. source: "./media/characters/equus-silvermane/side.svg",
  23411. extra: 2176 / 2050,
  23412. bottom: 65.7 / 2245
  23413. }
  23414. },
  23415. front: {
  23416. height: math.unit(8, "feet"),
  23417. weight: math.unit(300, "lb"),
  23418. name: "Front",
  23419. image: {
  23420. source: "./media/characters/equus-silvermane/front.svg",
  23421. extra: 4633 / 4400,
  23422. bottom: 71.3 / 4706.915
  23423. }
  23424. },
  23425. sideStepping: {
  23426. height: math.unit(8, "feet"),
  23427. weight: math.unit(300, "lb"),
  23428. name: "Side (Stepping)",
  23429. image: {
  23430. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23431. extra: 1968 / 1860,
  23432. bottom: 16.4 / 1989
  23433. }
  23434. },
  23435. },
  23436. [
  23437. {
  23438. name: "Normal",
  23439. height: math.unit(8, "feet")
  23440. },
  23441. {
  23442. name: "Minimacro",
  23443. height: math.unit(75, "feet"),
  23444. default: true
  23445. },
  23446. {
  23447. name: "Macro",
  23448. height: math.unit(150, "feet")
  23449. },
  23450. {
  23451. name: "Macro+",
  23452. height: math.unit(1000, "feet")
  23453. },
  23454. {
  23455. name: "Megamacro",
  23456. height: math.unit(1, "mile")
  23457. },
  23458. ]
  23459. ))
  23460. characterMakers.push(() => makeCharacter(
  23461. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23462. {
  23463. side: {
  23464. height: math.unit(20, "feet"),
  23465. weight: math.unit(30000, "kg"),
  23466. name: "Side",
  23467. image: {
  23468. source: "./media/characters/windar/side.svg",
  23469. extra: 1491 / 1248,
  23470. bottom: 82.56 / 1568
  23471. }
  23472. },
  23473. },
  23474. [
  23475. {
  23476. name: "Normal",
  23477. height: math.unit(20, "feet"),
  23478. default: true
  23479. },
  23480. ]
  23481. ))
  23482. characterMakers.push(() => makeCharacter(
  23483. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23484. {
  23485. side: {
  23486. height: math.unit(15.66, "feet"),
  23487. weight: math.unit(150, "lb"),
  23488. name: "Side",
  23489. image: {
  23490. source: "./media/characters/melody/side.svg",
  23491. extra: 1097 / 944,
  23492. bottom: 11.8 / 1109
  23493. }
  23494. },
  23495. sideOutfit: {
  23496. height: math.unit(15.66, "feet"),
  23497. weight: math.unit(150, "lb"),
  23498. name: "Side (Outfit)",
  23499. image: {
  23500. source: "./media/characters/melody/side-outfit.svg",
  23501. extra: 1097 / 944,
  23502. bottom: 11.8 / 1109
  23503. }
  23504. },
  23505. },
  23506. [
  23507. {
  23508. name: "Normal",
  23509. height: math.unit(15.66, "feet"),
  23510. default: true
  23511. },
  23512. ]
  23513. ))
  23514. characterMakers.push(() => makeCharacter(
  23515. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23516. {
  23517. armoredFront: {
  23518. height: math.unit(8, "feet"),
  23519. weight: math.unit(325, "lb"),
  23520. name: "Front",
  23521. image: {
  23522. source: "./media/characters/windera/armored-front.svg",
  23523. extra: 1830/1598,
  23524. bottom: 151/1981
  23525. },
  23526. form: "armored",
  23527. default: true
  23528. },
  23529. macroFront: {
  23530. height: math.unit(70, "feet"),
  23531. weight: math.unit(315453, "lb"),
  23532. name: "Front",
  23533. image: {
  23534. source: "./media/characters/windera/macro-front.svg",
  23535. extra: 963/883,
  23536. bottom: 23/986
  23537. },
  23538. form: "macro",
  23539. default: true
  23540. },
  23541. },
  23542. [
  23543. {
  23544. name: "Normal",
  23545. height: math.unit(8, "feet"),
  23546. default: true,
  23547. form: "armored"
  23548. },
  23549. {
  23550. name: "Normal",
  23551. height: math.unit(70, "feet"),
  23552. default: true,
  23553. form: "macro"
  23554. },
  23555. ],
  23556. {
  23557. "armored": {
  23558. name: "Armored",
  23559. default: true
  23560. },
  23561. "macro": {
  23562. name: "Macro",
  23563. },
  23564. }
  23565. ))
  23566. characterMakers.push(() => makeCharacter(
  23567. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23568. {
  23569. front: {
  23570. height: math.unit(28.75, "feet"),
  23571. weight: math.unit(2000, "kg"),
  23572. name: "Front",
  23573. image: {
  23574. source: "./media/characters/sonear/front.svg",
  23575. extra: 1041.1 / 964.9,
  23576. bottom: 53.7 / 1096.6
  23577. }
  23578. },
  23579. },
  23580. [
  23581. {
  23582. name: "Normal",
  23583. height: math.unit(28.75, "feet"),
  23584. default: true
  23585. },
  23586. ]
  23587. ))
  23588. characterMakers.push(() => makeCharacter(
  23589. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23590. {
  23591. side: {
  23592. height: math.unit(25.5, "feet"),
  23593. weight: math.unit(23000, "kg"),
  23594. name: "Side",
  23595. image: {
  23596. source: "./media/characters/kanara/side.svg"
  23597. }
  23598. },
  23599. },
  23600. [
  23601. {
  23602. name: "Normal",
  23603. height: math.unit(25.5, "feet"),
  23604. default: true
  23605. },
  23606. ]
  23607. ))
  23608. characterMakers.push(() => makeCharacter(
  23609. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23610. {
  23611. side: {
  23612. height: math.unit(10, "feet"),
  23613. weight: math.unit(1000, "kg"),
  23614. name: "Side",
  23615. image: {
  23616. source: "./media/characters/ereus/side.svg",
  23617. extra: 1157 / 959,
  23618. bottom: 153 / 1312.5
  23619. }
  23620. },
  23621. },
  23622. [
  23623. {
  23624. name: "Normal",
  23625. height: math.unit(10, "feet"),
  23626. default: true
  23627. },
  23628. ]
  23629. ))
  23630. characterMakers.push(() => makeCharacter(
  23631. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23632. {
  23633. side: {
  23634. height: math.unit(4.5, "feet"),
  23635. weight: math.unit(500, "lb"),
  23636. name: "Side",
  23637. image: {
  23638. source: "./media/characters/e-ter/side.svg",
  23639. extra: 1550 / 1248,
  23640. bottom: 146 / 1694
  23641. }
  23642. },
  23643. },
  23644. [
  23645. {
  23646. name: "Normal",
  23647. height: math.unit(4.5, "feet"),
  23648. default: true
  23649. },
  23650. ]
  23651. ))
  23652. characterMakers.push(() => makeCharacter(
  23653. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23654. {
  23655. side: {
  23656. height: math.unit(9.7, "feet"),
  23657. weight: math.unit(4000, "kg"),
  23658. name: "Side",
  23659. image: {
  23660. source: "./media/characters/yamie/side.svg"
  23661. }
  23662. },
  23663. },
  23664. [
  23665. {
  23666. name: "Normal",
  23667. height: math.unit(9.7, "feet"),
  23668. default: true
  23669. },
  23670. ]
  23671. ))
  23672. characterMakers.push(() => makeCharacter(
  23673. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23674. {
  23675. front: {
  23676. height: math.unit(50, "feet"),
  23677. weight: math.unit(50000, "kg"),
  23678. name: "Front",
  23679. image: {
  23680. source: "./media/characters/anders/front.svg",
  23681. extra: 570 / 539,
  23682. bottom: 14.7 / 586.7
  23683. }
  23684. },
  23685. },
  23686. [
  23687. {
  23688. name: "Large",
  23689. height: math.unit(50, "feet")
  23690. },
  23691. {
  23692. name: "Macro",
  23693. height: math.unit(2000, "feet"),
  23694. default: true
  23695. },
  23696. {
  23697. name: "Megamacro",
  23698. height: math.unit(12, "miles")
  23699. },
  23700. ]
  23701. ))
  23702. characterMakers.push(() => makeCharacter(
  23703. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23704. {
  23705. front: {
  23706. height: math.unit(7 + 2 / 12, "feet"),
  23707. weight: math.unit(300, "lb"),
  23708. name: "Front",
  23709. image: {
  23710. source: "./media/characters/reban/front.svg",
  23711. extra: 1287/1212,
  23712. bottom: 148/1435
  23713. }
  23714. },
  23715. head: {
  23716. height: math.unit(1.95, "feet"),
  23717. name: "Head",
  23718. image: {
  23719. source: "./media/characters/reban/head.svg"
  23720. }
  23721. },
  23722. maw: {
  23723. height: math.unit(0.95, "feet"),
  23724. name: "Maw",
  23725. image: {
  23726. source: "./media/characters/reban/maw.svg"
  23727. }
  23728. },
  23729. foot: {
  23730. height: math.unit(1.65, "feet"),
  23731. name: "Foot",
  23732. image: {
  23733. source: "./media/characters/reban/foot.svg"
  23734. }
  23735. },
  23736. dick: {
  23737. height: math.unit(7 / 5, "feet"),
  23738. name: "Dick",
  23739. image: {
  23740. source: "./media/characters/reban/dick.svg"
  23741. }
  23742. },
  23743. },
  23744. [
  23745. {
  23746. name: "Natural Height",
  23747. height: math.unit(7 + 2 / 12, "feet")
  23748. },
  23749. {
  23750. name: "Macro",
  23751. height: math.unit(500, "feet"),
  23752. default: true
  23753. },
  23754. {
  23755. name: "Canon Height",
  23756. height: math.unit(50, "AU")
  23757. },
  23758. ]
  23759. ))
  23760. characterMakers.push(() => makeCharacter(
  23761. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23762. {
  23763. front: {
  23764. height: math.unit(6, "feet"),
  23765. weight: math.unit(150, "lb"),
  23766. name: "Front",
  23767. image: {
  23768. source: "./media/characters/terrance-keayes/front.svg",
  23769. extra: 1.005,
  23770. bottom: 151 / 1615
  23771. }
  23772. },
  23773. side: {
  23774. height: math.unit(6, "feet"),
  23775. weight: math.unit(150, "lb"),
  23776. name: "Side",
  23777. image: {
  23778. source: "./media/characters/terrance-keayes/side.svg",
  23779. extra: 1.005,
  23780. bottom: 129.4 / 1544
  23781. }
  23782. },
  23783. back: {
  23784. height: math.unit(6, "feet"),
  23785. weight: math.unit(150, "lb"),
  23786. name: "Back",
  23787. image: {
  23788. source: "./media/characters/terrance-keayes/back.svg",
  23789. extra: 1.005,
  23790. bottom: 58.4 / 1557.3
  23791. }
  23792. },
  23793. dick: {
  23794. height: math.unit(6 * 0.208, "feet"),
  23795. name: "Dick",
  23796. image: {
  23797. source: "./media/characters/terrance-keayes/dick.svg"
  23798. }
  23799. },
  23800. },
  23801. [
  23802. {
  23803. name: "Canon Height",
  23804. height: math.unit(35, "miles"),
  23805. default: true
  23806. },
  23807. ]
  23808. ))
  23809. characterMakers.push(() => makeCharacter(
  23810. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23811. {
  23812. front: {
  23813. height: math.unit(6, "feet"),
  23814. weight: math.unit(150, "lb"),
  23815. name: "Front",
  23816. image: {
  23817. source: "./media/characters/ofelia/front.svg",
  23818. extra: 1130/1117,
  23819. bottom: 91/1221
  23820. }
  23821. },
  23822. back: {
  23823. height: math.unit(6, "feet"),
  23824. weight: math.unit(150, "lb"),
  23825. name: "Back",
  23826. image: {
  23827. source: "./media/characters/ofelia/back.svg",
  23828. extra: 1172/1159,
  23829. bottom: 28/1200
  23830. }
  23831. },
  23832. maw: {
  23833. height: math.unit(1, "feet"),
  23834. name: "Maw",
  23835. image: {
  23836. source: "./media/characters/ofelia/maw.svg"
  23837. }
  23838. },
  23839. foot: {
  23840. height: math.unit(1.949, "feet"),
  23841. name: "Foot",
  23842. image: {
  23843. source: "./media/characters/ofelia/foot.svg"
  23844. }
  23845. },
  23846. },
  23847. [
  23848. {
  23849. name: "Canon Height",
  23850. height: math.unit(2000, "miles"),
  23851. default: true
  23852. },
  23853. ]
  23854. ))
  23855. characterMakers.push(() => makeCharacter(
  23856. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23857. {
  23858. front: {
  23859. height: math.unit(6, "feet"),
  23860. weight: math.unit(150, "lb"),
  23861. name: "Front",
  23862. image: {
  23863. source: "./media/characters/samuel/front.svg",
  23864. extra: 265 / 258,
  23865. bottom: 2 / 266.1566
  23866. }
  23867. },
  23868. },
  23869. [
  23870. {
  23871. name: "Macro",
  23872. height: math.unit(100, "feet"),
  23873. default: true
  23874. },
  23875. {
  23876. name: "Full Size",
  23877. height: math.unit(1000, "miles")
  23878. },
  23879. ]
  23880. ))
  23881. characterMakers.push(() => makeCharacter(
  23882. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23883. {
  23884. front: {
  23885. height: math.unit(6, "feet"),
  23886. weight: math.unit(300, "lb"),
  23887. name: "Front",
  23888. image: {
  23889. source: "./media/characters/beishir-kiel/front.svg",
  23890. extra: 569 / 547,
  23891. bottom: 41.9 / 609
  23892. }
  23893. },
  23894. maw: {
  23895. height: math.unit(6 * 0.202, "feet"),
  23896. name: "Maw",
  23897. image: {
  23898. source: "./media/characters/beishir-kiel/maw.svg"
  23899. }
  23900. },
  23901. },
  23902. [
  23903. {
  23904. name: "Macro",
  23905. height: math.unit(300, "feet"),
  23906. default: true
  23907. },
  23908. ]
  23909. ))
  23910. characterMakers.push(() => makeCharacter(
  23911. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23912. {
  23913. front: {
  23914. height: math.unit(5 + 7/12, "feet"),
  23915. weight: math.unit(120, "lb"),
  23916. name: "Front",
  23917. image: {
  23918. source: "./media/characters/logan-grey/front.svg",
  23919. extra: 1836/1738,
  23920. bottom: 108/1944
  23921. }
  23922. },
  23923. back: {
  23924. height: math.unit(5 + 7/12, "feet"),
  23925. weight: math.unit(120, "lb"),
  23926. name: "Back",
  23927. image: {
  23928. source: "./media/characters/logan-grey/back.svg",
  23929. extra: 1880/1794,
  23930. bottom: 24/1904
  23931. }
  23932. },
  23933. frontSfw: {
  23934. height: math.unit(5 + 7/12, "feet"),
  23935. weight: math.unit(120, "lb"),
  23936. name: "Front (SFW)",
  23937. image: {
  23938. source: "./media/characters/logan-grey/front-sfw.svg",
  23939. extra: 1836/1738,
  23940. bottom: 108/1944
  23941. }
  23942. },
  23943. backSfw: {
  23944. height: math.unit(5 + 7/12, "feet"),
  23945. weight: math.unit(120, "lb"),
  23946. name: "Back (SFW)",
  23947. image: {
  23948. source: "./media/characters/logan-grey/back-sfw.svg",
  23949. extra: 1880/1794,
  23950. bottom: 24/1904
  23951. }
  23952. },
  23953. hands: {
  23954. height: math.unit(0.84, "feet"),
  23955. name: "Hands",
  23956. image: {
  23957. source: "./media/characters/logan-grey/hands.svg"
  23958. }
  23959. },
  23960. paws: {
  23961. height: math.unit(0.72, "feet"),
  23962. name: "Paws",
  23963. image: {
  23964. source: "./media/characters/logan-grey/paws.svg"
  23965. }
  23966. },
  23967. cock: {
  23968. height: math.unit(1.45, "feet"),
  23969. name: "Cock",
  23970. image: {
  23971. source: "./media/characters/logan-grey/cock.svg"
  23972. }
  23973. },
  23974. cockAlt: {
  23975. height: math.unit(1.437, "feet"),
  23976. name: "Cock (alt)",
  23977. image: {
  23978. source: "./media/characters/logan-grey/cock-alt.svg"
  23979. }
  23980. },
  23981. },
  23982. [
  23983. {
  23984. name: "Normal",
  23985. height: math.unit(5 + 8 / 12, "feet")
  23986. },
  23987. {
  23988. name: "The 500 Foot Femboy",
  23989. height: math.unit(500, "feet"),
  23990. default: true
  23991. },
  23992. {
  23993. name: "Megmacro",
  23994. height: math.unit(20, "miles")
  23995. },
  23996. ]
  23997. ))
  23998. characterMakers.push(() => makeCharacter(
  23999. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24000. {
  24001. front: {
  24002. height: math.unit(8 + 2 / 12, "feet"),
  24003. weight: math.unit(275, "lb"),
  24004. name: "Front",
  24005. image: {
  24006. source: "./media/characters/draganta/front.svg",
  24007. extra: 1177 / 1135,
  24008. bottom: 33.46 / 1212.1
  24009. }
  24010. },
  24011. },
  24012. [
  24013. {
  24014. name: "Normal",
  24015. height: math.unit(8 + 6 / 12, "feet"),
  24016. default: true
  24017. },
  24018. {
  24019. name: "Macro",
  24020. height: math.unit(150, "feet")
  24021. },
  24022. {
  24023. name: "Megamacro",
  24024. height: math.unit(1000, "miles")
  24025. },
  24026. ]
  24027. ))
  24028. characterMakers.push(() => makeCharacter(
  24029. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24030. {
  24031. front: {
  24032. height: math.unit(1.72, "m"),
  24033. weight: math.unit(80, "lb"),
  24034. name: "Front",
  24035. image: {
  24036. source: "./media/characters/voski/front.svg",
  24037. extra: 2076.22 / 2022.4,
  24038. bottom: 102.7 / 2177.3866
  24039. }
  24040. },
  24041. frontFlaccid: {
  24042. height: math.unit(1.72, "m"),
  24043. weight: math.unit(80, "lb"),
  24044. name: "Front (Flaccid)",
  24045. image: {
  24046. source: "./media/characters/voski/front-flaccid.svg",
  24047. extra: 2076.22 / 2022.4,
  24048. bottom: 102.7 / 2177.3866
  24049. }
  24050. },
  24051. frontErect: {
  24052. height: math.unit(1.72, "m"),
  24053. weight: math.unit(80, "lb"),
  24054. name: "Front (Erect)",
  24055. image: {
  24056. source: "./media/characters/voski/front-erect.svg",
  24057. extra: 2076.22 / 2022.4,
  24058. bottom: 102.7 / 2177.3866
  24059. }
  24060. },
  24061. back: {
  24062. height: math.unit(1.72, "m"),
  24063. weight: math.unit(80, "lb"),
  24064. name: "Back",
  24065. image: {
  24066. source: "./media/characters/voski/back.svg",
  24067. extra: 2104 / 2051,
  24068. bottom: 10.45 / 2113.63
  24069. }
  24070. },
  24071. },
  24072. [
  24073. {
  24074. name: "Normal",
  24075. height: math.unit(1.72, "m")
  24076. },
  24077. {
  24078. name: "Macro",
  24079. height: math.unit(55, "m"),
  24080. default: true
  24081. },
  24082. {
  24083. name: "Macro+",
  24084. height: math.unit(300, "m")
  24085. },
  24086. {
  24087. name: "Macro++",
  24088. height: math.unit(700, "m")
  24089. },
  24090. {
  24091. name: "Macro+++",
  24092. height: math.unit(4500, "m")
  24093. },
  24094. {
  24095. name: "Macro++++",
  24096. height: math.unit(45, "km")
  24097. },
  24098. {
  24099. name: "Macro+++++",
  24100. height: math.unit(1220, "km")
  24101. },
  24102. ]
  24103. ))
  24104. characterMakers.push(() => makeCharacter(
  24105. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24106. {
  24107. front: {
  24108. height: math.unit(2.3, "m"),
  24109. weight: math.unit(304, "kg"),
  24110. name: "Front",
  24111. image: {
  24112. source: "./media/characters/icowom-lee/front.svg",
  24113. extra: 985 / 955,
  24114. bottom: 25.4 / 1012
  24115. }
  24116. },
  24117. fronttentacles: {
  24118. height: math.unit(2.3, "m"),
  24119. weight: math.unit(304, "kg"),
  24120. name: "Front-tentacles",
  24121. image: {
  24122. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24123. extra: 985 / 955,
  24124. bottom: 25.4 / 1012
  24125. }
  24126. },
  24127. back: {
  24128. height: math.unit(2.3, "m"),
  24129. weight: math.unit(304, "kg"),
  24130. name: "Back",
  24131. image: {
  24132. source: "./media/characters/icowom-lee/back.svg",
  24133. extra: 975 / 954,
  24134. bottom: 9.5 / 985
  24135. }
  24136. },
  24137. backtentacles: {
  24138. height: math.unit(2.3, "m"),
  24139. weight: math.unit(304, "kg"),
  24140. name: "Back-tentacles",
  24141. image: {
  24142. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24143. extra: 975 / 954,
  24144. bottom: 9.5 / 985
  24145. }
  24146. },
  24147. frontDressed: {
  24148. height: math.unit(2.3, "m"),
  24149. weight: math.unit(304, "kg"),
  24150. name: "Front (Dressed)",
  24151. image: {
  24152. source: "./media/characters/icowom-lee/front-dressed.svg",
  24153. extra: 3076 / 2933,
  24154. bottom: 51.4 / 3125.1889
  24155. }
  24156. },
  24157. rump: {
  24158. height: math.unit(0.776, "meters"),
  24159. name: "Rump",
  24160. image: {
  24161. source: "./media/characters/icowom-lee/rump.svg"
  24162. }
  24163. },
  24164. genitals: {
  24165. height: math.unit(0.78, "meters"),
  24166. name: "Genitals",
  24167. image: {
  24168. source: "./media/characters/icowom-lee/genitals.svg"
  24169. }
  24170. },
  24171. },
  24172. [
  24173. {
  24174. name: "Normal",
  24175. height: math.unit(2.3, "meters"),
  24176. default: true
  24177. },
  24178. {
  24179. name: "Macro",
  24180. height: math.unit(94, "meters"),
  24181. default: true
  24182. },
  24183. ]
  24184. ))
  24185. characterMakers.push(() => makeCharacter(
  24186. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24187. {
  24188. front: {
  24189. height: math.unit(22, "meters"),
  24190. weight: math.unit(21000, "kg"),
  24191. name: "Front",
  24192. image: {
  24193. source: "./media/characters/shock-diamond/front.svg",
  24194. extra: 2204 / 2053,
  24195. bottom: 65 / 2239.47
  24196. }
  24197. },
  24198. frontNude: {
  24199. height: math.unit(22, "meters"),
  24200. weight: math.unit(21000, "kg"),
  24201. name: "Front (Nude)",
  24202. image: {
  24203. source: "./media/characters/shock-diamond/front-nude.svg",
  24204. extra: 2514 / 2285,
  24205. bottom: 13 / 2527.56
  24206. }
  24207. },
  24208. },
  24209. [
  24210. {
  24211. name: "Normal",
  24212. height: math.unit(3, "meters")
  24213. },
  24214. {
  24215. name: "Macro",
  24216. height: math.unit(22, "meters"),
  24217. default: true
  24218. },
  24219. ]
  24220. ))
  24221. characterMakers.push(() => makeCharacter(
  24222. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24223. {
  24224. front: {
  24225. height: math.unit(5 + 4/12, "feet"),
  24226. weight: math.unit(125, "lb"),
  24227. name: "Front",
  24228. image: {
  24229. source: "./media/characters/rory/front.svg",
  24230. extra: 1790/1681,
  24231. bottom: 66/1856
  24232. }
  24233. },
  24234. back: {
  24235. height: math.unit(5 + 4/12, "feet"),
  24236. weight: math.unit(125, "lb"),
  24237. name: "Back",
  24238. image: {
  24239. source: "./media/characters/rory/back.svg",
  24240. extra: 1805/1690,
  24241. bottom: 56/1861
  24242. }
  24243. },
  24244. frontDressed: {
  24245. height: math.unit(5 + 4/12, "feet"),
  24246. weight: math.unit(125, "lb"),
  24247. name: "Front (Dressed)",
  24248. image: {
  24249. source: "./media/characters/rory/front-dressed.svg",
  24250. extra: 1790/1681,
  24251. bottom: 66/1856
  24252. }
  24253. },
  24254. backDressed: {
  24255. height: math.unit(5 + 4/12, "feet"),
  24256. weight: math.unit(125, "lb"),
  24257. name: "Back (Dressed)",
  24258. image: {
  24259. source: "./media/characters/rory/back-dressed.svg",
  24260. extra: 1805/1690,
  24261. bottom: 56/1861
  24262. }
  24263. },
  24264. frontNsfw: {
  24265. height: math.unit(5 + 4/12, "feet"),
  24266. weight: math.unit(125, "lb"),
  24267. name: "Front (NSFW)",
  24268. image: {
  24269. source: "./media/characters/rory/front-nsfw.svg",
  24270. extra: 1790/1681,
  24271. bottom: 66/1856
  24272. }
  24273. },
  24274. backNsfw: {
  24275. height: math.unit(5 + 4/12, "feet"),
  24276. weight: math.unit(125, "lb"),
  24277. name: "Back (NSFW)",
  24278. image: {
  24279. source: "./media/characters/rory/back-nsfw.svg",
  24280. extra: 1805/1690,
  24281. bottom: 56/1861
  24282. }
  24283. },
  24284. dick: {
  24285. height: math.unit(0.8, "feet"),
  24286. name: "Dick",
  24287. image: {
  24288. source: "./media/characters/rory/dick.svg"
  24289. }
  24290. },
  24291. },
  24292. [
  24293. {
  24294. name: "Micro",
  24295. height: math.unit(3, "inches")
  24296. },
  24297. {
  24298. name: "Normal",
  24299. height: math.unit(5 + 4/12, "feet"),
  24300. default: true
  24301. },
  24302. {
  24303. name: "Macro",
  24304. height: math.unit(90, "feet")
  24305. },
  24306. {
  24307. name: "Supercharged",
  24308. height: math.unit(270, "feet")
  24309. },
  24310. ]
  24311. ))
  24312. characterMakers.push(() => makeCharacter(
  24313. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24314. {
  24315. front: {
  24316. height: math.unit(5 + 9 / 12, "feet"),
  24317. weight: math.unit(190, "lb"),
  24318. name: "Front",
  24319. image: {
  24320. source: "./media/characters/sprisk/front.svg",
  24321. extra: 1225 / 1180,
  24322. bottom: 42.7 / 1266.4
  24323. }
  24324. },
  24325. frontNsfw: {
  24326. height: math.unit(5 + 9 / 12, "feet"),
  24327. weight: math.unit(190, "lb"),
  24328. name: "Front (NSFW)",
  24329. image: {
  24330. source: "./media/characters/sprisk/front-nsfw.svg",
  24331. extra: 1225 / 1180,
  24332. bottom: 42.7 / 1266.4
  24333. }
  24334. },
  24335. back: {
  24336. height: math.unit(5 + 9 / 12, "feet"),
  24337. weight: math.unit(190, "lb"),
  24338. name: "Back",
  24339. image: {
  24340. source: "./media/characters/sprisk/back.svg",
  24341. extra: 1247 / 1200,
  24342. bottom: 5.6 / 1253.04
  24343. }
  24344. },
  24345. },
  24346. [
  24347. {
  24348. name: "Tiny",
  24349. height: math.unit(2, "inches")
  24350. },
  24351. {
  24352. name: "Normal",
  24353. height: math.unit(5 + 9 / 12, "feet"),
  24354. default: true
  24355. },
  24356. {
  24357. name: "Mini Macro",
  24358. height: math.unit(18, "feet")
  24359. },
  24360. {
  24361. name: "Macro",
  24362. height: math.unit(100, "feet")
  24363. },
  24364. {
  24365. name: "MACRO",
  24366. height: math.unit(50, "miles")
  24367. },
  24368. {
  24369. name: "M A C R O",
  24370. height: math.unit(300, "miles")
  24371. },
  24372. ]
  24373. ))
  24374. characterMakers.push(() => makeCharacter(
  24375. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24376. {
  24377. side: {
  24378. height: math.unit(15.6, "meters"),
  24379. weight: math.unit(700000, "kg"),
  24380. name: "Side",
  24381. image: {
  24382. source: "./media/characters/bunsen/side.svg",
  24383. extra: 1644 / 358
  24384. }
  24385. },
  24386. foot: {
  24387. height: math.unit(1.611 * 1644 / 358, "meter"),
  24388. name: "Foot",
  24389. image: {
  24390. source: "./media/characters/bunsen/foot.svg"
  24391. }
  24392. },
  24393. },
  24394. [
  24395. {
  24396. name: "Small",
  24397. height: math.unit(10, "feet")
  24398. },
  24399. {
  24400. name: "Normal",
  24401. height: math.unit(15.6, "meters"),
  24402. default: true
  24403. },
  24404. ]
  24405. ))
  24406. characterMakers.push(() => makeCharacter(
  24407. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24408. {
  24409. front: {
  24410. height: math.unit(4 + 11 / 12, "feet"),
  24411. weight: math.unit(140, "lb"),
  24412. name: "Front",
  24413. image: {
  24414. source: "./media/characters/sesh/front.svg",
  24415. extra: 3420 / 3231,
  24416. bottom: 72 / 3949.5
  24417. }
  24418. },
  24419. },
  24420. [
  24421. {
  24422. name: "Normal",
  24423. height: math.unit(4 + 11 / 12, "feet")
  24424. },
  24425. {
  24426. name: "Grown",
  24427. height: math.unit(15, "feet"),
  24428. default: true
  24429. },
  24430. {
  24431. name: "Macro",
  24432. height: math.unit(1500, "feet")
  24433. },
  24434. {
  24435. name: "Megamacro",
  24436. height: math.unit(30, "miles")
  24437. },
  24438. {
  24439. name: "Continental",
  24440. height: math.unit(3000, "miles")
  24441. },
  24442. {
  24443. name: "Gravity Mass",
  24444. height: math.unit(300000, "miles")
  24445. },
  24446. {
  24447. name: "Planet Buster",
  24448. height: math.unit(30000000, "miles")
  24449. },
  24450. {
  24451. name: "Big",
  24452. height: math.unit(3000000000, "miles")
  24453. },
  24454. ]
  24455. ))
  24456. characterMakers.push(() => makeCharacter(
  24457. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24458. {
  24459. front: {
  24460. height: math.unit(9, "feet"),
  24461. weight: math.unit(350, "lb"),
  24462. name: "Front",
  24463. image: {
  24464. source: "./media/characters/pepper/front.svg",
  24465. extra: 1448 / 1312,
  24466. bottom: 9.4 / 1457.88
  24467. }
  24468. },
  24469. back: {
  24470. height: math.unit(9, "feet"),
  24471. weight: math.unit(350, "lb"),
  24472. name: "Back",
  24473. image: {
  24474. source: "./media/characters/pepper/back.svg",
  24475. extra: 1423 / 1300,
  24476. bottom: 4.6 / 1429
  24477. }
  24478. },
  24479. maw: {
  24480. height: math.unit(0.932, "feet"),
  24481. name: "Maw",
  24482. image: {
  24483. source: "./media/characters/pepper/maw.svg"
  24484. }
  24485. },
  24486. },
  24487. [
  24488. {
  24489. name: "Normal",
  24490. height: math.unit(9, "feet"),
  24491. default: true
  24492. },
  24493. ]
  24494. ))
  24495. characterMakers.push(() => makeCharacter(
  24496. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24497. {
  24498. front: {
  24499. height: math.unit(6, "feet"),
  24500. weight: math.unit(150, "lb"),
  24501. name: "Front",
  24502. image: {
  24503. source: "./media/characters/maelstrom/front.svg",
  24504. extra: 2100 / 1883,
  24505. bottom: 94 / 2196.7
  24506. }
  24507. },
  24508. },
  24509. [
  24510. {
  24511. name: "Less Kaiju",
  24512. height: math.unit(200, "feet")
  24513. },
  24514. {
  24515. name: "Kaiju",
  24516. height: math.unit(400, "feet"),
  24517. default: true
  24518. },
  24519. {
  24520. name: "Kaiju-er",
  24521. height: math.unit(600, "feet")
  24522. },
  24523. ]
  24524. ))
  24525. characterMakers.push(() => makeCharacter(
  24526. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24527. {
  24528. front: {
  24529. height: math.unit(6 + 5 / 12, "feet"),
  24530. weight: math.unit(180, "lb"),
  24531. name: "Front",
  24532. image: {
  24533. source: "./media/characters/lexir/front.svg",
  24534. extra: 180 / 172,
  24535. bottom: 12 / 192
  24536. }
  24537. },
  24538. back: {
  24539. height: math.unit(6 + 5 / 12, "feet"),
  24540. weight: math.unit(180, "lb"),
  24541. name: "Back",
  24542. image: {
  24543. source: "./media/characters/lexir/back.svg",
  24544. extra: 1273/1201,
  24545. bottom: 39/1312
  24546. }
  24547. },
  24548. },
  24549. [
  24550. {
  24551. name: "Very Smal",
  24552. height: math.unit(1, "nm")
  24553. },
  24554. {
  24555. name: "Normal",
  24556. height: math.unit(6 + 5 / 12, "feet"),
  24557. default: true
  24558. },
  24559. {
  24560. name: "Macro",
  24561. height: math.unit(1, "mile")
  24562. },
  24563. {
  24564. name: "Megamacro",
  24565. height: math.unit(50, "miles")
  24566. },
  24567. ]
  24568. ))
  24569. characterMakers.push(() => makeCharacter(
  24570. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24571. {
  24572. front: {
  24573. height: math.unit(1.5, "meters"),
  24574. weight: math.unit(100, "lb"),
  24575. name: "Front",
  24576. image: {
  24577. source: "./media/characters/maksio/front.svg",
  24578. extra: 1549 / 1531,
  24579. bottom: 123.7 / 1674.5429
  24580. }
  24581. },
  24582. back: {
  24583. height: math.unit(1.5, "meters"),
  24584. weight: math.unit(100, "lb"),
  24585. name: "Back",
  24586. image: {
  24587. source: "./media/characters/maksio/back.svg",
  24588. extra: 1541 / 1509,
  24589. bottom: 97 / 1639
  24590. }
  24591. },
  24592. hand: {
  24593. height: math.unit(0.621, "feet"),
  24594. name: "Hand",
  24595. image: {
  24596. source: "./media/characters/maksio/hand.svg"
  24597. }
  24598. },
  24599. foot: {
  24600. height: math.unit(1.611, "feet"),
  24601. name: "Foot",
  24602. image: {
  24603. source: "./media/characters/maksio/foot.svg"
  24604. }
  24605. },
  24606. },
  24607. [
  24608. {
  24609. name: "Shrunken",
  24610. height: math.unit(10, "cm")
  24611. },
  24612. {
  24613. name: "Normal",
  24614. height: math.unit(150, "cm"),
  24615. default: true
  24616. },
  24617. ]
  24618. ))
  24619. characterMakers.push(() => makeCharacter(
  24620. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24621. {
  24622. front: {
  24623. height: math.unit(100, "feet"),
  24624. name: "Front",
  24625. image: {
  24626. source: "./media/characters/erza-bear/front.svg",
  24627. extra: 2449 / 2390,
  24628. bottom: 46 / 2494
  24629. }
  24630. },
  24631. back: {
  24632. height: math.unit(100, "feet"),
  24633. name: "Back",
  24634. image: {
  24635. source: "./media/characters/erza-bear/back.svg",
  24636. extra: 2489 / 2430,
  24637. bottom: 85.4 / 2480
  24638. }
  24639. },
  24640. tail: {
  24641. height: math.unit(42, "feet"),
  24642. name: "Tail",
  24643. image: {
  24644. source: "./media/characters/erza-bear/tail.svg"
  24645. }
  24646. },
  24647. tongue: {
  24648. height: math.unit(8, "feet"),
  24649. name: "Tongue",
  24650. image: {
  24651. source: "./media/characters/erza-bear/tongue.svg"
  24652. }
  24653. },
  24654. dick: {
  24655. height: math.unit(10.5, "feet"),
  24656. name: "Dick",
  24657. image: {
  24658. source: "./media/characters/erza-bear/dick.svg"
  24659. }
  24660. },
  24661. dickVertical: {
  24662. height: math.unit(16.9, "feet"),
  24663. name: "Dick (Vertical)",
  24664. image: {
  24665. source: "./media/characters/erza-bear/dick-vertical.svg"
  24666. }
  24667. },
  24668. },
  24669. [
  24670. {
  24671. name: "Macro",
  24672. height: math.unit(100, "feet"),
  24673. default: true
  24674. },
  24675. ]
  24676. ))
  24677. characterMakers.push(() => makeCharacter(
  24678. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24679. {
  24680. front: {
  24681. height: math.unit(172, "cm"),
  24682. weight: math.unit(73, "kg"),
  24683. name: "Front",
  24684. image: {
  24685. source: "./media/characters/violet-flor/front.svg",
  24686. extra: 1530 / 1442,
  24687. bottom: 61.9 / 1588.8
  24688. }
  24689. },
  24690. back: {
  24691. height: math.unit(180, "cm"),
  24692. weight: math.unit(73, "kg"),
  24693. name: "Back",
  24694. image: {
  24695. source: "./media/characters/violet-flor/back.svg",
  24696. extra: 1692 / 1630,
  24697. bottom: 20 / 1712
  24698. }
  24699. },
  24700. },
  24701. [
  24702. {
  24703. name: "Normal",
  24704. height: math.unit(172, "cm"),
  24705. default: true
  24706. },
  24707. ]
  24708. ))
  24709. characterMakers.push(() => makeCharacter(
  24710. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24711. {
  24712. front: {
  24713. height: math.unit(6, "feet"),
  24714. weight: math.unit(220, "lb"),
  24715. name: "Front",
  24716. image: {
  24717. source: "./media/characters/lynn-rhea/front.svg",
  24718. extra: 310 / 273
  24719. }
  24720. },
  24721. back: {
  24722. height: math.unit(6, "feet"),
  24723. weight: math.unit(220, "lb"),
  24724. name: "Back",
  24725. image: {
  24726. source: "./media/characters/lynn-rhea/back.svg",
  24727. extra: 310 / 273
  24728. }
  24729. },
  24730. dicks: {
  24731. height: math.unit(0.9, "feet"),
  24732. name: "Dicks",
  24733. image: {
  24734. source: "./media/characters/lynn-rhea/dicks.svg"
  24735. }
  24736. },
  24737. slit: {
  24738. height: math.unit(0.4, "feet"),
  24739. name: "Slit",
  24740. image: {
  24741. source: "./media/characters/lynn-rhea/slit.svg"
  24742. }
  24743. },
  24744. },
  24745. [
  24746. {
  24747. name: "Micro",
  24748. height: math.unit(1, "inch")
  24749. },
  24750. {
  24751. name: "Macro",
  24752. height: math.unit(60, "feet"),
  24753. default: true
  24754. },
  24755. {
  24756. name: "Megamacro",
  24757. height: math.unit(2, "miles")
  24758. },
  24759. {
  24760. name: "Gigamacro",
  24761. height: math.unit(3, "earths")
  24762. },
  24763. {
  24764. name: "Galactic",
  24765. height: math.unit(0.8, "galaxies")
  24766. },
  24767. ]
  24768. ))
  24769. characterMakers.push(() => makeCharacter(
  24770. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24771. {
  24772. front: {
  24773. height: math.unit(1600, "feet"),
  24774. weight: math.unit(85758785169, "kg"),
  24775. name: "Front",
  24776. image: {
  24777. source: "./media/characters/valathos/front.svg",
  24778. extra: 1451 / 1339
  24779. }
  24780. },
  24781. },
  24782. [
  24783. {
  24784. name: "Macro",
  24785. height: math.unit(1600, "feet"),
  24786. default: true
  24787. },
  24788. ]
  24789. ))
  24790. characterMakers.push(() => makeCharacter(
  24791. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24792. {
  24793. front: {
  24794. height: math.unit(7 + 5 / 12, "feet"),
  24795. weight: math.unit(300, "lb"),
  24796. name: "Front",
  24797. image: {
  24798. source: "./media/characters/azula/front.svg",
  24799. extra: 3208 / 2880,
  24800. bottom: 80.2 / 3277
  24801. }
  24802. },
  24803. back: {
  24804. height: math.unit(7 + 5 / 12, "feet"),
  24805. weight: math.unit(300, "lb"),
  24806. name: "Back",
  24807. image: {
  24808. source: "./media/characters/azula/back.svg",
  24809. extra: 3169 / 2822,
  24810. bottom: 150.6 / 3321
  24811. }
  24812. },
  24813. },
  24814. [
  24815. {
  24816. name: "Normal",
  24817. height: math.unit(7 + 5 / 12, "feet"),
  24818. default: true
  24819. },
  24820. {
  24821. name: "Big",
  24822. height: math.unit(20, "feet")
  24823. },
  24824. ]
  24825. ))
  24826. characterMakers.push(() => makeCharacter(
  24827. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24828. {
  24829. front: {
  24830. height: math.unit(5 + 1 / 12, "feet"),
  24831. weight: math.unit(110, "lb"),
  24832. name: "Front",
  24833. image: {
  24834. source: "./media/characters/rupert/front.svg",
  24835. extra: 1549 / 1495,
  24836. bottom: 54.2 / 1604.4
  24837. }
  24838. },
  24839. },
  24840. [
  24841. {
  24842. name: "Normal",
  24843. height: math.unit(5 + 1 / 12, "feet"),
  24844. default: true
  24845. },
  24846. ]
  24847. ))
  24848. characterMakers.push(() => makeCharacter(
  24849. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24850. {
  24851. front: {
  24852. height: math.unit(8 + 4 / 12, "feet"),
  24853. weight: math.unit(350, "lb"),
  24854. name: "Front",
  24855. image: {
  24856. source: "./media/characters/sheera-castellar/front.svg",
  24857. extra: 1957 / 1894,
  24858. bottom: 26.97 / 1975.017
  24859. }
  24860. },
  24861. side: {
  24862. height: math.unit(8 + 4 / 12, "feet"),
  24863. weight: math.unit(350, "lb"),
  24864. name: "Side",
  24865. image: {
  24866. source: "./media/characters/sheera-castellar/side.svg",
  24867. extra: 1957 / 1894
  24868. }
  24869. },
  24870. back: {
  24871. height: math.unit(8 + 4 / 12, "feet"),
  24872. weight: math.unit(350, "lb"),
  24873. name: "Back",
  24874. image: {
  24875. source: "./media/characters/sheera-castellar/back.svg",
  24876. extra: 1957 / 1894
  24877. }
  24878. },
  24879. angled: {
  24880. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24881. weight: math.unit(350, "lb"),
  24882. name: "Angled",
  24883. image: {
  24884. source: "./media/characters/sheera-castellar/angled.svg",
  24885. extra: 1807 / 1707,
  24886. bottom: 68 / 1875
  24887. }
  24888. },
  24889. genitals: {
  24890. height: math.unit(2.2, "feet"),
  24891. name: "Genitals",
  24892. image: {
  24893. source: "./media/characters/sheera-castellar/genitals.svg"
  24894. }
  24895. },
  24896. taur: {
  24897. height: math.unit(10 + 6/12, "feet"),
  24898. name: "Taur",
  24899. image: {
  24900. source: "./media/characters/sheera-castellar/taur.svg",
  24901. extra: 2017/1909,
  24902. bottom: 185/2202
  24903. }
  24904. },
  24905. },
  24906. [
  24907. {
  24908. name: "Normal",
  24909. height: math.unit(8 + 4 / 12, "feet")
  24910. },
  24911. {
  24912. name: "Macro",
  24913. height: math.unit(150, "feet"),
  24914. default: true
  24915. },
  24916. {
  24917. name: "Macro+",
  24918. height: math.unit(800, "feet")
  24919. },
  24920. ]
  24921. ))
  24922. characterMakers.push(() => makeCharacter(
  24923. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24924. {
  24925. front: {
  24926. height: math.unit(6, "feet"),
  24927. weight: math.unit(150, "lb"),
  24928. name: "Front",
  24929. image: {
  24930. source: "./media/characters/jaipur/front.svg",
  24931. extra: 3860 / 3731,
  24932. bottom: 287 / 4140
  24933. }
  24934. },
  24935. back: {
  24936. height: math.unit(6, "feet"),
  24937. weight: math.unit(150, "lb"),
  24938. name: "Back",
  24939. image: {
  24940. source: "./media/characters/jaipur/back.svg",
  24941. extra: 1637/1561,
  24942. bottom: 154/1791
  24943. }
  24944. },
  24945. },
  24946. [
  24947. {
  24948. name: "Normal",
  24949. height: math.unit(1.85, "meters"),
  24950. default: true
  24951. },
  24952. {
  24953. name: "Macro",
  24954. height: math.unit(150, "meters")
  24955. },
  24956. {
  24957. name: "Macro+",
  24958. height: math.unit(0.5, "miles")
  24959. },
  24960. {
  24961. name: "Macro++",
  24962. height: math.unit(2.5, "miles")
  24963. },
  24964. {
  24965. name: "Macro+++",
  24966. height: math.unit(12, "miles")
  24967. },
  24968. {
  24969. name: "Macro++++",
  24970. height: math.unit(120, "miles")
  24971. },
  24972. {
  24973. name: "Macro+++++",
  24974. height: math.unit(1200, "miles")
  24975. },
  24976. ]
  24977. ))
  24978. characterMakers.push(() => makeCharacter(
  24979. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24980. {
  24981. front: {
  24982. height: math.unit(6, "feet"),
  24983. weight: math.unit(150, "lb"),
  24984. name: "Front",
  24985. image: {
  24986. source: "./media/characters/sheila-wolf/front.svg",
  24987. extra: 1931 / 1808,
  24988. bottom: 29.5 / 1960
  24989. }
  24990. },
  24991. dick: {
  24992. height: math.unit(1.464, "feet"),
  24993. name: "Dick",
  24994. image: {
  24995. source: "./media/characters/sheila-wolf/dick.svg"
  24996. }
  24997. },
  24998. muzzle: {
  24999. height: math.unit(0.513, "feet"),
  25000. name: "Muzzle",
  25001. image: {
  25002. source: "./media/characters/sheila-wolf/muzzle.svg"
  25003. }
  25004. },
  25005. },
  25006. [
  25007. {
  25008. name: "Macro",
  25009. height: math.unit(70, "feet"),
  25010. default: true
  25011. },
  25012. ]
  25013. ))
  25014. characterMakers.push(() => makeCharacter(
  25015. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25016. {
  25017. front: {
  25018. height: math.unit(32, "meters"),
  25019. weight: math.unit(300000, "kg"),
  25020. name: "Front",
  25021. image: {
  25022. source: "./media/characters/almor/front.svg",
  25023. extra: 1408 / 1322,
  25024. bottom: 94.6 / 1506.5
  25025. }
  25026. },
  25027. },
  25028. [
  25029. {
  25030. name: "Macro",
  25031. height: math.unit(32, "meters"),
  25032. default: true
  25033. },
  25034. ]
  25035. ))
  25036. characterMakers.push(() => makeCharacter(
  25037. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25038. {
  25039. front: {
  25040. height: math.unit(7, "feet"),
  25041. weight: math.unit(200, "lb"),
  25042. name: "Front",
  25043. image: {
  25044. source: "./media/characters/silver/front.svg",
  25045. extra: 472.1 / 450.5,
  25046. bottom: 26.5 / 499.424
  25047. }
  25048. },
  25049. },
  25050. [
  25051. {
  25052. name: "Normal",
  25053. height: math.unit(7, "feet"),
  25054. default: true
  25055. },
  25056. {
  25057. name: "Macro",
  25058. height: math.unit(800, "feet")
  25059. },
  25060. {
  25061. name: "Megamacro",
  25062. height: math.unit(250, "miles")
  25063. },
  25064. ]
  25065. ))
  25066. characterMakers.push(() => makeCharacter(
  25067. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25068. {
  25069. front: {
  25070. height: math.unit(6, "feet"),
  25071. weight: math.unit(150, "lb"),
  25072. name: "Front",
  25073. image: {
  25074. source: "./media/characters/pliskin/front.svg",
  25075. extra: 1469 / 1359,
  25076. bottom: 70 / 1540
  25077. }
  25078. },
  25079. },
  25080. [
  25081. {
  25082. name: "Micro",
  25083. height: math.unit(3, "inches")
  25084. },
  25085. {
  25086. name: "Normal",
  25087. height: math.unit(5 + 11 / 12, "feet"),
  25088. default: true
  25089. },
  25090. {
  25091. name: "Macro",
  25092. height: math.unit(120, "feet")
  25093. },
  25094. ]
  25095. ))
  25096. characterMakers.push(() => makeCharacter(
  25097. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25098. {
  25099. front: {
  25100. height: math.unit(6, "feet"),
  25101. weight: math.unit(150, "lb"),
  25102. name: "Front",
  25103. image: {
  25104. source: "./media/characters/sammy/front.svg",
  25105. extra: 1193 / 1089,
  25106. bottom: 30.5 / 1226
  25107. }
  25108. },
  25109. },
  25110. [
  25111. {
  25112. name: "Macro",
  25113. height: math.unit(1700, "feet"),
  25114. default: true
  25115. },
  25116. {
  25117. name: "Examacro",
  25118. height: math.unit(2.5e9, "lightyears")
  25119. },
  25120. ]
  25121. ))
  25122. characterMakers.push(() => makeCharacter(
  25123. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25124. {
  25125. front: {
  25126. height: math.unit(21, "meters"),
  25127. weight: math.unit(12, "tonnes"),
  25128. name: "Front",
  25129. image: {
  25130. source: "./media/characters/kuru/front.svg",
  25131. extra: 4301 / 3785,
  25132. bottom: 371.3 / 4691
  25133. }
  25134. },
  25135. },
  25136. [
  25137. {
  25138. name: "Macro",
  25139. height: math.unit(21, "meters"),
  25140. default: true
  25141. },
  25142. ]
  25143. ))
  25144. characterMakers.push(() => makeCharacter(
  25145. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25146. {
  25147. front: {
  25148. height: math.unit(23, "meters"),
  25149. weight: math.unit(12.2, "tonnes"),
  25150. name: "Front",
  25151. image: {
  25152. source: "./media/characters/rakka/front.svg",
  25153. extra: 4670 / 4169,
  25154. bottom: 301 / 4968.7
  25155. }
  25156. },
  25157. },
  25158. [
  25159. {
  25160. name: "Macro",
  25161. height: math.unit(23, "meters"),
  25162. default: true
  25163. },
  25164. ]
  25165. ))
  25166. characterMakers.push(() => makeCharacter(
  25167. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25168. {
  25169. front: {
  25170. height: math.unit(6, "feet"),
  25171. weight: math.unit(150, "lb"),
  25172. name: "Front",
  25173. image: {
  25174. source: "./media/characters/rhys-feline/front.svg",
  25175. extra: 2488 / 2308,
  25176. bottom: 35.67 / 2519.19
  25177. }
  25178. },
  25179. },
  25180. [
  25181. {
  25182. name: "Really Small",
  25183. height: math.unit(1, "nm")
  25184. },
  25185. {
  25186. name: "Micro",
  25187. height: math.unit(4, "inches")
  25188. },
  25189. {
  25190. name: "Normal",
  25191. height: math.unit(4 + 10 / 12, "feet"),
  25192. default: true
  25193. },
  25194. {
  25195. name: "Macro",
  25196. height: math.unit(100, "feet")
  25197. },
  25198. {
  25199. name: "Megamacto",
  25200. height: math.unit(50, "miles")
  25201. },
  25202. ]
  25203. ))
  25204. characterMakers.push(() => makeCharacter(
  25205. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25206. {
  25207. side: {
  25208. height: math.unit(30, "feet"),
  25209. weight: math.unit(35000, "kg"),
  25210. name: "Side",
  25211. image: {
  25212. source: "./media/characters/alydar/side.svg",
  25213. extra: 234 / 222,
  25214. bottom: 6.5 / 241
  25215. }
  25216. },
  25217. front: {
  25218. height: math.unit(30, "feet"),
  25219. weight: math.unit(35000, "kg"),
  25220. name: "Front",
  25221. image: {
  25222. source: "./media/characters/alydar/front.svg",
  25223. extra: 223.37 / 210.2,
  25224. bottom: 22.3 / 246.76
  25225. }
  25226. },
  25227. top: {
  25228. height: math.unit(64.54, "feet"),
  25229. weight: math.unit(35000, "kg"),
  25230. name: "Top",
  25231. image: {
  25232. source: "./media/characters/alydar/top.svg"
  25233. }
  25234. },
  25235. anthro: {
  25236. height: math.unit(30, "feet"),
  25237. weight: math.unit(9000, "kg"),
  25238. name: "Anthro",
  25239. image: {
  25240. source: "./media/characters/alydar/anthro.svg",
  25241. extra: 432 / 421,
  25242. bottom: 7.18 / 440
  25243. }
  25244. },
  25245. maw: {
  25246. height: math.unit(11.693, "feet"),
  25247. name: "Maw",
  25248. image: {
  25249. source: "./media/characters/alydar/maw.svg"
  25250. }
  25251. },
  25252. head: {
  25253. height: math.unit(11.693, "feet"),
  25254. name: "Head",
  25255. image: {
  25256. source: "./media/characters/alydar/head.svg"
  25257. }
  25258. },
  25259. headAlt: {
  25260. height: math.unit(12.861, "feet"),
  25261. name: "Head (Alt)",
  25262. image: {
  25263. source: "./media/characters/alydar/head-alt.svg"
  25264. }
  25265. },
  25266. wing: {
  25267. height: math.unit(20.712, "feet"),
  25268. name: "Wing",
  25269. image: {
  25270. source: "./media/characters/alydar/wing.svg"
  25271. }
  25272. },
  25273. wingFeather: {
  25274. height: math.unit(9.662, "feet"),
  25275. name: "Wing Feather",
  25276. image: {
  25277. source: "./media/characters/alydar/wing-feather.svg"
  25278. }
  25279. },
  25280. countourFeather: {
  25281. height: math.unit(4.154, "feet"),
  25282. name: "Contour Feather",
  25283. image: {
  25284. source: "./media/characters/alydar/contour-feather.svg"
  25285. }
  25286. },
  25287. },
  25288. [
  25289. {
  25290. name: "Diplomatic",
  25291. height: math.unit(13, "feet"),
  25292. default: true
  25293. },
  25294. {
  25295. name: "Small",
  25296. height: math.unit(30, "feet")
  25297. },
  25298. {
  25299. name: "Normal",
  25300. height: math.unit(95, "feet"),
  25301. default: true
  25302. },
  25303. {
  25304. name: "Large",
  25305. height: math.unit(285, "feet")
  25306. },
  25307. {
  25308. name: "Incomprehensible",
  25309. height: math.unit(450, "megameters")
  25310. },
  25311. ]
  25312. ))
  25313. characterMakers.push(() => makeCharacter(
  25314. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25315. {
  25316. side: {
  25317. height: math.unit(11, "feet"),
  25318. weight: math.unit(1750, "kg"),
  25319. name: "Side",
  25320. image: {
  25321. source: "./media/characters/selicia/side.svg",
  25322. extra: 440 / 396,
  25323. bottom: 24.8 / 465.979
  25324. }
  25325. },
  25326. maw: {
  25327. height: math.unit(4.665, "feet"),
  25328. name: "Maw",
  25329. image: {
  25330. source: "./media/characters/selicia/maw.svg"
  25331. }
  25332. },
  25333. },
  25334. [
  25335. {
  25336. name: "Normal",
  25337. height: math.unit(11, "feet"),
  25338. default: true
  25339. },
  25340. ]
  25341. ))
  25342. characterMakers.push(() => makeCharacter(
  25343. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25344. {
  25345. side: {
  25346. height: math.unit(2 + 6 / 12, "feet"),
  25347. weight: math.unit(30, "lb"),
  25348. name: "Side",
  25349. image: {
  25350. source: "./media/characters/layla/side.svg",
  25351. extra: 244 / 188,
  25352. bottom: 18.2 / 262.1
  25353. }
  25354. },
  25355. back: {
  25356. height: math.unit(2 + 6 / 12, "feet"),
  25357. weight: math.unit(30, "lb"),
  25358. name: "Back",
  25359. image: {
  25360. source: "./media/characters/layla/back.svg",
  25361. extra: 308 / 241.5,
  25362. bottom: 8.9 / 316.8
  25363. }
  25364. },
  25365. cumming: {
  25366. height: math.unit(2 + 6 / 12, "feet"),
  25367. weight: math.unit(30, "lb"),
  25368. name: "Cumming",
  25369. image: {
  25370. source: "./media/characters/layla/cumming.svg",
  25371. extra: 342 / 279,
  25372. bottom: 595 / 938
  25373. }
  25374. },
  25375. dickFlaccid: {
  25376. height: math.unit(2.595, "feet"),
  25377. name: "Flaccid Genitals",
  25378. image: {
  25379. source: "./media/characters/layla/dick-flaccid.svg"
  25380. }
  25381. },
  25382. dickErect: {
  25383. height: math.unit(2.359, "feet"),
  25384. name: "Erect Genitals",
  25385. image: {
  25386. source: "./media/characters/layla/dick-erect.svg"
  25387. }
  25388. },
  25389. dragon: {
  25390. height: math.unit(40, "feet"),
  25391. name: "Dragon",
  25392. image: {
  25393. source: "./media/characters/layla/dragon.svg",
  25394. extra: 610/535,
  25395. bottom: 367/977
  25396. }
  25397. },
  25398. taur: {
  25399. height: math.unit(30, "feet"),
  25400. name: "Taur",
  25401. image: {
  25402. source: "./media/characters/layla/taur.svg",
  25403. extra: 1268/1199,
  25404. bottom: 112/1380
  25405. }
  25406. },
  25407. },
  25408. [
  25409. {
  25410. name: "Micro",
  25411. height: math.unit(1, "inch")
  25412. },
  25413. {
  25414. name: "Small",
  25415. height: math.unit(1, "foot")
  25416. },
  25417. {
  25418. name: "Normal",
  25419. height: math.unit(2 + 6 / 12, "feet"),
  25420. default: true
  25421. },
  25422. {
  25423. name: "Macro",
  25424. height: math.unit(200, "feet")
  25425. },
  25426. {
  25427. name: "Megamacro",
  25428. height: math.unit(1000, "miles")
  25429. },
  25430. {
  25431. name: "Planetary",
  25432. height: math.unit(8000, "miles")
  25433. },
  25434. {
  25435. name: "True Layla",
  25436. height: math.unit(200000 * 7, "multiverses")
  25437. },
  25438. ]
  25439. ))
  25440. characterMakers.push(() => makeCharacter(
  25441. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25442. {
  25443. back: {
  25444. height: math.unit(10.5, "feet"),
  25445. weight: math.unit(800, "lb"),
  25446. name: "Back",
  25447. image: {
  25448. source: "./media/characters/knox/back.svg",
  25449. extra: 1486 / 1089,
  25450. bottom: 107 / 1601.4
  25451. }
  25452. },
  25453. side: {
  25454. height: math.unit(10.5, "feet"),
  25455. weight: math.unit(800, "lb"),
  25456. name: "Side",
  25457. image: {
  25458. source: "./media/characters/knox/side.svg",
  25459. extra: 244 / 218,
  25460. bottom: 14 / 260
  25461. }
  25462. },
  25463. },
  25464. [
  25465. {
  25466. name: "Compact",
  25467. height: math.unit(10.5, "feet"),
  25468. default: true
  25469. },
  25470. {
  25471. name: "Dynamax",
  25472. height: math.unit(210, "feet")
  25473. },
  25474. {
  25475. name: "Full Macro",
  25476. height: math.unit(850, "feet")
  25477. },
  25478. ]
  25479. ))
  25480. characterMakers.push(() => makeCharacter(
  25481. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25482. {
  25483. front: {
  25484. height: math.unit(28, "feet"),
  25485. weight: math.unit(10500, "lb"),
  25486. name: "Front",
  25487. image: {
  25488. source: "./media/characters/kayda/front.svg",
  25489. extra: 1536 / 1428,
  25490. bottom: 68.7 / 1603
  25491. }
  25492. },
  25493. back: {
  25494. height: math.unit(28, "feet"),
  25495. weight: math.unit(10500, "lb"),
  25496. name: "Back",
  25497. image: {
  25498. source: "./media/characters/kayda/back.svg",
  25499. extra: 1557 / 1464,
  25500. bottom: 39.5 / 1597.49
  25501. }
  25502. },
  25503. dick: {
  25504. height: math.unit(3.858, "feet"),
  25505. name: "Dick",
  25506. image: {
  25507. source: "./media/characters/kayda/dick.svg"
  25508. }
  25509. },
  25510. },
  25511. [
  25512. {
  25513. name: "Macro",
  25514. height: math.unit(28, "feet"),
  25515. default: true
  25516. },
  25517. ]
  25518. ))
  25519. characterMakers.push(() => makeCharacter(
  25520. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25521. {
  25522. front: {
  25523. height: math.unit(10 + 11 / 12, "feet"),
  25524. weight: math.unit(1400, "lb"),
  25525. name: "Front",
  25526. image: {
  25527. source: "./media/characters/brian/front.svg",
  25528. extra: 737 / 692,
  25529. bottom: 55.4 / 785
  25530. }
  25531. },
  25532. },
  25533. [
  25534. {
  25535. name: "Normal",
  25536. height: math.unit(10 + 11 / 12, "feet"),
  25537. default: true
  25538. },
  25539. ]
  25540. ))
  25541. characterMakers.push(() => makeCharacter(
  25542. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25543. {
  25544. front: {
  25545. height: math.unit(5 + 8 / 12, "feet"),
  25546. weight: math.unit(140, "lb"),
  25547. name: "Front",
  25548. image: {
  25549. source: "./media/characters/khemri/front.svg",
  25550. extra: 4780 / 4059,
  25551. bottom: 80.1 / 4859.25
  25552. }
  25553. },
  25554. },
  25555. [
  25556. {
  25557. name: "Micro",
  25558. height: math.unit(6, "inches")
  25559. },
  25560. {
  25561. name: "Normal",
  25562. height: math.unit(5 + 8 / 12, "feet"),
  25563. default: true
  25564. },
  25565. ]
  25566. ))
  25567. characterMakers.push(() => makeCharacter(
  25568. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25569. {
  25570. front: {
  25571. height: math.unit(13, "feet"),
  25572. weight: math.unit(1700, "lb"),
  25573. name: "Front",
  25574. image: {
  25575. source: "./media/characters/felix-braveheart/front.svg",
  25576. extra: 1222 / 1157,
  25577. bottom: 53.2 / 1280
  25578. }
  25579. },
  25580. back: {
  25581. height: math.unit(13, "feet"),
  25582. weight: math.unit(1700, "lb"),
  25583. name: "Back",
  25584. image: {
  25585. source: "./media/characters/felix-braveheart/back.svg",
  25586. extra: 1277 / 1203,
  25587. bottom: 50.2 / 1327
  25588. }
  25589. },
  25590. feral: {
  25591. height: math.unit(6, "feet"),
  25592. weight: math.unit(400, "lb"),
  25593. name: "Feral",
  25594. image: {
  25595. source: "./media/characters/felix-braveheart/feral.svg",
  25596. extra: 682 / 625,
  25597. bottom: 6.9 / 688
  25598. }
  25599. },
  25600. },
  25601. [
  25602. {
  25603. name: "Normal",
  25604. height: math.unit(13, "feet"),
  25605. default: true
  25606. },
  25607. ]
  25608. ))
  25609. characterMakers.push(() => makeCharacter(
  25610. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25611. {
  25612. side: {
  25613. height: math.unit(5 + 11 / 12, "feet"),
  25614. weight: math.unit(1400, "lb"),
  25615. name: "Side",
  25616. image: {
  25617. source: "./media/characters/shadow-blade/side.svg",
  25618. extra: 1726 / 1267,
  25619. bottom: 58.4 / 1785
  25620. }
  25621. },
  25622. },
  25623. [
  25624. {
  25625. name: "Normal",
  25626. height: math.unit(5 + 11 / 12, "feet"),
  25627. default: true
  25628. },
  25629. ]
  25630. ))
  25631. characterMakers.push(() => makeCharacter(
  25632. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25633. {
  25634. front: {
  25635. height: math.unit(1 + 6 / 12, "feet"),
  25636. weight: math.unit(25, "lb"),
  25637. name: "Front",
  25638. image: {
  25639. source: "./media/characters/karla-halldor/front.svg",
  25640. extra: 1459 / 1383,
  25641. bottom: 12 / 1472
  25642. }
  25643. },
  25644. },
  25645. [
  25646. {
  25647. name: "Normal",
  25648. height: math.unit(1 + 6 / 12, "feet"),
  25649. default: true
  25650. },
  25651. ]
  25652. ))
  25653. characterMakers.push(() => makeCharacter(
  25654. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25655. {
  25656. front: {
  25657. height: math.unit(6 + 2 / 12, "feet"),
  25658. weight: math.unit(160, "lb"),
  25659. name: "Front",
  25660. image: {
  25661. source: "./media/characters/ariam/front.svg",
  25662. extra: 1073/976,
  25663. bottom: 52/1125
  25664. }
  25665. },
  25666. back: {
  25667. height: math.unit(6 + 2/12, "feet"),
  25668. weight: math.unit(160, "lb"),
  25669. name: "Back",
  25670. image: {
  25671. source: "./media/characters/ariam/back.svg",
  25672. extra: 1103/1023,
  25673. bottom: 9/1112
  25674. }
  25675. },
  25676. dressed: {
  25677. height: math.unit(6 + 2/12, "feet"),
  25678. weight: math.unit(160, "lb"),
  25679. name: "Dressed",
  25680. image: {
  25681. source: "./media/characters/ariam/dressed.svg",
  25682. extra: 1099/1009,
  25683. bottom: 25/1124
  25684. }
  25685. },
  25686. squatting: {
  25687. height: math.unit(4.1, "feet"),
  25688. weight: math.unit(160, "lb"),
  25689. name: "Squatting",
  25690. image: {
  25691. source: "./media/characters/ariam/squatting.svg",
  25692. extra: 2617 / 2112,
  25693. bottom: 61.2 / 2681,
  25694. }
  25695. },
  25696. },
  25697. [
  25698. {
  25699. name: "Normal",
  25700. height: math.unit(6 + 2 / 12, "feet"),
  25701. default: true
  25702. },
  25703. {
  25704. name: "Normal+",
  25705. height: math.unit(4, "meters")
  25706. },
  25707. {
  25708. name: "Macro",
  25709. height: math.unit(50, "meters")
  25710. },
  25711. {
  25712. name: "Macro+",
  25713. height: math.unit(100, "meters")
  25714. },
  25715. {
  25716. name: "Megamacro",
  25717. height: math.unit(20, "km")
  25718. },
  25719. {
  25720. name: "Caretaker",
  25721. height: math.unit(444, "megameters")
  25722. },
  25723. ]
  25724. ))
  25725. characterMakers.push(() => makeCharacter(
  25726. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25727. {
  25728. front: {
  25729. height: math.unit(1.67, "meters"),
  25730. weight: math.unit(140, "lb"),
  25731. name: "Front",
  25732. image: {
  25733. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25734. extra: 438 / 410,
  25735. bottom: 0.75 / 439
  25736. }
  25737. },
  25738. },
  25739. [
  25740. {
  25741. name: "Shrunken",
  25742. height: math.unit(7.6, "cm")
  25743. },
  25744. {
  25745. name: "Human Scale",
  25746. height: math.unit(1.67, "meters")
  25747. },
  25748. {
  25749. name: "Wolxi Scale",
  25750. height: math.unit(36.7, "meters"),
  25751. default: true
  25752. },
  25753. ]
  25754. ))
  25755. characterMakers.push(() => makeCharacter(
  25756. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25757. {
  25758. front: {
  25759. height: math.unit(1.73, "meters"),
  25760. weight: math.unit(240, "lb"),
  25761. name: "Front",
  25762. image: {
  25763. source: "./media/characters/izue-two-mothers/front.svg",
  25764. extra: 469 / 437,
  25765. bottom: 1.24 / 470.6
  25766. }
  25767. },
  25768. },
  25769. [
  25770. {
  25771. name: "Shrunken",
  25772. height: math.unit(7.86, "cm")
  25773. },
  25774. {
  25775. name: "Human Scale",
  25776. height: math.unit(1.73, "meters")
  25777. },
  25778. {
  25779. name: "Wolxi Scale",
  25780. height: math.unit(38, "meters"),
  25781. default: true
  25782. },
  25783. ]
  25784. ))
  25785. characterMakers.push(() => makeCharacter(
  25786. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25787. {
  25788. front: {
  25789. height: math.unit(1.55, "meters"),
  25790. weight: math.unit(120, "lb"),
  25791. name: "Front",
  25792. image: {
  25793. source: "./media/characters/teeku-love-shack/front.svg",
  25794. extra: 387 / 362,
  25795. bottom: 1.51 / 388
  25796. }
  25797. },
  25798. },
  25799. [
  25800. {
  25801. name: "Shrunken",
  25802. height: math.unit(7, "cm")
  25803. },
  25804. {
  25805. name: "Human Scale",
  25806. height: math.unit(1.55, "meters")
  25807. },
  25808. {
  25809. name: "Wolxi Scale",
  25810. height: math.unit(34.1, "meters"),
  25811. default: true
  25812. },
  25813. ]
  25814. ))
  25815. characterMakers.push(() => makeCharacter(
  25816. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25817. {
  25818. front: {
  25819. height: math.unit(1.83, "meters"),
  25820. weight: math.unit(135, "lb"),
  25821. name: "Front",
  25822. image: {
  25823. source: "./media/characters/dejma-the-red/front.svg",
  25824. extra: 480 / 458,
  25825. bottom: 1.8 / 482
  25826. }
  25827. },
  25828. },
  25829. [
  25830. {
  25831. name: "Shrunken",
  25832. height: math.unit(8.3, "cm")
  25833. },
  25834. {
  25835. name: "Human Scale",
  25836. height: math.unit(1.83, "meters")
  25837. },
  25838. {
  25839. name: "Wolxi Scale",
  25840. height: math.unit(40, "meters"),
  25841. default: true
  25842. },
  25843. ]
  25844. ))
  25845. characterMakers.push(() => makeCharacter(
  25846. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25847. {
  25848. front: {
  25849. height: math.unit(1.78, "meters"),
  25850. weight: math.unit(65, "kg"),
  25851. name: "Front",
  25852. image: {
  25853. source: "./media/characters/aki/front.svg",
  25854. extra: 452 / 415
  25855. }
  25856. },
  25857. frontNsfw: {
  25858. height: math.unit(1.78, "meters"),
  25859. weight: math.unit(65, "kg"),
  25860. name: "Front (NSFW)",
  25861. image: {
  25862. source: "./media/characters/aki/front-nsfw.svg",
  25863. extra: 452 / 415
  25864. }
  25865. },
  25866. back: {
  25867. height: math.unit(1.78, "meters"),
  25868. weight: math.unit(65, "kg"),
  25869. name: "Back",
  25870. image: {
  25871. source: "./media/characters/aki/back.svg",
  25872. extra: 452 / 415
  25873. }
  25874. },
  25875. rump: {
  25876. height: math.unit(2.05, "feet"),
  25877. name: "Rump",
  25878. image: {
  25879. source: "./media/characters/aki/rump.svg"
  25880. }
  25881. },
  25882. dick: {
  25883. height: math.unit(0.95, "feet"),
  25884. name: "Dick",
  25885. image: {
  25886. source: "./media/characters/aki/dick.svg"
  25887. }
  25888. },
  25889. },
  25890. [
  25891. {
  25892. name: "Micro",
  25893. height: math.unit(15, "cm")
  25894. },
  25895. {
  25896. name: "Normal",
  25897. height: math.unit(178, "cm"),
  25898. default: true
  25899. },
  25900. {
  25901. name: "Macro",
  25902. height: math.unit(214, "m")
  25903. },
  25904. {
  25905. name: "Macro+",
  25906. height: math.unit(534, "m")
  25907. },
  25908. ]
  25909. ))
  25910. characterMakers.push(() => makeCharacter(
  25911. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25912. {
  25913. front: {
  25914. height: math.unit(5 + 5 / 12, "feet"),
  25915. weight: math.unit(120, "lb"),
  25916. name: "Front",
  25917. image: {
  25918. source: "./media/characters/ari/front.svg",
  25919. extra: 1550/1471,
  25920. bottom: 39/1589
  25921. }
  25922. },
  25923. },
  25924. [
  25925. {
  25926. name: "Normal",
  25927. height: math.unit(5 + 5 / 12, "feet")
  25928. },
  25929. {
  25930. name: "Macro",
  25931. height: math.unit(100, "feet"),
  25932. default: true
  25933. },
  25934. {
  25935. name: "Megamacro",
  25936. height: math.unit(100, "miles")
  25937. },
  25938. {
  25939. name: "Gigamacro",
  25940. height: math.unit(80000, "miles")
  25941. },
  25942. ]
  25943. ))
  25944. characterMakers.push(() => makeCharacter(
  25945. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25946. {
  25947. side: {
  25948. height: math.unit(9, "feet"),
  25949. weight: math.unit(400, "kg"),
  25950. name: "Side",
  25951. image: {
  25952. source: "./media/characters/bolt/side.svg",
  25953. extra: 1126 / 896,
  25954. bottom: 60 / 1187.3,
  25955. }
  25956. },
  25957. },
  25958. [
  25959. {
  25960. name: "Micro",
  25961. height: math.unit(5, "inches")
  25962. },
  25963. {
  25964. name: "Normal",
  25965. height: math.unit(9, "feet"),
  25966. default: true
  25967. },
  25968. {
  25969. name: "Macro",
  25970. height: math.unit(700, "feet")
  25971. },
  25972. {
  25973. name: "Max Size",
  25974. height: math.unit(1.52e22, "yottameters")
  25975. },
  25976. ]
  25977. ))
  25978. characterMakers.push(() => makeCharacter(
  25979. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25980. {
  25981. front: {
  25982. height: math.unit(4.3, "meters"),
  25983. weight: math.unit(3, "tons"),
  25984. name: "Front",
  25985. image: {
  25986. source: "./media/characters/draekon-sylviar/front.svg",
  25987. extra: 2072/1512,
  25988. bottom: 74/2146
  25989. }
  25990. },
  25991. back: {
  25992. height: math.unit(4.3, "meters"),
  25993. weight: math.unit(3, "tons"),
  25994. name: "Back",
  25995. image: {
  25996. source: "./media/characters/draekon-sylviar/back.svg",
  25997. extra: 1639/1483,
  25998. bottom: 41/1680
  25999. }
  26000. },
  26001. feral: {
  26002. height: math.unit(1.15, "meters"),
  26003. weight: math.unit(3, "tons"),
  26004. name: "Feral",
  26005. image: {
  26006. source: "./media/characters/draekon-sylviar/feral.svg",
  26007. extra: 1033/395,
  26008. bottom: 130/1163
  26009. }
  26010. },
  26011. maw: {
  26012. height: math.unit(1.3, "meters"),
  26013. name: "Maw",
  26014. image: {
  26015. source: "./media/characters/draekon-sylviar/maw.svg"
  26016. }
  26017. },
  26018. mawSeparated: {
  26019. height: math.unit(1.53, "meters"),
  26020. name: "Separated Maw",
  26021. image: {
  26022. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26023. }
  26024. },
  26025. tail: {
  26026. height: math.unit(1.15, "meters"),
  26027. name: "Tail",
  26028. image: {
  26029. source: "./media/characters/draekon-sylviar/tail.svg"
  26030. }
  26031. },
  26032. tailDick: {
  26033. height: math.unit(1.15, "meters"),
  26034. name: "Tail (Dick)",
  26035. image: {
  26036. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26037. }
  26038. },
  26039. tailDickSeparated: {
  26040. height: math.unit(1.19, "meters"),
  26041. name: "Tail (Separated Dick)",
  26042. image: {
  26043. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26044. }
  26045. },
  26046. slit: {
  26047. height: math.unit(1, "meters"),
  26048. name: "Slit",
  26049. image: {
  26050. source: "./media/characters/draekon-sylviar/slit.svg"
  26051. }
  26052. },
  26053. dick: {
  26054. height: math.unit(1.15, "meters"),
  26055. name: "Dick",
  26056. image: {
  26057. source: "./media/characters/draekon-sylviar/dick.svg"
  26058. }
  26059. },
  26060. dickSeparated: {
  26061. height: math.unit(1.1, "meters"),
  26062. name: "Separated Dick",
  26063. image: {
  26064. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26065. }
  26066. },
  26067. sheath: {
  26068. height: math.unit(1.15, "meters"),
  26069. name: "Sheath",
  26070. image: {
  26071. source: "./media/characters/draekon-sylviar/sheath.svg"
  26072. }
  26073. },
  26074. },
  26075. [
  26076. {
  26077. name: "Small",
  26078. height: math.unit(4.53 / 2, "meters"),
  26079. default: true
  26080. },
  26081. {
  26082. name: "Normal",
  26083. height: math.unit(4.53, "meters"),
  26084. default: true
  26085. },
  26086. {
  26087. name: "Large",
  26088. height: math.unit(4.53 * 2, "meters"),
  26089. },
  26090. ]
  26091. ))
  26092. characterMakers.push(() => makeCharacter(
  26093. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26094. {
  26095. front: {
  26096. height: math.unit(6 + 2 / 12, "feet"),
  26097. weight: math.unit(180, "lb"),
  26098. name: "Front",
  26099. image: {
  26100. source: "./media/characters/brawler/front.svg",
  26101. extra: 3301 / 3027,
  26102. bottom: 138 / 3439
  26103. }
  26104. },
  26105. },
  26106. [
  26107. {
  26108. name: "Normal",
  26109. height: math.unit(6 + 2 / 12, "feet"),
  26110. default: true
  26111. },
  26112. ]
  26113. ))
  26114. characterMakers.push(() => makeCharacter(
  26115. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26116. {
  26117. front: {
  26118. height: math.unit(11, "feet"),
  26119. weight: math.unit(1000, "lb"),
  26120. name: "Front",
  26121. image: {
  26122. source: "./media/characters/alex/front.svg",
  26123. bottom: 44.5 / 620
  26124. }
  26125. },
  26126. },
  26127. [
  26128. {
  26129. name: "Micro",
  26130. height: math.unit(5, "inches")
  26131. },
  26132. {
  26133. name: "Normal",
  26134. height: math.unit(11, "feet"),
  26135. default: true
  26136. },
  26137. {
  26138. name: "Macro",
  26139. height: math.unit(9.5e9, "feet")
  26140. },
  26141. {
  26142. name: "Max Size",
  26143. height: math.unit(1.4e283, "yottameters")
  26144. },
  26145. ]
  26146. ))
  26147. characterMakers.push(() => makeCharacter(
  26148. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26149. {
  26150. female: {
  26151. height: math.unit(29.9, "m"),
  26152. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26153. name: "Female",
  26154. image: {
  26155. source: "./media/characters/zenari/female.svg",
  26156. extra: 3281.6 / 3217,
  26157. bottom: 72.2 / 3353
  26158. }
  26159. },
  26160. male: {
  26161. height: math.unit(27.7, "m"),
  26162. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26163. name: "Male",
  26164. image: {
  26165. source: "./media/characters/zenari/male.svg",
  26166. extra: 3008 / 2991,
  26167. bottom: 54.6 / 3069
  26168. }
  26169. },
  26170. },
  26171. [
  26172. {
  26173. name: "Macro",
  26174. height: math.unit(29.7, "meters"),
  26175. default: true
  26176. },
  26177. ]
  26178. ))
  26179. characterMakers.push(() => makeCharacter(
  26180. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26181. {
  26182. female: {
  26183. height: math.unit(23.8, "m"),
  26184. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26185. name: "Female",
  26186. image: {
  26187. source: "./media/characters/mactarian/female.svg",
  26188. extra: 2662 / 2569,
  26189. bottom: 73 / 2736
  26190. }
  26191. },
  26192. male: {
  26193. height: math.unit(23.8, "m"),
  26194. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26195. name: "Male",
  26196. image: {
  26197. source: "./media/characters/mactarian/male.svg",
  26198. extra: 2673 / 2600,
  26199. bottom: 76 / 2750
  26200. }
  26201. },
  26202. },
  26203. [
  26204. {
  26205. name: "Macro",
  26206. height: math.unit(23.8, "meters"),
  26207. default: true
  26208. },
  26209. ]
  26210. ))
  26211. characterMakers.push(() => makeCharacter(
  26212. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26213. {
  26214. female: {
  26215. height: math.unit(19.3, "m"),
  26216. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26217. name: "Female",
  26218. image: {
  26219. source: "./media/characters/umok/female.svg",
  26220. extra: 2186 / 2078,
  26221. bottom: 87 / 2277
  26222. }
  26223. },
  26224. male: {
  26225. height: math.unit(19.5, "m"),
  26226. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26227. name: "Male",
  26228. image: {
  26229. source: "./media/characters/umok/male.svg",
  26230. extra: 2233 / 2140,
  26231. bottom: 24.4 / 2258
  26232. }
  26233. },
  26234. },
  26235. [
  26236. {
  26237. name: "Macro",
  26238. height: math.unit(19.3, "meters"),
  26239. default: true
  26240. },
  26241. ]
  26242. ))
  26243. characterMakers.push(() => makeCharacter(
  26244. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26245. {
  26246. female: {
  26247. height: math.unit(26.15, "m"),
  26248. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26249. name: "Female",
  26250. image: {
  26251. source: "./media/characters/joraxian/female.svg",
  26252. extra: 2912 / 2824,
  26253. bottom: 36 / 2956
  26254. }
  26255. },
  26256. male: {
  26257. height: math.unit(25.4, "m"),
  26258. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26259. name: "Male",
  26260. image: {
  26261. source: "./media/characters/joraxian/male.svg",
  26262. extra: 2877 / 2721,
  26263. bottom: 82 / 2967
  26264. }
  26265. },
  26266. },
  26267. [
  26268. {
  26269. name: "Macro",
  26270. height: math.unit(26.15, "meters"),
  26271. default: true
  26272. },
  26273. ]
  26274. ))
  26275. characterMakers.push(() => makeCharacter(
  26276. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26277. {
  26278. female: {
  26279. height: math.unit(21.6, "m"),
  26280. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26281. name: "Female",
  26282. image: {
  26283. source: "./media/characters/sthara/female.svg",
  26284. extra: 2516 / 2347,
  26285. bottom: 21.5 / 2537
  26286. }
  26287. },
  26288. male: {
  26289. height: math.unit(24, "m"),
  26290. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26291. name: "Male",
  26292. image: {
  26293. source: "./media/characters/sthara/male.svg",
  26294. extra: 2732 / 2607,
  26295. bottom: 23 / 2732
  26296. }
  26297. },
  26298. },
  26299. [
  26300. {
  26301. name: "Macro",
  26302. height: math.unit(21.6, "meters"),
  26303. default: true
  26304. },
  26305. ]
  26306. ))
  26307. characterMakers.push(() => makeCharacter(
  26308. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26309. {
  26310. front: {
  26311. height: math.unit(6 + 4 / 12, "feet"),
  26312. weight: math.unit(175, "lb"),
  26313. name: "Front",
  26314. image: {
  26315. source: "./media/characters/luka-bryzant/front.svg",
  26316. extra: 311 / 289,
  26317. bottom: 4 / 315
  26318. }
  26319. },
  26320. back: {
  26321. height: math.unit(6 + 4 / 12, "feet"),
  26322. weight: math.unit(175, "lb"),
  26323. name: "Back",
  26324. image: {
  26325. source: "./media/characters/luka-bryzant/back.svg",
  26326. extra: 311 / 289,
  26327. bottom: 3.8 / 313.7
  26328. }
  26329. },
  26330. },
  26331. [
  26332. {
  26333. name: "Micro",
  26334. height: math.unit(10, "inches")
  26335. },
  26336. {
  26337. name: "Normal",
  26338. height: math.unit(6 + 4 / 12, "feet"),
  26339. default: true
  26340. },
  26341. {
  26342. name: "Large",
  26343. height: math.unit(12, "feet")
  26344. },
  26345. ]
  26346. ))
  26347. characterMakers.push(() => makeCharacter(
  26348. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26349. {
  26350. front: {
  26351. height: math.unit(5 + 7 / 12, "feet"),
  26352. weight: math.unit(185, "lb"),
  26353. name: "Front",
  26354. image: {
  26355. source: "./media/characters/aman-aquila/front.svg",
  26356. extra: 1013 / 976,
  26357. bottom: 45.6 / 1057
  26358. }
  26359. },
  26360. side: {
  26361. height: math.unit(5 + 7 / 12, "feet"),
  26362. weight: math.unit(185, "lb"),
  26363. name: "Side",
  26364. image: {
  26365. source: "./media/characters/aman-aquila/side.svg",
  26366. extra: 1054 / 1011,
  26367. bottom: 15 / 1070
  26368. }
  26369. },
  26370. back: {
  26371. height: math.unit(5 + 7 / 12, "feet"),
  26372. weight: math.unit(185, "lb"),
  26373. name: "Back",
  26374. image: {
  26375. source: "./media/characters/aman-aquila/back.svg",
  26376. extra: 1026 / 970,
  26377. bottom: 12 / 1039
  26378. }
  26379. },
  26380. head: {
  26381. height: math.unit(1.211, "feet"),
  26382. name: "Head",
  26383. image: {
  26384. source: "./media/characters/aman-aquila/head.svg",
  26385. }
  26386. },
  26387. },
  26388. [
  26389. {
  26390. name: "Minimicro",
  26391. height: math.unit(0.057, "inches")
  26392. },
  26393. {
  26394. name: "Micro",
  26395. height: math.unit(7, "inches")
  26396. },
  26397. {
  26398. name: "Mini",
  26399. height: math.unit(3 + 7 / 12, "feet")
  26400. },
  26401. {
  26402. name: "Normal",
  26403. height: math.unit(5 + 7 / 12, "feet"),
  26404. default: true
  26405. },
  26406. {
  26407. name: "Macro",
  26408. height: math.unit(157 + 7 / 12, "feet")
  26409. },
  26410. {
  26411. name: "Megamacro",
  26412. height: math.unit(1557 + 7 / 12, "feet")
  26413. },
  26414. {
  26415. name: "Gigamacro",
  26416. height: math.unit(15557 + 7 / 12, "feet")
  26417. },
  26418. ]
  26419. ))
  26420. characterMakers.push(() => makeCharacter(
  26421. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26422. {
  26423. front: {
  26424. height: math.unit(3 + 2 / 12, "inches"),
  26425. weight: math.unit(0.3, "ounces"),
  26426. name: "Front",
  26427. image: {
  26428. source: "./media/characters/hiphae/front.svg",
  26429. extra: 1931 / 1683,
  26430. bottom: 24 / 1955
  26431. }
  26432. },
  26433. },
  26434. [
  26435. {
  26436. name: "Normal",
  26437. height: math.unit(3 + 1 / 2, "inches"),
  26438. default: true
  26439. },
  26440. ]
  26441. ))
  26442. characterMakers.push(() => makeCharacter(
  26443. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26444. {
  26445. front: {
  26446. height: math.unit(5 + 10 / 12, "feet"),
  26447. weight: math.unit(165, "lb"),
  26448. name: "Front",
  26449. image: {
  26450. source: "./media/characters/nicky/front.svg",
  26451. extra: 3144 / 2886,
  26452. bottom: 45.6 / 3192
  26453. }
  26454. },
  26455. back: {
  26456. height: math.unit(5 + 10 / 12, "feet"),
  26457. weight: math.unit(165, "lb"),
  26458. name: "Back",
  26459. image: {
  26460. source: "./media/characters/nicky/back.svg",
  26461. extra: 3055 / 2804,
  26462. bottom: 28.4 / 3087
  26463. }
  26464. },
  26465. frontclothed: {
  26466. height: math.unit(5 + 10 / 12, "feet"),
  26467. weight: math.unit(165, "lb"),
  26468. name: "Front-clothed",
  26469. image: {
  26470. source: "./media/characters/nicky/front-clothed.svg",
  26471. extra: 3184.9 / 2926.9,
  26472. bottom: 86.5 / 3239.9
  26473. }
  26474. },
  26475. foot: {
  26476. height: math.unit(1.16, "feet"),
  26477. name: "Foot",
  26478. image: {
  26479. source: "./media/characters/nicky/foot.svg"
  26480. }
  26481. },
  26482. feet: {
  26483. height: math.unit(1.34, "feet"),
  26484. name: "Feet",
  26485. image: {
  26486. source: "./media/characters/nicky/feet.svg"
  26487. }
  26488. },
  26489. maw: {
  26490. height: math.unit(0.9, "feet"),
  26491. name: "Maw",
  26492. image: {
  26493. source: "./media/characters/nicky/maw.svg"
  26494. }
  26495. },
  26496. },
  26497. [
  26498. {
  26499. name: "Normal",
  26500. height: math.unit(5 + 10 / 12, "feet"),
  26501. default: true
  26502. },
  26503. {
  26504. name: "Macro",
  26505. height: math.unit(60, "feet")
  26506. },
  26507. {
  26508. name: "Megamacro",
  26509. height: math.unit(1, "mile")
  26510. },
  26511. ]
  26512. ))
  26513. characterMakers.push(() => makeCharacter(
  26514. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26515. {
  26516. side: {
  26517. height: math.unit(10, "feet"),
  26518. weight: math.unit(600, "lb"),
  26519. name: "Side",
  26520. image: {
  26521. source: "./media/characters/blair/side.svg",
  26522. bottom: 16.6 / 475,
  26523. extra: 458 / 431
  26524. }
  26525. },
  26526. },
  26527. [
  26528. {
  26529. name: "Micro",
  26530. height: math.unit(8, "inches")
  26531. },
  26532. {
  26533. name: "Normal",
  26534. height: math.unit(10, "feet"),
  26535. default: true
  26536. },
  26537. {
  26538. name: "Macro",
  26539. height: math.unit(180, "feet")
  26540. },
  26541. ]
  26542. ))
  26543. characterMakers.push(() => makeCharacter(
  26544. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26545. {
  26546. front: {
  26547. height: math.unit(5 + 4 / 12, "feet"),
  26548. weight: math.unit(125, "lb"),
  26549. name: "Front",
  26550. image: {
  26551. source: "./media/characters/fisher/front.svg",
  26552. extra: 444 / 390,
  26553. bottom: 2 / 444.8
  26554. }
  26555. },
  26556. },
  26557. [
  26558. {
  26559. name: "Micro",
  26560. height: math.unit(4, "inches")
  26561. },
  26562. {
  26563. name: "Normal",
  26564. height: math.unit(5 + 4 / 12, "feet"),
  26565. default: true
  26566. },
  26567. {
  26568. name: "Macro",
  26569. height: math.unit(100, "feet")
  26570. },
  26571. ]
  26572. ))
  26573. characterMakers.push(() => makeCharacter(
  26574. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26575. {
  26576. front: {
  26577. height: math.unit(6.71, "feet"),
  26578. weight: math.unit(200, "lb"),
  26579. preyCapacity: math.unit(1000000, "people"),
  26580. name: "Front",
  26581. image: {
  26582. source: "./media/characters/gliss/front.svg",
  26583. extra: 2347 / 2231,
  26584. bottom: 113 / 2462
  26585. }
  26586. },
  26587. hammerspaceSize: {
  26588. height: math.unit(6.71 * 717, "feet"),
  26589. weight: math.unit(200, "lb"),
  26590. preyCapacity: math.unit(1000000, "people"),
  26591. name: "Hammerspace Size",
  26592. image: {
  26593. source: "./media/characters/gliss/front.svg",
  26594. extra: 2347 / 2231,
  26595. bottom: 113 / 2462
  26596. }
  26597. },
  26598. },
  26599. [
  26600. {
  26601. name: "Normal",
  26602. height: math.unit(6.71, "feet"),
  26603. default: true
  26604. },
  26605. ]
  26606. ))
  26607. characterMakers.push(() => makeCharacter(
  26608. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26609. {
  26610. side: {
  26611. height: math.unit(1.44, "m"),
  26612. weight: math.unit(80, "kg"),
  26613. name: "Side",
  26614. image: {
  26615. source: "./media/characters/dune-anderson/side.svg",
  26616. bottom: 49 / 1426
  26617. }
  26618. },
  26619. },
  26620. [
  26621. {
  26622. name: "Wolf-sized",
  26623. height: math.unit(1.44, "meters")
  26624. },
  26625. {
  26626. name: "Normal",
  26627. height: math.unit(5.05, "meters"),
  26628. default: true
  26629. },
  26630. {
  26631. name: "Big",
  26632. height: math.unit(14.4, "meters")
  26633. },
  26634. {
  26635. name: "Huge",
  26636. height: math.unit(144, "meters")
  26637. },
  26638. ]
  26639. ))
  26640. characterMakers.push(() => makeCharacter(
  26641. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26642. {
  26643. front: {
  26644. height: math.unit(7, "feet"),
  26645. weight: math.unit(425, "lb"),
  26646. name: "Front",
  26647. image: {
  26648. source: "./media/characters/hind/front.svg",
  26649. extra: 2091 / 1860,
  26650. bottom: 129 / 2220
  26651. }
  26652. },
  26653. back: {
  26654. height: math.unit(7, "feet"),
  26655. weight: math.unit(425, "lb"),
  26656. name: "Back",
  26657. image: {
  26658. source: "./media/characters/hind/back.svg",
  26659. extra: 2091 / 1860,
  26660. bottom: 24.6 / 2309
  26661. }
  26662. },
  26663. tail: {
  26664. height: math.unit(2.8, "feet"),
  26665. name: "Tail",
  26666. image: {
  26667. source: "./media/characters/hind/tail.svg"
  26668. }
  26669. },
  26670. head: {
  26671. height: math.unit(2.55, "feet"),
  26672. name: "Head",
  26673. image: {
  26674. source: "./media/characters/hind/head.svg"
  26675. }
  26676. },
  26677. },
  26678. [
  26679. {
  26680. name: "XS",
  26681. height: math.unit(0.7, "feet")
  26682. },
  26683. {
  26684. name: "Normal",
  26685. height: math.unit(7, "feet"),
  26686. default: true
  26687. },
  26688. {
  26689. name: "XL",
  26690. height: math.unit(70, "feet")
  26691. },
  26692. ]
  26693. ))
  26694. characterMakers.push(() => makeCharacter(
  26695. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26696. {
  26697. front: {
  26698. height: math.unit(2.1, "meters"),
  26699. weight: math.unit(150, "lb"),
  26700. name: "Front",
  26701. image: {
  26702. source: "./media/characters/tharquench-sizestealer/front.svg",
  26703. extra: 1605/1470,
  26704. bottom: 36/1641
  26705. }
  26706. },
  26707. frontAlt: {
  26708. height: math.unit(2.1, "meters"),
  26709. weight: math.unit(150, "lb"),
  26710. name: "Front (Alt)",
  26711. image: {
  26712. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26713. extra: 2318 / 2063,
  26714. bottom: 93.4 / 2410
  26715. }
  26716. },
  26717. },
  26718. [
  26719. {
  26720. name: "Nano",
  26721. height: math.unit(1, "mm")
  26722. },
  26723. {
  26724. name: "Micro",
  26725. height: math.unit(1, "cm")
  26726. },
  26727. {
  26728. name: "Normal",
  26729. height: math.unit(2.1, "meters"),
  26730. default: true
  26731. },
  26732. ]
  26733. ))
  26734. characterMakers.push(() => makeCharacter(
  26735. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26736. {
  26737. front: {
  26738. height: math.unit(7 + 5 / 12, "feet"),
  26739. weight: math.unit(357, "lb"),
  26740. name: "Front",
  26741. image: {
  26742. source: "./media/characters/solex-draconov/front.svg",
  26743. extra: 1993 / 1865,
  26744. bottom: 117 / 2111
  26745. }
  26746. },
  26747. },
  26748. [
  26749. {
  26750. name: "Natural Height",
  26751. height: math.unit(7 + 5 / 12, "feet"),
  26752. default: true
  26753. },
  26754. {
  26755. name: "Macro",
  26756. height: math.unit(350, "feet")
  26757. },
  26758. {
  26759. name: "Macro+",
  26760. height: math.unit(1000, "feet")
  26761. },
  26762. {
  26763. name: "Megamacro",
  26764. height: math.unit(20, "km")
  26765. },
  26766. {
  26767. name: "Megamacro+",
  26768. height: math.unit(1000, "km")
  26769. },
  26770. {
  26771. name: "Gigamacro",
  26772. height: math.unit(2.5, "Gm")
  26773. },
  26774. {
  26775. name: "Teramacro",
  26776. height: math.unit(15, "Tm")
  26777. },
  26778. {
  26779. name: "Galactic",
  26780. height: math.unit(30, "Zm")
  26781. },
  26782. {
  26783. name: "Universal",
  26784. height: math.unit(21000, "Ym")
  26785. },
  26786. {
  26787. name: "Omniversal",
  26788. height: math.unit(9.861e50, "Ym")
  26789. },
  26790. {
  26791. name: "Existential",
  26792. height: math.unit(1e300, "meters")
  26793. },
  26794. ]
  26795. ))
  26796. characterMakers.push(() => makeCharacter(
  26797. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26798. {
  26799. side: {
  26800. height: math.unit(25, "feet"),
  26801. weight: math.unit(90000, "lb"),
  26802. name: "Side",
  26803. image: {
  26804. source: "./media/characters/mandarax/side.svg",
  26805. extra: 614 / 332,
  26806. bottom: 55 / 630
  26807. }
  26808. },
  26809. lounging: {
  26810. height: math.unit(15.4, "feet"),
  26811. weight: math.unit(90000, "lb"),
  26812. name: "Lounging",
  26813. image: {
  26814. source: "./media/characters/mandarax/lounging.svg",
  26815. extra: 817/609,
  26816. bottom: 685/1502
  26817. }
  26818. },
  26819. head: {
  26820. height: math.unit(11.4, "feet"),
  26821. name: "Head",
  26822. image: {
  26823. source: "./media/characters/mandarax/head.svg"
  26824. }
  26825. },
  26826. belly: {
  26827. height: math.unit(33, "feet"),
  26828. name: "Belly",
  26829. preyCapacity: math.unit(500, "people"),
  26830. image: {
  26831. source: "./media/characters/mandarax/belly.svg"
  26832. }
  26833. },
  26834. dick: {
  26835. height: math.unit(8.46, "feet"),
  26836. name: "Dick",
  26837. image: {
  26838. source: "./media/characters/mandarax/dick.svg"
  26839. }
  26840. },
  26841. top: {
  26842. height: math.unit(28, "meters"),
  26843. name: "Top",
  26844. image: {
  26845. source: "./media/characters/mandarax/top.svg"
  26846. }
  26847. },
  26848. },
  26849. [
  26850. {
  26851. name: "Normal",
  26852. height: math.unit(25, "feet"),
  26853. default: true
  26854. },
  26855. ]
  26856. ))
  26857. characterMakers.push(() => makeCharacter(
  26858. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26859. {
  26860. front: {
  26861. height: math.unit(5, "feet"),
  26862. weight: math.unit(90, "lb"),
  26863. name: "Front",
  26864. image: {
  26865. source: "./media/characters/pixil/front.svg",
  26866. extra: 2000 / 1618,
  26867. bottom: 12.3 / 2011
  26868. }
  26869. },
  26870. },
  26871. [
  26872. {
  26873. name: "Normal",
  26874. height: math.unit(5, "feet"),
  26875. default: true
  26876. },
  26877. {
  26878. name: "Megamacro",
  26879. height: math.unit(10, "miles"),
  26880. },
  26881. ]
  26882. ))
  26883. characterMakers.push(() => makeCharacter(
  26884. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26885. {
  26886. front: {
  26887. height: math.unit(7 + 2 / 12, "feet"),
  26888. weight: math.unit(200, "lb"),
  26889. name: "Front",
  26890. image: {
  26891. source: "./media/characters/angel/front.svg",
  26892. extra: 1830 / 1737,
  26893. bottom: 22.6 / 1854,
  26894. }
  26895. },
  26896. },
  26897. [
  26898. {
  26899. name: "Normal",
  26900. height: math.unit(7 + 2 / 12, "feet"),
  26901. default: true
  26902. },
  26903. {
  26904. name: "Macro",
  26905. height: math.unit(1000, "feet")
  26906. },
  26907. {
  26908. name: "Megamacro",
  26909. height: math.unit(2, "miles")
  26910. },
  26911. {
  26912. name: "Gigamacro",
  26913. height: math.unit(20, "earths")
  26914. },
  26915. ]
  26916. ))
  26917. characterMakers.push(() => makeCharacter(
  26918. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26919. {
  26920. front: {
  26921. height: math.unit(5, "feet"),
  26922. weight: math.unit(180, "lb"),
  26923. name: "Front",
  26924. image: {
  26925. source: "./media/characters/mekana/front.svg",
  26926. extra: 1671 / 1605,
  26927. bottom: 3.5 / 1691
  26928. }
  26929. },
  26930. side: {
  26931. height: math.unit(5, "feet"),
  26932. weight: math.unit(180, "lb"),
  26933. name: "Side",
  26934. image: {
  26935. source: "./media/characters/mekana/side.svg",
  26936. extra: 1671 / 1605,
  26937. bottom: 3.5 / 1691
  26938. }
  26939. },
  26940. back: {
  26941. height: math.unit(5, "feet"),
  26942. weight: math.unit(180, "lb"),
  26943. name: "Back",
  26944. image: {
  26945. source: "./media/characters/mekana/back.svg",
  26946. extra: 1671 / 1605,
  26947. bottom: 3.5 / 1691
  26948. }
  26949. },
  26950. },
  26951. [
  26952. {
  26953. name: "Normal",
  26954. height: math.unit(5, "feet"),
  26955. default: true
  26956. },
  26957. ]
  26958. ))
  26959. characterMakers.push(() => makeCharacter(
  26960. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26961. {
  26962. front: {
  26963. height: math.unit(4 + 6 / 12, "feet"),
  26964. weight: math.unit(80, "lb"),
  26965. name: "Front",
  26966. image: {
  26967. source: "./media/characters/pixie/front.svg",
  26968. extra: 1924 / 1825,
  26969. bottom: 22.4 / 1946
  26970. }
  26971. },
  26972. },
  26973. [
  26974. {
  26975. name: "Normal",
  26976. height: math.unit(4 + 6 / 12, "feet"),
  26977. default: true
  26978. },
  26979. {
  26980. name: "Macro",
  26981. height: math.unit(40, "feet")
  26982. },
  26983. ]
  26984. ))
  26985. characterMakers.push(() => makeCharacter(
  26986. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26987. {
  26988. front: {
  26989. height: math.unit(2.1, "meters"),
  26990. weight: math.unit(200, "lb"),
  26991. name: "Front",
  26992. image: {
  26993. source: "./media/characters/the-lascivious/front.svg",
  26994. extra: 1 / 0.893,
  26995. bottom: 3.5 / 573.7
  26996. }
  26997. },
  26998. },
  26999. [
  27000. {
  27001. name: "Human Scale",
  27002. height: math.unit(2.1, "meters")
  27003. },
  27004. {
  27005. name: "Wolxi Scale",
  27006. height: math.unit(46.2, "m"),
  27007. default: true
  27008. },
  27009. {
  27010. name: "Boinker of Buildings",
  27011. height: math.unit(10, "km")
  27012. },
  27013. {
  27014. name: "Shagger of Skyscrapers",
  27015. height: math.unit(40, "km")
  27016. },
  27017. {
  27018. name: "Banger of Boroughs",
  27019. height: math.unit(4000, "km")
  27020. },
  27021. {
  27022. name: "Screwer of States",
  27023. height: math.unit(100000, "km")
  27024. },
  27025. {
  27026. name: "Pounder of Planets",
  27027. height: math.unit(2000000, "km")
  27028. },
  27029. ]
  27030. ))
  27031. characterMakers.push(() => makeCharacter(
  27032. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27033. {
  27034. front: {
  27035. height: math.unit(6, "feet"),
  27036. weight: math.unit(150, "lb"),
  27037. name: "Front",
  27038. image: {
  27039. source: "./media/characters/aj/front.svg",
  27040. extra: 2039 / 1562,
  27041. bottom: 40 / 2079
  27042. }
  27043. },
  27044. },
  27045. [
  27046. {
  27047. name: "Normal",
  27048. height: math.unit(11 + 6 / 12, "feet"),
  27049. default: true
  27050. },
  27051. {
  27052. name: "Megamacro",
  27053. height: math.unit(60, "megameters")
  27054. },
  27055. ]
  27056. ))
  27057. characterMakers.push(() => makeCharacter(
  27058. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27059. {
  27060. side: {
  27061. height: math.unit(31 + 8 / 12, "feet"),
  27062. weight: math.unit(75000, "kg"),
  27063. name: "Side",
  27064. image: {
  27065. source: "./media/characters/koros/side.svg",
  27066. extra: 1442 / 1297,
  27067. bottom: 122.7 / 1562
  27068. }
  27069. },
  27070. dicksKingsCrown: {
  27071. height: math.unit(6, "feet"),
  27072. name: "Dicks (King's Crown)",
  27073. image: {
  27074. source: "./media/characters/koros/dicks-kings-crown.svg"
  27075. }
  27076. },
  27077. dicksTailSet: {
  27078. height: math.unit(3, "feet"),
  27079. name: "Dicks (Tail Set)",
  27080. image: {
  27081. source: "./media/characters/koros/dicks-tail-set.svg"
  27082. }
  27083. },
  27084. dickCumming: {
  27085. height: math.unit(7.98, "feet"),
  27086. name: "Dick (Cumming)",
  27087. image: {
  27088. source: "./media/characters/koros/dick-cumming.svg"
  27089. }
  27090. },
  27091. dicksBack: {
  27092. height: math.unit(5.9, "feet"),
  27093. name: "Dicks (Back)",
  27094. image: {
  27095. source: "./media/characters/koros/dicks-back.svg"
  27096. }
  27097. },
  27098. dicksFront: {
  27099. height: math.unit(3.72, "feet"),
  27100. name: "Dicks (Front)",
  27101. image: {
  27102. source: "./media/characters/koros/dicks-front.svg"
  27103. }
  27104. },
  27105. dicksPeeking: {
  27106. height: math.unit(3.0, "feet"),
  27107. name: "Dicks (Peeking)",
  27108. image: {
  27109. source: "./media/characters/koros/dicks-peeking.svg"
  27110. }
  27111. },
  27112. eye: {
  27113. height: math.unit(1.7, "feet"),
  27114. name: "Eye",
  27115. image: {
  27116. source: "./media/characters/koros/eye.svg"
  27117. }
  27118. },
  27119. headFront: {
  27120. height: math.unit(11.69, "feet"),
  27121. name: "Head (Front)",
  27122. image: {
  27123. source: "./media/characters/koros/head-front.svg"
  27124. }
  27125. },
  27126. headSide: {
  27127. height: math.unit(14, "feet"),
  27128. name: "Head (Side)",
  27129. image: {
  27130. source: "./media/characters/koros/head-side.svg"
  27131. }
  27132. },
  27133. leg: {
  27134. height: math.unit(17, "feet"),
  27135. name: "Leg",
  27136. image: {
  27137. source: "./media/characters/koros/leg.svg"
  27138. }
  27139. },
  27140. mawSide: {
  27141. height: math.unit(12.8, "feet"),
  27142. name: "Maw (Side)",
  27143. image: {
  27144. source: "./media/characters/koros/maw-side.svg"
  27145. }
  27146. },
  27147. mawSpitting: {
  27148. height: math.unit(17, "feet"),
  27149. name: "Maw (Spitting)",
  27150. image: {
  27151. source: "./media/characters/koros/maw-spitting.svg"
  27152. }
  27153. },
  27154. slit: {
  27155. height: math.unit(2.8, "feet"),
  27156. name: "Slit",
  27157. image: {
  27158. source: "./media/characters/koros/slit.svg"
  27159. }
  27160. },
  27161. stomach: {
  27162. height: math.unit(6.8, "feet"),
  27163. preyCapacity: math.unit(20, "people"),
  27164. name: "Stomach",
  27165. image: {
  27166. source: "./media/characters/koros/stomach.svg"
  27167. }
  27168. },
  27169. wingspanBottom: {
  27170. height: math.unit(114, "feet"),
  27171. name: "Wingspan (Bottom)",
  27172. image: {
  27173. source: "./media/characters/koros/wingspan-bottom.svg"
  27174. }
  27175. },
  27176. wingspanTop: {
  27177. height: math.unit(104, "feet"),
  27178. name: "Wingspan (Top)",
  27179. image: {
  27180. source: "./media/characters/koros/wingspan-top.svg"
  27181. }
  27182. },
  27183. },
  27184. [
  27185. {
  27186. name: "Normal",
  27187. height: math.unit(31 + 8 / 12, "feet"),
  27188. default: true
  27189. },
  27190. ]
  27191. ))
  27192. characterMakers.push(() => makeCharacter(
  27193. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27194. {
  27195. front: {
  27196. height: math.unit(18 + 5 / 12, "feet"),
  27197. weight: math.unit(3750, "kg"),
  27198. name: "Front",
  27199. image: {
  27200. source: "./media/characters/vexx/front.svg",
  27201. extra: 426 / 396,
  27202. bottom: 31.5 / 458
  27203. }
  27204. },
  27205. maw: {
  27206. height: math.unit(6, "feet"),
  27207. name: "Maw",
  27208. image: {
  27209. source: "./media/characters/vexx/maw.svg"
  27210. }
  27211. },
  27212. },
  27213. [
  27214. {
  27215. name: "Normal",
  27216. height: math.unit(18 + 5 / 12, "feet"),
  27217. default: true
  27218. },
  27219. ]
  27220. ))
  27221. characterMakers.push(() => makeCharacter(
  27222. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27223. {
  27224. front: {
  27225. height: math.unit(17 + 6 / 12, "feet"),
  27226. weight: math.unit(150, "lb"),
  27227. name: "Front",
  27228. image: {
  27229. source: "./media/characters/baadra/front.svg",
  27230. extra: 1694/1553,
  27231. bottom: 179/1873
  27232. }
  27233. },
  27234. frontAlt: {
  27235. height: math.unit(17 + 6 / 12, "feet"),
  27236. weight: math.unit(150, "lb"),
  27237. name: "Front (Alt)",
  27238. image: {
  27239. source: "./media/characters/baadra/front-alt.svg",
  27240. extra: 3137 / 2890,
  27241. bottom: 168.4 / 3305
  27242. }
  27243. },
  27244. back: {
  27245. height: math.unit(17 + 6 / 12, "feet"),
  27246. weight: math.unit(150, "lb"),
  27247. name: "Back",
  27248. image: {
  27249. source: "./media/characters/baadra/back.svg",
  27250. extra: 3142 / 2890,
  27251. bottom: 220 / 3371
  27252. }
  27253. },
  27254. head: {
  27255. height: math.unit(5.45, "feet"),
  27256. name: "Head",
  27257. image: {
  27258. source: "./media/characters/baadra/head.svg"
  27259. }
  27260. },
  27261. headAngry: {
  27262. height: math.unit(4.95, "feet"),
  27263. name: "Head (Angry)",
  27264. image: {
  27265. source: "./media/characters/baadra/head-angry.svg"
  27266. }
  27267. },
  27268. headOpen: {
  27269. height: math.unit(6, "feet"),
  27270. name: "Head (Open)",
  27271. image: {
  27272. source: "./media/characters/baadra/head-open.svg"
  27273. }
  27274. },
  27275. },
  27276. [
  27277. {
  27278. name: "Normal",
  27279. height: math.unit(17 + 6 / 12, "feet"),
  27280. default: true
  27281. },
  27282. ]
  27283. ))
  27284. characterMakers.push(() => makeCharacter(
  27285. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27286. {
  27287. front: {
  27288. height: math.unit(7 + 3 / 12, "feet"),
  27289. weight: math.unit(180, "lb"),
  27290. name: "Front",
  27291. image: {
  27292. source: "./media/characters/juri/front.svg",
  27293. extra: 1401 / 1237,
  27294. bottom: 18.5 / 1418
  27295. }
  27296. },
  27297. side: {
  27298. height: math.unit(7 + 3 / 12, "feet"),
  27299. weight: math.unit(180, "lb"),
  27300. name: "Side",
  27301. image: {
  27302. source: "./media/characters/juri/side.svg",
  27303. extra: 1424 / 1242,
  27304. bottom: 18.5 / 1447
  27305. }
  27306. },
  27307. sitting: {
  27308. height: math.unit(6, "feet"),
  27309. weight: math.unit(180, "lb"),
  27310. name: "Sitting",
  27311. image: {
  27312. source: "./media/characters/juri/sitting.svg",
  27313. extra: 1270 / 1143,
  27314. bottom: 100 / 1343
  27315. }
  27316. },
  27317. back: {
  27318. height: math.unit(7 + 3 / 12, "feet"),
  27319. weight: math.unit(180, "lb"),
  27320. name: "Back",
  27321. image: {
  27322. source: "./media/characters/juri/back.svg",
  27323. extra: 1377 / 1240,
  27324. bottom: 23.7 / 1405
  27325. }
  27326. },
  27327. maw: {
  27328. height: math.unit(2.8, "feet"),
  27329. name: "Maw",
  27330. image: {
  27331. source: "./media/characters/juri/maw.svg"
  27332. }
  27333. },
  27334. stomach: {
  27335. height: math.unit(0.89, "feet"),
  27336. preyCapacity: math.unit(4, "liters"),
  27337. name: "Stomach",
  27338. image: {
  27339. source: "./media/characters/juri/stomach.svg"
  27340. }
  27341. },
  27342. },
  27343. [
  27344. {
  27345. name: "Normal",
  27346. height: math.unit(7 + 3 / 12, "feet"),
  27347. default: true
  27348. },
  27349. ]
  27350. ))
  27351. characterMakers.push(() => makeCharacter(
  27352. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27353. {
  27354. fox: {
  27355. height: math.unit(5 + 6 / 12, "feet"),
  27356. weight: math.unit(140, "lb"),
  27357. name: "Fox",
  27358. image: {
  27359. source: "./media/characters/maxene-sita/fox.svg",
  27360. extra: 146 / 138,
  27361. bottom: 2.1 / 148.19
  27362. }
  27363. },
  27364. foxLaying: {
  27365. height: math.unit(1.70, "feet"),
  27366. weight: math.unit(140, "lb"),
  27367. name: "Fox (Laying)",
  27368. image: {
  27369. source: "./media/characters/maxene-sita/fox-laying.svg",
  27370. extra: 910 / 572,
  27371. bottom: 71 / 981
  27372. }
  27373. },
  27374. kitsune: {
  27375. height: math.unit(10, "feet"),
  27376. weight: math.unit(800, "lb"),
  27377. name: "Kitsune",
  27378. image: {
  27379. source: "./media/characters/maxene-sita/kitsune.svg",
  27380. extra: 185 / 176,
  27381. bottom: 4.7 / 189.9
  27382. }
  27383. },
  27384. hellhound: {
  27385. height: math.unit(10, "feet"),
  27386. weight: math.unit(700, "lb"),
  27387. name: "Hellhound",
  27388. image: {
  27389. source: "./media/characters/maxene-sita/hellhound.svg",
  27390. extra: 1600 / 1545,
  27391. bottom: 81 / 1681
  27392. }
  27393. },
  27394. },
  27395. [
  27396. {
  27397. name: "Normal",
  27398. height: math.unit(5 + 6 / 12, "feet"),
  27399. default: true
  27400. },
  27401. ]
  27402. ))
  27403. characterMakers.push(() => makeCharacter(
  27404. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27405. {
  27406. front: {
  27407. height: math.unit(3 + 4 / 12, "feet"),
  27408. weight: math.unit(70, "lb"),
  27409. name: "Front",
  27410. image: {
  27411. source: "./media/characters/maia/front.svg",
  27412. extra: 227 / 219.5,
  27413. bottom: 40 / 267
  27414. }
  27415. },
  27416. back: {
  27417. height: math.unit(3 + 4 / 12, "feet"),
  27418. weight: math.unit(70, "lb"),
  27419. name: "Back",
  27420. image: {
  27421. source: "./media/characters/maia/back.svg",
  27422. extra: 237 / 225
  27423. }
  27424. },
  27425. },
  27426. [
  27427. {
  27428. name: "Normal",
  27429. height: math.unit(3 + 4 / 12, "feet"),
  27430. default: true
  27431. },
  27432. ]
  27433. ))
  27434. characterMakers.push(() => makeCharacter(
  27435. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27436. {
  27437. front: {
  27438. height: math.unit(5 + 10 / 12, "feet"),
  27439. weight: math.unit(197, "lb"),
  27440. name: "Front",
  27441. image: {
  27442. source: "./media/characters/jabaro/front.svg",
  27443. extra: 225 / 216,
  27444. bottom: 5.06 / 230
  27445. }
  27446. },
  27447. back: {
  27448. height: math.unit(5 + 10 / 12, "feet"),
  27449. weight: math.unit(197, "lb"),
  27450. name: "Back",
  27451. image: {
  27452. source: "./media/characters/jabaro/back.svg",
  27453. extra: 225 / 219,
  27454. bottom: 1.9 / 227
  27455. }
  27456. },
  27457. },
  27458. [
  27459. {
  27460. name: "Normal",
  27461. height: math.unit(5 + 10 / 12, "feet"),
  27462. default: true
  27463. },
  27464. ]
  27465. ))
  27466. characterMakers.push(() => makeCharacter(
  27467. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27468. {
  27469. front: {
  27470. height: math.unit(5 + 8 / 12, "feet"),
  27471. weight: math.unit(139, "lb"),
  27472. name: "Front",
  27473. image: {
  27474. source: "./media/characters/risa/front.svg",
  27475. extra: 270 / 260,
  27476. bottom: 11.2 / 282
  27477. }
  27478. },
  27479. back: {
  27480. height: math.unit(5 + 8 / 12, "feet"),
  27481. weight: math.unit(139, "lb"),
  27482. name: "Back",
  27483. image: {
  27484. source: "./media/characters/risa/back.svg",
  27485. extra: 264 / 255,
  27486. bottom: 4 / 268
  27487. }
  27488. },
  27489. },
  27490. [
  27491. {
  27492. name: "Normal",
  27493. height: math.unit(5 + 8 / 12, "feet"),
  27494. default: true
  27495. },
  27496. ]
  27497. ))
  27498. characterMakers.push(() => makeCharacter(
  27499. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27500. {
  27501. front: {
  27502. height: math.unit(2 + 11 / 12, "feet"),
  27503. weight: math.unit(30, "lb"),
  27504. name: "Front",
  27505. image: {
  27506. source: "./media/characters/weatley/front.svg",
  27507. bottom: 10.7 / 414,
  27508. extra: 403.5 / 362
  27509. }
  27510. },
  27511. back: {
  27512. height: math.unit(2 + 11 / 12, "feet"),
  27513. weight: math.unit(30, "lb"),
  27514. name: "Back",
  27515. image: {
  27516. source: "./media/characters/weatley/back.svg",
  27517. bottom: 10.7 / 414,
  27518. extra: 403.5 / 362
  27519. }
  27520. },
  27521. },
  27522. [
  27523. {
  27524. name: "Normal",
  27525. height: math.unit(2 + 11 / 12, "feet"),
  27526. default: true
  27527. },
  27528. ]
  27529. ))
  27530. characterMakers.push(() => makeCharacter(
  27531. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27532. {
  27533. front: {
  27534. height: math.unit(5 + 2 / 12, "feet"),
  27535. weight: math.unit(50, "kg"),
  27536. name: "Front",
  27537. image: {
  27538. source: "./media/characters/mercury-crescent/front.svg",
  27539. extra: 1088 / 1033,
  27540. bottom: 18.9 / 1109
  27541. }
  27542. },
  27543. },
  27544. [
  27545. {
  27546. name: "Normal",
  27547. height: math.unit(5 + 2 / 12, "feet"),
  27548. default: true
  27549. },
  27550. ]
  27551. ))
  27552. characterMakers.push(() => makeCharacter(
  27553. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27554. {
  27555. front: {
  27556. height: math.unit(2, "feet"),
  27557. weight: math.unit(15, "kg"),
  27558. name: "Front",
  27559. image: {
  27560. source: "./media/characters/diamond-jones/front.svg",
  27561. extra: 727/723,
  27562. bottom: 46/773
  27563. }
  27564. },
  27565. },
  27566. [
  27567. {
  27568. name: "Normal",
  27569. height: math.unit(2, "feet"),
  27570. default: true
  27571. },
  27572. ]
  27573. ))
  27574. characterMakers.push(() => makeCharacter(
  27575. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27576. {
  27577. front: {
  27578. height: math.unit(3, "feet"),
  27579. weight: math.unit(30, "kg"),
  27580. name: "Front",
  27581. image: {
  27582. source: "./media/characters/sweet-bit/front.svg",
  27583. extra: 675 / 567,
  27584. bottom: 27.7 / 703
  27585. }
  27586. },
  27587. },
  27588. [
  27589. {
  27590. name: "Normal",
  27591. height: math.unit(3, "feet"),
  27592. default: true
  27593. },
  27594. ]
  27595. ))
  27596. characterMakers.push(() => makeCharacter(
  27597. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27598. {
  27599. side: {
  27600. height: math.unit(9.178, "feet"),
  27601. weight: math.unit(500, "lb"),
  27602. name: "Side",
  27603. image: {
  27604. source: "./media/characters/umbrazen/side.svg",
  27605. extra: 1730 / 1473,
  27606. bottom: 34.6 / 1765
  27607. }
  27608. },
  27609. },
  27610. [
  27611. {
  27612. name: "Normal",
  27613. height: math.unit(9.178, "feet"),
  27614. default: true
  27615. },
  27616. ]
  27617. ))
  27618. characterMakers.push(() => makeCharacter(
  27619. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27620. {
  27621. front: {
  27622. height: math.unit(10, "feet"),
  27623. weight: math.unit(750, "lb"),
  27624. name: "Front",
  27625. image: {
  27626. source: "./media/characters/arlist/front.svg",
  27627. extra: 961 / 778,
  27628. bottom: 6.2 / 986
  27629. }
  27630. },
  27631. },
  27632. [
  27633. {
  27634. name: "Normal",
  27635. height: math.unit(10, "feet"),
  27636. default: true
  27637. },
  27638. ]
  27639. ))
  27640. characterMakers.push(() => makeCharacter(
  27641. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27642. {
  27643. front: {
  27644. height: math.unit(5 + 1 / 12, "feet"),
  27645. weight: math.unit(110, "lb"),
  27646. name: "Front",
  27647. image: {
  27648. source: "./media/characters/aradel/front.svg",
  27649. extra: 324 / 303,
  27650. bottom: 3.6 / 329.4
  27651. }
  27652. },
  27653. },
  27654. [
  27655. {
  27656. name: "Normal",
  27657. height: math.unit(5 + 1 / 12, "feet"),
  27658. default: true
  27659. },
  27660. ]
  27661. ))
  27662. characterMakers.push(() => makeCharacter(
  27663. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27664. {
  27665. dressed: {
  27666. height: math.unit(3 + 8 / 12, "feet"),
  27667. weight: math.unit(50, "lb"),
  27668. name: "Dressed",
  27669. image: {
  27670. source: "./media/characters/serryn/dressed.svg",
  27671. extra: 1792 / 1656,
  27672. bottom: 43.5 / 1840
  27673. }
  27674. },
  27675. nude: {
  27676. height: math.unit(3 + 8 / 12, "feet"),
  27677. weight: math.unit(50, "lb"),
  27678. name: "Nude",
  27679. image: {
  27680. source: "./media/characters/serryn/nude.svg",
  27681. extra: 1792 / 1656,
  27682. bottom: 43.5 / 1840
  27683. }
  27684. },
  27685. },
  27686. [
  27687. {
  27688. name: "Normal",
  27689. height: math.unit(3 + 8 / 12, "feet"),
  27690. default: true
  27691. },
  27692. ]
  27693. ))
  27694. characterMakers.push(() => makeCharacter(
  27695. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27696. {
  27697. front: {
  27698. height: math.unit(7 + 10 / 12, "feet"),
  27699. weight: math.unit(255, "lb"),
  27700. name: "Front",
  27701. image: {
  27702. source: "./media/characters/xavier-thyme/front.svg",
  27703. extra: 3733 / 3642,
  27704. bottom: 131 / 3869
  27705. }
  27706. },
  27707. frontRaven: {
  27708. height: math.unit(7 + 10 / 12, "feet"),
  27709. weight: math.unit(255, "lb"),
  27710. name: "Front (Raven)",
  27711. image: {
  27712. source: "./media/characters/xavier-thyme/front-raven.svg",
  27713. extra: 4385 / 3642,
  27714. bottom: 131 / 4517
  27715. }
  27716. },
  27717. },
  27718. [
  27719. {
  27720. name: "Normal",
  27721. height: math.unit(7 + 10 / 12, "feet"),
  27722. default: true
  27723. },
  27724. ]
  27725. ))
  27726. characterMakers.push(() => makeCharacter(
  27727. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27728. {
  27729. front: {
  27730. height: math.unit(1.6, "m"),
  27731. weight: math.unit(50, "kg"),
  27732. name: "Front",
  27733. image: {
  27734. source: "./media/characters/kiki/front.svg",
  27735. extra: 4682 / 3610,
  27736. bottom: 115 / 4777
  27737. }
  27738. },
  27739. },
  27740. [
  27741. {
  27742. name: "Normal",
  27743. height: math.unit(1.6, "meters"),
  27744. default: true
  27745. },
  27746. ]
  27747. ))
  27748. characterMakers.push(() => makeCharacter(
  27749. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27750. {
  27751. front: {
  27752. height: math.unit(50, "m"),
  27753. weight: math.unit(500, "tonnes"),
  27754. name: "Front",
  27755. image: {
  27756. source: "./media/characters/ryoko/front.svg",
  27757. extra: 4632 / 3926,
  27758. bottom: 193 / 4823
  27759. }
  27760. },
  27761. },
  27762. [
  27763. {
  27764. name: "Normal",
  27765. height: math.unit(50, "meters"),
  27766. default: true
  27767. },
  27768. ]
  27769. ))
  27770. characterMakers.push(() => makeCharacter(
  27771. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27772. {
  27773. front: {
  27774. height: math.unit(30, "m"),
  27775. weight: math.unit(22, "tonnes"),
  27776. name: "Front",
  27777. image: {
  27778. source: "./media/characters/elio/front.svg",
  27779. extra: 4582 / 3720,
  27780. bottom: 236 / 4828
  27781. }
  27782. },
  27783. },
  27784. [
  27785. {
  27786. name: "Normal",
  27787. height: math.unit(30, "meters"),
  27788. default: true
  27789. },
  27790. ]
  27791. ))
  27792. characterMakers.push(() => makeCharacter(
  27793. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27794. {
  27795. front: {
  27796. height: math.unit(6 + 3 / 12, "feet"),
  27797. weight: math.unit(120, "lb"),
  27798. name: "Front",
  27799. image: {
  27800. source: "./media/characters/azura/front.svg",
  27801. extra: 1149 / 1135,
  27802. bottom: 45 / 1194
  27803. }
  27804. },
  27805. frontClothed: {
  27806. height: math.unit(6 + 3 / 12, "feet"),
  27807. weight: math.unit(120, "lb"),
  27808. name: "Front (Clothed)",
  27809. image: {
  27810. source: "./media/characters/azura/front-clothed.svg",
  27811. extra: 1149 / 1135,
  27812. bottom: 45 / 1194
  27813. }
  27814. },
  27815. },
  27816. [
  27817. {
  27818. name: "Normal",
  27819. height: math.unit(6 + 3 / 12, "feet"),
  27820. default: true
  27821. },
  27822. {
  27823. name: "Macro",
  27824. height: math.unit(20 + 6 / 12, "feet")
  27825. },
  27826. {
  27827. name: "Megamacro",
  27828. height: math.unit(12, "miles")
  27829. },
  27830. {
  27831. name: "Gigamacro",
  27832. height: math.unit(10000, "miles")
  27833. },
  27834. {
  27835. name: "Teramacro",
  27836. height: math.unit(900000, "miles")
  27837. },
  27838. ]
  27839. ))
  27840. characterMakers.push(() => makeCharacter(
  27841. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27842. {
  27843. front: {
  27844. height: math.unit(12, "feet"),
  27845. weight: math.unit(1, "ton"),
  27846. capacity: math.unit(660000, "gallons"),
  27847. name: "Front",
  27848. image: {
  27849. source: "./media/characters/zeus/front.svg",
  27850. extra: 5005 / 4717,
  27851. bottom: 363 / 5388
  27852. }
  27853. },
  27854. },
  27855. [
  27856. {
  27857. name: "Normal",
  27858. height: math.unit(12, "feet")
  27859. },
  27860. {
  27861. name: "Preferred Size",
  27862. height: math.unit(0.5, "miles"),
  27863. default: true
  27864. },
  27865. {
  27866. name: "Giga Horse",
  27867. height: math.unit(300, "miles")
  27868. },
  27869. {
  27870. name: "Riding Planets",
  27871. height: math.unit(30, "megameters")
  27872. },
  27873. {
  27874. name: "Cosmic Giant",
  27875. height: math.unit(3, "zettameters")
  27876. },
  27877. {
  27878. name: "Breeding God",
  27879. height: math.unit(9.92e22, "yottameters")
  27880. },
  27881. ]
  27882. ))
  27883. characterMakers.push(() => makeCharacter(
  27884. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27885. {
  27886. side: {
  27887. height: math.unit(9, "feet"),
  27888. weight: math.unit(1500, "kg"),
  27889. name: "Side",
  27890. image: {
  27891. source: "./media/characters/fang/side.svg",
  27892. extra: 924 / 866,
  27893. bottom: 47.5 / 972.3
  27894. }
  27895. },
  27896. },
  27897. [
  27898. {
  27899. name: "Normal",
  27900. height: math.unit(9, "feet"),
  27901. default: true
  27902. },
  27903. {
  27904. name: "Macro",
  27905. height: math.unit(75 + 6 / 12, "feet")
  27906. },
  27907. {
  27908. name: "Teramacro",
  27909. height: math.unit(50000, "miles")
  27910. },
  27911. ]
  27912. ))
  27913. characterMakers.push(() => makeCharacter(
  27914. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27915. {
  27916. front: {
  27917. height: math.unit(10, "feet"),
  27918. weight: math.unit(2, "tons"),
  27919. name: "Front",
  27920. image: {
  27921. source: "./media/characters/rekhit/front.svg",
  27922. extra: 2796 / 2590,
  27923. bottom: 225 / 3022
  27924. }
  27925. },
  27926. },
  27927. [
  27928. {
  27929. name: "Normal",
  27930. height: math.unit(10, "feet"),
  27931. default: true
  27932. },
  27933. {
  27934. name: "Macro",
  27935. height: math.unit(500, "feet")
  27936. },
  27937. ]
  27938. ))
  27939. characterMakers.push(() => makeCharacter(
  27940. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27941. {
  27942. front: {
  27943. height: math.unit(7 + 6.451 / 12, "feet"),
  27944. weight: math.unit(310, "lb"),
  27945. name: "Front",
  27946. image: {
  27947. source: "./media/characters/dahlia-verrick/front.svg",
  27948. extra: 1488 / 1365,
  27949. bottom: 6.2 / 1495
  27950. }
  27951. },
  27952. back: {
  27953. height: math.unit(7 + 6.451 / 12, "feet"),
  27954. weight: math.unit(310, "lb"),
  27955. name: "Back",
  27956. image: {
  27957. source: "./media/characters/dahlia-verrick/back.svg",
  27958. extra: 1472 / 1351,
  27959. bottom: 5.28 / 1477
  27960. }
  27961. },
  27962. frontBusiness: {
  27963. height: math.unit(7 + 6.451 / 12, "feet"),
  27964. weight: math.unit(200, "lb"),
  27965. name: "Front (Business)",
  27966. image: {
  27967. source: "./media/characters/dahlia-verrick/front-business.svg",
  27968. extra: 1478 / 1381,
  27969. bottom: 5.5 / 1484
  27970. }
  27971. },
  27972. frontCasual: {
  27973. height: math.unit(7 + 6.451 / 12, "feet"),
  27974. weight: math.unit(200, "lb"),
  27975. name: "Front (Casual)",
  27976. image: {
  27977. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27978. extra: 1478 / 1381,
  27979. bottom: 5.5 / 1484
  27980. }
  27981. },
  27982. },
  27983. [
  27984. {
  27985. name: "Travel-Sized",
  27986. height: math.unit(7.45, "inches")
  27987. },
  27988. {
  27989. name: "Normal",
  27990. height: math.unit(7 + 6.451 / 12, "feet"),
  27991. default: true
  27992. },
  27993. {
  27994. name: "Hitting the Town",
  27995. height: math.unit(37 + 8 / 12, "feet")
  27996. },
  27997. {
  27998. name: "Stomp in the Suburbs",
  27999. height: math.unit(964 + 9.728 / 12, "feet")
  28000. },
  28001. {
  28002. name: "Sit on the City",
  28003. height: math.unit(61747 + 10.592 / 12, "feet")
  28004. },
  28005. {
  28006. name: "Glomp the Globe",
  28007. height: math.unit(252919327 + 4.832 / 12, "feet")
  28008. },
  28009. ]
  28010. ))
  28011. characterMakers.push(() => makeCharacter(
  28012. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28013. {
  28014. front: {
  28015. height: math.unit(6 + 4 / 12, "feet"),
  28016. weight: math.unit(320, "lb"),
  28017. name: "Front",
  28018. image: {
  28019. source: "./media/characters/balina-mahigan/front.svg",
  28020. extra: 447 / 428,
  28021. bottom: 18 / 466
  28022. }
  28023. },
  28024. back: {
  28025. height: math.unit(6 + 4 / 12, "feet"),
  28026. weight: math.unit(320, "lb"),
  28027. name: "Back",
  28028. image: {
  28029. source: "./media/characters/balina-mahigan/back.svg",
  28030. extra: 445 / 428,
  28031. bottom: 4.07 / 448
  28032. }
  28033. },
  28034. arm: {
  28035. height: math.unit(1.88, "feet"),
  28036. name: "Arm",
  28037. image: {
  28038. source: "./media/characters/balina-mahigan/arm.svg"
  28039. }
  28040. },
  28041. backPort: {
  28042. height: math.unit(0.685, "feet"),
  28043. name: "Back Port",
  28044. image: {
  28045. source: "./media/characters/balina-mahigan/back-port.svg"
  28046. }
  28047. },
  28048. hoofpaw: {
  28049. height: math.unit(1.41, "feet"),
  28050. name: "Hoofpaw",
  28051. image: {
  28052. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28053. }
  28054. },
  28055. leftHandBack: {
  28056. height: math.unit(0.938, "feet"),
  28057. name: "Left Hand (Back)",
  28058. image: {
  28059. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28060. }
  28061. },
  28062. leftHandFront: {
  28063. height: math.unit(0.938, "feet"),
  28064. name: "Left Hand (Front)",
  28065. image: {
  28066. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28067. }
  28068. },
  28069. rightHandBack: {
  28070. height: math.unit(0.95, "feet"),
  28071. name: "Right Hand (Back)",
  28072. image: {
  28073. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28074. }
  28075. },
  28076. rightHandFront: {
  28077. height: math.unit(0.95, "feet"),
  28078. name: "Right Hand (Front)",
  28079. image: {
  28080. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28081. }
  28082. },
  28083. },
  28084. [
  28085. {
  28086. name: "Normal",
  28087. height: math.unit(6 + 4 / 12, "feet"),
  28088. default: true
  28089. },
  28090. ]
  28091. ))
  28092. characterMakers.push(() => makeCharacter(
  28093. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28094. {
  28095. front: {
  28096. height: math.unit(6, "feet"),
  28097. weight: math.unit(320, "lb"),
  28098. name: "Front",
  28099. image: {
  28100. source: "./media/characters/balina-mejeri/front.svg",
  28101. extra: 517 / 488,
  28102. bottom: 44.2 / 561
  28103. }
  28104. },
  28105. },
  28106. [
  28107. {
  28108. name: "Normal",
  28109. height: math.unit(6 + 4 / 12, "feet")
  28110. },
  28111. {
  28112. name: "Business",
  28113. height: math.unit(155, "feet"),
  28114. default: true
  28115. },
  28116. ]
  28117. ))
  28118. characterMakers.push(() => makeCharacter(
  28119. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28120. {
  28121. kneeling: {
  28122. height: math.unit(6 + 4 / 12, "feet"),
  28123. weight: math.unit(300 * 20, "lb"),
  28124. name: "Kneeling",
  28125. image: {
  28126. source: "./media/characters/balbarian/kneeling.svg",
  28127. extra: 922 / 862,
  28128. bottom: 42.4 / 965
  28129. }
  28130. },
  28131. },
  28132. [
  28133. {
  28134. name: "Normal",
  28135. height: math.unit(6 + 4 / 12, "feet")
  28136. },
  28137. {
  28138. name: "Treasured",
  28139. height: math.unit(18 + 9 / 12, "feet"),
  28140. default: true
  28141. },
  28142. {
  28143. name: "Macro",
  28144. height: math.unit(900, "feet")
  28145. },
  28146. ]
  28147. ))
  28148. characterMakers.push(() => makeCharacter(
  28149. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28150. {
  28151. front: {
  28152. height: math.unit(6 + 4 / 12, "feet"),
  28153. weight: math.unit(325, "lb"),
  28154. name: "Front",
  28155. image: {
  28156. source: "./media/characters/balina-amarini/front.svg",
  28157. extra: 415 / 403,
  28158. bottom: 19 / 433.4
  28159. }
  28160. },
  28161. back: {
  28162. height: math.unit(6 + 4 / 12, "feet"),
  28163. weight: math.unit(325, "lb"),
  28164. name: "Back",
  28165. image: {
  28166. source: "./media/characters/balina-amarini/back.svg",
  28167. extra: 415 / 403,
  28168. bottom: 13.5 / 432
  28169. }
  28170. },
  28171. overdrive: {
  28172. height: math.unit(6 + 4 / 12, "feet"),
  28173. weight: math.unit(400, "lb"),
  28174. name: "Overdrive",
  28175. image: {
  28176. source: "./media/characters/balina-amarini/overdrive.svg",
  28177. extra: 269 / 259,
  28178. bottom: 12 / 282
  28179. }
  28180. },
  28181. },
  28182. [
  28183. {
  28184. name: "Boom",
  28185. height: math.unit(9 + 10 / 12, "feet"),
  28186. default: true
  28187. },
  28188. {
  28189. name: "Macro",
  28190. height: math.unit(280, "feet")
  28191. },
  28192. ]
  28193. ))
  28194. characterMakers.push(() => makeCharacter(
  28195. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28196. {
  28197. goddess: {
  28198. height: math.unit(600, "feet"),
  28199. weight: math.unit(2000000, "tons"),
  28200. name: "Goddess",
  28201. image: {
  28202. source: "./media/characters/lady-kubwa/goddess.svg",
  28203. extra: 1240.5 / 1223,
  28204. bottom: 22 / 1263
  28205. }
  28206. },
  28207. goddesser: {
  28208. height: math.unit(900, "feet"),
  28209. weight: math.unit(20000000, "lb"),
  28210. name: "Goddess-er",
  28211. image: {
  28212. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28213. extra: 899 / 888,
  28214. bottom: 12.6 / 912
  28215. }
  28216. },
  28217. },
  28218. [
  28219. {
  28220. name: "Macro",
  28221. height: math.unit(600, "feet"),
  28222. default: true
  28223. },
  28224. {
  28225. name: "Megamacro",
  28226. height: math.unit(250, "miles")
  28227. },
  28228. ]
  28229. ))
  28230. characterMakers.push(() => makeCharacter(
  28231. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28232. {
  28233. front: {
  28234. height: math.unit(7 + 7 / 12, "feet"),
  28235. weight: math.unit(250, "lb"),
  28236. name: "Front",
  28237. image: {
  28238. source: "./media/characters/tala-grovehorn/front.svg",
  28239. extra: 2636 / 2525,
  28240. bottom: 147 / 2781
  28241. }
  28242. },
  28243. back: {
  28244. height: math.unit(7 + 7 / 12, "feet"),
  28245. weight: math.unit(250, "lb"),
  28246. name: "Back",
  28247. image: {
  28248. source: "./media/characters/tala-grovehorn/back.svg",
  28249. extra: 2635 / 2539,
  28250. bottom: 100 / 2732.8
  28251. }
  28252. },
  28253. mouth: {
  28254. height: math.unit(1.15, "feet"),
  28255. name: "Mouth",
  28256. image: {
  28257. source: "./media/characters/tala-grovehorn/mouth.svg"
  28258. }
  28259. },
  28260. dick: {
  28261. height: math.unit(2.36, "feet"),
  28262. name: "Dick",
  28263. image: {
  28264. source: "./media/characters/tala-grovehorn/dick.svg"
  28265. }
  28266. },
  28267. slit: {
  28268. height: math.unit(0.61, "feet"),
  28269. name: "Slit",
  28270. image: {
  28271. source: "./media/characters/tala-grovehorn/slit.svg"
  28272. }
  28273. },
  28274. },
  28275. [
  28276. ]
  28277. ))
  28278. characterMakers.push(() => makeCharacter(
  28279. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28280. {
  28281. front: {
  28282. height: math.unit(7 + 7 / 12, "feet"),
  28283. weight: math.unit(225, "lb"),
  28284. name: "Front",
  28285. image: {
  28286. source: "./media/characters/epona/front.svg",
  28287. extra: 2445 / 2290,
  28288. bottom: 251 / 2696
  28289. }
  28290. },
  28291. back: {
  28292. height: math.unit(7 + 7 / 12, "feet"),
  28293. weight: math.unit(225, "lb"),
  28294. name: "Back",
  28295. image: {
  28296. source: "./media/characters/epona/back.svg",
  28297. extra: 2546 / 2408,
  28298. bottom: 44 / 2589
  28299. }
  28300. },
  28301. genitals: {
  28302. height: math.unit(1.5, "feet"),
  28303. name: "Genitals",
  28304. image: {
  28305. source: "./media/characters/epona/genitals.svg"
  28306. }
  28307. },
  28308. },
  28309. [
  28310. {
  28311. name: "Normal",
  28312. height: math.unit(7 + 7 / 12, "feet"),
  28313. default: true
  28314. },
  28315. ]
  28316. ))
  28317. characterMakers.push(() => makeCharacter(
  28318. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28319. {
  28320. front: {
  28321. height: math.unit(7, "feet"),
  28322. weight: math.unit(518, "lb"),
  28323. name: "Front",
  28324. image: {
  28325. source: "./media/characters/avia-bloodbourn/front.svg",
  28326. extra: 1466 / 1350,
  28327. bottom: 65 / 1527
  28328. }
  28329. },
  28330. },
  28331. [
  28332. ]
  28333. ))
  28334. characterMakers.push(() => makeCharacter(
  28335. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28336. {
  28337. front: {
  28338. height: math.unit(9.35, "feet"),
  28339. weight: math.unit(600, "lb"),
  28340. name: "Front",
  28341. image: {
  28342. source: "./media/characters/amera/front.svg",
  28343. extra: 891 / 818,
  28344. bottom: 30 / 922.7
  28345. }
  28346. },
  28347. back: {
  28348. height: math.unit(9.35, "feet"),
  28349. weight: math.unit(600, "lb"),
  28350. name: "Back",
  28351. image: {
  28352. source: "./media/characters/amera/back.svg",
  28353. extra: 876 / 824,
  28354. bottom: 6.8 / 884
  28355. }
  28356. },
  28357. dick: {
  28358. height: math.unit(2.14, "feet"),
  28359. name: "Dick",
  28360. image: {
  28361. source: "./media/characters/amera/dick.svg"
  28362. }
  28363. },
  28364. },
  28365. [
  28366. {
  28367. name: "Normal",
  28368. height: math.unit(9.35, "feet"),
  28369. default: true
  28370. },
  28371. ]
  28372. ))
  28373. characterMakers.push(() => makeCharacter(
  28374. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28375. {
  28376. kneeling: {
  28377. height: math.unit(3 + 4 / 12, "feet"),
  28378. weight: math.unit(90, "lb"),
  28379. name: "Kneeling",
  28380. image: {
  28381. source: "./media/characters/rosewen/kneeling.svg",
  28382. extra: 1835 / 1571,
  28383. bottom: 27.7 / 1862
  28384. }
  28385. },
  28386. },
  28387. [
  28388. {
  28389. name: "Normal",
  28390. height: math.unit(3 + 4 / 12, "feet"),
  28391. default: true
  28392. },
  28393. ]
  28394. ))
  28395. characterMakers.push(() => makeCharacter(
  28396. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28397. {
  28398. front: {
  28399. height: math.unit(5 + 10 / 12, "feet"),
  28400. weight: math.unit(200, "lb"),
  28401. name: "Front",
  28402. image: {
  28403. source: "./media/characters/sabah/front.svg",
  28404. extra: 849 / 763,
  28405. bottom: 33.9 / 881
  28406. }
  28407. },
  28408. },
  28409. [
  28410. {
  28411. name: "Normal",
  28412. height: math.unit(5 + 10 / 12, "feet"),
  28413. default: true
  28414. },
  28415. ]
  28416. ))
  28417. characterMakers.push(() => makeCharacter(
  28418. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28419. {
  28420. front: {
  28421. height: math.unit(3 + 5 / 12, "feet"),
  28422. weight: math.unit(40, "kg"),
  28423. name: "Front",
  28424. image: {
  28425. source: "./media/characters/purple-flame/front.svg",
  28426. extra: 1577 / 1412,
  28427. bottom: 97 / 1694
  28428. }
  28429. },
  28430. frontDressed: {
  28431. height: math.unit(3 + 5 / 12, "feet"),
  28432. weight: math.unit(40, "kg"),
  28433. name: "Front (Dressed)",
  28434. image: {
  28435. source: "./media/characters/purple-flame/front-dressed.svg",
  28436. extra: 1577 / 1412,
  28437. bottom: 97 / 1694
  28438. }
  28439. },
  28440. headphones: {
  28441. height: math.unit(0.85, "feet"),
  28442. name: "Headphones",
  28443. image: {
  28444. source: "./media/characters/purple-flame/headphones.svg"
  28445. }
  28446. },
  28447. },
  28448. [
  28449. {
  28450. name: "Really Small",
  28451. height: math.unit(5, "cm")
  28452. },
  28453. {
  28454. name: "Micro",
  28455. height: math.unit(1 + 5 / 12, "feet")
  28456. },
  28457. {
  28458. name: "Normal",
  28459. height: math.unit(3 + 5 / 12, "feet"),
  28460. default: true
  28461. },
  28462. {
  28463. name: "Minimacro",
  28464. height: math.unit(125, "feet")
  28465. },
  28466. {
  28467. name: "Macro",
  28468. height: math.unit(0.5, "miles")
  28469. },
  28470. {
  28471. name: "Megamacro",
  28472. height: math.unit(50, "miles")
  28473. },
  28474. {
  28475. name: "Gigantic",
  28476. height: math.unit(750, "miles")
  28477. },
  28478. {
  28479. name: "Planetary",
  28480. height: math.unit(15000, "miles")
  28481. },
  28482. ]
  28483. ))
  28484. characterMakers.push(() => makeCharacter(
  28485. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28486. {
  28487. front: {
  28488. height: math.unit(14, "feet"),
  28489. weight: math.unit(959, "lb"),
  28490. name: "Front",
  28491. image: {
  28492. source: "./media/characters/arsenal/front.svg",
  28493. extra: 2357 / 2157,
  28494. bottom: 93 / 2458
  28495. }
  28496. },
  28497. },
  28498. [
  28499. {
  28500. name: "Normal",
  28501. height: math.unit(14, "feet"),
  28502. default: true
  28503. },
  28504. ]
  28505. ))
  28506. characterMakers.push(() => makeCharacter(
  28507. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28508. {
  28509. front: {
  28510. height: math.unit(6, "feet"),
  28511. weight: math.unit(150, "lb"),
  28512. name: "Front",
  28513. image: {
  28514. source: "./media/characters/adira/front.svg",
  28515. extra: 1078 / 1029,
  28516. bottom: 87 / 1166
  28517. }
  28518. },
  28519. },
  28520. [
  28521. {
  28522. name: "Micro",
  28523. height: math.unit(4, "inches"),
  28524. default: true
  28525. },
  28526. {
  28527. name: "Macro",
  28528. height: math.unit(50, "feet")
  28529. },
  28530. ]
  28531. ))
  28532. characterMakers.push(() => makeCharacter(
  28533. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28534. {
  28535. front: {
  28536. height: math.unit(16, "feet"),
  28537. weight: math.unit(1000, "lb"),
  28538. name: "Front",
  28539. image: {
  28540. source: "./media/characters/grim/front.svg",
  28541. extra: 622 / 614,
  28542. bottom: 18.1 / 642
  28543. }
  28544. },
  28545. back: {
  28546. height: math.unit(16, "feet"),
  28547. weight: math.unit(1000, "lb"),
  28548. name: "Back",
  28549. image: {
  28550. source: "./media/characters/grim/back.svg",
  28551. extra: 610.6 / 602,
  28552. bottom: 40.8 / 652
  28553. }
  28554. },
  28555. hunched: {
  28556. height: math.unit(9.75, "feet"),
  28557. weight: math.unit(1000, "lb"),
  28558. name: "Hunched",
  28559. image: {
  28560. source: "./media/characters/grim/hunched.svg",
  28561. extra: 304 / 297,
  28562. bottom: 35.4 / 394
  28563. }
  28564. },
  28565. },
  28566. [
  28567. {
  28568. name: "Normal",
  28569. height: math.unit(16, "feet"),
  28570. default: true
  28571. },
  28572. ]
  28573. ))
  28574. characterMakers.push(() => makeCharacter(
  28575. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28576. {
  28577. front: {
  28578. height: math.unit(2.3, "meters"),
  28579. weight: math.unit(300, "lb"),
  28580. name: "Front",
  28581. image: {
  28582. source: "./media/characters/sinja/front-sfw.svg",
  28583. extra: 1393 / 1294,
  28584. bottom: 70 / 1463
  28585. }
  28586. },
  28587. frontNsfw: {
  28588. height: math.unit(2.3, "meters"),
  28589. weight: math.unit(300, "lb"),
  28590. name: "Front (NSFW)",
  28591. image: {
  28592. source: "./media/characters/sinja/front-nsfw.svg",
  28593. extra: 1393 / 1294,
  28594. bottom: 70 / 1463
  28595. }
  28596. },
  28597. back: {
  28598. height: math.unit(2.3, "meters"),
  28599. weight: math.unit(300, "lb"),
  28600. name: "Back",
  28601. image: {
  28602. source: "./media/characters/sinja/back.svg",
  28603. extra: 1393 / 1294,
  28604. bottom: 70 / 1463
  28605. }
  28606. },
  28607. head: {
  28608. height: math.unit(1.771, "feet"),
  28609. name: "Head",
  28610. image: {
  28611. source: "./media/characters/sinja/head.svg"
  28612. }
  28613. },
  28614. slit: {
  28615. height: math.unit(0.8, "feet"),
  28616. name: "Slit",
  28617. image: {
  28618. source: "./media/characters/sinja/slit.svg"
  28619. }
  28620. },
  28621. },
  28622. [
  28623. {
  28624. name: "Normal",
  28625. height: math.unit(2.3, "meters")
  28626. },
  28627. {
  28628. name: "Macro",
  28629. height: math.unit(91, "meters"),
  28630. default: true
  28631. },
  28632. {
  28633. name: "Megamacro",
  28634. height: math.unit(91440, "meters")
  28635. },
  28636. {
  28637. name: "Gigamacro",
  28638. height: math.unit(60960000, "meters")
  28639. },
  28640. {
  28641. name: "Teramacro",
  28642. height: math.unit(9144000000, "meters")
  28643. },
  28644. ]
  28645. ))
  28646. characterMakers.push(() => makeCharacter(
  28647. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28648. {
  28649. front: {
  28650. height: math.unit(1.7, "meters"),
  28651. weight: math.unit(130, "lb"),
  28652. name: "Front",
  28653. image: {
  28654. source: "./media/characters/kyu/front.svg",
  28655. extra: 415 / 395,
  28656. bottom: 5 / 420
  28657. }
  28658. },
  28659. head: {
  28660. height: math.unit(1.75, "feet"),
  28661. name: "Head",
  28662. image: {
  28663. source: "./media/characters/kyu/head.svg"
  28664. }
  28665. },
  28666. foot: {
  28667. height: math.unit(0.81, "feet"),
  28668. name: "Foot",
  28669. image: {
  28670. source: "./media/characters/kyu/foot.svg"
  28671. }
  28672. },
  28673. },
  28674. [
  28675. {
  28676. name: "Normal",
  28677. height: math.unit(1.7, "meters")
  28678. },
  28679. {
  28680. name: "Macro",
  28681. height: math.unit(131, "feet"),
  28682. default: true
  28683. },
  28684. {
  28685. name: "Megamacro",
  28686. height: math.unit(91440, "meters")
  28687. },
  28688. {
  28689. name: "Gigamacro",
  28690. height: math.unit(60960000, "meters")
  28691. },
  28692. {
  28693. name: "Teramacro",
  28694. height: math.unit(9144000000, "meters")
  28695. },
  28696. ]
  28697. ))
  28698. characterMakers.push(() => makeCharacter(
  28699. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28700. {
  28701. front: {
  28702. height: math.unit(7 + 1 / 12, "feet"),
  28703. weight: math.unit(250, "lb"),
  28704. name: "Front",
  28705. image: {
  28706. source: "./media/characters/joey/front.svg",
  28707. extra: 1791 / 1537,
  28708. bottom: 28 / 1816
  28709. }
  28710. },
  28711. },
  28712. [
  28713. {
  28714. name: "Micro",
  28715. height: math.unit(3, "inches")
  28716. },
  28717. {
  28718. name: "Normal",
  28719. height: math.unit(7 + 1 / 12, "feet"),
  28720. default: true
  28721. },
  28722. ]
  28723. ))
  28724. characterMakers.push(() => makeCharacter(
  28725. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28726. {
  28727. front: {
  28728. height: math.unit(165, "cm"),
  28729. weight: math.unit(140, "lb"),
  28730. name: "Front",
  28731. image: {
  28732. source: "./media/characters/sam-evans/front.svg",
  28733. extra: 3417 / 3230,
  28734. bottom: 41.3 / 3417
  28735. }
  28736. },
  28737. frontSixTails: {
  28738. height: math.unit(165, "cm"),
  28739. weight: math.unit(140, "lb"),
  28740. name: "Front-six-tails",
  28741. image: {
  28742. source: "./media/characters/sam-evans/front-six-tails.svg",
  28743. extra: 3417 / 3230,
  28744. bottom: 41.3 / 3417
  28745. }
  28746. },
  28747. back: {
  28748. height: math.unit(165, "cm"),
  28749. weight: math.unit(140, "lb"),
  28750. name: "Back",
  28751. image: {
  28752. source: "./media/characters/sam-evans/back.svg",
  28753. extra: 3227 / 3032,
  28754. bottom: 6.8 / 3234
  28755. }
  28756. },
  28757. face: {
  28758. height: math.unit(0.68, "feet"),
  28759. name: "Face",
  28760. image: {
  28761. source: "./media/characters/sam-evans/face.svg"
  28762. }
  28763. },
  28764. },
  28765. [
  28766. {
  28767. name: "Normal",
  28768. height: math.unit(165, "cm"),
  28769. default: true
  28770. },
  28771. {
  28772. name: "Macro",
  28773. height: math.unit(100, "meters")
  28774. },
  28775. {
  28776. name: "Macro+",
  28777. height: math.unit(800, "meters")
  28778. },
  28779. {
  28780. name: "Macro++",
  28781. height: math.unit(3, "km")
  28782. },
  28783. {
  28784. name: "Macro+++",
  28785. height: math.unit(30, "km")
  28786. },
  28787. ]
  28788. ))
  28789. characterMakers.push(() => makeCharacter(
  28790. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28791. {
  28792. front: {
  28793. height: math.unit(10, "feet"),
  28794. weight: math.unit(750, "lb"),
  28795. name: "Front",
  28796. image: {
  28797. source: "./media/characters/juliet-a/front.svg",
  28798. extra: 1766 / 1720,
  28799. bottom: 43 / 1809
  28800. }
  28801. },
  28802. back: {
  28803. height: math.unit(10, "feet"),
  28804. weight: math.unit(750, "lb"),
  28805. name: "Back",
  28806. image: {
  28807. source: "./media/characters/juliet-a/back.svg",
  28808. extra: 1781 / 1734,
  28809. bottom: 35 / 1810,
  28810. }
  28811. },
  28812. },
  28813. [
  28814. {
  28815. name: "Normal",
  28816. height: math.unit(10, "feet"),
  28817. default: true
  28818. },
  28819. {
  28820. name: "Dragon Form",
  28821. height: math.unit(250, "feet")
  28822. },
  28823. {
  28824. name: "Macro",
  28825. height: math.unit(1000, "feet")
  28826. },
  28827. {
  28828. name: "Megamacro",
  28829. height: math.unit(10000, "feet")
  28830. }
  28831. ]
  28832. ))
  28833. characterMakers.push(() => makeCharacter(
  28834. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28835. {
  28836. regular: {
  28837. height: math.unit(7 + 3 / 12, "feet"),
  28838. weight: math.unit(260, "lb"),
  28839. name: "Regular",
  28840. image: {
  28841. source: "./media/characters/wild/regular.svg",
  28842. extra: 97.45 / 92,
  28843. bottom: 6.8 / 104.3
  28844. }
  28845. },
  28846. biggums: {
  28847. height: math.unit(8 + 6 / 12, "feet"),
  28848. weight: math.unit(425, "lb"),
  28849. name: "Biggums",
  28850. image: {
  28851. source: "./media/characters/wild/biggums.svg",
  28852. extra: 97.45 / 92,
  28853. bottom: 7.5 / 132.34
  28854. }
  28855. },
  28856. mawRegular: {
  28857. height: math.unit(1.24, "feet"),
  28858. name: "Maw (Regular)",
  28859. image: {
  28860. source: "./media/characters/wild/maw.svg"
  28861. }
  28862. },
  28863. mawBiggums: {
  28864. height: math.unit(1.47, "feet"),
  28865. name: "Maw (Biggums)",
  28866. image: {
  28867. source: "./media/characters/wild/maw.svg"
  28868. }
  28869. },
  28870. },
  28871. [
  28872. {
  28873. name: "Normal",
  28874. height: math.unit(7 + 3 / 12, "feet"),
  28875. default: true
  28876. },
  28877. ]
  28878. ))
  28879. characterMakers.push(() => makeCharacter(
  28880. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28881. {
  28882. front: {
  28883. height: math.unit(2.5, "meters"),
  28884. weight: math.unit(200, "kg"),
  28885. name: "Front",
  28886. image: {
  28887. source: "./media/characters/vidar/front.svg",
  28888. extra: 2994 / 2795,
  28889. bottom: 56 / 3061
  28890. }
  28891. },
  28892. back: {
  28893. height: math.unit(2.5, "meters"),
  28894. weight: math.unit(200, "kg"),
  28895. name: "Back",
  28896. image: {
  28897. source: "./media/characters/vidar/back.svg",
  28898. extra: 3131 / 2928,
  28899. bottom: 13.5 / 3141.5
  28900. }
  28901. },
  28902. feral: {
  28903. height: math.unit(2.5, "meters"),
  28904. weight: math.unit(2000, "kg"),
  28905. name: "Feral",
  28906. image: {
  28907. source: "./media/characters/vidar/feral.svg",
  28908. extra: 2790 / 1765,
  28909. bottom: 6 / 2796
  28910. }
  28911. },
  28912. },
  28913. [
  28914. {
  28915. name: "Normal",
  28916. height: math.unit(2.5, "meters"),
  28917. default: true
  28918. },
  28919. {
  28920. name: "Macro",
  28921. height: math.unit(100, "meters")
  28922. },
  28923. ]
  28924. ))
  28925. characterMakers.push(() => makeCharacter(
  28926. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28927. {
  28928. front: {
  28929. height: math.unit(5 + 9 / 12, "feet"),
  28930. weight: math.unit(120, "lb"),
  28931. name: "Front",
  28932. image: {
  28933. source: "./media/characters/ash/front.svg",
  28934. extra: 2189 / 1961,
  28935. bottom: 5.2 / 2194
  28936. }
  28937. },
  28938. },
  28939. [
  28940. {
  28941. name: "Normal",
  28942. height: math.unit(5 + 9 / 12, "feet"),
  28943. default: true
  28944. },
  28945. ]
  28946. ))
  28947. characterMakers.push(() => makeCharacter(
  28948. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28949. {
  28950. front: {
  28951. height: math.unit(9, "feet"),
  28952. weight: math.unit(10000, "lb"),
  28953. name: "Front",
  28954. image: {
  28955. source: "./media/characters/gygabite/front.svg",
  28956. bottom: 31.7 / 537.8,
  28957. extra: 505 / 370
  28958. }
  28959. },
  28960. },
  28961. [
  28962. {
  28963. name: "Normal",
  28964. height: math.unit(9, "feet"),
  28965. default: true
  28966. },
  28967. ]
  28968. ))
  28969. characterMakers.push(() => makeCharacter(
  28970. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28971. {
  28972. front: {
  28973. height: math.unit(12, "feet"),
  28974. weight: math.unit(4000, "lb"),
  28975. name: "Front",
  28976. image: {
  28977. source: "./media/characters/p0tat0/front.svg",
  28978. extra: 1065 / 921,
  28979. bottom: 55.7 / 1121.25
  28980. }
  28981. },
  28982. },
  28983. [
  28984. {
  28985. name: "Normal",
  28986. height: math.unit(12, "feet"),
  28987. default: true
  28988. },
  28989. ]
  28990. ))
  28991. characterMakers.push(() => makeCharacter(
  28992. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28993. {
  28994. side: {
  28995. height: math.unit(6.5, "feet"),
  28996. weight: math.unit(800, "lb"),
  28997. name: "Side",
  28998. image: {
  28999. source: "./media/characters/dusk/side.svg",
  29000. extra: 615 / 373,
  29001. bottom: 53 / 664
  29002. }
  29003. },
  29004. sitting: {
  29005. height: math.unit(7, "feet"),
  29006. weight: math.unit(800, "lb"),
  29007. name: "Sitting",
  29008. image: {
  29009. source: "./media/characters/dusk/sitting.svg",
  29010. extra: 753 / 425,
  29011. bottom: 33 / 774
  29012. }
  29013. },
  29014. head: {
  29015. height: math.unit(6.1, "feet"),
  29016. name: "Head",
  29017. image: {
  29018. source: "./media/characters/dusk/head.svg"
  29019. }
  29020. },
  29021. },
  29022. [
  29023. {
  29024. name: "Normal",
  29025. height: math.unit(7, "feet"),
  29026. default: true
  29027. },
  29028. ]
  29029. ))
  29030. characterMakers.push(() => makeCharacter(
  29031. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29032. {
  29033. front: {
  29034. height: math.unit(15, "feet"),
  29035. weight: math.unit(7000, "lb"),
  29036. name: "Front",
  29037. image: {
  29038. source: "./media/characters/jay-direwolf/front.svg",
  29039. extra: 1810 / 1732,
  29040. bottom: 66 / 1892
  29041. }
  29042. },
  29043. },
  29044. [
  29045. {
  29046. name: "Normal",
  29047. height: math.unit(15, "feet"),
  29048. default: true
  29049. },
  29050. ]
  29051. ))
  29052. characterMakers.push(() => makeCharacter(
  29053. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29054. {
  29055. front: {
  29056. height: math.unit(4 + 9 / 12, "feet"),
  29057. weight: math.unit(130, "lb"),
  29058. name: "Front",
  29059. image: {
  29060. source: "./media/characters/anchovie/front.svg",
  29061. extra: 382 / 350,
  29062. bottom: 25 / 409
  29063. }
  29064. },
  29065. back: {
  29066. height: math.unit(4 + 9 / 12, "feet"),
  29067. weight: math.unit(130, "lb"),
  29068. name: "Back",
  29069. image: {
  29070. source: "./media/characters/anchovie/back.svg",
  29071. extra: 385 / 352,
  29072. bottom: 16.6 / 402
  29073. }
  29074. },
  29075. frontDressed: {
  29076. height: math.unit(4 + 9 / 12, "feet"),
  29077. weight: math.unit(130, "lb"),
  29078. name: "Front (Dressed)",
  29079. image: {
  29080. source: "./media/characters/anchovie/front-dressed.svg",
  29081. extra: 382 / 350,
  29082. bottom: 25 / 409
  29083. }
  29084. },
  29085. backDressed: {
  29086. height: math.unit(4 + 9 / 12, "feet"),
  29087. weight: math.unit(130, "lb"),
  29088. name: "Back (Dressed)",
  29089. image: {
  29090. source: "./media/characters/anchovie/back-dressed.svg",
  29091. extra: 385 / 352,
  29092. bottom: 16.6 / 402
  29093. }
  29094. },
  29095. },
  29096. [
  29097. {
  29098. name: "Micro",
  29099. height: math.unit(6.4, "inches")
  29100. },
  29101. {
  29102. name: "Normal",
  29103. height: math.unit(4 + 9 / 12, "feet"),
  29104. default: true
  29105. },
  29106. ]
  29107. ))
  29108. characterMakers.push(() => makeCharacter(
  29109. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29110. {
  29111. front: {
  29112. height: math.unit(2, "meters"),
  29113. weight: math.unit(180, "lb"),
  29114. name: "Front",
  29115. image: {
  29116. source: "./media/characters/acidrenamon/front.svg",
  29117. extra: 987 / 890,
  29118. bottom: 22.8 / 1009
  29119. }
  29120. },
  29121. back: {
  29122. height: math.unit(2, "meters"),
  29123. weight: math.unit(180, "lb"),
  29124. name: "Back",
  29125. image: {
  29126. source: "./media/characters/acidrenamon/back.svg",
  29127. extra: 983 / 891,
  29128. bottom: 8.4 / 992
  29129. }
  29130. },
  29131. head: {
  29132. height: math.unit(1.92, "feet"),
  29133. name: "Head",
  29134. image: {
  29135. source: "./media/characters/acidrenamon/head.svg"
  29136. }
  29137. },
  29138. rump: {
  29139. height: math.unit(1.72, "feet"),
  29140. name: "Rump",
  29141. image: {
  29142. source: "./media/characters/acidrenamon/rump.svg"
  29143. }
  29144. },
  29145. tail: {
  29146. height: math.unit(4.2, "feet"),
  29147. name: "Tail",
  29148. image: {
  29149. source: "./media/characters/acidrenamon/tail.svg"
  29150. }
  29151. },
  29152. },
  29153. [
  29154. {
  29155. name: "Normal",
  29156. height: math.unit(2, "meters"),
  29157. default: true
  29158. },
  29159. {
  29160. name: "Minimacro",
  29161. height: math.unit(7, "meters")
  29162. },
  29163. {
  29164. name: "Macro",
  29165. height: math.unit(200, "meters")
  29166. },
  29167. {
  29168. name: "Gigamacro",
  29169. height: math.unit(0.2, "earths")
  29170. },
  29171. ]
  29172. ))
  29173. characterMakers.push(() => makeCharacter(
  29174. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29175. {
  29176. front: {
  29177. height: math.unit(152, "feet"),
  29178. name: "Front",
  29179. image: {
  29180. source: "./media/characters/kenzie-lee/front.svg",
  29181. extra: 1869/1774,
  29182. bottom: 128/1997
  29183. }
  29184. },
  29185. side: {
  29186. height: math.unit(86, "feet"),
  29187. name: "Side",
  29188. image: {
  29189. source: "./media/characters/kenzie-lee/side.svg",
  29190. extra: 930/815,
  29191. bottom: 177/1107
  29192. }
  29193. },
  29194. paw: {
  29195. height: math.unit(15, "feet"),
  29196. name: "Paw",
  29197. image: {
  29198. source: "./media/characters/kenzie-lee/paw.svg"
  29199. }
  29200. },
  29201. },
  29202. [
  29203. {
  29204. name: "Kenzie Flea",
  29205. height: math.unit(2, "mm"),
  29206. default: true
  29207. },
  29208. {
  29209. name: "Micro",
  29210. height: math.unit(2, "inches")
  29211. },
  29212. {
  29213. name: "Normal",
  29214. height: math.unit(152, "feet")
  29215. },
  29216. {
  29217. name: "Megamacro",
  29218. height: math.unit(7, "miles")
  29219. },
  29220. {
  29221. name: "Gigamacro",
  29222. height: math.unit(8000, "miles")
  29223. },
  29224. ]
  29225. ))
  29226. characterMakers.push(() => makeCharacter(
  29227. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29228. {
  29229. front: {
  29230. height: math.unit(6, "feet"),
  29231. name: "Front",
  29232. image: {
  29233. source: "./media/characters/withers/front.svg",
  29234. extra: 1935/1760,
  29235. bottom: 72/2007
  29236. }
  29237. },
  29238. back: {
  29239. height: math.unit(6, "feet"),
  29240. name: "Back",
  29241. image: {
  29242. source: "./media/characters/withers/back.svg",
  29243. extra: 1944/1792,
  29244. bottom: 12/1956
  29245. }
  29246. },
  29247. dressed: {
  29248. height: math.unit(6, "feet"),
  29249. name: "Dressed",
  29250. image: {
  29251. source: "./media/characters/withers/dressed.svg",
  29252. extra: 1937/1765,
  29253. bottom: 73/2010
  29254. }
  29255. },
  29256. phase1: {
  29257. height: math.unit(1.1, "feet"),
  29258. name: "Phase 1",
  29259. image: {
  29260. source: "./media/characters/withers/phase-1.svg",
  29261. extra: 1885/1232,
  29262. bottom: 0/1885
  29263. }
  29264. },
  29265. phase2: {
  29266. height: math.unit(1.05, "feet"),
  29267. name: "Phase 2",
  29268. image: {
  29269. source: "./media/characters/withers/phase-2.svg",
  29270. extra: 1792/1090,
  29271. bottom: 0/1792
  29272. }
  29273. },
  29274. partyWipe: {
  29275. height: math.unit(1.1, "feet"),
  29276. name: "Party Wipe",
  29277. image: {
  29278. source: "./media/characters/withers/party-wipe.svg",
  29279. extra: 1864/1207,
  29280. bottom: 0/1864
  29281. }
  29282. },
  29283. },
  29284. [
  29285. {
  29286. name: "Macro",
  29287. height: math.unit(167, "feet"),
  29288. default: true
  29289. },
  29290. {
  29291. name: "Megamacro",
  29292. height: math.unit(15, "miles")
  29293. }
  29294. ]
  29295. ))
  29296. characterMakers.push(() => makeCharacter(
  29297. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29298. {
  29299. front: {
  29300. height: math.unit(6 + 7 / 12, "feet"),
  29301. weight: math.unit(250, "lb"),
  29302. name: "Front",
  29303. image: {
  29304. source: "./media/characters/nemoskii/front.svg",
  29305. extra: 2270 / 1734,
  29306. bottom: 86 / 2354
  29307. }
  29308. },
  29309. back: {
  29310. height: math.unit(6 + 7 / 12, "feet"),
  29311. weight: math.unit(250, "lb"),
  29312. name: "Back",
  29313. image: {
  29314. source: "./media/characters/nemoskii/back.svg",
  29315. extra: 1845 / 1788,
  29316. bottom: 10.5 / 1852
  29317. }
  29318. },
  29319. head: {
  29320. height: math.unit(1.31, "feet"),
  29321. name: "Head",
  29322. image: {
  29323. source: "./media/characters/nemoskii/head.svg"
  29324. }
  29325. },
  29326. },
  29327. [
  29328. {
  29329. name: "Micro",
  29330. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29331. },
  29332. {
  29333. name: "Normal",
  29334. height: math.unit(6 + 7 / 12, "feet"),
  29335. default: true
  29336. },
  29337. {
  29338. name: "Macro",
  29339. height: math.unit((6 + 7 / 12) * 150, "feet")
  29340. },
  29341. {
  29342. name: "Macro+",
  29343. height: math.unit((6 + 7 / 12) * 500, "feet")
  29344. },
  29345. {
  29346. name: "Megamacro",
  29347. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29348. },
  29349. ]
  29350. ))
  29351. characterMakers.push(() => makeCharacter(
  29352. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29353. {
  29354. front: {
  29355. height: math.unit(1, "mile"),
  29356. weight: math.unit(265261.9, "lb"),
  29357. name: "Front",
  29358. image: {
  29359. source: "./media/characters/shui/front.svg",
  29360. extra: 1633 / 1564,
  29361. bottom: 91.5 / 1726
  29362. }
  29363. },
  29364. },
  29365. [
  29366. {
  29367. name: "Macro",
  29368. height: math.unit(1, "mile"),
  29369. default: true
  29370. },
  29371. ]
  29372. ))
  29373. characterMakers.push(() => makeCharacter(
  29374. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29375. {
  29376. front: {
  29377. height: math.unit(12 + 6 / 12, "feet"),
  29378. weight: math.unit(1342, "lb"),
  29379. name: "Front",
  29380. image: {
  29381. source: "./media/characters/arokh-takakura/front.svg",
  29382. extra: 1089 / 1043,
  29383. bottom: 77.4 / 1176.7
  29384. }
  29385. },
  29386. back: {
  29387. height: math.unit(12 + 6 / 12, "feet"),
  29388. weight: math.unit(1342, "lb"),
  29389. name: "Back",
  29390. image: {
  29391. source: "./media/characters/arokh-takakura/back.svg",
  29392. extra: 1046 / 1019,
  29393. bottom: 102 / 1150
  29394. }
  29395. },
  29396. },
  29397. [
  29398. {
  29399. name: "Big",
  29400. height: math.unit(12 + 6 / 12, "feet"),
  29401. default: true
  29402. },
  29403. ]
  29404. ))
  29405. characterMakers.push(() => makeCharacter(
  29406. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29407. {
  29408. front: {
  29409. height: math.unit(5 + 6 / 12, "feet"),
  29410. weight: math.unit(150, "lb"),
  29411. name: "Front",
  29412. image: {
  29413. source: "./media/characters/theo/front.svg",
  29414. extra: 1184 / 1131,
  29415. bottom: 7.4 / 1191
  29416. }
  29417. },
  29418. },
  29419. [
  29420. {
  29421. name: "Micro",
  29422. height: math.unit(5, "inches")
  29423. },
  29424. {
  29425. name: "Normal",
  29426. height: math.unit(5 + 6 / 12, "feet"),
  29427. default: true
  29428. },
  29429. ]
  29430. ))
  29431. characterMakers.push(() => makeCharacter(
  29432. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29433. {
  29434. front: {
  29435. height: math.unit(5 + 9 / 12, "feet"),
  29436. weight: math.unit(130, "lb"),
  29437. name: "Front",
  29438. image: {
  29439. source: "./media/characters/cecelia-swift/front.svg",
  29440. extra: 502 / 484,
  29441. bottom: 23 / 523
  29442. }
  29443. },
  29444. back: {
  29445. height: math.unit(5 + 9 / 12, "feet"),
  29446. weight: math.unit(130, "lb"),
  29447. name: "Back",
  29448. image: {
  29449. source: "./media/characters/cecelia-swift/back.svg",
  29450. extra: 499 / 485,
  29451. bottom: 12 / 511
  29452. }
  29453. },
  29454. head: {
  29455. height: math.unit(0.90, "feet"),
  29456. name: "Head",
  29457. image: {
  29458. source: "./media/characters/cecelia-swift/head.svg"
  29459. }
  29460. },
  29461. rump: {
  29462. height: math.unit(1.75, "feet"),
  29463. name: "Rump",
  29464. image: {
  29465. source: "./media/characters/cecelia-swift/rump.svg"
  29466. }
  29467. },
  29468. },
  29469. [
  29470. {
  29471. name: "Normal",
  29472. height: math.unit(5 + 9 / 12, "feet"),
  29473. default: true
  29474. },
  29475. {
  29476. name: "Big",
  29477. height: math.unit(50, "feet")
  29478. },
  29479. {
  29480. name: "Macro",
  29481. height: math.unit(100, "feet")
  29482. },
  29483. {
  29484. name: "Macro+",
  29485. height: math.unit(500, "feet")
  29486. },
  29487. {
  29488. name: "Macro++",
  29489. height: math.unit(1000, "feet")
  29490. },
  29491. ]
  29492. ))
  29493. characterMakers.push(() => makeCharacter(
  29494. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29495. {
  29496. front: {
  29497. height: math.unit(6, "feet"),
  29498. weight: math.unit(150, "lb"),
  29499. name: "Front",
  29500. image: {
  29501. source: "./media/characters/kaunan/front.svg",
  29502. extra: 2890 / 2523,
  29503. bottom: 49 / 2939
  29504. }
  29505. },
  29506. },
  29507. [
  29508. {
  29509. name: "Macro",
  29510. height: math.unit(150, "feet"),
  29511. default: true
  29512. },
  29513. ]
  29514. ))
  29515. characterMakers.push(() => makeCharacter(
  29516. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29517. {
  29518. dressed: {
  29519. height: math.unit(175, "cm"),
  29520. weight: math.unit(60, "kg"),
  29521. name: "Dressed",
  29522. image: {
  29523. source: "./media/characters/fei/dressed.svg",
  29524. extra: 1402/1278,
  29525. bottom: 27/1429
  29526. }
  29527. },
  29528. nude: {
  29529. height: math.unit(175, "cm"),
  29530. weight: math.unit(60, "kg"),
  29531. name: "Nude",
  29532. image: {
  29533. source: "./media/characters/fei/nude.svg",
  29534. extra: 1402/1278,
  29535. bottom: 27/1429
  29536. }
  29537. },
  29538. heels: {
  29539. height: math.unit(0.466, "feet"),
  29540. name: "Heels",
  29541. image: {
  29542. source: "./media/characters/fei/heels.svg",
  29543. extra: 156/152,
  29544. bottom: 28/184
  29545. }
  29546. },
  29547. },
  29548. [
  29549. {
  29550. name: "Mortal",
  29551. height: math.unit(175, "cm")
  29552. },
  29553. {
  29554. name: "Normal",
  29555. height: math.unit(3500, "m")
  29556. },
  29557. {
  29558. name: "Stroll",
  29559. height: math.unit(18.4, "km"),
  29560. default: true
  29561. },
  29562. {
  29563. name: "Showoff",
  29564. height: math.unit(175, "km")
  29565. },
  29566. ]
  29567. ))
  29568. characterMakers.push(() => makeCharacter(
  29569. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29570. {
  29571. front: {
  29572. height: math.unit(7, "feet"),
  29573. weight: math.unit(1000, "kg"),
  29574. name: "Front",
  29575. image: {
  29576. source: "./media/characters/edrax/front.svg",
  29577. extra: 2838 / 2550,
  29578. bottom: 130 / 2968
  29579. }
  29580. },
  29581. },
  29582. [
  29583. {
  29584. name: "Small",
  29585. height: math.unit(7, "feet")
  29586. },
  29587. {
  29588. name: "Normal",
  29589. height: math.unit(1500, "meters")
  29590. },
  29591. {
  29592. name: "Mega",
  29593. height: math.unit(12000000, "km"),
  29594. default: true
  29595. },
  29596. {
  29597. name: "Megamacro",
  29598. height: math.unit(10600000, "lightyears")
  29599. },
  29600. {
  29601. name: "Hypermacro",
  29602. height: math.unit(256, "yottameters")
  29603. },
  29604. ]
  29605. ))
  29606. characterMakers.push(() => makeCharacter(
  29607. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29608. {
  29609. front: {
  29610. height: math.unit(10, "feet"),
  29611. weight: math.unit(750, "lb"),
  29612. name: "Front",
  29613. image: {
  29614. source: "./media/characters/clove/front.svg",
  29615. extra: 1918/1751,
  29616. bottom: 52/1970
  29617. }
  29618. },
  29619. back: {
  29620. height: math.unit(10, "feet"),
  29621. weight: math.unit(750, "lb"),
  29622. name: "Back",
  29623. image: {
  29624. source: "./media/characters/clove/back.svg",
  29625. extra: 1912/1747,
  29626. bottom: 50/1962
  29627. }
  29628. },
  29629. },
  29630. [
  29631. {
  29632. name: "Normal",
  29633. height: math.unit(10, "feet"),
  29634. default: true
  29635. },
  29636. ]
  29637. ))
  29638. characterMakers.push(() => makeCharacter(
  29639. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29640. {
  29641. front: {
  29642. height: math.unit(4, "feet"),
  29643. weight: math.unit(50, "lb"),
  29644. name: "Front",
  29645. image: {
  29646. source: "./media/characters/alex-rabbit/front.svg",
  29647. extra: 507 / 458,
  29648. bottom: 18.5 / 527
  29649. }
  29650. },
  29651. back: {
  29652. height: math.unit(4, "feet"),
  29653. weight: math.unit(50, "lb"),
  29654. name: "Back",
  29655. image: {
  29656. source: "./media/characters/alex-rabbit/back.svg",
  29657. extra: 502 / 460,
  29658. bottom: 18.9 / 521
  29659. }
  29660. },
  29661. },
  29662. [
  29663. {
  29664. name: "Normal",
  29665. height: math.unit(4, "feet"),
  29666. default: true
  29667. },
  29668. ]
  29669. ))
  29670. characterMakers.push(() => makeCharacter(
  29671. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29672. {
  29673. front: {
  29674. height: math.unit(1 + 3 / 12, "feet"),
  29675. weight: math.unit(80, "lb"),
  29676. name: "Front",
  29677. image: {
  29678. source: "./media/characters/zander-rose/front.svg",
  29679. extra: 916 / 797,
  29680. bottom: 17 / 933
  29681. }
  29682. },
  29683. back: {
  29684. height: math.unit(1 + 3 / 12, "feet"),
  29685. weight: math.unit(80, "lb"),
  29686. name: "Back",
  29687. image: {
  29688. source: "./media/characters/zander-rose/back.svg",
  29689. extra: 903 / 779,
  29690. bottom: 31 / 934
  29691. }
  29692. },
  29693. },
  29694. [
  29695. {
  29696. name: "Normal",
  29697. height: math.unit(1 + 3 / 12, "feet"),
  29698. default: true
  29699. },
  29700. ]
  29701. ))
  29702. characterMakers.push(() => makeCharacter(
  29703. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29704. {
  29705. anthro: {
  29706. height: math.unit(6, "feet"),
  29707. weight: math.unit(150, "lb"),
  29708. name: "Anthro",
  29709. image: {
  29710. source: "./media/characters/razz/anthro.svg",
  29711. extra: 1437 / 1343,
  29712. bottom: 48 / 1485
  29713. }
  29714. },
  29715. feral: {
  29716. height: math.unit(6, "feet"),
  29717. weight: math.unit(150, "lb"),
  29718. name: "Feral",
  29719. image: {
  29720. source: "./media/characters/razz/feral.svg",
  29721. extra: 2569 / 1385,
  29722. bottom: 95 / 2664
  29723. }
  29724. },
  29725. },
  29726. [
  29727. {
  29728. name: "Normal",
  29729. height: math.unit(6, "feet"),
  29730. default: true
  29731. },
  29732. ]
  29733. ))
  29734. characterMakers.push(() => makeCharacter(
  29735. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29736. {
  29737. front: {
  29738. height: math.unit(9 + 4 / 12, "feet"),
  29739. weight: math.unit(500, "lb"),
  29740. name: "Front",
  29741. image: {
  29742. source: "./media/characters/morrigan/front.svg",
  29743. extra: 2707 / 2579,
  29744. bottom: 156 / 2863
  29745. }
  29746. },
  29747. },
  29748. [
  29749. {
  29750. name: "Normal",
  29751. height: math.unit(9 + 4 / 12, "feet"),
  29752. default: true
  29753. },
  29754. ]
  29755. ))
  29756. characterMakers.push(() => makeCharacter(
  29757. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29758. {
  29759. front: {
  29760. height: math.unit(5, "stories"),
  29761. weight: math.unit(4000, "lb"),
  29762. name: "Front",
  29763. image: {
  29764. source: "./media/characters/jenene/front.svg",
  29765. extra: 1780 / 1710,
  29766. bottom: 57 / 1837
  29767. }
  29768. },
  29769. },
  29770. [
  29771. {
  29772. name: "Normal",
  29773. height: math.unit(5, "stories"),
  29774. default: true
  29775. },
  29776. ]
  29777. ))
  29778. characterMakers.push(() => makeCharacter(
  29779. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29780. {
  29781. taurSfw: {
  29782. height: math.unit(10, "meters"),
  29783. weight: math.unit(17500, "kg"),
  29784. name: "Taur",
  29785. image: {
  29786. source: "./media/characters/faey/taur-sfw.svg",
  29787. extra: 1200 / 968,
  29788. bottom: 41 / 1241
  29789. }
  29790. },
  29791. chestmaw: {
  29792. height: math.unit(2.01, "meters"),
  29793. name: "Chestmaw",
  29794. image: {
  29795. source: "./media/characters/faey/chestmaw.svg"
  29796. }
  29797. },
  29798. foot: {
  29799. height: math.unit(2.43, "meters"),
  29800. name: "Foot",
  29801. image: {
  29802. source: "./media/characters/faey/foot.svg"
  29803. }
  29804. },
  29805. jaws: {
  29806. height: math.unit(1.66, "meters"),
  29807. name: "Jaws",
  29808. image: {
  29809. source: "./media/characters/faey/jaws.svg"
  29810. }
  29811. },
  29812. tongues: {
  29813. height: math.unit(2.01, "meters"),
  29814. name: "Tongues",
  29815. image: {
  29816. source: "./media/characters/faey/tongues.svg"
  29817. }
  29818. },
  29819. },
  29820. [
  29821. {
  29822. name: "Small",
  29823. height: math.unit(10, "meters"),
  29824. default: true
  29825. },
  29826. {
  29827. name: "Big",
  29828. height: math.unit(500000, "km")
  29829. },
  29830. ]
  29831. ))
  29832. characterMakers.push(() => makeCharacter(
  29833. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29834. {
  29835. front: {
  29836. height: math.unit(7, "feet"),
  29837. weight: math.unit(275, "lb"),
  29838. name: "Front",
  29839. image: {
  29840. source: "./media/characters/roku/front.svg",
  29841. extra: 903 / 878,
  29842. bottom: 37 / 940
  29843. }
  29844. },
  29845. },
  29846. [
  29847. {
  29848. name: "Normal",
  29849. height: math.unit(7, "feet"),
  29850. default: true
  29851. },
  29852. {
  29853. name: "Macro",
  29854. height: math.unit(500, "feet")
  29855. },
  29856. {
  29857. name: "Megamacro",
  29858. height: math.unit(200, "miles")
  29859. },
  29860. ]
  29861. ))
  29862. characterMakers.push(() => makeCharacter(
  29863. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29864. {
  29865. front: {
  29866. height: math.unit(6 + 2 / 12, "feet"),
  29867. weight: math.unit(150, "lb"),
  29868. name: "Front",
  29869. image: {
  29870. source: "./media/characters/lira/front.svg",
  29871. extra: 1727 / 1605,
  29872. bottom: 26 / 1753
  29873. }
  29874. },
  29875. back: {
  29876. height: math.unit(6 + 2 / 12, "feet"),
  29877. weight: math.unit(150, "lb"),
  29878. name: "Back",
  29879. image: {
  29880. source: "./media/characters/lira/back.svg",
  29881. extra: 1713/1621,
  29882. bottom: 20/1733
  29883. }
  29884. },
  29885. hand: {
  29886. height: math.unit(0.75, "feet"),
  29887. name: "Hand",
  29888. image: {
  29889. source: "./media/characters/lira/hand.svg"
  29890. }
  29891. },
  29892. maw: {
  29893. height: math.unit(0.65, "feet"),
  29894. name: "Maw",
  29895. image: {
  29896. source: "./media/characters/lira/maw.svg"
  29897. }
  29898. },
  29899. pawDigi: {
  29900. height: math.unit(1.6, "feet"),
  29901. name: "Paw Digi",
  29902. image: {
  29903. source: "./media/characters/lira/paw-digi.svg"
  29904. }
  29905. },
  29906. pawPlanti: {
  29907. height: math.unit(1.4, "feet"),
  29908. name: "Paw Planti",
  29909. image: {
  29910. source: "./media/characters/lira/paw-planti.svg"
  29911. }
  29912. },
  29913. },
  29914. [
  29915. {
  29916. name: "Normal",
  29917. height: math.unit(6 + 2 / 12, "feet"),
  29918. default: true
  29919. },
  29920. {
  29921. name: "Macro",
  29922. height: math.unit(100, "feet")
  29923. },
  29924. {
  29925. name: "Macro²",
  29926. height: math.unit(1600, "feet")
  29927. },
  29928. {
  29929. name: "Planetary",
  29930. height: math.unit(20, "earths")
  29931. },
  29932. ]
  29933. ))
  29934. characterMakers.push(() => makeCharacter(
  29935. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29936. {
  29937. front: {
  29938. height: math.unit(6, "feet"),
  29939. weight: math.unit(150, "lb"),
  29940. name: "Front",
  29941. image: {
  29942. source: "./media/characters/hadjet/front.svg",
  29943. extra: 1480 / 1346,
  29944. bottom: 26 / 1506
  29945. }
  29946. },
  29947. frontNsfw: {
  29948. height: math.unit(6, "feet"),
  29949. weight: math.unit(150, "lb"),
  29950. name: "Front (NSFW)",
  29951. image: {
  29952. source: "./media/characters/hadjet/front-nsfw.svg",
  29953. extra: 1440 / 1358,
  29954. bottom: 52 / 1492
  29955. }
  29956. },
  29957. },
  29958. [
  29959. {
  29960. name: "Macro",
  29961. height: math.unit(10, "stories"),
  29962. default: true
  29963. },
  29964. {
  29965. name: "Megamacro",
  29966. height: math.unit(1.5, "miles")
  29967. },
  29968. {
  29969. name: "Megamacro+",
  29970. height: math.unit(5, "miles")
  29971. },
  29972. ]
  29973. ))
  29974. characterMakers.push(() => makeCharacter(
  29975. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29976. {
  29977. side: {
  29978. height: math.unit(106, "feet"),
  29979. weight: math.unit(500, "tonnes"),
  29980. name: "Side",
  29981. image: {
  29982. source: "./media/characters/kodran/side.svg",
  29983. extra: 553 / 480,
  29984. bottom: 33 / 586
  29985. }
  29986. },
  29987. front: {
  29988. height: math.unit(132, "feet"),
  29989. weight: math.unit(500, "tonnes"),
  29990. name: "Front",
  29991. image: {
  29992. source: "./media/characters/kodran/front.svg",
  29993. extra: 667 / 643,
  29994. bottom: 42 / 709
  29995. }
  29996. },
  29997. flying: {
  29998. height: math.unit(350, "feet"),
  29999. weight: math.unit(500, "tonnes"),
  30000. name: "Flying",
  30001. image: {
  30002. source: "./media/characters/kodran/flying.svg"
  30003. }
  30004. },
  30005. foot: {
  30006. height: math.unit(33, "feet"),
  30007. name: "Foot",
  30008. image: {
  30009. source: "./media/characters/kodran/foot.svg"
  30010. }
  30011. },
  30012. footFront: {
  30013. height: math.unit(19, "feet"),
  30014. name: "Foot (Front)",
  30015. image: {
  30016. source: "./media/characters/kodran/foot-front.svg",
  30017. extra: 261 / 261,
  30018. bottom: 91 / 352
  30019. }
  30020. },
  30021. headFront: {
  30022. height: math.unit(53, "feet"),
  30023. name: "Head (Front)",
  30024. image: {
  30025. source: "./media/characters/kodran/head-front.svg"
  30026. }
  30027. },
  30028. headSide: {
  30029. height: math.unit(65, "feet"),
  30030. name: "Head (Side)",
  30031. image: {
  30032. source: "./media/characters/kodran/head-side.svg"
  30033. }
  30034. },
  30035. throat: {
  30036. height: math.unit(79, "feet"),
  30037. name: "Throat",
  30038. image: {
  30039. source: "./media/characters/kodran/throat.svg"
  30040. }
  30041. },
  30042. },
  30043. [
  30044. {
  30045. name: "Large",
  30046. height: math.unit(106, "feet"),
  30047. default: true
  30048. },
  30049. ]
  30050. ))
  30051. characterMakers.push(() => makeCharacter(
  30052. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30053. {
  30054. side: {
  30055. height: math.unit(11, "feet"),
  30056. weight: math.unit(150, "lb"),
  30057. name: "Side",
  30058. image: {
  30059. source: "./media/characters/pyxaron/side.svg",
  30060. extra: 305 / 195,
  30061. bottom: 17 / 322
  30062. }
  30063. },
  30064. },
  30065. [
  30066. {
  30067. name: "Normal",
  30068. height: math.unit(11, "feet"),
  30069. default: true
  30070. },
  30071. ]
  30072. ))
  30073. characterMakers.push(() => makeCharacter(
  30074. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30075. {
  30076. front: {
  30077. height: math.unit(6, "feet"),
  30078. weight: math.unit(150, "lb"),
  30079. name: "Front",
  30080. image: {
  30081. source: "./media/characters/meep/front.svg",
  30082. extra: 88 / 80,
  30083. bottom: 6 / 94
  30084. }
  30085. },
  30086. },
  30087. [
  30088. {
  30089. name: "Fun Sized",
  30090. height: math.unit(2, "inches"),
  30091. default: true
  30092. },
  30093. {
  30094. name: "Friend Sized",
  30095. height: math.unit(8, "inches")
  30096. },
  30097. ]
  30098. ))
  30099. characterMakers.push(() => makeCharacter(
  30100. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30101. {
  30102. front: {
  30103. height: math.unit(15, "feet"),
  30104. weight: math.unit(2500, "lb"),
  30105. name: "Front",
  30106. image: {
  30107. source: "./media/characters/holly-rabbit/front.svg",
  30108. extra: 1433 / 1233,
  30109. bottom: 125 / 1558
  30110. }
  30111. },
  30112. dick: {
  30113. height: math.unit(4.6, "feet"),
  30114. name: "Dick",
  30115. image: {
  30116. source: "./media/characters/holly-rabbit/dick.svg"
  30117. }
  30118. },
  30119. },
  30120. [
  30121. {
  30122. name: "Normal",
  30123. height: math.unit(15, "feet"),
  30124. default: true
  30125. },
  30126. {
  30127. name: "Macro",
  30128. height: math.unit(250, "feet")
  30129. },
  30130. {
  30131. name: "Macro+",
  30132. height: math.unit(2500, "feet")
  30133. },
  30134. ]
  30135. ))
  30136. characterMakers.push(() => makeCharacter(
  30137. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30138. {
  30139. front: {
  30140. height: math.unit(3.02, "meters"),
  30141. weight: math.unit(500, "kg"),
  30142. name: "Front",
  30143. image: {
  30144. source: "./media/characters/drena/front.svg",
  30145. extra: 282 / 243,
  30146. bottom: 8 / 290
  30147. }
  30148. },
  30149. side: {
  30150. height: math.unit(3.02, "meters"),
  30151. weight: math.unit(500, "kg"),
  30152. name: "Side",
  30153. image: {
  30154. source: "./media/characters/drena/side.svg",
  30155. extra: 280 / 245,
  30156. bottom: 10 / 290
  30157. }
  30158. },
  30159. back: {
  30160. height: math.unit(3.02, "meters"),
  30161. weight: math.unit(500, "kg"),
  30162. name: "Back",
  30163. image: {
  30164. source: "./media/characters/drena/back.svg",
  30165. extra: 278 / 243,
  30166. bottom: 2 / 280
  30167. }
  30168. },
  30169. foot: {
  30170. height: math.unit(0.75, "meters"),
  30171. name: "Foot",
  30172. image: {
  30173. source: "./media/characters/drena/foot.svg"
  30174. }
  30175. },
  30176. maw: {
  30177. height: math.unit(0.82, "meters"),
  30178. name: "Maw",
  30179. image: {
  30180. source: "./media/characters/drena/maw.svg"
  30181. }
  30182. },
  30183. eating: {
  30184. height: math.unit(0.75, "meters"),
  30185. name: "Eating",
  30186. image: {
  30187. source: "./media/characters/drena/eating.svg"
  30188. }
  30189. },
  30190. rump: {
  30191. height: math.unit(0.93, "meters"),
  30192. name: "Rump",
  30193. image: {
  30194. source: "./media/characters/drena/rump.svg"
  30195. }
  30196. },
  30197. },
  30198. [
  30199. {
  30200. name: "Normal",
  30201. height: math.unit(3.02, "meters"),
  30202. default: true
  30203. },
  30204. ]
  30205. ))
  30206. characterMakers.push(() => makeCharacter(
  30207. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30208. {
  30209. front: {
  30210. height: math.unit(6 + 4 / 12, "feet"),
  30211. weight: math.unit(250, "lb"),
  30212. name: "Front",
  30213. image: {
  30214. source: "./media/characters/remmyzilla/front.svg",
  30215. extra: 4033 / 3588,
  30216. bottom: 123 / 4156
  30217. }
  30218. },
  30219. back: {
  30220. height: math.unit(6 + 4 / 12, "feet"),
  30221. weight: math.unit(250, "lb"),
  30222. name: "Back",
  30223. image: {
  30224. source: "./media/characters/remmyzilla/back.svg",
  30225. extra: 2687 / 2555,
  30226. bottom: 48 / 2735
  30227. }
  30228. },
  30229. paw: {
  30230. height: math.unit(1.73, "feet"),
  30231. name: "Paw",
  30232. image: {
  30233. source: "./media/characters/remmyzilla/paw.svg"
  30234. },
  30235. extraAttributes: {
  30236. "toeSize": {
  30237. name: "Toe Size",
  30238. power: 2,
  30239. type: "area",
  30240. base: math.unit(0.0035, "m^2")
  30241. },
  30242. "padSize": {
  30243. name: "Pad Size",
  30244. power: 2,
  30245. type: "area",
  30246. base: math.unit(0.015, "m^2")
  30247. },
  30248. "pawsize": {
  30249. name: "Paw Size",
  30250. power: 2,
  30251. type: "area",
  30252. base: math.unit(0.072, "m^2")
  30253. },
  30254. }
  30255. },
  30256. maw: {
  30257. height: math.unit(1.73, "feet"),
  30258. name: "Maw",
  30259. image: {
  30260. source: "./media/characters/remmyzilla/maw.svg"
  30261. }
  30262. },
  30263. },
  30264. [
  30265. {
  30266. name: "Normal",
  30267. height: math.unit(6 + 4 / 12, "feet")
  30268. },
  30269. {
  30270. name: "Minimacro",
  30271. height: math.unit(12 + 8 / 12, "feet")
  30272. },
  30273. {
  30274. name: "Normal",
  30275. height: math.unit(640, "feet"),
  30276. default: true
  30277. },
  30278. {
  30279. name: "Megamacro",
  30280. height: math.unit(6400, "feet")
  30281. },
  30282. {
  30283. name: "Gigamacro",
  30284. height: math.unit(64000, "miles")
  30285. },
  30286. ]
  30287. ))
  30288. characterMakers.push(() => makeCharacter(
  30289. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30290. {
  30291. front: {
  30292. height: math.unit(2.5, "meters"),
  30293. weight: math.unit(300, "lb"),
  30294. name: "Front",
  30295. image: {
  30296. source: "./media/characters/lawrence/front.svg",
  30297. extra: 357 / 335,
  30298. bottom: 30 / 387
  30299. }
  30300. },
  30301. back: {
  30302. height: math.unit(2.5, "meters"),
  30303. weight: math.unit(300, "lb"),
  30304. name: "Back",
  30305. image: {
  30306. source: "./media/characters/lawrence/back.svg",
  30307. extra: 357 / 338,
  30308. bottom: 16 / 373
  30309. }
  30310. },
  30311. head: {
  30312. height: math.unit(0.9, "meter"),
  30313. name: "Head",
  30314. image: {
  30315. source: "./media/characters/lawrence/head.svg"
  30316. }
  30317. },
  30318. maw: {
  30319. height: math.unit(0.7, "meter"),
  30320. name: "Maw",
  30321. image: {
  30322. source: "./media/characters/lawrence/maw.svg"
  30323. }
  30324. },
  30325. footBottom: {
  30326. height: math.unit(0.5, "meter"),
  30327. name: "Foot (Bottom)",
  30328. image: {
  30329. source: "./media/characters/lawrence/foot-bottom.svg"
  30330. }
  30331. },
  30332. footTop: {
  30333. height: math.unit(0.5, "meter"),
  30334. name: "Foot (Top)",
  30335. image: {
  30336. source: "./media/characters/lawrence/foot-top.svg"
  30337. }
  30338. },
  30339. },
  30340. [
  30341. {
  30342. name: "Normal",
  30343. height: math.unit(2.5, "meters"),
  30344. default: true
  30345. },
  30346. {
  30347. name: "Macro",
  30348. height: math.unit(95, "meters")
  30349. },
  30350. {
  30351. name: "Megamacro",
  30352. height: math.unit(150, "km")
  30353. },
  30354. ]
  30355. ))
  30356. characterMakers.push(() => makeCharacter(
  30357. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30358. {
  30359. front: {
  30360. height: math.unit(4.2, "meters"),
  30361. name: "Front",
  30362. image: {
  30363. source: "./media/characters/sydney/front.svg",
  30364. extra: 1323 / 1277,
  30365. bottom: 111 / 1434
  30366. }
  30367. },
  30368. },
  30369. [
  30370. {
  30371. name: "Normal",
  30372. height: math.unit(4.2, "meters"),
  30373. default: true
  30374. },
  30375. ]
  30376. ))
  30377. characterMakers.push(() => makeCharacter(
  30378. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30379. {
  30380. back: {
  30381. height: math.unit(201, "feet"),
  30382. name: "Back",
  30383. image: {
  30384. source: "./media/characters/jessica/back.svg",
  30385. extra: 273 / 259,
  30386. bottom: 7 / 280
  30387. }
  30388. },
  30389. },
  30390. [
  30391. {
  30392. name: "Normal",
  30393. height: math.unit(201, "feet"),
  30394. default: true
  30395. },
  30396. {
  30397. name: "Megamacro",
  30398. height: math.unit(8, "miles")
  30399. },
  30400. ]
  30401. ))
  30402. characterMakers.push(() => makeCharacter(
  30403. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30404. {
  30405. side: {
  30406. height: math.unit(5.6, "m"),
  30407. weight: math.unit(8000, "kg"),
  30408. name: "Side",
  30409. image: {
  30410. source: "./media/characters/victoria/side.svg",
  30411. extra: 1542/1229,
  30412. bottom: 124/1666
  30413. }
  30414. },
  30415. maw: {
  30416. height: math.unit(7.14, "feet"),
  30417. name: "Maw",
  30418. image: {
  30419. source: "./media/characters/victoria/maw.svg"
  30420. }
  30421. },
  30422. },
  30423. [
  30424. {
  30425. name: "Normal",
  30426. height: math.unit(5.6, "m"),
  30427. default: true
  30428. },
  30429. ]
  30430. ))
  30431. characterMakers.push(() => makeCharacter(
  30432. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30433. {
  30434. front: {
  30435. height: math.unit(5 + 6 / 12, "feet"),
  30436. name: "Front",
  30437. image: {
  30438. source: "./media/characters/cat/front.svg",
  30439. extra: 1449/1295,
  30440. bottom: 34/1483
  30441. },
  30442. form: "cat",
  30443. default: true
  30444. },
  30445. back: {
  30446. height: math.unit(5 + 6 / 12, "feet"),
  30447. name: "Back",
  30448. image: {
  30449. source: "./media/characters/cat/back.svg",
  30450. extra: 1466/1301,
  30451. bottom: 19/1485
  30452. },
  30453. form: "cat"
  30454. },
  30455. taur: {
  30456. height: math.unit(7, "feet"),
  30457. name: "Taur",
  30458. image: {
  30459. source: "./media/characters/cat/taur.svg",
  30460. extra: 1389/1233,
  30461. bottom: 83/1472
  30462. },
  30463. form: "taur",
  30464. default: true
  30465. },
  30466. lucarioFront: {
  30467. height: math.unit(4, "feet"),
  30468. name: "Lucario (Front)",
  30469. image: {
  30470. source: "./media/characters/cat/lucario-front.svg",
  30471. extra: 1149/1019,
  30472. bottom: 84/1233
  30473. },
  30474. form: "lucario",
  30475. default: true
  30476. },
  30477. lucarioBack: {
  30478. height: math.unit(4, "feet"),
  30479. name: "Lucario (Back)",
  30480. image: {
  30481. source: "./media/characters/cat/lucario-back.svg",
  30482. extra: 1190/1059,
  30483. bottom: 33/1223
  30484. },
  30485. form: "lucario"
  30486. },
  30487. megaLucario: {
  30488. height: math.unit(4, "feet"),
  30489. name: "Mega Lucario",
  30490. image: {
  30491. source: "./media/characters/cat/mega-lucario.svg",
  30492. extra: 1515 / 1319,
  30493. bottom: 63 / 1578
  30494. },
  30495. form: "lucario"
  30496. },
  30497. nickit: {
  30498. height: math.unit(2, "feet"),
  30499. name: "Nickit",
  30500. image: {
  30501. source: "./media/characters/cat/nickit.svg",
  30502. extra: 1980 / 1585,
  30503. bottom: 102 / 2082
  30504. },
  30505. form: "nickit",
  30506. default: true
  30507. },
  30508. lopunnyFront: {
  30509. height: math.unit(5, "feet"),
  30510. name: "Lopunny (Front)",
  30511. image: {
  30512. source: "./media/characters/cat/lopunny-front.svg",
  30513. extra: 1782 / 1469,
  30514. bottom: 38 / 1820
  30515. },
  30516. form: "lopunny",
  30517. default: true
  30518. },
  30519. lopunnyBack: {
  30520. height: math.unit(5, "feet"),
  30521. name: "Lopunny (Back)",
  30522. image: {
  30523. source: "./media/characters/cat/lopunny-back.svg",
  30524. extra: 1660 / 1490,
  30525. bottom: 25 / 1685
  30526. },
  30527. form: "lopunny"
  30528. },
  30529. },
  30530. [
  30531. {
  30532. name: "Really small",
  30533. height: math.unit(1, "nm")
  30534. },
  30535. {
  30536. name: "Micro",
  30537. height: math.unit(5, "inches")
  30538. },
  30539. {
  30540. name: "Normal",
  30541. height: math.unit(5 + 6 / 12, "feet"),
  30542. default: true
  30543. },
  30544. {
  30545. name: "Macro",
  30546. height: math.unit(50, "feet")
  30547. },
  30548. {
  30549. name: "Macro+",
  30550. height: math.unit(150, "feet")
  30551. },
  30552. {
  30553. name: "Megamacro",
  30554. height: math.unit(100, "miles")
  30555. },
  30556. ]
  30557. ))
  30558. characterMakers.push(() => makeCharacter(
  30559. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30560. {
  30561. front: {
  30562. height: math.unit(63.4, "meters"),
  30563. weight: math.unit(3.28349e+6, "kilograms"),
  30564. name: "Front",
  30565. image: {
  30566. source: "./media/characters/kirina-violet/front.svg",
  30567. extra: 2812 / 2725,
  30568. bottom: 0 / 2812
  30569. }
  30570. },
  30571. back: {
  30572. height: math.unit(63.4, "meters"),
  30573. weight: math.unit(3.28349e+6, "kilograms"),
  30574. name: "Back",
  30575. image: {
  30576. source: "./media/characters/kirina-violet/back.svg",
  30577. extra: 2812 / 2725,
  30578. bottom: 0 / 2812
  30579. }
  30580. },
  30581. mouth: {
  30582. height: math.unit(4.35, "meters"),
  30583. name: "Mouth",
  30584. image: {
  30585. source: "./media/characters/kirina-violet/mouth.svg"
  30586. }
  30587. },
  30588. paw: {
  30589. height: math.unit(5.6, "meters"),
  30590. name: "Paw",
  30591. image: {
  30592. source: "./media/characters/kirina-violet/paw.svg"
  30593. }
  30594. },
  30595. tail: {
  30596. height: math.unit(18, "meters"),
  30597. name: "Tail",
  30598. image: {
  30599. source: "./media/characters/kirina-violet/tail.svg"
  30600. }
  30601. },
  30602. },
  30603. [
  30604. {
  30605. name: "Macro",
  30606. height: math.unit(63.4, "meters"),
  30607. default: true
  30608. },
  30609. ]
  30610. ))
  30611. characterMakers.push(() => makeCharacter(
  30612. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30613. {
  30614. front: {
  30615. height: math.unit(75, "feet"),
  30616. name: "Front",
  30617. image: {
  30618. source: "./media/characters/cat-gigachu/front.svg",
  30619. extra: 1239/1027,
  30620. bottom: 32/1271
  30621. }
  30622. },
  30623. back: {
  30624. height: math.unit(75, "feet"),
  30625. name: "Back",
  30626. image: {
  30627. source: "./media/characters/cat-gigachu/back.svg",
  30628. extra: 1229/1030,
  30629. bottom: 9/1238
  30630. }
  30631. },
  30632. },
  30633. [
  30634. {
  30635. name: "Dynamax",
  30636. height: math.unit(75, "feet"),
  30637. default: true
  30638. },
  30639. ]
  30640. ))
  30641. characterMakers.push(() => makeCharacter(
  30642. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30643. {
  30644. front: {
  30645. height: math.unit(6, "feet"),
  30646. weight: math.unit(150, "lb"),
  30647. name: "Front",
  30648. image: {
  30649. source: "./media/characters/sfaiyan/front.svg",
  30650. extra: 999 / 978,
  30651. bottom: 5 / 1004
  30652. }
  30653. },
  30654. },
  30655. [
  30656. {
  30657. name: "Normal",
  30658. height: math.unit(1.82, "meters")
  30659. },
  30660. {
  30661. name: "Giant",
  30662. height: math.unit(2.27, "km"),
  30663. default: true
  30664. },
  30665. ]
  30666. ))
  30667. characterMakers.push(() => makeCharacter(
  30668. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30669. {
  30670. front: {
  30671. height: math.unit(179, "cm"),
  30672. weight: math.unit(100, "kg"),
  30673. name: "Front",
  30674. image: {
  30675. source: "./media/characters/raunehkeli/front.svg",
  30676. extra: 1934 / 1926,
  30677. bottom: 0 / 1934
  30678. }
  30679. },
  30680. },
  30681. [
  30682. {
  30683. name: "Normal",
  30684. height: math.unit(179, "cm")
  30685. },
  30686. {
  30687. name: "Maximum",
  30688. height: math.unit(575, "meters"),
  30689. default: true
  30690. },
  30691. ]
  30692. ))
  30693. characterMakers.push(() => makeCharacter(
  30694. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30695. {
  30696. front: {
  30697. height: math.unit(6, "feet"),
  30698. weight: math.unit(150, "lb"),
  30699. name: "Front",
  30700. image: {
  30701. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30702. extra: 2625 / 2518,
  30703. bottom: 60 / 2685
  30704. }
  30705. },
  30706. },
  30707. [
  30708. {
  30709. name: "Normal",
  30710. height: math.unit(6 + 2 / 12, "feet")
  30711. },
  30712. {
  30713. name: "Macro",
  30714. height: math.unit(1180, "feet"),
  30715. default: true
  30716. },
  30717. ]
  30718. ))
  30719. characterMakers.push(() => makeCharacter(
  30720. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30721. {
  30722. front: {
  30723. height: math.unit(5 + 6 / 12, "feet"),
  30724. weight: math.unit(108, "lb"),
  30725. name: "Front",
  30726. image: {
  30727. source: "./media/characters/lilith-zott/front.svg",
  30728. extra: 2510 / 2238,
  30729. bottom: 100 / 2610
  30730. }
  30731. },
  30732. frontDressed: {
  30733. height: math.unit(5 + 6 / 12, "feet"),
  30734. weight: math.unit(108, "lb"),
  30735. name: "Front (Dressed)",
  30736. image: {
  30737. source: "./media/characters/lilith-zott/front-dressed.svg",
  30738. extra: 2510 / 2238,
  30739. bottom: 100 / 2610
  30740. }
  30741. },
  30742. },
  30743. [
  30744. {
  30745. name: "Normal",
  30746. height: math.unit(5 + 6 / 12, "feet")
  30747. },
  30748. {
  30749. name: "Macro",
  30750. height: math.unit(1030, "feet"),
  30751. default: true
  30752. },
  30753. ]
  30754. ))
  30755. characterMakers.push(() => makeCharacter(
  30756. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30757. {
  30758. front: {
  30759. height: math.unit(6, "feet"),
  30760. weight: math.unit(150, "lb"),
  30761. name: "Front",
  30762. image: {
  30763. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30764. extra: 2567 / 2435,
  30765. bottom: 39 / 2606
  30766. }
  30767. },
  30768. frontSuper: {
  30769. height: math.unit(6, "feet"),
  30770. name: "Front (Super)",
  30771. image: {
  30772. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30773. extra: 2567 / 2435,
  30774. bottom: 39 / 2606
  30775. }
  30776. },
  30777. },
  30778. [
  30779. {
  30780. name: "Normal",
  30781. height: math.unit(5 + 10 / 12, "feet")
  30782. },
  30783. {
  30784. name: "Macro",
  30785. height: math.unit(1100, "feet"),
  30786. default: true
  30787. },
  30788. ]
  30789. ))
  30790. characterMakers.push(() => makeCharacter(
  30791. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30792. {
  30793. front: {
  30794. height: math.unit(100, "miles"),
  30795. name: "Front",
  30796. image: {
  30797. source: "./media/characters/sona/front.svg",
  30798. extra: 2433 / 2201,
  30799. bottom: 53 / 2486
  30800. }
  30801. },
  30802. foot: {
  30803. height: math.unit(16.1, "miles"),
  30804. name: "Foot",
  30805. image: {
  30806. source: "./media/characters/sona/foot.svg"
  30807. }
  30808. },
  30809. },
  30810. [
  30811. {
  30812. name: "Macro",
  30813. height: math.unit(100, "miles"),
  30814. default: true
  30815. },
  30816. ]
  30817. ))
  30818. characterMakers.push(() => makeCharacter(
  30819. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30820. {
  30821. front: {
  30822. height: math.unit(6, "feet"),
  30823. weight: math.unit(150, "lb"),
  30824. name: "Front",
  30825. image: {
  30826. source: "./media/characters/bailey/front.svg",
  30827. extra: 1778 / 1724,
  30828. bottom: 30 / 1808
  30829. }
  30830. },
  30831. },
  30832. [
  30833. {
  30834. name: "Micro",
  30835. height: math.unit(4, "inches")
  30836. },
  30837. {
  30838. name: "Normal",
  30839. height: math.unit(5 + 5 / 12, "feet"),
  30840. default: true
  30841. },
  30842. {
  30843. name: "Macro",
  30844. height: math.unit(250, "feet")
  30845. },
  30846. {
  30847. name: "Megamacro",
  30848. height: math.unit(100, "miles")
  30849. },
  30850. ]
  30851. ))
  30852. characterMakers.push(() => makeCharacter(
  30853. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30854. {
  30855. front: {
  30856. height: math.unit(5 + 2 / 12, "feet"),
  30857. weight: math.unit(120, "lb"),
  30858. name: "Front",
  30859. image: {
  30860. source: "./media/characters/snaps/front.svg",
  30861. extra: 2370 / 2177,
  30862. bottom: 48 / 2418
  30863. }
  30864. },
  30865. back: {
  30866. height: math.unit(5 + 2 / 12, "feet"),
  30867. weight: math.unit(120, "lb"),
  30868. name: "Back",
  30869. image: {
  30870. source: "./media/characters/snaps/back.svg",
  30871. extra: 2408 / 2258,
  30872. bottom: 15 / 2423
  30873. }
  30874. },
  30875. },
  30876. [
  30877. {
  30878. name: "Micro",
  30879. height: math.unit(9, "inches")
  30880. },
  30881. {
  30882. name: "Normal",
  30883. height: math.unit(5 + 2 / 12, "feet"),
  30884. default: true
  30885. },
  30886. {
  30887. name: "Mini Macro",
  30888. height: math.unit(10, "feet")
  30889. },
  30890. ]
  30891. ))
  30892. characterMakers.push(() => makeCharacter(
  30893. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30894. {
  30895. front: {
  30896. height: math.unit(1.8, "meters"),
  30897. weight: math.unit(85, "kg"),
  30898. name: "Front",
  30899. image: {
  30900. source: "./media/characters/azteck/front.svg",
  30901. extra: 2815 / 2625,
  30902. bottom: 89 / 2904
  30903. }
  30904. },
  30905. back: {
  30906. height: math.unit(1.8, "meters"),
  30907. weight: math.unit(85, "kg"),
  30908. name: "Back",
  30909. image: {
  30910. source: "./media/characters/azteck/back.svg",
  30911. extra: 2856 / 2648,
  30912. bottom: 85 / 2941
  30913. }
  30914. },
  30915. frontDressed: {
  30916. height: math.unit(1.8, "meters"),
  30917. weight: math.unit(85, "kg"),
  30918. name: "Front (Dressed)",
  30919. image: {
  30920. source: "./media/characters/azteck/front-dressed.svg",
  30921. extra: 2147 / 2003,
  30922. bottom: 68 / 2215
  30923. }
  30924. },
  30925. head: {
  30926. height: math.unit(0.47, "meters"),
  30927. weight: math.unit(85, "kg"),
  30928. name: "Head",
  30929. image: {
  30930. source: "./media/characters/azteck/head.svg"
  30931. }
  30932. },
  30933. },
  30934. [
  30935. {
  30936. name: "Bite sized",
  30937. height: math.unit(16, "cm")
  30938. },
  30939. {
  30940. name: "Normal",
  30941. height: math.unit(1.8, "meters"),
  30942. default: true
  30943. },
  30944. ]
  30945. ))
  30946. characterMakers.push(() => makeCharacter(
  30947. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30948. {
  30949. front: {
  30950. height: math.unit(6, "feet"),
  30951. weight: math.unit(150, "lb"),
  30952. name: "Front",
  30953. image: {
  30954. source: "./media/characters/pidge/front.svg",
  30955. extra: 1936/1820,
  30956. bottom: 0/1936
  30957. }
  30958. },
  30959. back: {
  30960. height: math.unit(6, "feet"),
  30961. weight: math.unit(150, "lb"),
  30962. name: "Back",
  30963. image: {
  30964. source: "./media/characters/pidge/back.svg",
  30965. extra: 1938/1843,
  30966. bottom: 0/1938
  30967. }
  30968. },
  30969. casual: {
  30970. height: math.unit(6, "feet"),
  30971. weight: math.unit(150, "lb"),
  30972. name: "Casual",
  30973. image: {
  30974. source: "./media/characters/pidge/casual.svg",
  30975. extra: 1936/1820,
  30976. bottom: 0/1936
  30977. }
  30978. },
  30979. tech: {
  30980. height: math.unit(6, "feet"),
  30981. weight: math.unit(150, "lb"),
  30982. name: "Tech",
  30983. image: {
  30984. source: "./media/characters/pidge/tech.svg",
  30985. extra: 1802/1682,
  30986. bottom: 0/1802
  30987. }
  30988. },
  30989. head: {
  30990. height: math.unit(1.61, "feet"),
  30991. name: "Head",
  30992. image: {
  30993. source: "./media/characters/pidge/head.svg"
  30994. }
  30995. },
  30996. collar: {
  30997. height: math.unit(0.82, "feet"),
  30998. name: "Collar",
  30999. image: {
  31000. source: "./media/characters/pidge/collar.svg"
  31001. }
  31002. },
  31003. },
  31004. [
  31005. {
  31006. name: "Macro",
  31007. height: math.unit(2, "mile"),
  31008. default: true
  31009. },
  31010. {
  31011. name: "PUPPY",
  31012. height: math.unit(20, "miles")
  31013. },
  31014. ]
  31015. ))
  31016. characterMakers.push(() => makeCharacter(
  31017. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31018. {
  31019. front: {
  31020. height: math.unit(6, "feet"),
  31021. weight: math.unit(150, "lb"),
  31022. name: "Front",
  31023. image: {
  31024. source: "./media/characters/en/front.svg",
  31025. extra: 1697 / 1563,
  31026. bottom: 103 / 1800
  31027. }
  31028. },
  31029. back: {
  31030. height: math.unit(6, "feet"),
  31031. weight: math.unit(150, "lb"),
  31032. name: "Back",
  31033. image: {
  31034. source: "./media/characters/en/back.svg",
  31035. extra: 1700 / 1570,
  31036. bottom: 51 / 1751
  31037. }
  31038. },
  31039. frontDressed: {
  31040. height: math.unit(6, "feet"),
  31041. weight: math.unit(150, "lb"),
  31042. name: "Front (Dressed)",
  31043. image: {
  31044. source: "./media/characters/en/front-dressed.svg",
  31045. extra: 1697 / 1563,
  31046. bottom: 103 / 1800
  31047. }
  31048. },
  31049. backDressed: {
  31050. height: math.unit(6, "feet"),
  31051. weight: math.unit(150, "lb"),
  31052. name: "Back (Dressed)",
  31053. image: {
  31054. source: "./media/characters/en/back-dressed.svg",
  31055. extra: 1700 / 1570,
  31056. bottom: 51 / 1751
  31057. }
  31058. },
  31059. },
  31060. [
  31061. {
  31062. name: "Macro",
  31063. height: math.unit(210, "feet"),
  31064. default: true
  31065. },
  31066. ]
  31067. ))
  31068. characterMakers.push(() => makeCharacter(
  31069. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31070. {
  31071. front: {
  31072. height: math.unit(6, "feet"),
  31073. weight: math.unit(150, "lb"),
  31074. name: "Front",
  31075. image: {
  31076. source: "./media/characters/haze-orris/front.svg",
  31077. extra: 3975 / 3525,
  31078. bottom: 137 / 4112
  31079. }
  31080. },
  31081. },
  31082. [
  31083. {
  31084. name: "Micro",
  31085. height: math.unit(150, "mm"),
  31086. default: true
  31087. },
  31088. ]
  31089. ))
  31090. characterMakers.push(() => makeCharacter(
  31091. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31092. {
  31093. front: {
  31094. height: math.unit(6, "feet"),
  31095. weight: math.unit(150, "lb"),
  31096. name: "Front",
  31097. image: {
  31098. source: "./media/characters/casselene-yaro/front.svg",
  31099. extra: 4721 / 4541,
  31100. bottom: 82 / 4803
  31101. }
  31102. },
  31103. back: {
  31104. height: math.unit(6, "feet"),
  31105. weight: math.unit(150, "lb"),
  31106. name: "Back",
  31107. image: {
  31108. source: "./media/characters/casselene-yaro/back.svg",
  31109. extra: 4569 / 4377,
  31110. bottom: 69 / 4638
  31111. }
  31112. },
  31113. dressed: {
  31114. height: math.unit(6, "feet"),
  31115. weight: math.unit(150, "lb"),
  31116. name: "Dressed",
  31117. image: {
  31118. source: "./media/characters/casselene-yaro/dressed.svg",
  31119. extra: 4721 / 4541,
  31120. bottom: 82 / 4803
  31121. }
  31122. },
  31123. maw: {
  31124. height: math.unit(1, "feet"),
  31125. name: "Maw",
  31126. image: {
  31127. source: "./media/characters/casselene-yaro/maw.svg"
  31128. }
  31129. },
  31130. },
  31131. [
  31132. {
  31133. name: "Macro",
  31134. height: math.unit(190, "feet"),
  31135. default: true
  31136. },
  31137. ]
  31138. ))
  31139. characterMakers.push(() => makeCharacter(
  31140. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31141. {
  31142. front: {
  31143. height: math.unit(10, "feet"),
  31144. weight: math.unit(15015, "lb"),
  31145. name: "Front",
  31146. image: {
  31147. source: "./media/characters/platine/front.svg",
  31148. extra: 1741/1650,
  31149. bottom: 84/1825
  31150. }
  31151. },
  31152. side: {
  31153. height: math.unit(10, "feet"),
  31154. weight: math.unit(15015, "lb"),
  31155. name: "Side",
  31156. image: {
  31157. source: "./media/characters/platine/side.svg",
  31158. extra: 1790/1705,
  31159. bottom: 29/1819
  31160. }
  31161. },
  31162. },
  31163. [
  31164. {
  31165. name: "Normal",
  31166. height: math.unit(10, "feet"),
  31167. default: true
  31168. },
  31169. {
  31170. name: "Macro",
  31171. height: math.unit(100, "feet")
  31172. },
  31173. {
  31174. name: "Megamacro",
  31175. height: math.unit(1000, "feet")
  31176. },
  31177. ]
  31178. ))
  31179. characterMakers.push(() => makeCharacter(
  31180. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31181. {
  31182. front: {
  31183. height: math.unit(15 + 5 / 12, "feet"),
  31184. weight: math.unit(4600, "lb"),
  31185. name: "Front",
  31186. image: {
  31187. source: "./media/characters/neapolitan-ananassa/front.svg",
  31188. extra: 2903 / 2736,
  31189. bottom: 0 / 2903
  31190. }
  31191. },
  31192. side: {
  31193. height: math.unit(15 + 5 / 12, "feet"),
  31194. weight: math.unit(4600, "lb"),
  31195. name: "Side",
  31196. image: {
  31197. source: "./media/characters/neapolitan-ananassa/side.svg",
  31198. extra: 2925 / 2719,
  31199. bottom: 0 / 2925
  31200. }
  31201. },
  31202. back: {
  31203. height: math.unit(15 + 5 / 12, "feet"),
  31204. weight: math.unit(4600, "lb"),
  31205. name: "Back",
  31206. image: {
  31207. source: "./media/characters/neapolitan-ananassa/back.svg",
  31208. extra: 2903 / 2736,
  31209. bottom: 0 / 2903
  31210. }
  31211. },
  31212. },
  31213. [
  31214. {
  31215. name: "Normal",
  31216. height: math.unit(15 + 5 / 12, "feet"),
  31217. default: true
  31218. },
  31219. {
  31220. name: "Post-Millenium",
  31221. height: math.unit(35 + 5 / 12, "feet")
  31222. },
  31223. {
  31224. name: "Post-Era",
  31225. height: math.unit(450 + 5 / 12, "feet")
  31226. },
  31227. ]
  31228. ))
  31229. characterMakers.push(() => makeCharacter(
  31230. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31231. {
  31232. front: {
  31233. height: math.unit(300, "meters"),
  31234. weight: math.unit(125000, "tonnes"),
  31235. name: "Front",
  31236. image: {
  31237. source: "./media/characters/pazuzu/front.svg",
  31238. extra: 877 / 794,
  31239. bottom: 47 / 924
  31240. }
  31241. },
  31242. },
  31243. [
  31244. {
  31245. name: "Macro",
  31246. height: math.unit(300, "meters"),
  31247. default: true
  31248. },
  31249. ]
  31250. ))
  31251. characterMakers.push(() => makeCharacter(
  31252. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31253. {
  31254. side: {
  31255. height: math.unit(10 + 7 / 12, "feet"),
  31256. weight: math.unit(2.5, "tons"),
  31257. name: "Side",
  31258. image: {
  31259. source: "./media/characters/aasha/side.svg",
  31260. extra: 1345 / 1245,
  31261. bottom: 111 / 1456
  31262. }
  31263. },
  31264. back: {
  31265. height: math.unit(10 + 7 / 12, "feet"),
  31266. weight: math.unit(2.5, "tons"),
  31267. name: "Back",
  31268. image: {
  31269. source: "./media/characters/aasha/back.svg",
  31270. extra: 1133 / 1057,
  31271. bottom: 257 / 1390
  31272. }
  31273. },
  31274. },
  31275. [
  31276. {
  31277. name: "Normal",
  31278. height: math.unit(10 + 7 / 12, "feet"),
  31279. default: true
  31280. },
  31281. ]
  31282. ))
  31283. characterMakers.push(() => makeCharacter(
  31284. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31285. {
  31286. front: {
  31287. height: math.unit(6 + 3 / 12, "feet"),
  31288. name: "Front",
  31289. image: {
  31290. source: "./media/characters/nevan/front.svg",
  31291. extra: 704 / 704,
  31292. bottom: 28 / 732
  31293. }
  31294. },
  31295. back: {
  31296. height: math.unit(6 + 3 / 12, "feet"),
  31297. name: "Back",
  31298. image: {
  31299. source: "./media/characters/nevan/back.svg",
  31300. extra: 714 / 714,
  31301. bottom: 21 / 735
  31302. }
  31303. },
  31304. frontFlaccid: {
  31305. height: math.unit(6 + 3 / 12, "feet"),
  31306. name: "Front (Flaccid)",
  31307. image: {
  31308. source: "./media/characters/nevan/front-flaccid.svg",
  31309. extra: 704 / 704,
  31310. bottom: 28 / 732
  31311. }
  31312. },
  31313. frontErect: {
  31314. height: math.unit(6 + 3 / 12, "feet"),
  31315. name: "Front (Erect)",
  31316. image: {
  31317. source: "./media/characters/nevan/front-erect.svg",
  31318. extra: 704 / 704,
  31319. bottom: 28 / 732
  31320. }
  31321. },
  31322. backFlaccid: {
  31323. height: math.unit(6 + 3 / 12, "feet"),
  31324. name: "Back (Flaccid)",
  31325. image: {
  31326. source: "./media/characters/nevan/back-flaccid.svg",
  31327. extra: 714 / 714,
  31328. bottom: 21 / 735
  31329. }
  31330. },
  31331. },
  31332. [
  31333. {
  31334. name: "Normal",
  31335. height: math.unit(6 + 3 / 12, "feet"),
  31336. default: true
  31337. },
  31338. ]
  31339. ))
  31340. characterMakers.push(() => makeCharacter(
  31341. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31342. {
  31343. front: {
  31344. height: math.unit(4, "feet"),
  31345. name: "Front",
  31346. image: {
  31347. source: "./media/characters/arhan/front.svg",
  31348. extra: 3368 / 3133,
  31349. bottom: 0 / 3368
  31350. }
  31351. },
  31352. side: {
  31353. height: math.unit(4, "feet"),
  31354. name: "Side",
  31355. image: {
  31356. source: "./media/characters/arhan/side.svg",
  31357. extra: 3347 / 3105,
  31358. bottom: 0 / 3347
  31359. }
  31360. },
  31361. tongue: {
  31362. height: math.unit(1.42, "feet"),
  31363. name: "Tongue",
  31364. image: {
  31365. source: "./media/characters/arhan/tongue.svg"
  31366. }
  31367. },
  31368. head: {
  31369. height: math.unit(0.85, "feet"),
  31370. name: "Head",
  31371. image: {
  31372. source: "./media/characters/arhan/head.svg"
  31373. }
  31374. },
  31375. },
  31376. [
  31377. {
  31378. name: "Normal",
  31379. height: math.unit(4, "feet"),
  31380. default: true
  31381. },
  31382. ]
  31383. ))
  31384. characterMakers.push(() => makeCharacter(
  31385. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31386. {
  31387. front: {
  31388. height: math.unit(5 + 7.5 / 12, "feet"),
  31389. weight: math.unit(120, "lb"),
  31390. name: "Front",
  31391. image: {
  31392. source: "./media/characters/digi-duncan/front.svg",
  31393. extra: 330 / 326,
  31394. bottom: 16 / 346
  31395. }
  31396. },
  31397. side: {
  31398. height: math.unit(5 + 7.5 / 12, "feet"),
  31399. weight: math.unit(120, "lb"),
  31400. name: "Side",
  31401. image: {
  31402. source: "./media/characters/digi-duncan/side.svg",
  31403. extra: 341 / 337,
  31404. bottom: 1 / 342
  31405. }
  31406. },
  31407. back: {
  31408. height: math.unit(5 + 7.5 / 12, "feet"),
  31409. weight: math.unit(120, "lb"),
  31410. name: "Back",
  31411. image: {
  31412. source: "./media/characters/digi-duncan/back.svg",
  31413. extra: 330 / 326,
  31414. bottom: 12 / 342
  31415. }
  31416. },
  31417. },
  31418. [
  31419. {
  31420. name: "Speck",
  31421. height: math.unit(0.25, "mm")
  31422. },
  31423. {
  31424. name: "Micro",
  31425. height: math.unit(5, "mm")
  31426. },
  31427. {
  31428. name: "Tiny",
  31429. height: math.unit(0.5, "inches"),
  31430. default: true
  31431. },
  31432. {
  31433. name: "Human",
  31434. height: math.unit(5 + 7.5 / 12, "feet")
  31435. },
  31436. {
  31437. name: "Minigiant",
  31438. height: math.unit(8 + 5.25, "feet")
  31439. },
  31440. {
  31441. name: "Giant",
  31442. height: math.unit(2000, "feet")
  31443. },
  31444. {
  31445. name: "Mega",
  31446. height: math.unit(371.1, "miles")
  31447. },
  31448. ]
  31449. ))
  31450. characterMakers.push(() => makeCharacter(
  31451. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31452. {
  31453. front: {
  31454. height: math.unit(2, "meters"),
  31455. weight: math.unit(350, "kg"),
  31456. name: "Front",
  31457. image: {
  31458. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31459. extra: 898 / 838,
  31460. bottom: 9 / 907
  31461. }
  31462. },
  31463. },
  31464. [
  31465. {
  31466. name: "Micro",
  31467. height: math.unit(8, "meters")
  31468. },
  31469. {
  31470. name: "Normal",
  31471. height: math.unit(50, "meters"),
  31472. default: true
  31473. },
  31474. {
  31475. name: "Macro",
  31476. height: math.unit(500, "meters")
  31477. },
  31478. ]
  31479. ))
  31480. characterMakers.push(() => makeCharacter(
  31481. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31482. {
  31483. front: {
  31484. height: math.unit(6 + 6 / 12, "feet"),
  31485. name: "Front",
  31486. image: {
  31487. source: "./media/characters/khardesh/front.svg",
  31488. extra: 1788/1596,
  31489. bottom: 66/1854
  31490. }
  31491. },
  31492. back: {
  31493. height: math.unit(6 + 6 / 12, "feet"),
  31494. name: "Back",
  31495. image: {
  31496. source: "./media/characters/khardesh/back.svg",
  31497. extra: 1781/1584,
  31498. bottom: 68/1849
  31499. }
  31500. },
  31501. },
  31502. [
  31503. {
  31504. name: "Normal",
  31505. height: math.unit(6 + 6 / 12, "feet"),
  31506. default: true
  31507. },
  31508. {
  31509. name: "Normal+",
  31510. height: math.unit(4, "meters")
  31511. },
  31512. {
  31513. name: "Macro",
  31514. height: math.unit(50, "meters")
  31515. },
  31516. {
  31517. name: "Macro+",
  31518. height: math.unit(100, "meters")
  31519. },
  31520. {
  31521. name: "Megamacro",
  31522. height: math.unit(20, "km")
  31523. },
  31524. ]
  31525. ))
  31526. characterMakers.push(() => makeCharacter(
  31527. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31528. {
  31529. front: {
  31530. height: math.unit(6, "feet"),
  31531. weight: math.unit(150, "lb"),
  31532. name: "Front",
  31533. image: {
  31534. source: "./media/characters/kosho/front.svg",
  31535. extra: 1847 / 1847,
  31536. bottom: 86 / 1933
  31537. }
  31538. },
  31539. },
  31540. [
  31541. {
  31542. name: "Second-stage micro",
  31543. height: math.unit(0.5, "inches")
  31544. },
  31545. {
  31546. name: "First-stage micro",
  31547. height: math.unit(6, "inches")
  31548. },
  31549. {
  31550. name: "Normal",
  31551. height: math.unit(6, "feet"),
  31552. default: true
  31553. },
  31554. {
  31555. name: "First-stage macro",
  31556. height: math.unit(72, "feet")
  31557. },
  31558. {
  31559. name: "Second-stage macro",
  31560. height: math.unit(864, "feet")
  31561. },
  31562. ]
  31563. ))
  31564. characterMakers.push(() => makeCharacter(
  31565. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31566. {
  31567. normal: {
  31568. height: math.unit(4 + 6 / 12, "feet"),
  31569. name: "Normal",
  31570. image: {
  31571. source: "./media/characters/hydra/normal.svg",
  31572. extra: 2833 / 2634,
  31573. bottom: 68 / 2901
  31574. }
  31575. },
  31576. smol: {
  31577. height: math.unit(0.705, "inches"),
  31578. name: "Smol",
  31579. image: {
  31580. source: "./media/characters/hydra/smol.svg",
  31581. extra: 2715 / 2540,
  31582. bottom: 0 / 2715
  31583. }
  31584. },
  31585. },
  31586. [
  31587. {
  31588. name: "Normal",
  31589. height: math.unit(4 + 6 / 12, "feet"),
  31590. default: true
  31591. }
  31592. ]
  31593. ))
  31594. characterMakers.push(() => makeCharacter(
  31595. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31596. {
  31597. front: {
  31598. height: math.unit(0.6, "cm"),
  31599. name: "Front",
  31600. image: {
  31601. source: "./media/characters/daz/front.svg",
  31602. extra: 1682 / 1164,
  31603. bottom: 42 / 1724
  31604. }
  31605. },
  31606. },
  31607. [
  31608. {
  31609. name: "Normal",
  31610. height: math.unit(0.6, "cm"),
  31611. default: true
  31612. },
  31613. ]
  31614. ))
  31615. characterMakers.push(() => makeCharacter(
  31616. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31617. {
  31618. front: {
  31619. height: math.unit(6, "feet"),
  31620. weight: math.unit(235, "lb"),
  31621. name: "Front",
  31622. image: {
  31623. source: "./media/characters/theo-pangolin/front.svg",
  31624. extra: 1996 / 1969,
  31625. bottom: 115 / 2111
  31626. }
  31627. },
  31628. back: {
  31629. height: math.unit(6, "feet"),
  31630. weight: math.unit(235, "lb"),
  31631. name: "Back",
  31632. image: {
  31633. source: "./media/characters/theo-pangolin/back.svg",
  31634. extra: 1979 / 1979,
  31635. bottom: 40 / 2019
  31636. }
  31637. },
  31638. feral: {
  31639. height: math.unit(2, "feet"),
  31640. weight: math.unit(30, "lb"),
  31641. name: "Feral",
  31642. image: {
  31643. source: "./media/characters/theo-pangolin/feral.svg",
  31644. extra: 803 / 791,
  31645. bottom: 181 / 984
  31646. }
  31647. },
  31648. footFive: {
  31649. height: math.unit(1.43, "feet"),
  31650. name: "Foot (Five Toes)",
  31651. image: {
  31652. source: "./media/characters/theo-pangolin/foot-five.svg"
  31653. }
  31654. },
  31655. footFour: {
  31656. height: math.unit(1.43, "feet"),
  31657. name: "Foot (Four Toes)",
  31658. image: {
  31659. source: "./media/characters/theo-pangolin/foot-four.svg"
  31660. }
  31661. },
  31662. handFour: {
  31663. height: math.unit(0.81, "feet"),
  31664. name: "Hand (Four Fingers)",
  31665. image: {
  31666. source: "./media/characters/theo-pangolin/hand-four.svg"
  31667. }
  31668. },
  31669. handThree: {
  31670. height: math.unit(0.81, "feet"),
  31671. name: "Hand (Three Fingers)",
  31672. image: {
  31673. source: "./media/characters/theo-pangolin/hand-three.svg"
  31674. }
  31675. },
  31676. headFront: {
  31677. height: math.unit(1.37, "feet"),
  31678. name: "Head (Front)",
  31679. image: {
  31680. source: "./media/characters/theo-pangolin/head-front.svg"
  31681. }
  31682. },
  31683. headSide: {
  31684. height: math.unit(1.43, "feet"),
  31685. name: "Head (Side)",
  31686. image: {
  31687. source: "./media/characters/theo-pangolin/head-side.svg"
  31688. }
  31689. },
  31690. tongue: {
  31691. height: math.unit(2.29, "feet"),
  31692. name: "Tongue",
  31693. image: {
  31694. source: "./media/characters/theo-pangolin/tongue.svg"
  31695. }
  31696. },
  31697. },
  31698. [
  31699. {
  31700. name: "Normal",
  31701. height: math.unit(6, "feet")
  31702. },
  31703. {
  31704. name: "Macro",
  31705. height: math.unit(400, "feet"),
  31706. default: true
  31707. },
  31708. ]
  31709. ))
  31710. characterMakers.push(() => makeCharacter(
  31711. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31712. {
  31713. front: {
  31714. height: math.unit(6, "inches"),
  31715. weight: math.unit(0.036, "kg"),
  31716. name: "Front",
  31717. image: {
  31718. source: "./media/characters/renée/front.svg",
  31719. extra: 900 / 886,
  31720. bottom: 8 / 908
  31721. }
  31722. },
  31723. },
  31724. [
  31725. {
  31726. name: "Nano",
  31727. height: math.unit(1, "nm")
  31728. },
  31729. {
  31730. name: "Micro",
  31731. height: math.unit(1, "mm")
  31732. },
  31733. {
  31734. name: "Normal",
  31735. height: math.unit(6, "inches")
  31736. },
  31737. {
  31738. name: "Macro",
  31739. height: math.unit(2000, "feet"),
  31740. default: true
  31741. },
  31742. {
  31743. name: "Megamacro",
  31744. height: math.unit(2, "km")
  31745. },
  31746. {
  31747. name: "Gigamacro",
  31748. height: math.unit(2000, "km")
  31749. },
  31750. {
  31751. name: "Teramacro",
  31752. height: math.unit(250000, "km")
  31753. },
  31754. ]
  31755. ))
  31756. characterMakers.push(() => makeCharacter(
  31757. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31758. {
  31759. front: {
  31760. height: math.unit(4, "meters"),
  31761. weight: math.unit(150, "kg"),
  31762. name: "Front",
  31763. image: {
  31764. source: "./media/characters/caledvwlch/front.svg",
  31765. extra: 1760 / 1551,
  31766. bottom: 28 / 1788
  31767. }
  31768. },
  31769. side: {
  31770. height: math.unit(4, "meters"),
  31771. weight: math.unit(150, "kg"),
  31772. name: "Side",
  31773. image: {
  31774. source: "./media/characters/caledvwlch/side.svg",
  31775. extra: 1605 / 1536,
  31776. bottom: 31 / 1636
  31777. }
  31778. },
  31779. back: {
  31780. height: math.unit(4, "meters"),
  31781. weight: math.unit(150, "kg"),
  31782. name: "Back",
  31783. image: {
  31784. source: "./media/characters/caledvwlch/back.svg",
  31785. extra: 1635 / 1565,
  31786. bottom: 27 / 1662
  31787. }
  31788. },
  31789. },
  31790. [
  31791. {
  31792. name: "\"Incognito\"",
  31793. height: math.unit(4, "meters")
  31794. },
  31795. {
  31796. name: "Small rampage",
  31797. height: math.unit(600, "meters")
  31798. },
  31799. {
  31800. name: "Mega",
  31801. height: math.unit(30, "km")
  31802. },
  31803. {
  31804. name: "Home-size",
  31805. height: math.unit(50, "km"),
  31806. default: true
  31807. },
  31808. {
  31809. name: "Giga",
  31810. height: math.unit(300, "km")
  31811. },
  31812. {
  31813. name: "Lounging",
  31814. height: math.unit(11000, "km")
  31815. },
  31816. {
  31817. name: "Planet snacking",
  31818. height: math.unit(2000000, "km")
  31819. },
  31820. ]
  31821. ))
  31822. characterMakers.push(() => makeCharacter(
  31823. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31824. {
  31825. front: {
  31826. height: math.unit(6, "feet"),
  31827. weight: math.unit(215, "lb"),
  31828. name: "Front",
  31829. image: {
  31830. source: "./media/characters/sapphire-svell/front.svg",
  31831. extra: 495 / 455,
  31832. bottom: 20 / 515
  31833. }
  31834. },
  31835. back: {
  31836. height: math.unit(6, "feet"),
  31837. weight: math.unit(216, "lb"),
  31838. name: "Back",
  31839. image: {
  31840. source: "./media/characters/sapphire-svell/back.svg",
  31841. extra: 497 / 477,
  31842. bottom: 7 / 504
  31843. }
  31844. },
  31845. maw: {
  31846. height: math.unit(1.57, "feet"),
  31847. name: "Maw",
  31848. image: {
  31849. source: "./media/characters/sapphire-svell/maw.svg"
  31850. }
  31851. },
  31852. foot: {
  31853. height: math.unit(1.07, "feet"),
  31854. name: "Foot",
  31855. image: {
  31856. source: "./media/characters/sapphire-svell/foot.svg"
  31857. }
  31858. },
  31859. toering: {
  31860. height: math.unit(1.7, "inch"),
  31861. name: "Toering",
  31862. image: {
  31863. source: "./media/characters/sapphire-svell/toering.svg"
  31864. }
  31865. },
  31866. },
  31867. [
  31868. {
  31869. name: "Normal",
  31870. height: math.unit(300, "feet"),
  31871. default: true
  31872. },
  31873. {
  31874. name: "Augmented",
  31875. height: math.unit(1250, "feet")
  31876. },
  31877. {
  31878. name: "Unleashed",
  31879. height: math.unit(3000, "feet")
  31880. },
  31881. ]
  31882. ))
  31883. characterMakers.push(() => makeCharacter(
  31884. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31885. {
  31886. side: {
  31887. height: math.unit(2 + 3 / 12, "feet"),
  31888. weight: math.unit(110, "lb"),
  31889. name: "Side",
  31890. image: {
  31891. source: "./media/characters/glitch-flux/side.svg",
  31892. extra: 997 / 805,
  31893. bottom: 20 / 1017
  31894. }
  31895. },
  31896. },
  31897. [
  31898. {
  31899. name: "Normal",
  31900. height: math.unit(2 + 3 / 12, "feet"),
  31901. default: true
  31902. },
  31903. ]
  31904. ))
  31905. characterMakers.push(() => makeCharacter(
  31906. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31907. {
  31908. front: {
  31909. height: math.unit(4, "meters"),
  31910. name: "Front",
  31911. image: {
  31912. source: "./media/characters/mid/front.svg",
  31913. extra: 507 / 476,
  31914. bottom: 17 / 524
  31915. }
  31916. },
  31917. back: {
  31918. height: math.unit(4, "meters"),
  31919. name: "Back",
  31920. image: {
  31921. source: "./media/characters/mid/back.svg",
  31922. extra: 519 / 487,
  31923. bottom: 7 / 526
  31924. }
  31925. },
  31926. stuck: {
  31927. height: math.unit(2.2, "meters"),
  31928. name: "Stuck",
  31929. image: {
  31930. source: "./media/characters/mid/stuck.svg",
  31931. extra: 1951 / 1869,
  31932. bottom: 88 / 2039
  31933. }
  31934. }
  31935. },
  31936. [
  31937. {
  31938. name: "Normal",
  31939. height: math.unit(4, "meters"),
  31940. default: true
  31941. },
  31942. {
  31943. name: "Big",
  31944. height: math.unit(10, "meters")
  31945. },
  31946. {
  31947. name: "Macro",
  31948. height: math.unit(800, "meters")
  31949. },
  31950. {
  31951. name: "Megamacro",
  31952. height: math.unit(100, "km")
  31953. },
  31954. {
  31955. name: "Overgrown",
  31956. height: math.unit(1, "parsec")
  31957. },
  31958. ]
  31959. ))
  31960. characterMakers.push(() => makeCharacter(
  31961. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31962. {
  31963. front: {
  31964. height: math.unit(2.5, "meters"),
  31965. weight: math.unit(225, "kg"),
  31966. name: "Front",
  31967. image: {
  31968. source: "./media/characters/iris/front.svg",
  31969. extra: 3348 / 3251,
  31970. bottom: 205 / 3553
  31971. }
  31972. },
  31973. maw: {
  31974. height: math.unit(0.56, "meter"),
  31975. name: "Maw",
  31976. image: {
  31977. source: "./media/characters/iris/maw.svg"
  31978. }
  31979. },
  31980. },
  31981. [
  31982. {
  31983. name: "Mewter cat",
  31984. height: math.unit(1.2, "meters")
  31985. },
  31986. {
  31987. name: "Normal",
  31988. height: math.unit(2.5, "meters"),
  31989. default: true
  31990. },
  31991. {
  31992. name: "Minimacro",
  31993. height: math.unit(18, "feet")
  31994. },
  31995. {
  31996. name: "Macro",
  31997. height: math.unit(140, "feet")
  31998. },
  31999. {
  32000. name: "Macro+",
  32001. height: math.unit(180, "meters")
  32002. },
  32003. {
  32004. name: "Megamacro",
  32005. height: math.unit(2746, "meters")
  32006. },
  32007. ]
  32008. ))
  32009. characterMakers.push(() => makeCharacter(
  32010. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32011. {
  32012. front: {
  32013. height: math.unit(6, "feet"),
  32014. weight: math.unit(135, "lb"),
  32015. name: "Front",
  32016. image: {
  32017. source: "./media/characters/axel/front.svg",
  32018. extra: 908 / 908,
  32019. bottom: 58 / 966
  32020. }
  32021. },
  32022. side: {
  32023. height: math.unit(6, "feet"),
  32024. weight: math.unit(135, "lb"),
  32025. name: "Side",
  32026. image: {
  32027. source: "./media/characters/axel/side.svg",
  32028. extra: 958 / 958,
  32029. bottom: 11 / 969
  32030. }
  32031. },
  32032. back: {
  32033. height: math.unit(6, "feet"),
  32034. weight: math.unit(135, "lb"),
  32035. name: "Back",
  32036. image: {
  32037. source: "./media/characters/axel/back.svg",
  32038. extra: 887 / 887,
  32039. bottom: 34 / 921
  32040. }
  32041. },
  32042. head: {
  32043. height: math.unit(1.07, "feet"),
  32044. name: "Head",
  32045. image: {
  32046. source: "./media/characters/axel/head.svg"
  32047. }
  32048. },
  32049. beak: {
  32050. height: math.unit(1.4, "feet"),
  32051. name: "Beak",
  32052. image: {
  32053. source: "./media/characters/axel/beak.svg"
  32054. }
  32055. },
  32056. beakSide: {
  32057. height: math.unit(1.4, "feet"),
  32058. name: "Beak Side",
  32059. image: {
  32060. source: "./media/characters/axel/beak-side.svg"
  32061. }
  32062. },
  32063. sheath: {
  32064. height: math.unit(0.5, "feet"),
  32065. name: "Sheath",
  32066. image: {
  32067. source: "./media/characters/axel/sheath.svg"
  32068. }
  32069. },
  32070. dick: {
  32071. height: math.unit(0.98, "feet"),
  32072. name: "Dick",
  32073. image: {
  32074. source: "./media/characters/axel/dick.svg"
  32075. }
  32076. },
  32077. },
  32078. [
  32079. {
  32080. name: "Macro",
  32081. height: math.unit(68, "meters"),
  32082. default: true
  32083. },
  32084. ]
  32085. ))
  32086. characterMakers.push(() => makeCharacter(
  32087. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32088. {
  32089. front: {
  32090. height: math.unit(3.5, "meters"),
  32091. weight: math.unit(1200, "kg"),
  32092. name: "Front",
  32093. image: {
  32094. source: "./media/characters/joanna/front.svg",
  32095. extra: 1596 / 1488,
  32096. bottom: 29 / 1625
  32097. }
  32098. },
  32099. back: {
  32100. height: math.unit(3.5, "meters"),
  32101. weight: math.unit(1200, "kg"),
  32102. name: "Back",
  32103. image: {
  32104. source: "./media/characters/joanna/back.svg",
  32105. extra: 1594 / 1495,
  32106. bottom: 26 / 1620
  32107. }
  32108. },
  32109. frontShorts: {
  32110. height: math.unit(3.5, "meters"),
  32111. weight: math.unit(1200, "kg"),
  32112. name: "Front (Shorts)",
  32113. image: {
  32114. source: "./media/characters/joanna/front-shorts.svg",
  32115. extra: 1596 / 1488,
  32116. bottom: 29 / 1625
  32117. }
  32118. },
  32119. frontBiker: {
  32120. height: math.unit(3.5, "meters"),
  32121. weight: math.unit(1200, "kg"),
  32122. name: "Front (Biker)",
  32123. image: {
  32124. source: "./media/characters/joanna/front-biker.svg",
  32125. extra: 1596 / 1488,
  32126. bottom: 29 / 1625
  32127. }
  32128. },
  32129. backBiker: {
  32130. height: math.unit(3.5, "meters"),
  32131. weight: math.unit(1200, "kg"),
  32132. name: "Back (Biker)",
  32133. image: {
  32134. source: "./media/characters/joanna/back-biker.svg",
  32135. extra: 1594 / 1495,
  32136. bottom: 88 / 1682
  32137. }
  32138. },
  32139. bikeLeft: {
  32140. height: math.unit(2.4, "meters"),
  32141. weight: math.unit(1600, "kg"),
  32142. name: "Bike (Left)",
  32143. image: {
  32144. source: "./media/characters/joanna/bike-left.svg",
  32145. extra: 720 / 720,
  32146. bottom: 8 / 728
  32147. }
  32148. },
  32149. bikeRight: {
  32150. height: math.unit(2.4, "meters"),
  32151. weight: math.unit(1600, "kg"),
  32152. name: "Bike (Right)",
  32153. image: {
  32154. source: "./media/characters/joanna/bike-right.svg",
  32155. extra: 720 / 720,
  32156. bottom: 8 / 728
  32157. }
  32158. },
  32159. },
  32160. [
  32161. {
  32162. name: "Incognito",
  32163. height: math.unit(3.5, "meters")
  32164. },
  32165. {
  32166. name: "Casual Big",
  32167. height: math.unit(200, "meters")
  32168. },
  32169. {
  32170. name: "Macro",
  32171. height: math.unit(600, "meters")
  32172. },
  32173. {
  32174. name: "Original",
  32175. height: math.unit(20, "km"),
  32176. default: true
  32177. },
  32178. {
  32179. name: "Giga",
  32180. height: math.unit(400, "km")
  32181. },
  32182. {
  32183. name: "Lounging",
  32184. height: math.unit(1500, "km")
  32185. },
  32186. {
  32187. name: "Planetary",
  32188. height: math.unit(200000, "km")
  32189. },
  32190. ]
  32191. ))
  32192. characterMakers.push(() => makeCharacter(
  32193. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32194. {
  32195. front: {
  32196. height: math.unit(6, "feet"),
  32197. weight: math.unit(150, "lb"),
  32198. name: "Front",
  32199. image: {
  32200. source: "./media/characters/hugo-sigil/front.svg",
  32201. extra: 522 / 500,
  32202. bottom: 2 / 524
  32203. }
  32204. },
  32205. back: {
  32206. height: math.unit(6, "feet"),
  32207. weight: math.unit(150, "lb"),
  32208. name: "Back",
  32209. image: {
  32210. source: "./media/characters/hugo-sigil/back.svg",
  32211. extra: 519 / 495,
  32212. bottom: 5 / 524
  32213. }
  32214. },
  32215. maw: {
  32216. height: math.unit(1.4, "feet"),
  32217. weight: math.unit(150, "lb"),
  32218. name: "Maw",
  32219. image: {
  32220. source: "./media/characters/hugo-sigil/maw.svg"
  32221. }
  32222. },
  32223. feet: {
  32224. height: math.unit(1.56, "feet"),
  32225. weight: math.unit(150, "lb"),
  32226. name: "Feet",
  32227. image: {
  32228. source: "./media/characters/hugo-sigil/feet.svg",
  32229. extra: 177 / 177,
  32230. bottom: 12 / 189
  32231. }
  32232. },
  32233. },
  32234. [
  32235. {
  32236. name: "Normal",
  32237. height: math.unit(6, "feet")
  32238. },
  32239. {
  32240. name: "Macro",
  32241. height: math.unit(200, "feet"),
  32242. default: true
  32243. },
  32244. ]
  32245. ))
  32246. characterMakers.push(() => makeCharacter(
  32247. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32248. {
  32249. front: {
  32250. height: math.unit(6, "feet"),
  32251. weight: math.unit(150, "lb"),
  32252. name: "Front",
  32253. image: {
  32254. source: "./media/characters/peri/front.svg",
  32255. extra: 2354 / 2233,
  32256. bottom: 49 / 2403
  32257. }
  32258. },
  32259. },
  32260. [
  32261. {
  32262. name: "Really Small",
  32263. height: math.unit(1, "nm")
  32264. },
  32265. {
  32266. name: "Micro",
  32267. height: math.unit(4, "inches")
  32268. },
  32269. {
  32270. name: "Normal",
  32271. height: math.unit(7, "inches"),
  32272. default: true
  32273. },
  32274. {
  32275. name: "Macro",
  32276. height: math.unit(400, "feet")
  32277. },
  32278. {
  32279. name: "Megamacro",
  32280. height: math.unit(100, "miles")
  32281. },
  32282. ]
  32283. ))
  32284. characterMakers.push(() => makeCharacter(
  32285. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32286. {
  32287. frontSlim: {
  32288. height: math.unit(7, "feet"),
  32289. name: "Front (Slim)",
  32290. image: {
  32291. source: "./media/characters/issilora/front-slim.svg",
  32292. extra: 529 / 449,
  32293. bottom: 53 / 582
  32294. }
  32295. },
  32296. sideSlim: {
  32297. height: math.unit(7, "feet"),
  32298. name: "Side (Slim)",
  32299. image: {
  32300. source: "./media/characters/issilora/side-slim.svg",
  32301. extra: 570 / 480,
  32302. bottom: 30 / 600
  32303. }
  32304. },
  32305. backSlim: {
  32306. height: math.unit(7, "feet"),
  32307. name: "Back (Slim)",
  32308. image: {
  32309. source: "./media/characters/issilora/back-slim.svg",
  32310. extra: 537 / 455,
  32311. bottom: 46 / 583
  32312. }
  32313. },
  32314. frontBuff: {
  32315. height: math.unit(7, "feet"),
  32316. name: "Front (Buff)",
  32317. image: {
  32318. source: "./media/characters/issilora/front-buff.svg",
  32319. extra: 2310 / 2035,
  32320. bottom: 335 / 2645
  32321. }
  32322. },
  32323. head: {
  32324. height: math.unit(1.94, "feet"),
  32325. name: "Head",
  32326. image: {
  32327. source: "./media/characters/issilora/head.svg"
  32328. }
  32329. },
  32330. },
  32331. [
  32332. {
  32333. name: "Minimum",
  32334. height: math.unit(7, "feet")
  32335. },
  32336. {
  32337. name: "Comfortable",
  32338. height: math.unit(17, "feet")
  32339. },
  32340. {
  32341. name: "Fun Size",
  32342. height: math.unit(47, "feet")
  32343. },
  32344. {
  32345. name: "Natural Macro",
  32346. height: math.unit(137, "feet"),
  32347. default: true
  32348. },
  32349. {
  32350. name: "Maximum Kaiju",
  32351. height: math.unit(397, "feet")
  32352. },
  32353. ]
  32354. ))
  32355. characterMakers.push(() => makeCharacter(
  32356. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32357. {
  32358. front: {
  32359. height: math.unit(50 + 9/12, "feet"),
  32360. weight: math.unit(32.8, "tons"),
  32361. name: "Front",
  32362. image: {
  32363. source: "./media/characters/irb'iiritaahn/front.svg",
  32364. extra: 1878/1826,
  32365. bottom: 326/2204
  32366. }
  32367. },
  32368. back: {
  32369. height: math.unit(50 + 9/12, "feet"),
  32370. weight: math.unit(32.8, "tons"),
  32371. name: "Back",
  32372. image: {
  32373. source: "./media/characters/irb'iiritaahn/back.svg",
  32374. extra: 2052/2018,
  32375. bottom: 152/2204
  32376. }
  32377. },
  32378. head: {
  32379. height: math.unit(12.86, "feet"),
  32380. name: "Head",
  32381. image: {
  32382. source: "./media/characters/irb'iiritaahn/head.svg"
  32383. }
  32384. },
  32385. maw: {
  32386. height: math.unit(9.66, "feet"),
  32387. name: "Maw",
  32388. image: {
  32389. source: "./media/characters/irb'iiritaahn/maw.svg"
  32390. }
  32391. },
  32392. frontDick: {
  32393. height: math.unit(8.78461, "feet"),
  32394. name: "Front Dick",
  32395. image: {
  32396. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32397. }
  32398. },
  32399. rearDick: {
  32400. height: math.unit(8.78461, "feet"),
  32401. name: "Rear Dick",
  32402. image: {
  32403. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32404. }
  32405. },
  32406. rearDickUnfolded: {
  32407. height: math.unit(8.78, "feet"),
  32408. name: "Rear Dick (Unfolded)",
  32409. image: {
  32410. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32411. }
  32412. },
  32413. wings: {
  32414. height: math.unit(43, "feet"),
  32415. name: "Wings",
  32416. image: {
  32417. source: "./media/characters/irb'iiritaahn/wings.svg"
  32418. }
  32419. },
  32420. },
  32421. [
  32422. {
  32423. name: "Macro",
  32424. height: math.unit(50 + 9/12, "feet"),
  32425. default: true
  32426. },
  32427. ]
  32428. ))
  32429. characterMakers.push(() => makeCharacter(
  32430. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32431. {
  32432. front: {
  32433. height: math.unit(205, "cm"),
  32434. weight: math.unit(102, "kg"),
  32435. name: "Front",
  32436. image: {
  32437. source: "./media/characters/irbisgreif/front.svg",
  32438. extra: 785/706,
  32439. bottom: 13/798
  32440. }
  32441. },
  32442. back: {
  32443. height: math.unit(205, "cm"),
  32444. weight: math.unit(102, "kg"),
  32445. name: "Back",
  32446. image: {
  32447. source: "./media/characters/irbisgreif/back.svg",
  32448. extra: 713/701,
  32449. bottom: 26/739
  32450. }
  32451. },
  32452. frontDressed: {
  32453. height: math.unit(216, "cm"),
  32454. weight: math.unit(102, "kg"),
  32455. name: "Front-dressed",
  32456. image: {
  32457. source: "./media/characters/irbisgreif/front-dressed.svg",
  32458. extra: 902/776,
  32459. bottom: 14/916
  32460. }
  32461. },
  32462. sideDressed: {
  32463. height: math.unit(195, "cm"),
  32464. weight: math.unit(102, "kg"),
  32465. name: "Side-dressed",
  32466. image: {
  32467. source: "./media/characters/irbisgreif/side-dressed.svg",
  32468. extra: 788/688,
  32469. bottom: 21/809
  32470. }
  32471. },
  32472. backDressed: {
  32473. height: math.unit(216, "cm"),
  32474. weight: math.unit(102, "kg"),
  32475. name: "Back-dressed",
  32476. image: {
  32477. source: "./media/characters/irbisgreif/back-dressed.svg",
  32478. extra: 901/783,
  32479. bottom: 10/911
  32480. }
  32481. },
  32482. dick: {
  32483. height: math.unit(0.49, "feet"),
  32484. name: "Dick",
  32485. image: {
  32486. source: "./media/characters/irbisgreif/dick.svg"
  32487. }
  32488. },
  32489. wingTop: {
  32490. height: math.unit(1.93 , "feet"),
  32491. name: "Wing-top",
  32492. image: {
  32493. source: "./media/characters/irbisgreif/wing-top.svg"
  32494. }
  32495. },
  32496. wingBottom: {
  32497. height: math.unit(1.93 , "feet"),
  32498. name: "Wing-bottom",
  32499. image: {
  32500. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32501. }
  32502. },
  32503. },
  32504. [
  32505. {
  32506. name: "Normal",
  32507. height: math.unit(216, "cm"),
  32508. default: true
  32509. },
  32510. ]
  32511. ))
  32512. characterMakers.push(() => makeCharacter(
  32513. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32514. {
  32515. front: {
  32516. height: math.unit(6, "feet"),
  32517. weight: math.unit(150, "lb"),
  32518. name: "Front",
  32519. image: {
  32520. source: "./media/characters/pride/front.svg",
  32521. extra: 1299/1230,
  32522. bottom: 18/1317
  32523. }
  32524. },
  32525. },
  32526. [
  32527. {
  32528. name: "Normal",
  32529. height: math.unit(7, "feet")
  32530. },
  32531. {
  32532. name: "Mini-macro",
  32533. height: math.unit(11, "feet")
  32534. },
  32535. {
  32536. name: "Macro",
  32537. height: math.unit(15, "meters"),
  32538. default: true
  32539. },
  32540. {
  32541. name: "Macro+",
  32542. height: math.unit(40, "meters")
  32543. },
  32544. ]
  32545. ))
  32546. characterMakers.push(() => makeCharacter(
  32547. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32548. {
  32549. front: {
  32550. height: math.unit(4 + 2 / 12, "feet"),
  32551. weight: math.unit(95, "lb"),
  32552. name: "Front",
  32553. image: {
  32554. source: "./media/characters/vaelophis-nyx/front.svg",
  32555. extra: 2532/2330,
  32556. bottom: 0/2532
  32557. }
  32558. },
  32559. back: {
  32560. height: math.unit(4 + 2 / 12, "feet"),
  32561. weight: math.unit(95, "lb"),
  32562. name: "Back",
  32563. image: {
  32564. source: "./media/characters/vaelophis-nyx/back.svg",
  32565. extra: 2484/2361,
  32566. bottom: 0/2484
  32567. }
  32568. },
  32569. feralSide: {
  32570. height: math.unit(2 + 1/12, "feet"),
  32571. weight: math.unit(20, "lb"),
  32572. name: "Feral (Side)",
  32573. image: {
  32574. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32575. extra: 1721/1581,
  32576. bottom: 70/1791
  32577. }
  32578. },
  32579. feralLazing: {
  32580. height: math.unit(1.08, "feet"),
  32581. weight: math.unit(20, "lb"),
  32582. name: "Feral (Lazing)",
  32583. image: {
  32584. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32585. extra: 822/822,
  32586. bottom: 248/1070
  32587. }
  32588. },
  32589. ear: {
  32590. height: math.unit(0.416, "feet"),
  32591. name: "Ear",
  32592. image: {
  32593. source: "./media/characters/vaelophis-nyx/ear.svg"
  32594. }
  32595. },
  32596. eye: {
  32597. height: math.unit(0.0748, "feet"),
  32598. name: "Eye",
  32599. image: {
  32600. source: "./media/characters/vaelophis-nyx/eye.svg"
  32601. }
  32602. },
  32603. mouth: {
  32604. height: math.unit(0.378, "feet"),
  32605. name: "Mouth",
  32606. image: {
  32607. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32608. }
  32609. },
  32610. spade: {
  32611. height: math.unit(0.55, "feet"),
  32612. name: "Spade",
  32613. image: {
  32614. source: "./media/characters/vaelophis-nyx/spade.svg"
  32615. }
  32616. },
  32617. },
  32618. [
  32619. {
  32620. name: "Normal",
  32621. height: math.unit(4 + 2/12, "feet"),
  32622. default: true
  32623. },
  32624. ]
  32625. ))
  32626. characterMakers.push(() => makeCharacter(
  32627. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32628. {
  32629. front: {
  32630. height: math.unit(7, "feet"),
  32631. weight: math.unit(231, "lb"),
  32632. name: "Front",
  32633. image: {
  32634. source: "./media/characters/flux/front.svg",
  32635. extra: 919/871,
  32636. bottom: 0/919
  32637. }
  32638. },
  32639. back: {
  32640. height: math.unit(7, "feet"),
  32641. weight: math.unit(231, "lb"),
  32642. name: "Back",
  32643. image: {
  32644. source: "./media/characters/flux/back.svg",
  32645. extra: 1040/992,
  32646. bottom: 0/1040
  32647. }
  32648. },
  32649. frontDressed: {
  32650. height: math.unit(7, "feet"),
  32651. weight: math.unit(231, "lb"),
  32652. name: "Front (Dressed)",
  32653. image: {
  32654. source: "./media/characters/flux/front-dressed.svg",
  32655. extra: 919/871,
  32656. bottom: 0/919
  32657. }
  32658. },
  32659. feralSide: {
  32660. height: math.unit(5, "feet"),
  32661. weight: math.unit(150, "lb"),
  32662. name: "Feral (Side)",
  32663. image: {
  32664. source: "./media/characters/flux/feral-side.svg",
  32665. extra: 598/528,
  32666. bottom: 28/626
  32667. }
  32668. },
  32669. head: {
  32670. height: math.unit(1.585, "feet"),
  32671. name: "Head",
  32672. image: {
  32673. source: "./media/characters/flux/head.svg"
  32674. }
  32675. },
  32676. headSide: {
  32677. height: math.unit(1.74, "feet"),
  32678. name: "Head (Side)",
  32679. image: {
  32680. source: "./media/characters/flux/head-side.svg"
  32681. }
  32682. },
  32683. headSideFire: {
  32684. height: math.unit(1.76, "feet"),
  32685. name: "Head (Side, Fire)",
  32686. image: {
  32687. source: "./media/characters/flux/head-side-fire.svg"
  32688. }
  32689. },
  32690. },
  32691. [
  32692. {
  32693. name: "Normal",
  32694. height: math.unit(7, "feet"),
  32695. default: true
  32696. },
  32697. ]
  32698. ))
  32699. characterMakers.push(() => makeCharacter(
  32700. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32701. {
  32702. front: {
  32703. height: math.unit(9, "feet"),
  32704. weight: math.unit(1012, "lb"),
  32705. name: "Front",
  32706. image: {
  32707. source: "./media/characters/ulfra-lupae/front.svg",
  32708. extra: 1083/1011,
  32709. bottom: 67/1150
  32710. }
  32711. },
  32712. },
  32713. [
  32714. {
  32715. name: "Micro",
  32716. height: math.unit(6, "inches")
  32717. },
  32718. {
  32719. name: "Socializing",
  32720. height: math.unit(6 + 5/12, "feet")
  32721. },
  32722. {
  32723. name: "Normal",
  32724. height: math.unit(9, "feet"),
  32725. default: true
  32726. },
  32727. {
  32728. name: "Macro",
  32729. height: math.unit(150, "feet")
  32730. },
  32731. ]
  32732. ))
  32733. characterMakers.push(() => makeCharacter(
  32734. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32735. {
  32736. front: {
  32737. height: math.unit(5 + 2/12, "feet"),
  32738. weight: math.unit(120, "lb"),
  32739. name: "Front",
  32740. image: {
  32741. source: "./media/characters/timber/front.svg",
  32742. extra: 2814/2705,
  32743. bottom: 181/2995
  32744. }
  32745. },
  32746. },
  32747. [
  32748. {
  32749. name: "Normal",
  32750. height: math.unit(5 + 2/12, "feet"),
  32751. default: true
  32752. },
  32753. ]
  32754. ))
  32755. characterMakers.push(() => makeCharacter(
  32756. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32757. {
  32758. front: {
  32759. height: math.unit(9, "feet"),
  32760. name: "Front",
  32761. image: {
  32762. source: "./media/characters/nicki/front.svg",
  32763. extra: 1240/990,
  32764. bottom: 45/1285
  32765. },
  32766. form: "anthro",
  32767. default: true
  32768. },
  32769. side: {
  32770. height: math.unit(9, "feet"),
  32771. name: "Side",
  32772. image: {
  32773. source: "./media/characters/nicki/side.svg",
  32774. extra: 1047/973,
  32775. bottom: 61/1108
  32776. },
  32777. form: "anthro"
  32778. },
  32779. back: {
  32780. height: math.unit(9, "feet"),
  32781. name: "Back",
  32782. image: {
  32783. source: "./media/characters/nicki/back.svg",
  32784. extra: 1006/965,
  32785. bottom: 39/1045
  32786. },
  32787. form: "anthro"
  32788. },
  32789. taur: {
  32790. height: math.unit(15, "feet"),
  32791. name: "Taur",
  32792. image: {
  32793. source: "./media/characters/nicki/taur.svg",
  32794. extra: 1592/1347,
  32795. bottom: 0/1592
  32796. },
  32797. form: "taur",
  32798. default: true
  32799. },
  32800. },
  32801. [
  32802. {
  32803. name: "Normal",
  32804. height: math.unit(9, "feet"),
  32805. form: "anthro",
  32806. default: true
  32807. },
  32808. {
  32809. name: "Normal",
  32810. height: math.unit(15, "feet"),
  32811. form: "taur",
  32812. default: true
  32813. }
  32814. ],
  32815. {
  32816. "anthro": {
  32817. name: "Anthro",
  32818. default: true
  32819. },
  32820. "taur": {
  32821. name: "Taur"
  32822. }
  32823. }
  32824. ))
  32825. characterMakers.push(() => makeCharacter(
  32826. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32827. {
  32828. front: {
  32829. height: math.unit(7 + 10/12, "feet"),
  32830. weight: math.unit(3.5, "tons"),
  32831. name: "Front",
  32832. image: {
  32833. source: "./media/characters/lee/front.svg",
  32834. extra: 1773/1615,
  32835. bottom: 86/1859
  32836. }
  32837. },
  32838. hand: {
  32839. height: math.unit(1.78, "feet"),
  32840. name: "Hand",
  32841. image: {
  32842. source: "./media/characters/lee/hand.svg"
  32843. }
  32844. },
  32845. maw: {
  32846. height: math.unit(1.18, "feet"),
  32847. name: "Maw",
  32848. image: {
  32849. source: "./media/characters/lee/maw.svg"
  32850. }
  32851. },
  32852. },
  32853. [
  32854. {
  32855. name: "Normal",
  32856. height: math.unit(7 + 10/12, "feet"),
  32857. default: true
  32858. },
  32859. ]
  32860. ))
  32861. characterMakers.push(() => makeCharacter(
  32862. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32863. {
  32864. front: {
  32865. height: math.unit(9, "feet"),
  32866. name: "Front",
  32867. image: {
  32868. source: "./media/characters/guti/front.svg",
  32869. extra: 4551/4355,
  32870. bottom: 123/4674
  32871. }
  32872. },
  32873. tongue: {
  32874. height: math.unit(1, "feet"),
  32875. name: "Tongue",
  32876. image: {
  32877. source: "./media/characters/guti/tongue.svg"
  32878. }
  32879. },
  32880. paw: {
  32881. height: math.unit(1.18, "feet"),
  32882. name: "Paw",
  32883. image: {
  32884. source: "./media/characters/guti/paw.svg"
  32885. }
  32886. },
  32887. },
  32888. [
  32889. {
  32890. name: "Normal",
  32891. height: math.unit(9, "feet"),
  32892. default: true
  32893. },
  32894. ]
  32895. ))
  32896. characterMakers.push(() => makeCharacter(
  32897. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32898. {
  32899. side: {
  32900. height: math.unit(5, "meters"),
  32901. name: "Side",
  32902. image: {
  32903. source: "./media/characters/vesper/side.svg",
  32904. extra: 1605/1518,
  32905. bottom: 0/1605
  32906. }
  32907. },
  32908. },
  32909. [
  32910. {
  32911. name: "Small",
  32912. height: math.unit(5, "meters")
  32913. },
  32914. {
  32915. name: "Sage",
  32916. height: math.unit(100, "meters"),
  32917. default: true
  32918. },
  32919. {
  32920. name: "Fun Size",
  32921. height: math.unit(600, "meters")
  32922. },
  32923. {
  32924. name: "Goddess",
  32925. height: math.unit(20000, "km")
  32926. },
  32927. {
  32928. name: "Maximum",
  32929. height: math.unit(5, "galaxies")
  32930. },
  32931. ]
  32932. ))
  32933. characterMakers.push(() => makeCharacter(
  32934. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32935. {
  32936. front: {
  32937. height: math.unit(6 + 3/12, "feet"),
  32938. weight: math.unit(190, "lb"),
  32939. name: "Front",
  32940. image: {
  32941. source: "./media/characters/gawain/front.svg",
  32942. extra: 2222/2139,
  32943. bottom: 90/2312
  32944. }
  32945. },
  32946. back: {
  32947. height: math.unit(6 + 3/12, "feet"),
  32948. weight: math.unit(190, "lb"),
  32949. name: "Back",
  32950. image: {
  32951. source: "./media/characters/gawain/back.svg",
  32952. extra: 2199/2111,
  32953. bottom: 73/2272
  32954. }
  32955. },
  32956. },
  32957. [
  32958. {
  32959. name: "Normal",
  32960. height: math.unit(6 + 3/12, "feet"),
  32961. default: true
  32962. },
  32963. ]
  32964. ))
  32965. characterMakers.push(() => makeCharacter(
  32966. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32967. {
  32968. side: {
  32969. height: math.unit(3.5, "meters"),
  32970. weight: math.unit(16000, "lb"),
  32971. name: "Side",
  32972. image: {
  32973. source: "./media/characters/dascalti/side.svg",
  32974. extra: 392/273,
  32975. bottom: 47/439
  32976. }
  32977. },
  32978. breath: {
  32979. height: math.unit(7.4, "feet"),
  32980. name: "Breath",
  32981. image: {
  32982. source: "./media/characters/dascalti/breath.svg"
  32983. }
  32984. },
  32985. fed: {
  32986. height: math.unit(3.6, "meters"),
  32987. weight: math.unit(16000, "lb"),
  32988. name: "Fed",
  32989. image: {
  32990. source: "./media/characters/dascalti/fed.svg",
  32991. extra: 1419/820,
  32992. bottom: 95/1514
  32993. }
  32994. },
  32995. },
  32996. [
  32997. {
  32998. name: "Normal",
  32999. height: math.unit(3.5, "meters"),
  33000. default: true
  33001. },
  33002. ]
  33003. ))
  33004. characterMakers.push(() => makeCharacter(
  33005. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33006. {
  33007. front: {
  33008. height: math.unit(3 + 5/12, "feet"),
  33009. name: "Front",
  33010. image: {
  33011. source: "./media/characters/mauve/front.svg",
  33012. extra: 1126/1033,
  33013. bottom: 65/1191
  33014. }
  33015. },
  33016. side: {
  33017. height: math.unit(3 + 5/12, "feet"),
  33018. name: "Side",
  33019. image: {
  33020. source: "./media/characters/mauve/side.svg",
  33021. extra: 1089/1001,
  33022. bottom: 29/1118
  33023. }
  33024. },
  33025. back: {
  33026. height: math.unit(3 + 5/12, "feet"),
  33027. name: "Back",
  33028. image: {
  33029. source: "./media/characters/mauve/back.svg",
  33030. extra: 1173/1053,
  33031. bottom: 109/1282
  33032. }
  33033. },
  33034. },
  33035. [
  33036. {
  33037. name: "Normal",
  33038. height: math.unit(3 + 5/12, "feet"),
  33039. default: true
  33040. },
  33041. ]
  33042. ))
  33043. characterMakers.push(() => makeCharacter(
  33044. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33045. {
  33046. front: {
  33047. height: math.unit(6 + 3/12, "feet"),
  33048. weight: math.unit(430, "lb"),
  33049. name: "Front",
  33050. image: {
  33051. source: "./media/characters/carlos/front.svg",
  33052. extra: 1964/1913,
  33053. bottom: 70/2034
  33054. }
  33055. },
  33056. },
  33057. [
  33058. {
  33059. name: "Normal",
  33060. height: math.unit(6 + 3/12, "feet"),
  33061. default: true
  33062. },
  33063. ]
  33064. ))
  33065. characterMakers.push(() => makeCharacter(
  33066. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33067. {
  33068. back: {
  33069. height: math.unit(5 + 10/12, "feet"),
  33070. weight: math.unit(200, "lb"),
  33071. name: "Back",
  33072. image: {
  33073. source: "./media/characters/jax/back.svg",
  33074. extra: 764/739,
  33075. bottom: 25/789
  33076. }
  33077. },
  33078. },
  33079. [
  33080. {
  33081. name: "Normal",
  33082. height: math.unit(5 + 10/12, "feet"),
  33083. default: true
  33084. },
  33085. ]
  33086. ))
  33087. characterMakers.push(() => makeCharacter(
  33088. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33089. {
  33090. front: {
  33091. height: math.unit(8, "feet"),
  33092. weight: math.unit(250, "lb"),
  33093. name: "Front",
  33094. image: {
  33095. source: "./media/characters/eikthynir/front.svg",
  33096. extra: 1332/1166,
  33097. bottom: 82/1414
  33098. }
  33099. },
  33100. back: {
  33101. height: math.unit(8, "feet"),
  33102. weight: math.unit(250, "lb"),
  33103. name: "Back",
  33104. image: {
  33105. source: "./media/characters/eikthynir/back.svg",
  33106. extra: 1342/1190,
  33107. bottom: 19/1361
  33108. }
  33109. },
  33110. dick: {
  33111. height: math.unit(2.35, "feet"),
  33112. name: "Dick",
  33113. image: {
  33114. source: "./media/characters/eikthynir/dick.svg"
  33115. }
  33116. },
  33117. },
  33118. [
  33119. {
  33120. name: "Normal",
  33121. height: math.unit(8, "feet"),
  33122. default: true
  33123. },
  33124. ]
  33125. ))
  33126. characterMakers.push(() => makeCharacter(
  33127. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33128. {
  33129. front: {
  33130. height: math.unit(99, "meters"),
  33131. weight: math.unit(13000, "tons"),
  33132. name: "Front",
  33133. image: {
  33134. source: "./media/characters/zlmos/front.svg",
  33135. extra: 2202/1992,
  33136. bottom: 315/2517
  33137. }
  33138. },
  33139. },
  33140. [
  33141. {
  33142. name: "Macro",
  33143. height: math.unit(99, "meters"),
  33144. default: true
  33145. },
  33146. ]
  33147. ))
  33148. characterMakers.push(() => makeCharacter(
  33149. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33150. {
  33151. front: {
  33152. height: math.unit(6 + 5/12, "feet"),
  33153. name: "Front",
  33154. image: {
  33155. source: "./media/characters/purri/front.svg",
  33156. extra: 1698/1610,
  33157. bottom: 32/1730
  33158. }
  33159. },
  33160. frontAlt: {
  33161. height: math.unit(6 + 5/12, "feet"),
  33162. name: "Front (Alt)",
  33163. image: {
  33164. source: "./media/characters/purri/front-alt.svg",
  33165. extra: 450/420,
  33166. bottom: 26/476
  33167. }
  33168. },
  33169. boots: {
  33170. height: math.unit(5.5, "feet"),
  33171. name: "Boots",
  33172. image: {
  33173. source: "./media/characters/purri/boots.svg",
  33174. extra: 905/853,
  33175. bottom: 18/923
  33176. }
  33177. },
  33178. lying: {
  33179. height: math.unit(2, "feet"),
  33180. name: "Lying",
  33181. image: {
  33182. source: "./media/characters/purri/lying.svg",
  33183. extra: 940/843,
  33184. bottom: 146/1086
  33185. }
  33186. },
  33187. devious: {
  33188. height: math.unit(1.77, "feet"),
  33189. name: "Devious",
  33190. image: {
  33191. source: "./media/characters/purri/devious.svg",
  33192. extra: 1440/1155,
  33193. bottom: 147/1587
  33194. }
  33195. },
  33196. bean: {
  33197. height: math.unit(1.94, "feet"),
  33198. name: "Bean",
  33199. image: {
  33200. source: "./media/characters/purri/bean.svg"
  33201. }
  33202. },
  33203. },
  33204. [
  33205. {
  33206. name: "Micro",
  33207. height: math.unit(1, "mm")
  33208. },
  33209. {
  33210. name: "Normal",
  33211. height: math.unit(6 + 5/12, "feet"),
  33212. default: true
  33213. },
  33214. {
  33215. name: "Macro :3c",
  33216. height: math.unit(2, "miles")
  33217. },
  33218. ]
  33219. ))
  33220. characterMakers.push(() => makeCharacter(
  33221. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33222. {
  33223. front: {
  33224. height: math.unit(6 + 2/12, "feet"),
  33225. weight: math.unit(250, "lb"),
  33226. name: "Front",
  33227. image: {
  33228. source: "./media/characters/moonlight/front.svg",
  33229. extra: 1044/908,
  33230. bottom: 56/1100
  33231. }
  33232. },
  33233. feral: {
  33234. height: math.unit(3 + 1/12, "feet"),
  33235. weight: math.unit(50, "kg"),
  33236. name: "Feral",
  33237. image: {
  33238. source: "./media/characters/moonlight/feral.svg",
  33239. extra: 3705/2791,
  33240. bottom: 145/3850
  33241. }
  33242. },
  33243. paw: {
  33244. height: math.unit(1, "feet"),
  33245. name: "Paw",
  33246. image: {
  33247. source: "./media/characters/moonlight/paw.svg"
  33248. }
  33249. },
  33250. paws: {
  33251. height: math.unit(0.98, "feet"),
  33252. name: "Paws",
  33253. image: {
  33254. source: "./media/characters/moonlight/paws.svg",
  33255. extra: 939/939,
  33256. bottom: 50/989
  33257. }
  33258. },
  33259. mouth: {
  33260. height: math.unit(0.48, "feet"),
  33261. name: "Mouth",
  33262. image: {
  33263. source: "./media/characters/moonlight/mouth.svg"
  33264. }
  33265. },
  33266. dick: {
  33267. height: math.unit(1.46, "feet"),
  33268. name: "Dick",
  33269. image: {
  33270. source: "./media/characters/moonlight/dick.svg"
  33271. }
  33272. },
  33273. },
  33274. [
  33275. {
  33276. name: "Normal",
  33277. height: math.unit(6 + 2/12, "feet"),
  33278. default: true
  33279. },
  33280. {
  33281. name: "Macro",
  33282. height: math.unit(300, "feet")
  33283. },
  33284. {
  33285. name: "Macro+",
  33286. height: math.unit(1, "mile")
  33287. },
  33288. {
  33289. name: "Mt. Moon",
  33290. height: math.unit(5, "miles")
  33291. },
  33292. {
  33293. name: "Megamacro",
  33294. height: math.unit(15, "miles")
  33295. },
  33296. ]
  33297. ))
  33298. characterMakers.push(() => makeCharacter(
  33299. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33300. {
  33301. back: {
  33302. height: math.unit(6, "feet"),
  33303. weight: math.unit(150, "lb"),
  33304. name: "Back",
  33305. image: {
  33306. source: "./media/characters/sylen/back.svg",
  33307. extra: 1335/1273,
  33308. bottom: 107/1442
  33309. }
  33310. },
  33311. },
  33312. [
  33313. {
  33314. name: "Normal",
  33315. height: math.unit(5 + 5/12, "feet")
  33316. },
  33317. {
  33318. name: "Megamacro",
  33319. height: math.unit(3, "miles"),
  33320. default: true
  33321. },
  33322. ]
  33323. ))
  33324. characterMakers.push(() => makeCharacter(
  33325. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33326. {
  33327. front: {
  33328. height: math.unit(6, "feet"),
  33329. weight: math.unit(190, "lb"),
  33330. name: "Front",
  33331. image: {
  33332. source: "./media/characters/huttser/front.svg",
  33333. extra: 1152/1058,
  33334. bottom: 23/1175
  33335. }
  33336. },
  33337. side: {
  33338. height: math.unit(6, "feet"),
  33339. weight: math.unit(190, "lb"),
  33340. name: "Side",
  33341. image: {
  33342. source: "./media/characters/huttser/side.svg",
  33343. extra: 1174/1065,
  33344. bottom: 18/1192
  33345. }
  33346. },
  33347. back: {
  33348. height: math.unit(6, "feet"),
  33349. weight: math.unit(190, "lb"),
  33350. name: "Back",
  33351. image: {
  33352. source: "./media/characters/huttser/back.svg",
  33353. extra: 1158/1056,
  33354. bottom: 12/1170
  33355. }
  33356. },
  33357. },
  33358. [
  33359. ]
  33360. ))
  33361. characterMakers.push(() => makeCharacter(
  33362. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33363. {
  33364. side: {
  33365. height: math.unit(12 + 9/12, "feet"),
  33366. weight: math.unit(15000, "lb"),
  33367. name: "Side",
  33368. image: {
  33369. source: "./media/characters/faan/side.svg",
  33370. extra: 2747/2697,
  33371. bottom: 0/2747
  33372. }
  33373. },
  33374. front: {
  33375. height: math.unit(12 + 9/12, "feet"),
  33376. weight: math.unit(15000, "lb"),
  33377. name: "Front",
  33378. image: {
  33379. source: "./media/characters/faan/front.svg",
  33380. extra: 607/571,
  33381. bottom: 24/631
  33382. }
  33383. },
  33384. head: {
  33385. height: math.unit(2.85, "feet"),
  33386. name: "Head",
  33387. image: {
  33388. source: "./media/characters/faan/head.svg"
  33389. }
  33390. },
  33391. headAlt: {
  33392. height: math.unit(3.13, "feet"),
  33393. name: "Head-alt",
  33394. image: {
  33395. source: "./media/characters/faan/head-alt.svg"
  33396. }
  33397. },
  33398. },
  33399. [
  33400. {
  33401. name: "Normal",
  33402. height: math.unit(12 + 9/12, "feet"),
  33403. default: true
  33404. },
  33405. ]
  33406. ))
  33407. characterMakers.push(() => makeCharacter(
  33408. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33409. {
  33410. front: {
  33411. height: math.unit(6, "feet"),
  33412. weight: math.unit(300, "lb"),
  33413. name: "Front",
  33414. image: {
  33415. source: "./media/characters/tanio/front.svg",
  33416. extra: 711/673,
  33417. bottom: 25/736
  33418. }
  33419. },
  33420. },
  33421. [
  33422. {
  33423. name: "Normal",
  33424. height: math.unit(6, "feet"),
  33425. default: true
  33426. },
  33427. ]
  33428. ))
  33429. characterMakers.push(() => makeCharacter(
  33430. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33431. {
  33432. front: {
  33433. height: math.unit(3, "inches"),
  33434. name: "Front",
  33435. image: {
  33436. source: "./media/characters/noboru/front.svg",
  33437. extra: 1039/932,
  33438. bottom: 18/1057
  33439. }
  33440. },
  33441. },
  33442. [
  33443. {
  33444. name: "Micro",
  33445. height: math.unit(3, "inches"),
  33446. default: true
  33447. },
  33448. ]
  33449. ))
  33450. characterMakers.push(() => makeCharacter(
  33451. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33452. {
  33453. front: {
  33454. height: math.unit(1.85, "meters"),
  33455. weight: math.unit(80, "kg"),
  33456. name: "Front",
  33457. image: {
  33458. source: "./media/characters/daniel-barrett/front.svg",
  33459. extra: 355/337,
  33460. bottom: 9/364
  33461. }
  33462. },
  33463. },
  33464. [
  33465. {
  33466. name: "Pico",
  33467. height: math.unit(0.0433, "mm")
  33468. },
  33469. {
  33470. name: "Nano",
  33471. height: math.unit(1.5, "mm")
  33472. },
  33473. {
  33474. name: "Micro",
  33475. height: math.unit(5.3, "cm"),
  33476. default: true
  33477. },
  33478. {
  33479. name: "Normal",
  33480. height: math.unit(1.85, "meters")
  33481. },
  33482. {
  33483. name: "Macro",
  33484. height: math.unit(64.7, "meters")
  33485. },
  33486. {
  33487. name: "Megamacro",
  33488. height: math.unit(2.26, "km")
  33489. },
  33490. {
  33491. name: "Gigamacro",
  33492. height: math.unit(79, "km")
  33493. },
  33494. {
  33495. name: "Teramacro",
  33496. height: math.unit(2765, "km")
  33497. },
  33498. {
  33499. name: "Petamacro",
  33500. height: math.unit(96678, "km")
  33501. },
  33502. ]
  33503. ))
  33504. characterMakers.push(() => makeCharacter(
  33505. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33506. {
  33507. front: {
  33508. height: math.unit(30, "meters"),
  33509. weight: math.unit(400, "tons"),
  33510. name: "Front",
  33511. image: {
  33512. source: "./media/characters/zeel/front.svg",
  33513. extra: 2599/2599,
  33514. bottom: 226/2825
  33515. }
  33516. },
  33517. },
  33518. [
  33519. {
  33520. name: "Macro",
  33521. height: math.unit(30, "meters"),
  33522. default: true
  33523. },
  33524. ]
  33525. ))
  33526. characterMakers.push(() => makeCharacter(
  33527. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33528. {
  33529. front: {
  33530. height: math.unit(6 + 7/12, "feet"),
  33531. weight: math.unit(210, "lb"),
  33532. name: "Front",
  33533. image: {
  33534. source: "./media/characters/tarn/front.svg",
  33535. extra: 3517/3220,
  33536. bottom: 91/3608
  33537. }
  33538. },
  33539. back: {
  33540. height: math.unit(6 + 7/12, "feet"),
  33541. weight: math.unit(210, "lb"),
  33542. name: "Back",
  33543. image: {
  33544. source: "./media/characters/tarn/back.svg",
  33545. extra: 3566/3241,
  33546. bottom: 34/3600
  33547. }
  33548. },
  33549. dick: {
  33550. height: math.unit(1.65, "feet"),
  33551. name: "Dick",
  33552. image: {
  33553. source: "./media/characters/tarn/dick.svg"
  33554. }
  33555. },
  33556. paw: {
  33557. height: math.unit(1.80, "feet"),
  33558. name: "Paw",
  33559. image: {
  33560. source: "./media/characters/tarn/paw.svg"
  33561. }
  33562. },
  33563. tongue: {
  33564. height: math.unit(0.97, "feet"),
  33565. name: "Tongue",
  33566. image: {
  33567. source: "./media/characters/tarn/tongue.svg"
  33568. }
  33569. },
  33570. },
  33571. [
  33572. {
  33573. name: "Micro",
  33574. height: math.unit(4, "inches")
  33575. },
  33576. {
  33577. name: "Normal",
  33578. height: math.unit(6 + 7/12, "feet"),
  33579. default: true
  33580. },
  33581. {
  33582. name: "Macro",
  33583. height: math.unit(300, "feet")
  33584. },
  33585. ]
  33586. ))
  33587. characterMakers.push(() => makeCharacter(
  33588. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33589. {
  33590. front: {
  33591. height: math.unit(5 + 7/12, "feet"),
  33592. weight: math.unit(80, "kg"),
  33593. name: "Front",
  33594. image: {
  33595. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33596. extra: 3023/2865,
  33597. bottom: 33/3056
  33598. }
  33599. },
  33600. back: {
  33601. height: math.unit(5 + 7/12, "feet"),
  33602. weight: math.unit(80, "kg"),
  33603. name: "Back",
  33604. image: {
  33605. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33606. extra: 3020/2886,
  33607. bottom: 30/3050
  33608. }
  33609. },
  33610. dick: {
  33611. height: math.unit(0.98, "feet"),
  33612. name: "Dick",
  33613. image: {
  33614. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33615. }
  33616. },
  33617. anatomy: {
  33618. height: math.unit(2.86, "feet"),
  33619. name: "Anatomy",
  33620. image: {
  33621. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33622. }
  33623. },
  33624. },
  33625. [
  33626. {
  33627. name: "Really Small",
  33628. height: math.unit(2, "inches")
  33629. },
  33630. {
  33631. name: "Micro",
  33632. height: math.unit(5.583, "inches")
  33633. },
  33634. {
  33635. name: "Normal",
  33636. height: math.unit(5 + 7/12, "feet"),
  33637. default: true
  33638. },
  33639. {
  33640. name: "Macro",
  33641. height: math.unit(67, "feet")
  33642. },
  33643. {
  33644. name: "Megamacro",
  33645. height: math.unit(134, "feet")
  33646. },
  33647. ]
  33648. ))
  33649. characterMakers.push(() => makeCharacter(
  33650. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33651. {
  33652. front: {
  33653. height: math.unit(9, "feet"),
  33654. weight: math.unit(120, "lb"),
  33655. name: "Front",
  33656. image: {
  33657. source: "./media/characters/sally/front.svg",
  33658. extra: 1506/1349,
  33659. bottom: 66/1572
  33660. }
  33661. },
  33662. },
  33663. [
  33664. {
  33665. name: "Normal",
  33666. height: math.unit(9, "feet"),
  33667. default: true
  33668. },
  33669. ]
  33670. ))
  33671. characterMakers.push(() => makeCharacter(
  33672. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33673. {
  33674. front: {
  33675. height: math.unit(8, "feet"),
  33676. weight: math.unit(900, "lb"),
  33677. name: "Front",
  33678. image: {
  33679. source: "./media/characters/owen/front.svg",
  33680. extra: 1761/1657,
  33681. bottom: 74/1835
  33682. }
  33683. },
  33684. side: {
  33685. height: math.unit(8, "feet"),
  33686. weight: math.unit(900, "lb"),
  33687. name: "Side",
  33688. image: {
  33689. source: "./media/characters/owen/side.svg",
  33690. extra: 1797/1734,
  33691. bottom: 30/1827
  33692. }
  33693. },
  33694. back: {
  33695. height: math.unit(8, "feet"),
  33696. weight: math.unit(900, "lb"),
  33697. name: "Back",
  33698. image: {
  33699. source: "./media/characters/owen/back.svg",
  33700. extra: 1796/1706,
  33701. bottom: 59/1855
  33702. }
  33703. },
  33704. maw: {
  33705. height: math.unit(1.76, "feet"),
  33706. name: "Maw",
  33707. image: {
  33708. source: "./media/characters/owen/maw.svg"
  33709. }
  33710. },
  33711. },
  33712. [
  33713. {
  33714. name: "Normal",
  33715. height: math.unit(8, "feet"),
  33716. default: true
  33717. },
  33718. ]
  33719. ))
  33720. characterMakers.push(() => makeCharacter(
  33721. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33722. {
  33723. front: {
  33724. height: math.unit(4, "feet"),
  33725. weight: math.unit(400, "lb"),
  33726. name: "Front",
  33727. image: {
  33728. source: "./media/characters/ryth/front.svg",
  33729. extra: 1920/1748,
  33730. bottom: 42/1962
  33731. }
  33732. },
  33733. back: {
  33734. height: math.unit(4, "feet"),
  33735. weight: math.unit(400, "lb"),
  33736. name: "Back",
  33737. image: {
  33738. source: "./media/characters/ryth/back.svg",
  33739. extra: 1897/1690,
  33740. bottom: 89/1986
  33741. }
  33742. },
  33743. mouth: {
  33744. height: math.unit(1.39, "feet"),
  33745. name: "Mouth",
  33746. image: {
  33747. source: "./media/characters/ryth/mouth.svg"
  33748. }
  33749. },
  33750. tailmaw: {
  33751. height: math.unit(1.23, "feet"),
  33752. name: "Tailmaw",
  33753. image: {
  33754. source: "./media/characters/ryth/tailmaw.svg"
  33755. }
  33756. },
  33757. goia: {
  33758. height: math.unit(4, "meters"),
  33759. weight: math.unit(10800, "lb"),
  33760. name: "Goia",
  33761. image: {
  33762. source: "./media/characters/ryth/goia.svg",
  33763. extra: 745/640,
  33764. bottom: 107/852
  33765. }
  33766. },
  33767. goiaFront: {
  33768. height: math.unit(4, "meters"),
  33769. weight: math.unit(10800, "lb"),
  33770. name: "Goia (Front)",
  33771. image: {
  33772. source: "./media/characters/ryth/goia-front.svg",
  33773. extra: 750/586,
  33774. bottom: 114/864
  33775. }
  33776. },
  33777. goiaMaw: {
  33778. height: math.unit(5.55, "feet"),
  33779. name: "Goia Maw",
  33780. image: {
  33781. source: "./media/characters/ryth/goia-maw.svg"
  33782. }
  33783. },
  33784. goiaForepaw: {
  33785. height: math.unit(3.5, "feet"),
  33786. name: "Goia Forepaw",
  33787. image: {
  33788. source: "./media/characters/ryth/goia-forepaw.svg"
  33789. }
  33790. },
  33791. goiaHindpaw: {
  33792. height: math.unit(5.55, "feet"),
  33793. name: "Goia Hindpaw",
  33794. image: {
  33795. source: "./media/characters/ryth/goia-hindpaw.svg"
  33796. }
  33797. },
  33798. },
  33799. [
  33800. {
  33801. name: "Normal",
  33802. height: math.unit(4, "feet"),
  33803. default: true
  33804. },
  33805. ]
  33806. ))
  33807. characterMakers.push(() => makeCharacter(
  33808. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33809. {
  33810. front: {
  33811. height: math.unit(7, "feet"),
  33812. weight: math.unit(180, "lb"),
  33813. name: "Front",
  33814. image: {
  33815. source: "./media/characters/necrolance/front.svg",
  33816. extra: 1062/947,
  33817. bottom: 41/1103
  33818. }
  33819. },
  33820. back: {
  33821. height: math.unit(7, "feet"),
  33822. weight: math.unit(180, "lb"),
  33823. name: "Back",
  33824. image: {
  33825. source: "./media/characters/necrolance/back.svg",
  33826. extra: 1045/984,
  33827. bottom: 14/1059
  33828. }
  33829. },
  33830. wing: {
  33831. height: math.unit(2.67, "feet"),
  33832. name: "Wing",
  33833. image: {
  33834. source: "./media/characters/necrolance/wing.svg"
  33835. }
  33836. },
  33837. },
  33838. [
  33839. {
  33840. name: "Normal",
  33841. height: math.unit(7, "feet"),
  33842. default: true
  33843. },
  33844. ]
  33845. ))
  33846. characterMakers.push(() => makeCharacter(
  33847. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33848. {
  33849. front: {
  33850. height: math.unit(76, "meters"),
  33851. weight: math.unit(30000, "tons"),
  33852. name: "Front",
  33853. image: {
  33854. source: "./media/characters/tyler/front.svg",
  33855. extra: 1640/1640,
  33856. bottom: 114/1754
  33857. }
  33858. },
  33859. },
  33860. [
  33861. {
  33862. name: "Macro",
  33863. height: math.unit(76, "meters"),
  33864. default: true
  33865. },
  33866. ]
  33867. ))
  33868. characterMakers.push(() => makeCharacter(
  33869. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33870. {
  33871. front: {
  33872. height: math.unit(4 + 11/12, "feet"),
  33873. weight: math.unit(132, "lb"),
  33874. name: "Front",
  33875. image: {
  33876. source: "./media/characters/icey/front.svg",
  33877. extra: 2750/2550,
  33878. bottom: 33/2783
  33879. }
  33880. },
  33881. back: {
  33882. height: math.unit(4 + 11/12, "feet"),
  33883. weight: math.unit(132, "lb"),
  33884. name: "Back",
  33885. image: {
  33886. source: "./media/characters/icey/back.svg",
  33887. extra: 2624/2481,
  33888. bottom: 35/2659
  33889. }
  33890. },
  33891. },
  33892. [
  33893. {
  33894. name: "Normal",
  33895. height: math.unit(4 + 11/12, "feet"),
  33896. default: true
  33897. },
  33898. ]
  33899. ))
  33900. characterMakers.push(() => makeCharacter(
  33901. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33902. {
  33903. front: {
  33904. height: math.unit(100, "feet"),
  33905. weight: math.unit(0, "lb"),
  33906. name: "Front",
  33907. image: {
  33908. source: "./media/characters/smile/front.svg",
  33909. extra: 2983/2912,
  33910. bottom: 162/3145
  33911. }
  33912. },
  33913. back: {
  33914. height: math.unit(100, "feet"),
  33915. weight: math.unit(0, "lb"),
  33916. name: "Back",
  33917. image: {
  33918. source: "./media/characters/smile/back.svg",
  33919. extra: 3143/3031,
  33920. bottom: 91/3234
  33921. }
  33922. },
  33923. head: {
  33924. height: math.unit(26.3, "feet"),
  33925. weight: math.unit(0, "lb"),
  33926. name: "Head",
  33927. image: {
  33928. source: "./media/characters/smile/head.svg"
  33929. }
  33930. },
  33931. collar: {
  33932. height: math.unit(5.3, "feet"),
  33933. weight: math.unit(0, "lb"),
  33934. name: "Collar",
  33935. image: {
  33936. source: "./media/characters/smile/collar.svg"
  33937. }
  33938. },
  33939. },
  33940. [
  33941. {
  33942. name: "Macro",
  33943. height: math.unit(100, "feet"),
  33944. default: true
  33945. },
  33946. ]
  33947. ))
  33948. characterMakers.push(() => makeCharacter(
  33949. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33950. {
  33951. dragon: {
  33952. height: math.unit(26, "feet"),
  33953. weight: math.unit(36, "tons"),
  33954. name: "Dragon",
  33955. image: {
  33956. source: "./media/characters/arimphae/dragon.svg",
  33957. extra: 1574/983,
  33958. bottom: 357/1931
  33959. }
  33960. },
  33961. drake: {
  33962. height: math.unit(9, "feet"),
  33963. weight: math.unit(1.5, "tons"),
  33964. name: "Drake",
  33965. image: {
  33966. source: "./media/characters/arimphae/drake.svg",
  33967. extra: 1120/925,
  33968. bottom: 435/1555
  33969. }
  33970. },
  33971. },
  33972. [
  33973. {
  33974. name: "Small",
  33975. height: math.unit(26*5/9, "feet")
  33976. },
  33977. {
  33978. name: "Normal",
  33979. height: math.unit(26, "feet"),
  33980. default: true
  33981. },
  33982. ]
  33983. ))
  33984. characterMakers.push(() => makeCharacter(
  33985. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33986. {
  33987. front: {
  33988. height: math.unit(8 + 9/12, "feet"),
  33989. name: "Front",
  33990. image: {
  33991. source: "./media/characters/xander/front.svg",
  33992. extra: 1237/974,
  33993. bottom: 94/1331
  33994. }
  33995. },
  33996. },
  33997. [
  33998. {
  33999. name: "Normal",
  34000. height: math.unit(8 + 9/12, "feet"),
  34001. default: true
  34002. },
  34003. {
  34004. name: "Gaze Grabber",
  34005. height: math.unit(13 + 8/12, "feet")
  34006. },
  34007. {
  34008. name: "Jaw Dropper",
  34009. height: math.unit(27, "feet")
  34010. },
  34011. {
  34012. name: "Show Stopper",
  34013. height: math.unit(136, "feet")
  34014. },
  34015. {
  34016. name: "Superstar",
  34017. height: math.unit(1.9e6, "miles")
  34018. },
  34019. ]
  34020. ))
  34021. characterMakers.push(() => makeCharacter(
  34022. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34023. {
  34024. side: {
  34025. height: math.unit(2100, "feet"),
  34026. name: "Side",
  34027. image: {
  34028. source: "./media/characters/osiris/side.svg",
  34029. extra: 1105/939,
  34030. bottom: 167/1272
  34031. }
  34032. },
  34033. },
  34034. [
  34035. {
  34036. name: "Macro",
  34037. height: math.unit(2100, "feet"),
  34038. default: true
  34039. },
  34040. ]
  34041. ))
  34042. characterMakers.push(() => makeCharacter(
  34043. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34044. {
  34045. front: {
  34046. height: math.unit(6 + 8/12, "feet"),
  34047. weight: math.unit(225, "lb"),
  34048. name: "Front",
  34049. image: {
  34050. source: "./media/characters/rhys-londe/front.svg",
  34051. extra: 2258/2141,
  34052. bottom: 188/2446
  34053. }
  34054. },
  34055. back: {
  34056. height: math.unit(6 + 8/12, "feet"),
  34057. weight: math.unit(225, "lb"),
  34058. name: "Back",
  34059. image: {
  34060. source: "./media/characters/rhys-londe/back.svg",
  34061. extra: 2237/2137,
  34062. bottom: 63/2300
  34063. }
  34064. },
  34065. frontNsfw: {
  34066. height: math.unit(6 + 8/12, "feet"),
  34067. weight: math.unit(225, "lb"),
  34068. name: "Front (NSFW)",
  34069. image: {
  34070. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34071. extra: 2258/2141,
  34072. bottom: 188/2446
  34073. }
  34074. },
  34075. backNsfw: {
  34076. height: math.unit(6 + 8/12, "feet"),
  34077. weight: math.unit(225, "lb"),
  34078. name: "Back (NSFW)",
  34079. image: {
  34080. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34081. extra: 2237/2137,
  34082. bottom: 63/2300
  34083. }
  34084. },
  34085. dick: {
  34086. height: math.unit(30, "inches"),
  34087. name: "Dick",
  34088. image: {
  34089. source: "./media/characters/rhys-londe/dick.svg"
  34090. }
  34091. },
  34092. maw: {
  34093. height: math.unit(1.6, "feet"),
  34094. name: "Maw",
  34095. image: {
  34096. source: "./media/characters/rhys-londe/maw.svg"
  34097. }
  34098. },
  34099. },
  34100. [
  34101. {
  34102. name: "Normal",
  34103. height: math.unit(6 + 8/12, "feet"),
  34104. default: true
  34105. },
  34106. ]
  34107. ))
  34108. characterMakers.push(() => makeCharacter(
  34109. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34110. {
  34111. front: {
  34112. height: math.unit(3 + 10/12, "feet"),
  34113. weight: math.unit(90, "lb"),
  34114. name: "Front",
  34115. image: {
  34116. source: "./media/characters/taivas-ensim/front.svg",
  34117. extra: 1327/1216,
  34118. bottom: 96/1423
  34119. }
  34120. },
  34121. back: {
  34122. height: math.unit(3 + 10/12, "feet"),
  34123. weight: math.unit(90, "lb"),
  34124. name: "Back",
  34125. image: {
  34126. source: "./media/characters/taivas-ensim/back.svg",
  34127. extra: 1355/1247,
  34128. bottom: 11/1366
  34129. }
  34130. },
  34131. frontNsfw: {
  34132. height: math.unit(3 + 10/12, "feet"),
  34133. weight: math.unit(90, "lb"),
  34134. name: "Front (NSFW)",
  34135. image: {
  34136. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34137. extra: 1327/1216,
  34138. bottom: 96/1423
  34139. }
  34140. },
  34141. backNsfw: {
  34142. height: math.unit(3 + 10/12, "feet"),
  34143. weight: math.unit(90, "lb"),
  34144. name: "Back (NSFW)",
  34145. image: {
  34146. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34147. extra: 1355/1247,
  34148. bottom: 11/1366
  34149. }
  34150. },
  34151. },
  34152. [
  34153. {
  34154. name: "Normal",
  34155. height: math.unit(3 + 10/12, "feet"),
  34156. default: true
  34157. },
  34158. ]
  34159. ))
  34160. characterMakers.push(() => makeCharacter(
  34161. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34162. {
  34163. front: {
  34164. height: math.unit(9 + 6/12, "feet"),
  34165. weight: math.unit(940, "lb"),
  34166. name: "Front",
  34167. image: {
  34168. source: "./media/characters/byliss/front.svg",
  34169. extra: 1327/1290,
  34170. bottom: 82/1409
  34171. }
  34172. },
  34173. back: {
  34174. height: math.unit(9 + 6/12, "feet"),
  34175. weight: math.unit(940, "lb"),
  34176. name: "Back",
  34177. image: {
  34178. source: "./media/characters/byliss/back.svg",
  34179. extra: 1376/1349,
  34180. bottom: 9/1385
  34181. }
  34182. },
  34183. frontNsfw: {
  34184. height: math.unit(9 + 6/12, "feet"),
  34185. weight: math.unit(940, "lb"),
  34186. name: "Front (NSFW)",
  34187. image: {
  34188. source: "./media/characters/byliss/front-nsfw.svg",
  34189. extra: 1327/1290,
  34190. bottom: 82/1409
  34191. }
  34192. },
  34193. backNsfw: {
  34194. height: math.unit(9 + 6/12, "feet"),
  34195. weight: math.unit(940, "lb"),
  34196. name: "Back (NSFW)",
  34197. image: {
  34198. source: "./media/characters/byliss/back-nsfw.svg",
  34199. extra: 1376/1349,
  34200. bottom: 9/1385
  34201. }
  34202. },
  34203. },
  34204. [
  34205. {
  34206. name: "Normal",
  34207. height: math.unit(9 + 6/12, "feet"),
  34208. default: true
  34209. },
  34210. ]
  34211. ))
  34212. characterMakers.push(() => makeCharacter(
  34213. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34214. {
  34215. front: {
  34216. height: math.unit(5 + 2/12, "feet"),
  34217. weight: math.unit(200, "lb"),
  34218. name: "Front",
  34219. image: {
  34220. source: "./media/characters/noraly/front.svg",
  34221. extra: 4985/4773,
  34222. bottom: 150/5135
  34223. }
  34224. },
  34225. full: {
  34226. height: math.unit(5 + 2/12, "feet"),
  34227. weight: math.unit(164, "lb"),
  34228. name: "Full",
  34229. image: {
  34230. source: "./media/characters/noraly/full.svg",
  34231. extra: 1114/1059,
  34232. bottom: 35/1149
  34233. }
  34234. },
  34235. fuller: {
  34236. height: math.unit(5 + 2/12, "feet"),
  34237. weight: math.unit(230, "lb"),
  34238. name: "Fuller",
  34239. image: {
  34240. source: "./media/characters/noraly/fuller.svg",
  34241. extra: 1114/1059,
  34242. bottom: 35/1149
  34243. }
  34244. },
  34245. fullest: {
  34246. height: math.unit(5 + 2/12, "feet"),
  34247. weight: math.unit(300, "lb"),
  34248. name: "Fullest",
  34249. image: {
  34250. source: "./media/characters/noraly/fullest.svg",
  34251. extra: 1114/1059,
  34252. bottom: 35/1149
  34253. }
  34254. },
  34255. },
  34256. [
  34257. {
  34258. name: "Normal",
  34259. height: math.unit(5 + 2/12, "feet"),
  34260. default: true
  34261. },
  34262. ]
  34263. ))
  34264. characterMakers.push(() => makeCharacter(
  34265. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34266. {
  34267. front: {
  34268. height: math.unit(5 + 2/12, "feet"),
  34269. weight: math.unit(210, "lb"),
  34270. name: "Front",
  34271. image: {
  34272. source: "./media/characters/pera/front.svg",
  34273. extra: 1560/1531,
  34274. bottom: 165/1725
  34275. }
  34276. },
  34277. back: {
  34278. height: math.unit(5 + 2/12, "feet"),
  34279. weight: math.unit(210, "lb"),
  34280. name: "Back",
  34281. image: {
  34282. source: "./media/characters/pera/back.svg",
  34283. extra: 1523/1493,
  34284. bottom: 152/1675
  34285. }
  34286. },
  34287. dick: {
  34288. height: math.unit(2.4, "feet"),
  34289. name: "Dick",
  34290. image: {
  34291. source: "./media/characters/pera/dick.svg"
  34292. }
  34293. },
  34294. },
  34295. [
  34296. {
  34297. name: "Normal",
  34298. height: math.unit(5 + 2/12, "feet"),
  34299. default: true
  34300. },
  34301. ]
  34302. ))
  34303. characterMakers.push(() => makeCharacter(
  34304. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34305. {
  34306. front: {
  34307. height: math.unit(12, "feet"),
  34308. weight: math.unit(3200, "lb"),
  34309. name: "Front",
  34310. image: {
  34311. source: "./media/characters/julian/front.svg",
  34312. extra: 2962/2701,
  34313. bottom: 184/3146
  34314. }
  34315. },
  34316. maw: {
  34317. height: math.unit(5.35, "feet"),
  34318. name: "Maw",
  34319. image: {
  34320. source: "./media/characters/julian/maw.svg"
  34321. }
  34322. },
  34323. paw: {
  34324. height: math.unit(3.07, "feet"),
  34325. name: "Paw",
  34326. image: {
  34327. source: "./media/characters/julian/paw.svg"
  34328. }
  34329. },
  34330. },
  34331. [
  34332. {
  34333. name: "Default",
  34334. height: math.unit(12, "feet"),
  34335. default: true
  34336. },
  34337. {
  34338. name: "Big",
  34339. height: math.unit(50, "feet")
  34340. },
  34341. {
  34342. name: "Really Big",
  34343. height: math.unit(1, "mile")
  34344. },
  34345. {
  34346. name: "Extremely Big",
  34347. height: math.unit(100, "miles")
  34348. },
  34349. {
  34350. name: "Planet Hugger",
  34351. height: math.unit(200, "megameters")
  34352. },
  34353. {
  34354. name: "Unreasonably Big",
  34355. height: math.unit(1e300, "meters")
  34356. },
  34357. ]
  34358. ))
  34359. characterMakers.push(() => makeCharacter(
  34360. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34361. {
  34362. solgooleo: {
  34363. height: math.unit(4, "meters"),
  34364. weight: math.unit(6000*1.5, "kg"),
  34365. volume: math.unit(6000, "liters"),
  34366. name: "Solgooleo",
  34367. image: {
  34368. source: "./media/characters/pi/solgooleo.svg",
  34369. extra: 388/331,
  34370. bottom: 29/417
  34371. }
  34372. },
  34373. },
  34374. [
  34375. {
  34376. name: "Normal",
  34377. height: math.unit(4, "meters"),
  34378. default: true
  34379. },
  34380. ]
  34381. ))
  34382. characterMakers.push(() => makeCharacter(
  34383. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34384. {
  34385. front: {
  34386. height: math.unit(8, "feet"),
  34387. weight: math.unit(4, "tons"),
  34388. name: "Front",
  34389. image: {
  34390. source: "./media/characters/shaun/front.svg",
  34391. extra: 503/495,
  34392. bottom: 20/523
  34393. }
  34394. },
  34395. back: {
  34396. height: math.unit(8, "feet"),
  34397. weight: math.unit(4, "tons"),
  34398. name: "Back",
  34399. image: {
  34400. source: "./media/characters/shaun/back.svg",
  34401. extra: 487/480,
  34402. bottom: 20/507
  34403. }
  34404. },
  34405. },
  34406. [
  34407. {
  34408. name: "Lorg",
  34409. height: math.unit(8, "feet"),
  34410. default: true
  34411. },
  34412. ]
  34413. ))
  34414. characterMakers.push(() => makeCharacter(
  34415. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34416. {
  34417. frontAnthro: {
  34418. height: math.unit(7, "feet"),
  34419. name: "Front",
  34420. image: {
  34421. source: "./media/characters/sini/front-anthro.svg",
  34422. extra: 726/678,
  34423. bottom: 35/761
  34424. },
  34425. form: "anthro",
  34426. default: true
  34427. },
  34428. backAnthro: {
  34429. height: math.unit(7, "feet"),
  34430. name: "Back",
  34431. image: {
  34432. source: "./media/characters/sini/back-anthro.svg",
  34433. extra: 743/701,
  34434. bottom: 12/755
  34435. },
  34436. form: "anthro",
  34437. },
  34438. frontAnthroNsfw: {
  34439. height: math.unit(7, "feet"),
  34440. name: "Front (NSFW)",
  34441. image: {
  34442. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34443. extra: 726/678,
  34444. bottom: 35/761
  34445. },
  34446. form: "anthro"
  34447. },
  34448. backAnthroNsfw: {
  34449. height: math.unit(7, "feet"),
  34450. name: "Back (NSFW)",
  34451. image: {
  34452. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34453. extra: 743/701,
  34454. bottom: 12/755
  34455. },
  34456. form: "anthro",
  34457. },
  34458. mawAnthro: {
  34459. height: math.unit(2.14, "feet"),
  34460. name: "Maw",
  34461. image: {
  34462. source: "./media/characters/sini/maw-anthro.svg"
  34463. },
  34464. form: "anthro"
  34465. },
  34466. dick: {
  34467. height: math.unit(1.45, "feet"),
  34468. name: "Dick",
  34469. image: {
  34470. source: "./media/characters/sini/dick-anthro.svg"
  34471. },
  34472. form: "anthro"
  34473. },
  34474. feral: {
  34475. height: math.unit(16, "feet"),
  34476. name: "Feral",
  34477. image: {
  34478. source: "./media/characters/sini/feral.svg",
  34479. extra: 814/605,
  34480. bottom: 11/825
  34481. },
  34482. form: "feral",
  34483. default: true
  34484. },
  34485. feralNsfw: {
  34486. height: math.unit(16, "feet"),
  34487. name: "Feral (NSFW)",
  34488. image: {
  34489. source: "./media/characters/sini/feral-nsfw.svg",
  34490. extra: 814/605,
  34491. bottom: 11/825
  34492. },
  34493. form: "feral"
  34494. },
  34495. mawFeral: {
  34496. height: math.unit(5.66, "feet"),
  34497. name: "Maw",
  34498. image: {
  34499. source: "./media/characters/sini/maw-feral.svg"
  34500. },
  34501. form: "feral",
  34502. },
  34503. pawFeral: {
  34504. height: math.unit(5.17, "feet"),
  34505. name: "Paw",
  34506. image: {
  34507. source: "./media/characters/sini/paw-feral.svg"
  34508. },
  34509. form: "feral",
  34510. },
  34511. rumpFeral: {
  34512. height: math.unit(13.11, "feet"),
  34513. name: "Rump",
  34514. image: {
  34515. source: "./media/characters/sini/rump-feral.svg"
  34516. },
  34517. form: "feral",
  34518. },
  34519. dickFeral: {
  34520. height: math.unit(1, "feet"),
  34521. name: "Dick",
  34522. image: {
  34523. source: "./media/characters/sini/dick-feral.svg"
  34524. },
  34525. form: "feral",
  34526. },
  34527. eyeFeral: {
  34528. height: math.unit(1.23, "feet"),
  34529. name: "Eye",
  34530. image: {
  34531. source: "./media/characters/sini/eye-feral.svg"
  34532. },
  34533. form: "feral",
  34534. },
  34535. },
  34536. [
  34537. {
  34538. name: "Normal",
  34539. height: math.unit(7, "feet"),
  34540. default: true,
  34541. form: "anthro"
  34542. },
  34543. {
  34544. name: "Normal",
  34545. height: math.unit(16, "feet"),
  34546. default: true,
  34547. form: "feral"
  34548. },
  34549. ],
  34550. {
  34551. "anthro": {
  34552. name: "Anthro",
  34553. default: true
  34554. },
  34555. "feral": {
  34556. name: "Feral",
  34557. }
  34558. }
  34559. ))
  34560. characterMakers.push(() => makeCharacter(
  34561. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34562. {
  34563. side: {
  34564. height: math.unit(47.2, "meters"),
  34565. weight: math.unit(10000, "tons"),
  34566. name: "Side",
  34567. image: {
  34568. source: "./media/characters/raylldo/side.svg",
  34569. extra: 2363/642,
  34570. bottom: 221/2584
  34571. }
  34572. },
  34573. top: {
  34574. height: math.unit(240, "meters"),
  34575. weight: math.unit(10000, "tons"),
  34576. name: "Top",
  34577. image: {
  34578. source: "./media/characters/raylldo/top.svg"
  34579. }
  34580. },
  34581. bottom: {
  34582. height: math.unit(240, "meters"),
  34583. weight: math.unit(10000, "tons"),
  34584. name: "Bottom",
  34585. image: {
  34586. source: "./media/characters/raylldo/bottom.svg"
  34587. }
  34588. },
  34589. head: {
  34590. height: math.unit(38.6, "meters"),
  34591. name: "Head",
  34592. image: {
  34593. source: "./media/characters/raylldo/head.svg",
  34594. extra: 1335/1112,
  34595. bottom: 0/1335
  34596. }
  34597. },
  34598. maw: {
  34599. height: math.unit(16.37, "meters"),
  34600. name: "Maw",
  34601. image: {
  34602. source: "./media/characters/raylldo/maw.svg",
  34603. extra: 883/660,
  34604. bottom: 0/883
  34605. },
  34606. extraAttributes: {
  34607. preyCapacity: {
  34608. name: "Capacity",
  34609. power: 3,
  34610. type: "volume",
  34611. base: math.unit(1000, "people")
  34612. },
  34613. tongueSize: {
  34614. name: "Tongue Size",
  34615. power: 2,
  34616. type: "area",
  34617. base: math.unit(21, "m^2")
  34618. }
  34619. }
  34620. },
  34621. forepaw: {
  34622. height: math.unit(18, "meters"),
  34623. name: "Forepaw",
  34624. image: {
  34625. source: "./media/characters/raylldo/forepaw.svg"
  34626. }
  34627. },
  34628. hindpaw: {
  34629. height: math.unit(23, "meters"),
  34630. name: "Hindpaw",
  34631. image: {
  34632. source: "./media/characters/raylldo/hindpaw.svg"
  34633. }
  34634. },
  34635. genitals: {
  34636. height: math.unit(42, "meters"),
  34637. name: "Genitals",
  34638. image: {
  34639. source: "./media/characters/raylldo/genitals.svg"
  34640. }
  34641. },
  34642. },
  34643. [
  34644. {
  34645. name: "Normal",
  34646. height: math.unit(47.2, "meters"),
  34647. default: true
  34648. },
  34649. ]
  34650. ))
  34651. characterMakers.push(() => makeCharacter(
  34652. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34653. {
  34654. anthroFront: {
  34655. height: math.unit(9, "feet"),
  34656. weight: math.unit(600, "lb"),
  34657. name: "Anthro (Front)",
  34658. image: {
  34659. source: "./media/characters/glint/anthro-front.svg",
  34660. extra: 1097/1018,
  34661. bottom: 28/1125
  34662. }
  34663. },
  34664. anthroBack: {
  34665. height: math.unit(9, "feet"),
  34666. weight: math.unit(600, "lb"),
  34667. name: "Anthro (Back)",
  34668. image: {
  34669. source: "./media/characters/glint/anthro-back.svg",
  34670. extra: 1154/997,
  34671. bottom: 36/1190
  34672. }
  34673. },
  34674. feral: {
  34675. height: math.unit(11, "feet"),
  34676. weight: math.unit(50000, "lb"),
  34677. name: "Feral",
  34678. image: {
  34679. source: "./media/characters/glint/feral.svg",
  34680. extra: 3035/1585,
  34681. bottom: 1169/4204
  34682. }
  34683. },
  34684. dickAnthro: {
  34685. height: math.unit(0.7, "meters"),
  34686. name: "Dick (Anthro)",
  34687. image: {
  34688. source: "./media/characters/glint/dick-anthro.svg"
  34689. }
  34690. },
  34691. dickFeral: {
  34692. height: math.unit(2.65, "meters"),
  34693. name: "Dick (Feral)",
  34694. image: {
  34695. source: "./media/characters/glint/dick-feral.svg"
  34696. }
  34697. },
  34698. slitHidden: {
  34699. height: math.unit(5.85, "meters"),
  34700. name: "Slit (Hidden)",
  34701. image: {
  34702. source: "./media/characters/glint/slit-hidden.svg"
  34703. }
  34704. },
  34705. slitErect: {
  34706. height: math.unit(5.85, "meters"),
  34707. name: "Slit (Erect)",
  34708. image: {
  34709. source: "./media/characters/glint/slit-erect.svg"
  34710. }
  34711. },
  34712. mawAnthro: {
  34713. height: math.unit(0.63, "meters"),
  34714. name: "Maw (Anthro)",
  34715. image: {
  34716. source: "./media/characters/glint/maw.svg"
  34717. }
  34718. },
  34719. mawFeral: {
  34720. height: math.unit(2.89, "meters"),
  34721. name: "Maw (Feral)",
  34722. image: {
  34723. source: "./media/characters/glint/maw.svg"
  34724. }
  34725. },
  34726. },
  34727. [
  34728. {
  34729. name: "Normal",
  34730. height: math.unit(9, "feet"),
  34731. default: true
  34732. },
  34733. ]
  34734. ))
  34735. characterMakers.push(() => makeCharacter(
  34736. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34737. {
  34738. side: {
  34739. height: math.unit(15, "feet"),
  34740. weight: math.unit(5000, "kg"),
  34741. name: "Side",
  34742. image: {
  34743. source: "./media/characters/kairne/side.svg",
  34744. extra: 979/811,
  34745. bottom: 13/992
  34746. }
  34747. },
  34748. front: {
  34749. height: math.unit(15, "feet"),
  34750. weight: math.unit(5000, "kg"),
  34751. name: "Front",
  34752. image: {
  34753. source: "./media/characters/kairne/front.svg",
  34754. extra: 908/814,
  34755. bottom: 26/934
  34756. }
  34757. },
  34758. sideNsfw: {
  34759. height: math.unit(15, "feet"),
  34760. weight: math.unit(5000, "kg"),
  34761. name: "Side (NSFW)",
  34762. image: {
  34763. source: "./media/characters/kairne/side-nsfw.svg",
  34764. extra: 979/811,
  34765. bottom: 13/992
  34766. }
  34767. },
  34768. frontNsfw: {
  34769. height: math.unit(15, "feet"),
  34770. weight: math.unit(5000, "kg"),
  34771. name: "Front (NSFW)",
  34772. image: {
  34773. source: "./media/characters/kairne/front-nsfw.svg",
  34774. extra: 908/814,
  34775. bottom: 26/934
  34776. }
  34777. },
  34778. dickCaged: {
  34779. height: math.unit(0.65, "meters"),
  34780. name: "Dick-caged",
  34781. image: {
  34782. source: "./media/characters/kairne/dick-caged.svg"
  34783. }
  34784. },
  34785. dick: {
  34786. height: math.unit(0.79, "meters"),
  34787. name: "Dick",
  34788. image: {
  34789. source: "./media/characters/kairne/dick.svg"
  34790. }
  34791. },
  34792. genitals: {
  34793. height: math.unit(1.29, "meters"),
  34794. name: "Genitals",
  34795. image: {
  34796. source: "./media/characters/kairne/genitals.svg"
  34797. }
  34798. },
  34799. maw: {
  34800. height: math.unit(1.73, "meters"),
  34801. name: "Maw",
  34802. image: {
  34803. source: "./media/characters/kairne/maw.svg"
  34804. }
  34805. },
  34806. },
  34807. [
  34808. {
  34809. name: "Normal",
  34810. height: math.unit(15, "feet"),
  34811. default: true
  34812. },
  34813. ]
  34814. ))
  34815. characterMakers.push(() => makeCharacter(
  34816. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34817. {
  34818. front: {
  34819. height: math.unit(5 + 8/12, "feet"),
  34820. weight: math.unit(139, "lb"),
  34821. name: "Front",
  34822. image: {
  34823. source: "./media/characters/biscuit-jackal/front.svg",
  34824. extra: 2106/1961,
  34825. bottom: 58/2164
  34826. }
  34827. },
  34828. back: {
  34829. height: math.unit(5 + 8/12, "feet"),
  34830. weight: math.unit(139, "lb"),
  34831. name: "Back",
  34832. image: {
  34833. source: "./media/characters/biscuit-jackal/back.svg",
  34834. extra: 2132/1976,
  34835. bottom: 57/2189
  34836. }
  34837. },
  34838. werejackal: {
  34839. height: math.unit(6 + 3/12, "feet"),
  34840. weight: math.unit(188, "lb"),
  34841. name: "Werejackal",
  34842. image: {
  34843. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34844. extra: 2373/2178,
  34845. bottom: 53/2426
  34846. }
  34847. },
  34848. },
  34849. [
  34850. {
  34851. name: "Normal",
  34852. height: math.unit(5 + 8/12, "feet"),
  34853. default: true
  34854. },
  34855. ]
  34856. ))
  34857. characterMakers.push(() => makeCharacter(
  34858. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34859. {
  34860. front: {
  34861. height: math.unit(140, "cm"),
  34862. weight: math.unit(45, "kg"),
  34863. name: "Front",
  34864. image: {
  34865. source: "./media/characters/tayra-white/front.svg",
  34866. extra: 2229/2192,
  34867. bottom: 75/2304
  34868. }
  34869. },
  34870. },
  34871. [
  34872. {
  34873. name: "Normal",
  34874. height: math.unit(140, "cm"),
  34875. default: true
  34876. },
  34877. ]
  34878. ))
  34879. characterMakers.push(() => makeCharacter(
  34880. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34881. {
  34882. front: {
  34883. height: math.unit(4 + 5/12, "feet"),
  34884. name: "Front",
  34885. image: {
  34886. source: "./media/characters/scoop/front.svg",
  34887. extra: 1257/1136,
  34888. bottom: 69/1326
  34889. }
  34890. },
  34891. back: {
  34892. height: math.unit(4 + 5/12, "feet"),
  34893. name: "Back",
  34894. image: {
  34895. source: "./media/characters/scoop/back.svg",
  34896. extra: 1321/1152,
  34897. bottom: 32/1353
  34898. }
  34899. },
  34900. maw: {
  34901. height: math.unit(0.68, "feet"),
  34902. name: "Maw",
  34903. image: {
  34904. source: "./media/characters/scoop/maw.svg"
  34905. }
  34906. },
  34907. },
  34908. [
  34909. {
  34910. name: "Really Small",
  34911. height: math.unit(1, "mm")
  34912. },
  34913. {
  34914. name: "Micro",
  34915. height: math.unit(1, "inch")
  34916. },
  34917. {
  34918. name: "Normal",
  34919. height: math.unit(4 + 5/12, "feet"),
  34920. default: true
  34921. },
  34922. {
  34923. name: "Macro",
  34924. height: math.unit(200, "feet")
  34925. },
  34926. {
  34927. name: "Megamacro",
  34928. height: math.unit(3240, "feet")
  34929. },
  34930. {
  34931. name: "Teramacro",
  34932. height: math.unit(2500, "miles")
  34933. },
  34934. ]
  34935. ))
  34936. characterMakers.push(() => makeCharacter(
  34937. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34938. {
  34939. front: {
  34940. height: math.unit(15 + 7/12, "feet"),
  34941. weight: math.unit(1150, "tons"),
  34942. name: "Front",
  34943. image: {
  34944. source: "./media/characters/saphinara/front.svg",
  34945. extra: 1837/1643,
  34946. bottom: 84/1921
  34947. },
  34948. form: "normal",
  34949. default: true
  34950. },
  34951. side: {
  34952. height: math.unit(15 + 7/12, "feet"),
  34953. weight: math.unit(1150, "tons"),
  34954. name: "Side",
  34955. image: {
  34956. source: "./media/characters/saphinara/side.svg",
  34957. extra: 605/547,
  34958. bottom: 6/611
  34959. },
  34960. form: "normal"
  34961. },
  34962. back: {
  34963. height: math.unit(15 + 7/12, "feet"),
  34964. weight: math.unit(1150, "tons"),
  34965. name: "Back",
  34966. image: {
  34967. source: "./media/characters/saphinara/back.svg",
  34968. extra: 591/531,
  34969. bottom: 13/604
  34970. },
  34971. form: "normal"
  34972. },
  34973. frontTail: {
  34974. height: math.unit(15 + 7/12, "feet"),
  34975. weight: math.unit(1150, "tons"),
  34976. name: "Front (Full Tail)",
  34977. image: {
  34978. source: "./media/characters/saphinara/front-tail.svg",
  34979. extra: 2256/1630,
  34980. bottom: 261/2517
  34981. },
  34982. form: "normal"
  34983. },
  34984. insides: {
  34985. height: math.unit(11.92, "feet"),
  34986. name: "Insides",
  34987. image: {
  34988. source: "./media/characters/saphinara/insides.svg"
  34989. },
  34990. form: "normal"
  34991. },
  34992. head: {
  34993. height: math.unit(4.17, "feet"),
  34994. name: "Head",
  34995. image: {
  34996. source: "./media/characters/saphinara/head.svg"
  34997. },
  34998. form: "normal"
  34999. },
  35000. tongue: {
  35001. height: math.unit(4.60, "feet"),
  35002. name: "Tongue",
  35003. image: {
  35004. source: "./media/characters/saphinara/tongue.svg"
  35005. },
  35006. form: "normal"
  35007. },
  35008. headEnraged: {
  35009. height: math.unit(5.55, "feet"),
  35010. name: "Head (Enraged)",
  35011. image: {
  35012. source: "./media/characters/saphinara/head-enraged.svg"
  35013. },
  35014. form: "normal"
  35015. },
  35016. wings: {
  35017. height: math.unit(11.95, "feet"),
  35018. name: "Wings",
  35019. image: {
  35020. source: "./media/characters/saphinara/wings.svg"
  35021. },
  35022. form: "normal"
  35023. },
  35024. feathers: {
  35025. height: math.unit(8.92, "feet"),
  35026. name: "Feathers",
  35027. image: {
  35028. source: "./media/characters/saphinara/feathers.svg"
  35029. },
  35030. form: "normal"
  35031. },
  35032. shackles: {
  35033. height: math.unit(2, "feet"),
  35034. name: "Shackles",
  35035. image: {
  35036. source: "./media/characters/saphinara/shackles.svg"
  35037. },
  35038. form: "normal"
  35039. },
  35040. eyes: {
  35041. height: math.unit(1.331, "feet"),
  35042. name: "Eyes",
  35043. image: {
  35044. source: "./media/characters/saphinara/eyes.svg"
  35045. },
  35046. form: "normal"
  35047. },
  35048. eyesEnraged: {
  35049. height: math.unit(1.331, "feet"),
  35050. name: "Eyes (Enraged)",
  35051. image: {
  35052. source: "./media/characters/saphinara/eyes-enraged.svg"
  35053. },
  35054. form: "normal"
  35055. },
  35056. trueFormSide: {
  35057. height: math.unit(200, "feet"),
  35058. weight: math.unit(1e7, "tons"),
  35059. name: "Side",
  35060. image: {
  35061. source: "./media/characters/saphinara/true-form-side.svg",
  35062. extra: 1399/770,
  35063. bottom: 97/1496
  35064. },
  35065. form: "true-form",
  35066. default: true
  35067. },
  35068. trueFormMaw: {
  35069. height: math.unit(71.5, "feet"),
  35070. name: "Maw",
  35071. image: {
  35072. source: "./media/characters/saphinara/true-form-maw.svg",
  35073. extra: 2302/1453,
  35074. bottom: 0/2302
  35075. },
  35076. form: "true-form"
  35077. },
  35078. meowberusSide: {
  35079. height: math.unit(75, "feet"),
  35080. weight: math.unit(180000, "kg"),
  35081. preyCapacity: math.unit(50000, "people"),
  35082. name: "Side",
  35083. image: {
  35084. source: "./media/characters/saphinara/meowberus-side.svg",
  35085. extra: 1400/711,
  35086. bottom: 126/1526
  35087. },
  35088. form: "meowberus",
  35089. extraAttributes: {
  35090. "pawArea": {
  35091. name: "Paw Size",
  35092. power: 2,
  35093. type: "area",
  35094. base: math.unit(35, "m^2")
  35095. }
  35096. }
  35097. },
  35098. },
  35099. [
  35100. {
  35101. name: "Normal",
  35102. height: math.unit(15 + 7/12, "feet"),
  35103. default: true,
  35104. form: "normal"
  35105. },
  35106. {
  35107. name: "Angry",
  35108. height: math.unit(30 + 6/12, "feet"),
  35109. form: "normal"
  35110. },
  35111. {
  35112. name: "Enraged",
  35113. height: math.unit(102 + 1/12, "feet"),
  35114. form: "normal"
  35115. },
  35116. {
  35117. name: "True",
  35118. height: math.unit(200, "feet"),
  35119. default: true,
  35120. form: "true-form"
  35121. },
  35122. {
  35123. name: "Normal",
  35124. height: math.unit(75, "feet"),
  35125. default: true,
  35126. form: "meowberus"
  35127. },
  35128. ],
  35129. {
  35130. "normal": {
  35131. name: "Normal",
  35132. default: true
  35133. },
  35134. "true-form": {
  35135. name: "True Form"
  35136. },
  35137. "meowberus": {
  35138. name: "Meowberus",
  35139. },
  35140. }
  35141. ))
  35142. characterMakers.push(() => makeCharacter(
  35143. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35144. {
  35145. front: {
  35146. height: math.unit(6 + 8/12, "feet"),
  35147. weight: math.unit(300, "lb"),
  35148. name: "Front",
  35149. image: {
  35150. source: "./media/characters/jrain/front.svg",
  35151. extra: 3039/2865,
  35152. bottom: 399/3438
  35153. }
  35154. },
  35155. back: {
  35156. height: math.unit(6 + 8/12, "feet"),
  35157. weight: math.unit(300, "lb"),
  35158. name: "Back",
  35159. image: {
  35160. source: "./media/characters/jrain/back.svg",
  35161. extra: 3089/2938,
  35162. bottom: 172/3261
  35163. }
  35164. },
  35165. head: {
  35166. height: math.unit(2.14, "feet"),
  35167. name: "Head",
  35168. image: {
  35169. source: "./media/characters/jrain/head.svg"
  35170. }
  35171. },
  35172. maw: {
  35173. height: math.unit(1.77, "feet"),
  35174. name: "Maw",
  35175. image: {
  35176. source: "./media/characters/jrain/maw.svg"
  35177. }
  35178. },
  35179. leftHand: {
  35180. height: math.unit(1.1, "feet"),
  35181. name: "Left Hand",
  35182. image: {
  35183. source: "./media/characters/jrain/left-hand.svg"
  35184. }
  35185. },
  35186. rightHand: {
  35187. height: math.unit(1.1, "feet"),
  35188. name: "Right Hand",
  35189. image: {
  35190. source: "./media/characters/jrain/right-hand.svg"
  35191. }
  35192. },
  35193. eye: {
  35194. height: math.unit(0.35, "feet"),
  35195. name: "Eye",
  35196. image: {
  35197. source: "./media/characters/jrain/eye.svg"
  35198. }
  35199. },
  35200. },
  35201. [
  35202. {
  35203. name: "Normal",
  35204. height: math.unit(6 + 8/12, "feet"),
  35205. default: true
  35206. },
  35207. {
  35208. name: "Casually Large",
  35209. height: math.unit(25, "feet")
  35210. },
  35211. {
  35212. name: "Giant",
  35213. height: math.unit(100, "feet")
  35214. },
  35215. {
  35216. name: "Kaiju",
  35217. height: math.unit(300, "feet")
  35218. },
  35219. ]
  35220. ))
  35221. characterMakers.push(() => makeCharacter(
  35222. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35223. {
  35224. dragon: {
  35225. height: math.unit(5, "meters"),
  35226. name: "Dragon",
  35227. image: {
  35228. source: "./media/characters/sabrina/dragon.svg",
  35229. extra: 3670 / 2365,
  35230. bottom: 333 / 4003
  35231. }
  35232. },
  35233. gryphon: {
  35234. height: math.unit(3, "meters"),
  35235. name: "Gryphon",
  35236. image: {
  35237. source: "./media/characters/sabrina/gryphon.svg",
  35238. extra: 1576 / 945,
  35239. bottom: 71 / 1647
  35240. }
  35241. },
  35242. snake: {
  35243. height: math.unit(12, "meters"),
  35244. name: "Snake",
  35245. image: {
  35246. source: "./media/characters/sabrina/snake.svg",
  35247. extra: 1758 / 1320,
  35248. bottom: 186 / 1944
  35249. }
  35250. },
  35251. collar: {
  35252. height: math.unit(1.86, "meters"),
  35253. name: "Collar",
  35254. image: {
  35255. source: "./media/characters/sabrina/collar.svg"
  35256. }
  35257. },
  35258. eye: {
  35259. height: math.unit(0.53, "meters"),
  35260. name: "Eye",
  35261. image: {
  35262. source: "./media/characters/sabrina/eye.svg"
  35263. }
  35264. },
  35265. foot: {
  35266. height: math.unit(1.86, "meters"),
  35267. name: "Foot",
  35268. image: {
  35269. source: "./media/characters/sabrina/foot.svg"
  35270. }
  35271. },
  35272. hand: {
  35273. height: math.unit(1.32, "meters"),
  35274. name: "Hand",
  35275. image: {
  35276. source: "./media/characters/sabrina/hand.svg"
  35277. }
  35278. },
  35279. head: {
  35280. height: math.unit(2.44, "meters"),
  35281. name: "Head",
  35282. image: {
  35283. source: "./media/characters/sabrina/head.svg"
  35284. }
  35285. },
  35286. headAngry: {
  35287. height: math.unit(2.44, "meters"),
  35288. name: "Head (Angry))",
  35289. image: {
  35290. source: "./media/characters/sabrina/head-angry.svg"
  35291. }
  35292. },
  35293. maw: {
  35294. height: math.unit(1.65, "meters"),
  35295. name: "Maw",
  35296. image: {
  35297. source: "./media/characters/sabrina/maw.svg"
  35298. }
  35299. },
  35300. spikes: {
  35301. height: math.unit(1.69, "meters"),
  35302. name: "Spikes",
  35303. image: {
  35304. source: "./media/characters/sabrina/spikes.svg"
  35305. }
  35306. },
  35307. stomach: {
  35308. height: math.unit(1.15, "meters"),
  35309. name: "Stomach",
  35310. image: {
  35311. source: "./media/characters/sabrina/stomach.svg"
  35312. }
  35313. },
  35314. tongue: {
  35315. height: math.unit(1.27, "meters"),
  35316. name: "Tongue",
  35317. image: {
  35318. source: "./media/characters/sabrina/tongue.svg"
  35319. }
  35320. },
  35321. wingDorsal: {
  35322. height: math.unit(4.85, "meters"),
  35323. name: "Wing (Dorsal)",
  35324. image: {
  35325. source: "./media/characters/sabrina/wing-dorsal.svg"
  35326. }
  35327. },
  35328. wingVentral: {
  35329. height: math.unit(4.85, "meters"),
  35330. name: "Wing (Ventral)",
  35331. image: {
  35332. source: "./media/characters/sabrina/wing-ventral.svg"
  35333. }
  35334. },
  35335. },
  35336. [
  35337. {
  35338. name: "Normal",
  35339. height: math.unit(5, "meters"),
  35340. default: true
  35341. },
  35342. ]
  35343. ))
  35344. characterMakers.push(() => makeCharacter(
  35345. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35346. {
  35347. frontMaid: {
  35348. height: math.unit(5 + 5/12, "feet"),
  35349. weight: math.unit(130, "lb"),
  35350. name: "Front (Maid)",
  35351. image: {
  35352. source: "./media/characters/midnight-tales/front-maid.svg",
  35353. extra: 489/454,
  35354. bottom: 61/550
  35355. }
  35356. },
  35357. frontFormal: {
  35358. height: math.unit(5 + 5/12, "feet"),
  35359. weight: math.unit(130, "lb"),
  35360. name: "Front (Formal)",
  35361. image: {
  35362. source: "./media/characters/midnight-tales/front-formal.svg",
  35363. extra: 489/454,
  35364. bottom: 61/550
  35365. }
  35366. },
  35367. back: {
  35368. height: math.unit(5 + 5/12, "feet"),
  35369. weight: math.unit(130, "lb"),
  35370. name: "Back",
  35371. image: {
  35372. source: "./media/characters/midnight-tales/back.svg",
  35373. extra: 498/456,
  35374. bottom: 33/531
  35375. }
  35376. },
  35377. frontBeast: {
  35378. height: math.unit(40, "feet"),
  35379. weight: math.unit(64000, "lb"),
  35380. name: "Front (Beast)",
  35381. image: {
  35382. source: "./media/characters/midnight-tales/front-beast.svg",
  35383. extra: 927/860,
  35384. bottom: 53/980
  35385. }
  35386. },
  35387. backBeast: {
  35388. height: math.unit(40, "feet"),
  35389. weight: math.unit(64000, "lb"),
  35390. name: "Back (Beast)",
  35391. image: {
  35392. source: "./media/characters/midnight-tales/back-beast.svg",
  35393. extra: 929/855,
  35394. bottom: 16/945
  35395. }
  35396. },
  35397. footBeast: {
  35398. height: math.unit(6.7, "feet"),
  35399. name: "Foot (Beast)",
  35400. image: {
  35401. source: "./media/characters/midnight-tales/foot-beast.svg"
  35402. }
  35403. },
  35404. headBeast: {
  35405. height: math.unit(8, "feet"),
  35406. name: "Head (Beast)",
  35407. image: {
  35408. source: "./media/characters/midnight-tales/head-beast.svg"
  35409. }
  35410. },
  35411. },
  35412. [
  35413. {
  35414. name: "Normal",
  35415. height: math.unit(5 + 5 / 12, "feet"),
  35416. default: true
  35417. },
  35418. {
  35419. name: "Macro",
  35420. height: math.unit(25, "feet")
  35421. },
  35422. ]
  35423. ))
  35424. characterMakers.push(() => makeCharacter(
  35425. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35426. {
  35427. front: {
  35428. height: math.unit(5 + 10/12, "feet"),
  35429. name: "Front",
  35430. image: {
  35431. source: "./media/characters/argon/front.svg",
  35432. extra: 2009/1935,
  35433. bottom: 118/2127
  35434. }
  35435. },
  35436. back: {
  35437. height: math.unit(5 + 10/12, "feet"),
  35438. name: "Back",
  35439. image: {
  35440. source: "./media/characters/argon/back.svg",
  35441. extra: 2047/1992,
  35442. bottom: 20/2067
  35443. }
  35444. },
  35445. frontDressed: {
  35446. height: math.unit(5 + 10/12, "feet"),
  35447. name: "Front (Dressed)",
  35448. image: {
  35449. source: "./media/characters/argon/front-dressed.svg",
  35450. extra: 2009/1935,
  35451. bottom: 118/2127
  35452. }
  35453. },
  35454. },
  35455. [
  35456. {
  35457. name: "Normal",
  35458. height: math.unit(5 + 10/12, "feet"),
  35459. default: true
  35460. },
  35461. ]
  35462. ))
  35463. characterMakers.push(() => makeCharacter(
  35464. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35465. {
  35466. front: {
  35467. height: math.unit(8 + 6/12, "feet"),
  35468. weight: math.unit(1150, "lb"),
  35469. name: "Front",
  35470. image: {
  35471. source: "./media/characters/kichi/front.svg",
  35472. extra: 1267/1164,
  35473. bottom: 61/1328
  35474. }
  35475. },
  35476. back: {
  35477. height: math.unit(8 + 6/12, "feet"),
  35478. weight: math.unit(1150, "lb"),
  35479. name: "Back",
  35480. image: {
  35481. source: "./media/characters/kichi/back.svg",
  35482. extra: 1273/1166,
  35483. bottom: 33/1306
  35484. }
  35485. },
  35486. },
  35487. [
  35488. {
  35489. name: "Normal",
  35490. height: math.unit(8 + 6/12, "feet"),
  35491. default: true
  35492. },
  35493. ]
  35494. ))
  35495. characterMakers.push(() => makeCharacter(
  35496. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35497. {
  35498. front: {
  35499. height: math.unit(6, "feet"),
  35500. weight: math.unit(210, "lb"),
  35501. name: "Front",
  35502. image: {
  35503. source: "./media/characters/manetel-greyscale/front.svg",
  35504. extra: 350/312,
  35505. bottom: 8/358
  35506. }
  35507. },
  35508. },
  35509. [
  35510. {
  35511. name: "Micro",
  35512. height: math.unit(2, "inches")
  35513. },
  35514. {
  35515. name: "Normal",
  35516. height: math.unit(6, "feet"),
  35517. default: true
  35518. },
  35519. {
  35520. name: "Minimacro",
  35521. height: math.unit(17, "feet")
  35522. },
  35523. {
  35524. name: "Macro",
  35525. height: math.unit(117, "feet")
  35526. },
  35527. ]
  35528. ))
  35529. characterMakers.push(() => makeCharacter(
  35530. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35531. {
  35532. side: {
  35533. height: math.unit(5 + 1/12, "feet"),
  35534. weight: math.unit(418, "lb"),
  35535. name: "Side",
  35536. image: {
  35537. source: "./media/characters/softpurr/side.svg",
  35538. extra: 1993/1945,
  35539. bottom: 134/2127
  35540. }
  35541. },
  35542. front: {
  35543. height: math.unit(5 + 1/12, "feet"),
  35544. weight: math.unit(418, "lb"),
  35545. name: "Front",
  35546. image: {
  35547. source: "./media/characters/softpurr/front.svg",
  35548. extra: 1950/1856,
  35549. bottom: 174/2124
  35550. }
  35551. },
  35552. paw: {
  35553. height: math.unit(1, "feet"),
  35554. name: "Paw",
  35555. image: {
  35556. source: "./media/characters/softpurr/paw.svg"
  35557. }
  35558. },
  35559. },
  35560. [
  35561. {
  35562. name: "Normal",
  35563. height: math.unit(5 + 1/12, "feet"),
  35564. default: true
  35565. },
  35566. ]
  35567. ))
  35568. characterMakers.push(() => makeCharacter(
  35569. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35570. {
  35571. front: {
  35572. height: math.unit(260, "meters"),
  35573. name: "Front",
  35574. image: {
  35575. source: "./media/characters/anahita/front.svg",
  35576. extra: 665/635,
  35577. bottom: 89/754
  35578. }
  35579. },
  35580. },
  35581. [
  35582. {
  35583. name: "Macro",
  35584. height: math.unit(260, "meters"),
  35585. default: true
  35586. },
  35587. ]
  35588. ))
  35589. characterMakers.push(() => makeCharacter(
  35590. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35591. {
  35592. front: {
  35593. height: math.unit(4 + 10/12, "feet"),
  35594. weight: math.unit(160, "lb"),
  35595. name: "Front",
  35596. image: {
  35597. source: "./media/characters/chip-mouse/front.svg",
  35598. extra: 3528/3408,
  35599. bottom: 0/3528
  35600. }
  35601. },
  35602. frontNsfw: {
  35603. height: math.unit(4 + 10/12, "feet"),
  35604. weight: math.unit(160, "lb"),
  35605. name: "Front (NSFW)",
  35606. image: {
  35607. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35608. extra: 3528/3408,
  35609. bottom: 0/3528
  35610. }
  35611. },
  35612. },
  35613. [
  35614. {
  35615. name: "Normal",
  35616. height: math.unit(4 + 10/12, "feet"),
  35617. default: true
  35618. },
  35619. ]
  35620. ))
  35621. characterMakers.push(() => makeCharacter(
  35622. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35623. {
  35624. side: {
  35625. height: math.unit(10, "feet"),
  35626. weight: math.unit(14000, "lb"),
  35627. name: "Side",
  35628. image: {
  35629. source: "./media/characters/kremm/side.svg",
  35630. extra: 1390/1053,
  35631. bottom: 90/1480
  35632. }
  35633. },
  35634. gut: {
  35635. height: math.unit(5.8, "feet"),
  35636. name: "Gut",
  35637. image: {
  35638. source: "./media/characters/kremm/gut.svg"
  35639. }
  35640. },
  35641. ass: {
  35642. height: math.unit(6.1, "feet"),
  35643. name: "Ass",
  35644. image: {
  35645. source: "./media/characters/kremm/ass.svg"
  35646. }
  35647. },
  35648. jaws: {
  35649. height: math.unit(2.2, "feet"),
  35650. name: "Jaws",
  35651. image: {
  35652. source: "./media/characters/kremm/jaws.svg"
  35653. }
  35654. },
  35655. dick: {
  35656. height: math.unit(4.26, "feet"),
  35657. name: "Dick",
  35658. image: {
  35659. source: "./media/characters/kremm/dick.svg"
  35660. }
  35661. },
  35662. },
  35663. [
  35664. {
  35665. name: "Normal",
  35666. height: math.unit(10, "feet"),
  35667. default: true
  35668. },
  35669. ]
  35670. ))
  35671. characterMakers.push(() => makeCharacter(
  35672. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35673. {
  35674. front: {
  35675. height: math.unit(30, "stories"),
  35676. name: "Front",
  35677. image: {
  35678. source: "./media/characters/kai/front.svg",
  35679. extra: 1892/1718,
  35680. bottom: 162/2054
  35681. }
  35682. },
  35683. },
  35684. [
  35685. {
  35686. name: "Macro",
  35687. height: math.unit(30, "stories"),
  35688. default: true
  35689. },
  35690. ]
  35691. ))
  35692. characterMakers.push(() => makeCharacter(
  35693. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35694. {
  35695. front: {
  35696. height: math.unit(6 + 4/12, "feet"),
  35697. weight: math.unit(145, "lb"),
  35698. name: "Front",
  35699. image: {
  35700. source: "./media/characters/sykes/front.svg",
  35701. extra: 1321 / 1187,
  35702. bottom: 66 / 1387
  35703. }
  35704. },
  35705. back: {
  35706. height: math.unit(6 + 4/12, "feet"),
  35707. weight: math.unit(145, "lb"),
  35708. name: "Back",
  35709. image: {
  35710. source: "./media/characters/sykes/back.svg",
  35711. extra: 1326/1181,
  35712. bottom: 31/1357
  35713. }
  35714. },
  35715. traditionalOutfit: {
  35716. height: math.unit(6 + 4/12, "feet"),
  35717. weight: math.unit(145, "lb"),
  35718. name: "Traditional Outfit",
  35719. image: {
  35720. source: "./media/characters/sykes/traditional-outfit.svg",
  35721. extra: 1321 / 1187,
  35722. bottom: 66 / 1387
  35723. }
  35724. },
  35725. adventureOutfit: {
  35726. height: math.unit(6 + 4/12, "feet"),
  35727. weight: math.unit(145, "lb"),
  35728. name: "Adventure Outfit",
  35729. image: {
  35730. source: "./media/characters/sykes/adventure-outfit.svg",
  35731. extra: 1321 / 1187,
  35732. bottom: 66 / 1387
  35733. }
  35734. },
  35735. handLeft: {
  35736. height: math.unit(0.9, "feet"),
  35737. name: "Hand (Left)",
  35738. image: {
  35739. source: "./media/characters/sykes/hand-left.svg"
  35740. }
  35741. },
  35742. handRight: {
  35743. height: math.unit(0.839, "feet"),
  35744. name: "Hand (Right)",
  35745. image: {
  35746. source: "./media/characters/sykes/hand-right.svg"
  35747. }
  35748. },
  35749. leftFoot: {
  35750. height: math.unit(1.2, "feet"),
  35751. name: "Foot (Left)",
  35752. image: {
  35753. source: "./media/characters/sykes/foot-left.svg"
  35754. }
  35755. },
  35756. rightFoot: {
  35757. height: math.unit(1.2, "feet"),
  35758. name: "Foot (Right)",
  35759. image: {
  35760. source: "./media/characters/sykes/foot-right.svg"
  35761. }
  35762. },
  35763. maw: {
  35764. height: math.unit(1.93, "feet"),
  35765. name: "Maw",
  35766. image: {
  35767. source: "./media/characters/sykes/maw.svg"
  35768. }
  35769. },
  35770. teeth: {
  35771. height: math.unit(0.51, "feet"),
  35772. name: "Teeth",
  35773. image: {
  35774. source: "./media/characters/sykes/teeth.svg"
  35775. }
  35776. },
  35777. tongue: {
  35778. height: math.unit(2.13, "feet"),
  35779. name: "Tongue",
  35780. image: {
  35781. source: "./media/characters/sykes/tongue.svg"
  35782. }
  35783. },
  35784. uvula: {
  35785. height: math.unit(0.16, "feet"),
  35786. name: "Uvula",
  35787. image: {
  35788. source: "./media/characters/sykes/uvula.svg"
  35789. }
  35790. },
  35791. collar: {
  35792. height: math.unit(0.287, "feet"),
  35793. name: "Collar",
  35794. image: {
  35795. source: "./media/characters/sykes/collar.svg"
  35796. }
  35797. },
  35798. tail: {
  35799. height: math.unit(3.8, "feet"),
  35800. name: "Tail",
  35801. image: {
  35802. source: "./media/characters/sykes/tail.svg"
  35803. }
  35804. },
  35805. },
  35806. [
  35807. {
  35808. name: "Shrunken",
  35809. height: math.unit(5, "inches")
  35810. },
  35811. {
  35812. name: "Normal",
  35813. height: math.unit(6 + 4 / 12, "feet"),
  35814. default: true
  35815. },
  35816. {
  35817. name: "Big",
  35818. height: math.unit(15, "feet")
  35819. },
  35820. ]
  35821. ))
  35822. characterMakers.push(() => makeCharacter(
  35823. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35824. {
  35825. front: {
  35826. height: math.unit(5 + 8/12, "feet"),
  35827. weight: math.unit(190, "lb"),
  35828. name: "Front",
  35829. image: {
  35830. source: "./media/characters/oven-otter/front.svg",
  35831. extra: 1809/1740,
  35832. bottom: 181/1990
  35833. }
  35834. },
  35835. back: {
  35836. height: math.unit(5 + 8/12, "feet"),
  35837. weight: math.unit(190, "lb"),
  35838. name: "Back",
  35839. image: {
  35840. source: "./media/characters/oven-otter/back.svg",
  35841. extra: 1709/1635,
  35842. bottom: 118/1827
  35843. }
  35844. },
  35845. hand: {
  35846. height: math.unit(1.07, "feet"),
  35847. name: "Hand",
  35848. image: {
  35849. source: "./media/characters/oven-otter/hand.svg"
  35850. }
  35851. },
  35852. beans: {
  35853. height: math.unit(1.74, "feet"),
  35854. name: "Beans",
  35855. image: {
  35856. source: "./media/characters/oven-otter/beans.svg"
  35857. }
  35858. },
  35859. },
  35860. [
  35861. {
  35862. name: "Micro",
  35863. height: math.unit(0.5, "inches")
  35864. },
  35865. {
  35866. name: "Normal",
  35867. height: math.unit(5 + 8/12, "feet"),
  35868. default: true
  35869. },
  35870. {
  35871. name: "Macro",
  35872. height: math.unit(250, "feet")
  35873. },
  35874. {
  35875. name: "Really High",
  35876. height: math.unit(420, "feet")
  35877. },
  35878. ]
  35879. ))
  35880. characterMakers.push(() => makeCharacter(
  35881. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35882. {
  35883. front: {
  35884. height: math.unit(5, "meters"),
  35885. weight: math.unit(292000000000000, "kg"),
  35886. name: "Front",
  35887. image: {
  35888. source: "./media/characters/devourer/front.svg",
  35889. extra: 1800/1733,
  35890. bottom: 211/2011
  35891. }
  35892. },
  35893. maw: {
  35894. height: math.unit(1.1, "meter"),
  35895. name: "Maw",
  35896. image: {
  35897. source: "./media/characters/devourer/maw.svg"
  35898. }
  35899. },
  35900. },
  35901. [
  35902. {
  35903. name: "Small",
  35904. height: math.unit(3, "meters")
  35905. },
  35906. {
  35907. name: "Large",
  35908. height: math.unit(5, "meters"),
  35909. default: true
  35910. },
  35911. ]
  35912. ))
  35913. characterMakers.push(() => makeCharacter(
  35914. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35915. {
  35916. front: {
  35917. height: math.unit(6, "feet"),
  35918. weight: math.unit(400, "lb"),
  35919. name: "Front",
  35920. image: {
  35921. source: "./media/characters/ellarby/front.svg",
  35922. extra: 1909/1763,
  35923. bottom: 80/1989
  35924. }
  35925. },
  35926. back: {
  35927. height: math.unit(6, "feet"),
  35928. weight: math.unit(400, "lb"),
  35929. name: "Back",
  35930. image: {
  35931. source: "./media/characters/ellarby/back.svg",
  35932. extra: 1914/1784,
  35933. bottom: 172/2086
  35934. }
  35935. },
  35936. },
  35937. [
  35938. {
  35939. name: "Mischief",
  35940. height: math.unit(18, "inches")
  35941. },
  35942. {
  35943. name: "Trouble",
  35944. height: math.unit(12, "feet")
  35945. },
  35946. {
  35947. name: "Havoc",
  35948. height: math.unit(200, "feet"),
  35949. default: true
  35950. },
  35951. {
  35952. name: "Pandemonium",
  35953. height: math.unit(1, "mile")
  35954. },
  35955. {
  35956. name: "Catastrophe",
  35957. height: math.unit(100, "miles")
  35958. },
  35959. ]
  35960. ))
  35961. characterMakers.push(() => makeCharacter(
  35962. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35963. {
  35964. front: {
  35965. height: math.unit(4.7, "meters"),
  35966. weight: math.unit(6500, "kg"),
  35967. name: "Front",
  35968. image: {
  35969. source: "./media/characters/vex/front.svg",
  35970. extra: 1288/1140,
  35971. bottom: 100/1388
  35972. }
  35973. },
  35974. },
  35975. [
  35976. {
  35977. name: "Normal",
  35978. height: math.unit(4.7, "meters"),
  35979. default: true
  35980. },
  35981. ]
  35982. ))
  35983. characterMakers.push(() => makeCharacter(
  35984. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35985. {
  35986. normal: {
  35987. height: math.unit(6, "feet"),
  35988. weight: math.unit(350, "lb"),
  35989. name: "Normal",
  35990. image: {
  35991. source: "./media/characters/teshy/normal.svg",
  35992. extra: 1795/1735,
  35993. bottom: 16/1811
  35994. }
  35995. },
  35996. monsterFront: {
  35997. height: math.unit(12, "feet"),
  35998. weight: math.unit(4700, "lb"),
  35999. name: "Monster (Front)",
  36000. image: {
  36001. source: "./media/characters/teshy/monster-front.svg",
  36002. extra: 2042/2034,
  36003. bottom: 128/2170
  36004. }
  36005. },
  36006. monsterSide: {
  36007. height: math.unit(12, "feet"),
  36008. weight: math.unit(4700, "lb"),
  36009. name: "Monster (Side)",
  36010. image: {
  36011. source: "./media/characters/teshy/monster-side.svg",
  36012. extra: 2067/2056,
  36013. bottom: 70/2137
  36014. }
  36015. },
  36016. monsterBack: {
  36017. height: math.unit(12, "feet"),
  36018. weight: math.unit(4700, "lb"),
  36019. name: "Monster (Back)",
  36020. image: {
  36021. source: "./media/characters/teshy/monster-back.svg",
  36022. extra: 1921/1914,
  36023. bottom: 171/2092
  36024. }
  36025. },
  36026. },
  36027. [
  36028. {
  36029. name: "Normal",
  36030. height: math.unit(6, "feet"),
  36031. default: true
  36032. },
  36033. ]
  36034. ))
  36035. characterMakers.push(() => makeCharacter(
  36036. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36037. {
  36038. front: {
  36039. height: math.unit(6, "feet"),
  36040. name: "Front",
  36041. image: {
  36042. source: "./media/characters/ramey/front.svg",
  36043. extra: 790/787,
  36044. bottom: 27/817
  36045. }
  36046. },
  36047. },
  36048. [
  36049. {
  36050. name: "Normal",
  36051. height: math.unit(6, "feet"),
  36052. default: true
  36053. },
  36054. ]
  36055. ))
  36056. characterMakers.push(() => makeCharacter(
  36057. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36058. {
  36059. front: {
  36060. height: math.unit(5 + 5/12, "feet"),
  36061. weight: math.unit(120, "lb"),
  36062. name: "Front",
  36063. image: {
  36064. source: "./media/characters/phirae/front.svg",
  36065. extra: 2491/2436,
  36066. bottom: 38/2529
  36067. }
  36068. },
  36069. },
  36070. [
  36071. {
  36072. name: "Normal",
  36073. height: math.unit(5 + 5/12, "feet"),
  36074. default: true
  36075. },
  36076. ]
  36077. ))
  36078. characterMakers.push(() => makeCharacter(
  36079. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36080. {
  36081. front: {
  36082. height: math.unit(5 + 3/12, "feet"),
  36083. name: "Front",
  36084. image: {
  36085. source: "./media/characters/stagglas/front.svg",
  36086. extra: 962/882,
  36087. bottom: 53/1015
  36088. }
  36089. },
  36090. feral: {
  36091. height: math.unit(335, "cm"),
  36092. name: "Feral",
  36093. image: {
  36094. source: "./media/characters/stagglas/feral.svg",
  36095. extra: 1732/1090,
  36096. bottom: 48/1780
  36097. }
  36098. },
  36099. },
  36100. [
  36101. {
  36102. name: "Normal",
  36103. height: math.unit(5 + 3/12, "feet"),
  36104. default: true
  36105. },
  36106. ]
  36107. ))
  36108. characterMakers.push(() => makeCharacter(
  36109. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36110. {
  36111. front: {
  36112. height: math.unit(5 + 4/12, "feet"),
  36113. weight: math.unit(145, "lb"),
  36114. name: "Front",
  36115. image: {
  36116. source: "./media/characters/starra/front.svg",
  36117. extra: 1790/1691,
  36118. bottom: 91/1881
  36119. }
  36120. },
  36121. },
  36122. [
  36123. {
  36124. name: "Normal",
  36125. height: math.unit(5 + 4/12, "feet"),
  36126. default: true
  36127. },
  36128. ]
  36129. ))
  36130. characterMakers.push(() => makeCharacter(
  36131. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36132. {
  36133. front: {
  36134. height: math.unit(2.2, "meters"),
  36135. name: "Front",
  36136. image: {
  36137. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36138. extra: 1248/972,
  36139. bottom: 38/1286
  36140. }
  36141. },
  36142. },
  36143. [
  36144. {
  36145. name: "Normal",
  36146. height: math.unit(2.2, "meters"),
  36147. default: true
  36148. },
  36149. ]
  36150. ))
  36151. characterMakers.push(() => makeCharacter(
  36152. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36153. {
  36154. side: {
  36155. height: math.unit(8 + 2/12, "feet"),
  36156. weight: math.unit(1240, "lb"),
  36157. name: "Side",
  36158. image: {
  36159. source: "./media/characters/mika-valentine/side.svg",
  36160. extra: 2670/2501,
  36161. bottom: 250/2920
  36162. }
  36163. },
  36164. },
  36165. [
  36166. {
  36167. name: "Normal",
  36168. height: math.unit(8 + 2/12, "feet"),
  36169. default: true
  36170. },
  36171. ]
  36172. ))
  36173. characterMakers.push(() => makeCharacter(
  36174. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36175. {
  36176. front: {
  36177. height: math.unit(7 + 2/12, "feet"),
  36178. name: "Front",
  36179. image: {
  36180. source: "./media/characters/xoltol/front.svg",
  36181. extra: 2212/2124,
  36182. bottom: 84/2296
  36183. }
  36184. },
  36185. side: {
  36186. height: math.unit(7 + 2/12, "feet"),
  36187. name: "Side",
  36188. image: {
  36189. source: "./media/characters/xoltol/side.svg",
  36190. extra: 2273/2197,
  36191. bottom: 26/2299
  36192. }
  36193. },
  36194. hand: {
  36195. height: math.unit(2.5, "feet"),
  36196. name: "Hand",
  36197. image: {
  36198. source: "./media/characters/xoltol/hand.svg"
  36199. }
  36200. },
  36201. },
  36202. [
  36203. {
  36204. name: "Small-ish",
  36205. height: math.unit(5 + 11/12, "feet")
  36206. },
  36207. {
  36208. name: "Normal",
  36209. height: math.unit(7 + 2/12, "feet")
  36210. },
  36211. {
  36212. name: "\"Macro\"",
  36213. height: math.unit(14 + 9/12, "feet"),
  36214. default: true
  36215. },
  36216. {
  36217. name: "Alternate Height",
  36218. height: math.unit(20, "feet")
  36219. },
  36220. {
  36221. name: "Actually Macro",
  36222. height: math.unit(100, "feet")
  36223. },
  36224. ]
  36225. ))
  36226. characterMakers.push(() => makeCharacter(
  36227. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36228. {
  36229. front: {
  36230. height: math.unit(5 + 2/12, "feet"),
  36231. name: "Front",
  36232. image: {
  36233. source: "./media/characters/kotetsu-redwood/front.svg",
  36234. extra: 1053/942,
  36235. bottom: 60/1113
  36236. }
  36237. },
  36238. },
  36239. [
  36240. {
  36241. name: "Normal",
  36242. height: math.unit(5 + 2/12, "feet"),
  36243. default: true
  36244. },
  36245. ]
  36246. ))
  36247. characterMakers.push(() => makeCharacter(
  36248. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36249. {
  36250. front: {
  36251. height: math.unit(2.4, "meters"),
  36252. weight: math.unit(125, "kg"),
  36253. name: "Front",
  36254. image: {
  36255. source: "./media/characters/lilith/front.svg",
  36256. extra: 1590/1513,
  36257. bottom: 203/1793
  36258. }
  36259. },
  36260. },
  36261. [
  36262. {
  36263. name: "Humanoid",
  36264. height: math.unit(2.4, "meters")
  36265. },
  36266. {
  36267. name: "Normal",
  36268. height: math.unit(6, "meters"),
  36269. default: true
  36270. },
  36271. {
  36272. name: "Largest",
  36273. height: math.unit(55, "meters")
  36274. },
  36275. ]
  36276. ))
  36277. characterMakers.push(() => makeCharacter(
  36278. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36279. {
  36280. front: {
  36281. height: math.unit(8 + 4/12, "feet"),
  36282. weight: math.unit(535, "lb"),
  36283. name: "Front",
  36284. image: {
  36285. source: "./media/characters/beh'kah-bolger/front.svg",
  36286. extra: 1660/1603,
  36287. bottom: 37/1697
  36288. }
  36289. },
  36290. },
  36291. [
  36292. {
  36293. name: "Normal",
  36294. height: math.unit(8 + 4/12, "feet"),
  36295. default: true
  36296. },
  36297. {
  36298. name: "Kaiju",
  36299. height: math.unit(250, "feet")
  36300. },
  36301. {
  36302. name: "Still Growing",
  36303. height: math.unit(10, "miles")
  36304. },
  36305. {
  36306. name: "Continental",
  36307. height: math.unit(5000, "miles")
  36308. },
  36309. {
  36310. name: "Final Form",
  36311. height: math.unit(2500000, "miles")
  36312. },
  36313. ]
  36314. ))
  36315. characterMakers.push(() => makeCharacter(
  36316. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36317. {
  36318. front: {
  36319. height: math.unit(7 + 2/12, "feet"),
  36320. weight: math.unit(230, "kg"),
  36321. name: "Front",
  36322. image: {
  36323. source: "./media/characters/tatyana-milewska/front.svg",
  36324. extra: 1199/1150,
  36325. bottom: 86/1285
  36326. }
  36327. },
  36328. },
  36329. [
  36330. {
  36331. name: "Normal",
  36332. height: math.unit(7 + 2/12, "feet"),
  36333. default: true
  36334. },
  36335. {
  36336. name: "Big",
  36337. height: math.unit(12, "feet")
  36338. },
  36339. {
  36340. name: "Minimacro",
  36341. height: math.unit(20, "feet")
  36342. },
  36343. {
  36344. name: "Macro",
  36345. height: math.unit(120, "feet")
  36346. },
  36347. ]
  36348. ))
  36349. characterMakers.push(() => makeCharacter(
  36350. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36351. {
  36352. front: {
  36353. height: math.unit(7 + 8/12, "feet"),
  36354. weight: math.unit(152, "kg"),
  36355. name: "Front",
  36356. image: {
  36357. source: "./media/characters/helen-arri/front.svg",
  36358. extra: 440/423,
  36359. bottom: 14/454
  36360. }
  36361. },
  36362. back: {
  36363. height: math.unit(7 + 8/12, "feet"),
  36364. weight: math.unit(152, "kg"),
  36365. name: "Back",
  36366. image: {
  36367. source: "./media/characters/helen-arri/back.svg",
  36368. extra: 443/426,
  36369. bottom: 8/451
  36370. }
  36371. },
  36372. },
  36373. [
  36374. {
  36375. name: "Normal",
  36376. height: math.unit(7 + 8/12, "feet"),
  36377. default: true
  36378. },
  36379. {
  36380. name: "Big",
  36381. height: math.unit(14, "feet")
  36382. },
  36383. {
  36384. name: "Minimacro",
  36385. height: math.unit(24, "feet")
  36386. },
  36387. {
  36388. name: "Macro",
  36389. height: math.unit(140, "feet")
  36390. },
  36391. ]
  36392. ))
  36393. characterMakers.push(() => makeCharacter(
  36394. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36395. {
  36396. front: {
  36397. height: math.unit(6, "meters"),
  36398. name: "Front",
  36399. image: {
  36400. source: "./media/characters/ehanu-rehu/front.svg",
  36401. extra: 1800/1800,
  36402. bottom: 59/1859
  36403. }
  36404. },
  36405. },
  36406. [
  36407. {
  36408. name: "Normal",
  36409. height: math.unit(6, "meters"),
  36410. default: true
  36411. },
  36412. ]
  36413. ))
  36414. characterMakers.push(() => makeCharacter(
  36415. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36416. {
  36417. front: {
  36418. height: math.unit(7 + 3/12, "feet"),
  36419. name: "Front",
  36420. image: {
  36421. source: "./media/characters/renholder/front.svg",
  36422. extra: 3096/2960,
  36423. bottom: 250/3346
  36424. }
  36425. },
  36426. },
  36427. [
  36428. {
  36429. name: "Normal Bat",
  36430. height: math.unit(7 + 3/12, "feet"),
  36431. default: true
  36432. },
  36433. {
  36434. name: "Slightly Tall Bat",
  36435. height: math.unit(100, "feet")
  36436. },
  36437. {
  36438. name: "Big Bat",
  36439. height: math.unit(1000, "feet")
  36440. },
  36441. {
  36442. name: "City-Sized Bat",
  36443. height: math.unit(200000, "feet")
  36444. },
  36445. {
  36446. name: "Bigger Bat",
  36447. height: math.unit(10000, "miles")
  36448. },
  36449. {
  36450. name: "Solar Sized Bat",
  36451. height: math.unit(100, "AU")
  36452. },
  36453. {
  36454. name: "Galactic Bat",
  36455. height: math.unit(200000, "lightyears")
  36456. },
  36457. {
  36458. name: "Universally Known Bat",
  36459. height: math.unit(1, "universe")
  36460. },
  36461. ]
  36462. ))
  36463. characterMakers.push(() => makeCharacter(
  36464. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36465. {
  36466. front: {
  36467. height: math.unit(6 + 11/12, "feet"),
  36468. weight: math.unit(250, "lb"),
  36469. name: "Front",
  36470. image: {
  36471. source: "./media/characters/cookiecat/front.svg",
  36472. extra: 893/827,
  36473. bottom: 14/907
  36474. }
  36475. },
  36476. },
  36477. [
  36478. {
  36479. name: "Micro",
  36480. height: math.unit(3, "inches")
  36481. },
  36482. {
  36483. name: "Normal",
  36484. height: math.unit(6 + 11/12, "feet"),
  36485. default: true
  36486. },
  36487. {
  36488. name: "Macro",
  36489. height: math.unit(100, "feet")
  36490. },
  36491. {
  36492. name: "Macro+",
  36493. height: math.unit(404, "feet")
  36494. },
  36495. {
  36496. name: "Megamacro",
  36497. height: math.unit(165, "miles")
  36498. },
  36499. {
  36500. name: "Planetary",
  36501. height: math.unit(4600, "miles")
  36502. },
  36503. ]
  36504. ))
  36505. characterMakers.push(() => makeCharacter(
  36506. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36507. {
  36508. front: {
  36509. height: math.unit(10 + 3/12, "feet"),
  36510. weight: math.unit(1500, "lb"),
  36511. name: "Front",
  36512. image: {
  36513. source: "./media/characters/tux-kusanagi/front.svg",
  36514. extra: 944/840,
  36515. bottom: 39/983
  36516. }
  36517. },
  36518. back: {
  36519. height: math.unit(10 + 3/12, "feet"),
  36520. weight: math.unit(1500, "lb"),
  36521. name: "Back",
  36522. image: {
  36523. source: "./media/characters/tux-kusanagi/back.svg",
  36524. extra: 941/842,
  36525. bottom: 28/969
  36526. }
  36527. },
  36528. rump: {
  36529. height: math.unit(5.25, "feet"),
  36530. name: "Rump",
  36531. image: {
  36532. source: "./media/characters/tux-kusanagi/rump.svg"
  36533. }
  36534. },
  36535. beak: {
  36536. height: math.unit(1.54, "feet"),
  36537. name: "Beak",
  36538. image: {
  36539. source: "./media/characters/tux-kusanagi/beak.svg"
  36540. }
  36541. },
  36542. },
  36543. [
  36544. {
  36545. name: "Normal",
  36546. height: math.unit(10 + 3/12, "feet"),
  36547. default: true
  36548. },
  36549. ]
  36550. ))
  36551. characterMakers.push(() => makeCharacter(
  36552. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36553. {
  36554. front: {
  36555. height: math.unit(58, "feet"),
  36556. weight: math.unit(200, "tons"),
  36557. name: "Front",
  36558. image: {
  36559. source: "./media/characters/uzarmazari/front.svg",
  36560. extra: 1575/1455,
  36561. bottom: 152/1727
  36562. }
  36563. },
  36564. back: {
  36565. height: math.unit(58, "feet"),
  36566. weight: math.unit(200, "tons"),
  36567. name: "Back",
  36568. image: {
  36569. source: "./media/characters/uzarmazari/back.svg",
  36570. extra: 1585/1510,
  36571. bottom: 157/1742
  36572. }
  36573. },
  36574. head: {
  36575. height: math.unit(26, "feet"),
  36576. name: "Head",
  36577. image: {
  36578. source: "./media/characters/uzarmazari/head.svg"
  36579. }
  36580. },
  36581. },
  36582. [
  36583. {
  36584. name: "Normal",
  36585. height: math.unit(58, "feet"),
  36586. default: true
  36587. },
  36588. ]
  36589. ))
  36590. characterMakers.push(() => makeCharacter(
  36591. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36592. {
  36593. side: {
  36594. height: math.unit(15, "feet"),
  36595. name: "Side",
  36596. image: {
  36597. source: "./media/characters/akitu/side.svg",
  36598. extra: 1421/1321,
  36599. bottom: 157/1578
  36600. }
  36601. },
  36602. front: {
  36603. height: math.unit(15, "feet"),
  36604. name: "Front",
  36605. image: {
  36606. source: "./media/characters/akitu/front.svg",
  36607. extra: 1435/1326,
  36608. bottom: 232/1667
  36609. }
  36610. },
  36611. },
  36612. [
  36613. {
  36614. name: "Normal",
  36615. height: math.unit(15, "feet"),
  36616. default: true
  36617. },
  36618. ]
  36619. ))
  36620. characterMakers.push(() => makeCharacter(
  36621. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36622. {
  36623. front: {
  36624. height: math.unit(10 + 8/12, "feet"),
  36625. name: "Front",
  36626. image: {
  36627. source: "./media/characters/azalie-croixland/front.svg",
  36628. extra: 1972/1856,
  36629. bottom: 31/2003
  36630. }
  36631. },
  36632. },
  36633. [
  36634. {
  36635. name: "Original Height",
  36636. height: math.unit(5 + 4/12, "feet")
  36637. },
  36638. {
  36639. name: "Normal Height",
  36640. height: math.unit(10 + 8/12, "feet"),
  36641. default: true
  36642. },
  36643. ]
  36644. ))
  36645. characterMakers.push(() => makeCharacter(
  36646. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36647. {
  36648. side: {
  36649. height: math.unit(7 + 1/12, "feet"),
  36650. weight: math.unit(245, "lb"),
  36651. name: "Side",
  36652. image: {
  36653. source: "./media/characters/kavus-kazian/side.svg",
  36654. extra: 349/342,
  36655. bottom: 15/364
  36656. }
  36657. },
  36658. },
  36659. [
  36660. {
  36661. name: "Normal",
  36662. height: math.unit(7 + 1/12, "feet"),
  36663. default: true
  36664. },
  36665. ]
  36666. ))
  36667. characterMakers.push(() => makeCharacter(
  36668. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36669. {
  36670. normalFront: {
  36671. height: math.unit(5 + 11/12, "feet"),
  36672. name: "Front",
  36673. image: {
  36674. source: "./media/characters/moonlight-rose/normal-front.svg",
  36675. extra: 1980/1825,
  36676. bottom: 18/1998
  36677. },
  36678. form: "normal",
  36679. default: true
  36680. },
  36681. normalBack: {
  36682. height: math.unit(5 + 11/12, "feet"),
  36683. name: "Back",
  36684. image: {
  36685. source: "./media/characters/moonlight-rose/normal-back.svg",
  36686. extra: 2010/1839,
  36687. bottom: 10/2020
  36688. },
  36689. form: "normal"
  36690. },
  36691. demonFront: {
  36692. height: math.unit(1.5, "earths"),
  36693. name: "Front",
  36694. image: {
  36695. source: "./media/characters/moonlight-rose/demon.svg",
  36696. extra: 1400/1294,
  36697. bottom: 45/1445
  36698. },
  36699. form: "demon",
  36700. default: true
  36701. },
  36702. terraFront: {
  36703. height: math.unit(1.5, "earths"),
  36704. name: "Front",
  36705. image: {
  36706. source: "./media/characters/moonlight-rose/terra.svg"
  36707. },
  36708. form: "terra",
  36709. default: true
  36710. },
  36711. jupiterFront: {
  36712. height: math.unit(69911*2, "km"),
  36713. name: "Front",
  36714. image: {
  36715. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36716. extra: 1367/1286,
  36717. bottom: 55/1422
  36718. },
  36719. form: "jupiter",
  36720. default: true
  36721. },
  36722. neptuneFront: {
  36723. height: math.unit(24622*2, "feet"),
  36724. name: "Front",
  36725. image: {
  36726. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36727. extra: 1851/1712,
  36728. bottom: 0/1851
  36729. },
  36730. form: "neptune",
  36731. default: true
  36732. },
  36733. },
  36734. [
  36735. {
  36736. name: "\"Natural\" Height",
  36737. height: math.unit(5 + 11/12, "feet"),
  36738. form: "normal"
  36739. },
  36740. {
  36741. name: "Smallest comfortable size",
  36742. height: math.unit(40, "meters"),
  36743. form: "normal"
  36744. },
  36745. {
  36746. name: "Common size",
  36747. height: math.unit(50, "km"),
  36748. form: "normal",
  36749. default: true
  36750. },
  36751. {
  36752. name: "Normal",
  36753. height: math.unit(1.5, "earths"),
  36754. form: "demon",
  36755. default: true
  36756. },
  36757. {
  36758. name: "Universal",
  36759. height: math.unit(15, "universes"),
  36760. form: "demon"
  36761. },
  36762. {
  36763. name: "Earth",
  36764. height: math.unit(1.5, "earths"),
  36765. form: "terra",
  36766. default: true
  36767. },
  36768. {
  36769. name: "Super Earth",
  36770. height: math.unit(67.5, "earths"),
  36771. form: "terra"
  36772. },
  36773. {
  36774. name: "Doesn't fit in a solar system...",
  36775. height: math.unit(1, "galaxy"),
  36776. form: "terra"
  36777. },
  36778. {
  36779. name: "Saturn",
  36780. height: math.unit(58232*2, "km"),
  36781. form: "jupiter"
  36782. },
  36783. {
  36784. name: "Jupiter",
  36785. height: math.unit(69911*2, "km"),
  36786. form: "jupiter",
  36787. default: true
  36788. },
  36789. {
  36790. name: "HD 100546 b",
  36791. height: math.unit(482938, "km"),
  36792. form: "jupiter"
  36793. },
  36794. {
  36795. name: "Enceladus",
  36796. height: math.unit(513*2, "km"),
  36797. form: "neptune"
  36798. },
  36799. {
  36800. name: "Europe",
  36801. height: math.unit(1560*2, "km"),
  36802. form: "neptune"
  36803. },
  36804. {
  36805. name: "Neptune",
  36806. height: math.unit(24622*2, "km"),
  36807. form: "neptune",
  36808. default: true
  36809. },
  36810. {
  36811. name: "CoRoT-9b",
  36812. height: math.unit(75067*2, "km"),
  36813. form: "neptune"
  36814. },
  36815. ],
  36816. {
  36817. "normal": {
  36818. name: "Normal",
  36819. default: true
  36820. },
  36821. "demon": {
  36822. name: "Demon"
  36823. },
  36824. "terra": {
  36825. name: "Terra"
  36826. },
  36827. "jupiter": {
  36828. name: "Jupiter"
  36829. },
  36830. "neptune": {
  36831. name: "Neptune"
  36832. }
  36833. }
  36834. ))
  36835. characterMakers.push(() => makeCharacter(
  36836. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36837. {
  36838. front: {
  36839. height: math.unit(16, "feet"),
  36840. weight: math.unit(610, "kg"),
  36841. name: "Front",
  36842. image: {
  36843. source: "./media/characters/huckle/front.svg",
  36844. extra: 1731/1625,
  36845. bottom: 33/1764
  36846. }
  36847. },
  36848. back: {
  36849. height: math.unit(16, "feet"),
  36850. weight: math.unit(610, "kg"),
  36851. name: "Back",
  36852. image: {
  36853. source: "./media/characters/huckle/back.svg",
  36854. extra: 1738/1651,
  36855. bottom: 37/1775
  36856. }
  36857. },
  36858. laughing: {
  36859. height: math.unit(3.75, "feet"),
  36860. name: "Laughing",
  36861. image: {
  36862. source: "./media/characters/huckle/laughing.svg"
  36863. }
  36864. },
  36865. angry: {
  36866. height: math.unit(4.15, "feet"),
  36867. name: "Angry",
  36868. image: {
  36869. source: "./media/characters/huckle/angry.svg"
  36870. }
  36871. },
  36872. },
  36873. [
  36874. {
  36875. name: "Normal",
  36876. height: math.unit(16, "feet"),
  36877. default: true
  36878. },
  36879. {
  36880. name: "Mini Macro",
  36881. height: math.unit(463, "feet")
  36882. },
  36883. {
  36884. name: "Macro",
  36885. height: math.unit(1680, "meters")
  36886. },
  36887. {
  36888. name: "Mega Macro",
  36889. height: math.unit(175, "km")
  36890. },
  36891. {
  36892. name: "Terra Macro",
  36893. height: math.unit(32, "gigameters")
  36894. },
  36895. {
  36896. name: "Multiverse+",
  36897. height: math.unit(2.56e23, "yottameters")
  36898. },
  36899. ]
  36900. ))
  36901. characterMakers.push(() => makeCharacter(
  36902. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36903. {
  36904. front: {
  36905. height: math.unit(6 + 9/12, "feet"),
  36906. weight: math.unit(280, "lb"),
  36907. name: "Front",
  36908. image: {
  36909. source: "./media/characters/candy/front.svg",
  36910. extra: 234/217,
  36911. bottom: 11/245
  36912. }
  36913. },
  36914. },
  36915. [
  36916. {
  36917. name: "Really Small",
  36918. height: math.unit(0.1, "nm")
  36919. },
  36920. {
  36921. name: "Micro",
  36922. height: math.unit(2, "inches")
  36923. },
  36924. {
  36925. name: "Normal",
  36926. height: math.unit(6 + 9/12, "feet"),
  36927. default: true
  36928. },
  36929. {
  36930. name: "Small Macro",
  36931. height: math.unit(69, "feet")
  36932. },
  36933. {
  36934. name: "Macro",
  36935. height: math.unit(160, "feet")
  36936. },
  36937. {
  36938. name: "Megamacro",
  36939. height: math.unit(22000, "miles")
  36940. },
  36941. {
  36942. name: "Gigamacro",
  36943. height: math.unit(50000, "miles")
  36944. },
  36945. ]
  36946. ))
  36947. characterMakers.push(() => makeCharacter(
  36948. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36949. {
  36950. front: {
  36951. height: math.unit(4, "feet"),
  36952. weight: math.unit(90, "lb"),
  36953. name: "Front",
  36954. image: {
  36955. source: "./media/characters/joey-mcdonald/front.svg",
  36956. extra: 1059/852,
  36957. bottom: 33/1092
  36958. }
  36959. },
  36960. back: {
  36961. height: math.unit(4, "feet"),
  36962. weight: math.unit(90, "lb"),
  36963. name: "Back",
  36964. image: {
  36965. source: "./media/characters/joey-mcdonald/back.svg",
  36966. extra: 1077/879,
  36967. bottom: 5/1082
  36968. }
  36969. },
  36970. frontKobold: {
  36971. height: math.unit(4, "feet"),
  36972. weight: math.unit(100, "lb"),
  36973. name: "Front-kobold",
  36974. image: {
  36975. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36976. extra: 1480/1367,
  36977. bottom: 0/1480
  36978. }
  36979. },
  36980. backKobold: {
  36981. height: math.unit(4, "feet"),
  36982. weight: math.unit(100, "lb"),
  36983. name: "Back-kobold",
  36984. image: {
  36985. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36986. extra: 1449/1361,
  36987. bottom: 0/1449
  36988. }
  36989. },
  36990. },
  36991. [
  36992. {
  36993. name: "Normal",
  36994. height: math.unit(4, "feet"),
  36995. default: true
  36996. },
  36997. ]
  36998. ))
  36999. characterMakers.push(() => makeCharacter(
  37000. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37001. {
  37002. front: {
  37003. height: math.unit(12 + 6/12, "feet"),
  37004. name: "Front",
  37005. image: {
  37006. source: "./media/characters/kass-lockheed/front.svg",
  37007. extra: 354/343,
  37008. bottom: 9/363
  37009. }
  37010. },
  37011. back: {
  37012. height: math.unit(12 + 6/12, "feet"),
  37013. name: "Back",
  37014. image: {
  37015. source: "./media/characters/kass-lockheed/back.svg",
  37016. extra: 364/352,
  37017. bottom: 3/367
  37018. }
  37019. },
  37020. dick: {
  37021. height: math.unit(3.12, "feet"),
  37022. name: "Dick",
  37023. image: {
  37024. source: "./media/characters/kass-lockheed/dick.svg"
  37025. }
  37026. },
  37027. head: {
  37028. height: math.unit(2.6, "feet"),
  37029. name: "Head",
  37030. image: {
  37031. source: "./media/characters/kass-lockheed/head.svg"
  37032. }
  37033. },
  37034. bleh: {
  37035. height: math.unit(2.85, "feet"),
  37036. name: "Bleh",
  37037. image: {
  37038. source: "./media/characters/kass-lockheed/bleh.svg"
  37039. }
  37040. },
  37041. smug: {
  37042. height: math.unit(2.85, "feet"),
  37043. name: "Smug",
  37044. image: {
  37045. source: "./media/characters/kass-lockheed/smug.svg"
  37046. }
  37047. },
  37048. },
  37049. [
  37050. {
  37051. name: "Normal",
  37052. height: math.unit(12 + 6/12, "feet"),
  37053. default: true
  37054. },
  37055. ]
  37056. ))
  37057. characterMakers.push(() => makeCharacter(
  37058. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37059. {
  37060. front: {
  37061. height: math.unit(6 + 2/12, "feet"),
  37062. name: "Front",
  37063. image: {
  37064. source: "./media/characters/taylor/front.svg",
  37065. extra: 639/495,
  37066. bottom: 12/651
  37067. }
  37068. },
  37069. },
  37070. [
  37071. {
  37072. name: "Normal",
  37073. height: math.unit(6 + 2/12, "feet"),
  37074. default: true
  37075. },
  37076. {
  37077. name: "Big",
  37078. height: math.unit(15, "feet")
  37079. },
  37080. {
  37081. name: "Lorg",
  37082. height: math.unit(80, "feet")
  37083. },
  37084. {
  37085. name: "Too Lorg",
  37086. height: math.unit(120, "feet")
  37087. },
  37088. ]
  37089. ))
  37090. characterMakers.push(() => makeCharacter(
  37091. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37092. {
  37093. front: {
  37094. height: math.unit(15, "feet"),
  37095. name: "Front",
  37096. image: {
  37097. source: "./media/characters/kaizer/front.svg",
  37098. extra: 1612/1436,
  37099. bottom: 43/1655
  37100. }
  37101. },
  37102. },
  37103. [
  37104. {
  37105. name: "Normal",
  37106. height: math.unit(15, "feet"),
  37107. default: true
  37108. },
  37109. ]
  37110. ))
  37111. characterMakers.push(() => makeCharacter(
  37112. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37113. {
  37114. front: {
  37115. height: math.unit(2, "feet"),
  37116. weight: math.unit(30, "lb"),
  37117. name: "Front",
  37118. image: {
  37119. source: "./media/characters/sandy/front.svg",
  37120. extra: 1439/1307,
  37121. bottom: 194/1633
  37122. }
  37123. },
  37124. },
  37125. [
  37126. {
  37127. name: "Normal",
  37128. height: math.unit(2, "feet"),
  37129. default: true
  37130. },
  37131. ]
  37132. ))
  37133. characterMakers.push(() => makeCharacter(
  37134. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37135. {
  37136. front: {
  37137. height: math.unit(3, "feet"),
  37138. name: "Front",
  37139. image: {
  37140. source: "./media/characters/mellvi/front.svg",
  37141. extra: 1831/1630,
  37142. bottom: 58/1889
  37143. }
  37144. },
  37145. },
  37146. [
  37147. {
  37148. name: "Normal",
  37149. height: math.unit(3, "feet"),
  37150. default: true
  37151. },
  37152. ]
  37153. ))
  37154. characterMakers.push(() => makeCharacter(
  37155. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37156. {
  37157. front: {
  37158. height: math.unit(5 + 11/12, "feet"),
  37159. weight: math.unit(200, "lb"),
  37160. name: "Front",
  37161. image: {
  37162. source: "./media/characters/shirou/front.svg",
  37163. extra: 2491/2383,
  37164. bottom: 189/2680
  37165. }
  37166. },
  37167. back: {
  37168. height: math.unit(5 + 11/12, "feet"),
  37169. weight: math.unit(200, "lb"),
  37170. name: "Back",
  37171. image: {
  37172. source: "./media/characters/shirou/back.svg",
  37173. extra: 2554/2450,
  37174. bottom: 76/2630
  37175. }
  37176. },
  37177. },
  37178. [
  37179. {
  37180. name: "Normal",
  37181. height: math.unit(5 + 11/12, "feet"),
  37182. default: true
  37183. },
  37184. ]
  37185. ))
  37186. characterMakers.push(() => makeCharacter(
  37187. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37188. {
  37189. front: {
  37190. height: math.unit(6 + 3/12, "feet"),
  37191. weight: math.unit(177, "lb"),
  37192. name: "Front",
  37193. image: {
  37194. source: "./media/characters/noryu/front.svg",
  37195. extra: 973/885,
  37196. bottom: 10/983
  37197. }
  37198. },
  37199. },
  37200. [
  37201. {
  37202. name: "Normal",
  37203. height: math.unit(6 + 3/12, "feet"),
  37204. default: true
  37205. },
  37206. ]
  37207. ))
  37208. characterMakers.push(() => makeCharacter(
  37209. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37210. {
  37211. front: {
  37212. height: math.unit(5 + 6/12, "feet"),
  37213. weight: math.unit(170, "lb"),
  37214. name: "Front",
  37215. image: {
  37216. source: "./media/characters/mevolas-rubenido/front.svg",
  37217. extra: 2109/1901,
  37218. bottom: 96/2205
  37219. }
  37220. },
  37221. },
  37222. [
  37223. {
  37224. name: "Normal",
  37225. height: math.unit(5 + 6/12, "feet"),
  37226. default: true
  37227. },
  37228. ]
  37229. ))
  37230. characterMakers.push(() => makeCharacter(
  37231. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37232. {
  37233. front: {
  37234. height: math.unit(100, "feet"),
  37235. name: "Front",
  37236. image: {
  37237. source: "./media/characters/dee/front.svg",
  37238. extra: 2153/2036,
  37239. bottom: 59/2212
  37240. }
  37241. },
  37242. back: {
  37243. height: math.unit(100, "feet"),
  37244. name: "Back",
  37245. image: {
  37246. source: "./media/characters/dee/back.svg",
  37247. extra: 2183/2058,
  37248. bottom: 75/2258
  37249. }
  37250. },
  37251. foot: {
  37252. height: math.unit(19.43, "feet"),
  37253. name: "Foot",
  37254. image: {
  37255. source: "./media/characters/dee/foot.svg"
  37256. }
  37257. },
  37258. hoof: {
  37259. height: math.unit(20.6, "feet"),
  37260. name: "Hoof",
  37261. image: {
  37262. source: "./media/characters/dee/hoof.svg"
  37263. }
  37264. },
  37265. },
  37266. [
  37267. {
  37268. name: "Macro",
  37269. height: math.unit(100, "feet"),
  37270. default: true
  37271. },
  37272. ]
  37273. ))
  37274. characterMakers.push(() => makeCharacter(
  37275. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37276. {
  37277. front: {
  37278. height: math.unit(5 + 6/12, "feet"),
  37279. name: "Front",
  37280. image: {
  37281. source: "./media/characters/teh/front.svg",
  37282. extra: 1002/847,
  37283. bottom: 62/1064
  37284. }
  37285. },
  37286. },
  37287. [
  37288. {
  37289. name: "Normal",
  37290. height: math.unit(5 + 6/12, "feet"),
  37291. default: true
  37292. },
  37293. ]
  37294. ))
  37295. characterMakers.push(() => makeCharacter(
  37296. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37297. {
  37298. side: {
  37299. height: math.unit(6 + 1/12, "feet"),
  37300. weight: math.unit(204, "lb"),
  37301. name: "Side",
  37302. image: {
  37303. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37304. extra: 974/775,
  37305. bottom: 169/1143
  37306. }
  37307. },
  37308. sitting: {
  37309. height: math.unit(6 + 2/12, "feet"),
  37310. weight: math.unit(204, "lb"),
  37311. name: "Sitting",
  37312. image: {
  37313. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37314. extra: 1175/964,
  37315. bottom: 378/1553
  37316. }
  37317. },
  37318. },
  37319. [
  37320. {
  37321. name: "Normal",
  37322. height: math.unit(6 + 1/12, "feet"),
  37323. default: true
  37324. },
  37325. ]
  37326. ))
  37327. characterMakers.push(() => makeCharacter(
  37328. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37329. {
  37330. front: {
  37331. height: math.unit(6, "inches"),
  37332. name: "Front",
  37333. image: {
  37334. source: "./media/characters/tululi/front.svg",
  37335. extra: 1997/1876,
  37336. bottom: 20/2017
  37337. }
  37338. },
  37339. },
  37340. [
  37341. {
  37342. name: "Normal",
  37343. height: math.unit(6, "inches"),
  37344. default: true
  37345. },
  37346. ]
  37347. ))
  37348. characterMakers.push(() => makeCharacter(
  37349. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37350. {
  37351. front: {
  37352. height: math.unit(4 + 1/12, "feet"),
  37353. name: "Front",
  37354. image: {
  37355. source: "./media/characters/star/front.svg",
  37356. extra: 1493/1189,
  37357. bottom: 48/1541
  37358. }
  37359. },
  37360. },
  37361. [
  37362. {
  37363. name: "Normal",
  37364. height: math.unit(4 + 1/12, "feet"),
  37365. default: true
  37366. },
  37367. ]
  37368. ))
  37369. characterMakers.push(() => makeCharacter(
  37370. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37371. {
  37372. front: {
  37373. height: math.unit(6 + 3/12, "feet"),
  37374. name: "Front",
  37375. image: {
  37376. source: "./media/characters/comet/front.svg",
  37377. extra: 1681/1462,
  37378. bottom: 26/1707
  37379. }
  37380. },
  37381. },
  37382. [
  37383. {
  37384. name: "Normal",
  37385. height: math.unit(6 + 3/12, "feet"),
  37386. default: true
  37387. },
  37388. ]
  37389. ))
  37390. characterMakers.push(() => makeCharacter(
  37391. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37392. {
  37393. front: {
  37394. height: math.unit(950, "feet"),
  37395. name: "Front",
  37396. image: {
  37397. source: "./media/characters/vortex/front.svg",
  37398. extra: 1497/1434,
  37399. bottom: 56/1553
  37400. }
  37401. },
  37402. maw: {
  37403. height: math.unit(285, "feet"),
  37404. name: "Maw",
  37405. image: {
  37406. source: "./media/characters/vortex/maw.svg"
  37407. }
  37408. },
  37409. },
  37410. [
  37411. {
  37412. name: "Macro",
  37413. height: math.unit(950, "feet"),
  37414. default: true
  37415. },
  37416. ]
  37417. ))
  37418. characterMakers.push(() => makeCharacter(
  37419. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37420. {
  37421. front: {
  37422. height: math.unit(600, "feet"),
  37423. weight: math.unit(0.02, "grams"),
  37424. name: "Front",
  37425. image: {
  37426. source: "./media/characters/doodle/front.svg",
  37427. extra: 1578/1413,
  37428. bottom: 37/1615
  37429. }
  37430. },
  37431. },
  37432. [
  37433. {
  37434. name: "Macro",
  37435. height: math.unit(600, "feet"),
  37436. default: true
  37437. },
  37438. ]
  37439. ))
  37440. characterMakers.push(() => makeCharacter(
  37441. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37442. {
  37443. front: {
  37444. height: math.unit(6 + 6/12, "feet"),
  37445. name: "Front",
  37446. image: {
  37447. source: "./media/characters/jai/front.svg",
  37448. extra: 1645/1534,
  37449. bottom: 115/1760
  37450. }
  37451. },
  37452. },
  37453. [
  37454. {
  37455. name: "Normal",
  37456. height: math.unit(6 + 6/12, "feet"),
  37457. default: true
  37458. },
  37459. ]
  37460. ))
  37461. characterMakers.push(() => makeCharacter(
  37462. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37463. {
  37464. front: {
  37465. height: math.unit(6 + 8/12, "feet"),
  37466. name: "Front",
  37467. image: {
  37468. source: "./media/characters/pixel/front.svg",
  37469. extra: 1900/1735,
  37470. bottom: 63/1963
  37471. }
  37472. },
  37473. },
  37474. [
  37475. {
  37476. name: "Normal",
  37477. height: math.unit(6 + 8/12, "feet"),
  37478. default: true
  37479. },
  37480. ]
  37481. ))
  37482. characterMakers.push(() => makeCharacter(
  37483. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37484. {
  37485. back: {
  37486. height: math.unit(4 + 1/12, "feet"),
  37487. weight: math.unit(75, "lb"),
  37488. name: "Back",
  37489. image: {
  37490. source: "./media/characters/rhett/back.svg",
  37491. extra: 930/878,
  37492. bottom: 25/955
  37493. }
  37494. },
  37495. front: {
  37496. height: math.unit(4 + 1/12, "feet"),
  37497. weight: math.unit(75, "lb"),
  37498. name: "Front",
  37499. image: {
  37500. source: "./media/characters/rhett/front.svg",
  37501. extra: 1682/1586,
  37502. bottom: 92/1774
  37503. }
  37504. },
  37505. },
  37506. [
  37507. {
  37508. name: "Micro",
  37509. height: math.unit(8, "inches")
  37510. },
  37511. {
  37512. name: "Tiny",
  37513. height: math.unit(2, "feet")
  37514. },
  37515. {
  37516. name: "Normal",
  37517. height: math.unit(4 + 1/12, "feet"),
  37518. default: true
  37519. },
  37520. ]
  37521. ))
  37522. characterMakers.push(() => makeCharacter(
  37523. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37524. {
  37525. front: {
  37526. height: math.unit(3 + 3/12, "feet"),
  37527. name: "Front",
  37528. image: {
  37529. source: "./media/characters/penny/front.svg",
  37530. extra: 1406/1311,
  37531. bottom: 26/1432
  37532. }
  37533. },
  37534. },
  37535. [
  37536. {
  37537. name: "Normal",
  37538. height: math.unit(3 + 3/12, "feet"),
  37539. default: true
  37540. },
  37541. ]
  37542. ))
  37543. characterMakers.push(() => makeCharacter(
  37544. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37545. {
  37546. front: {
  37547. height: math.unit(4 + 11/12, "feet"),
  37548. name: "Front",
  37549. image: {
  37550. source: "./media/characters/monty/front.svg",
  37551. extra: 1479/1209,
  37552. bottom: 0/1479
  37553. }
  37554. },
  37555. },
  37556. [
  37557. {
  37558. name: "Normal",
  37559. height: math.unit(4 + 11/12, "feet"),
  37560. default: true
  37561. },
  37562. ]
  37563. ))
  37564. characterMakers.push(() => makeCharacter(
  37565. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37566. {
  37567. front: {
  37568. height: math.unit(8 + 4/12, "feet"),
  37569. name: "Front",
  37570. image: {
  37571. source: "./media/characters/sterling/front.svg",
  37572. extra: 1420/1236,
  37573. bottom: 27/1447
  37574. }
  37575. },
  37576. },
  37577. [
  37578. {
  37579. name: "Normal",
  37580. height: math.unit(8 + 4/12, "feet"),
  37581. default: true
  37582. },
  37583. ]
  37584. ))
  37585. characterMakers.push(() => makeCharacter(
  37586. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37587. {
  37588. front: {
  37589. height: math.unit(15, "feet"),
  37590. name: "Front",
  37591. image: {
  37592. source: "./media/characters/marble/front.svg",
  37593. extra: 973/937,
  37594. bottom: 32/1005
  37595. }
  37596. },
  37597. },
  37598. [
  37599. {
  37600. name: "Normal",
  37601. height: math.unit(15, "feet"),
  37602. default: true
  37603. },
  37604. ]
  37605. ))
  37606. characterMakers.push(() => makeCharacter(
  37607. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37608. {
  37609. front: {
  37610. height: math.unit(3, "inches"),
  37611. name: "Front",
  37612. image: {
  37613. source: "./media/characters/powder/front.svg",
  37614. extra: 1504/1334,
  37615. bottom: 518/2022
  37616. }
  37617. },
  37618. },
  37619. [
  37620. {
  37621. name: "Normal",
  37622. height: math.unit(3, "inches"),
  37623. default: true
  37624. },
  37625. ]
  37626. ))
  37627. characterMakers.push(() => makeCharacter(
  37628. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37629. {
  37630. front: {
  37631. height: math.unit(4 + 5/12, "feet"),
  37632. name: "Front",
  37633. image: {
  37634. source: "./media/characters/joey-raccoon/front.svg",
  37635. extra: 1273/1197,
  37636. bottom: 0/1273
  37637. }
  37638. },
  37639. },
  37640. [
  37641. {
  37642. name: "Normal",
  37643. height: math.unit(4 + 5/12, "feet"),
  37644. default: true
  37645. },
  37646. ]
  37647. ))
  37648. characterMakers.push(() => makeCharacter(
  37649. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37650. {
  37651. front: {
  37652. height: math.unit(8 + 4/12, "feet"),
  37653. name: "Front",
  37654. image: {
  37655. source: "./media/characters/vick/front.svg",
  37656. extra: 2187/2118,
  37657. bottom: 47/2234
  37658. }
  37659. },
  37660. },
  37661. [
  37662. {
  37663. name: "Normal",
  37664. height: math.unit(8 + 4/12, "feet"),
  37665. default: true
  37666. },
  37667. ]
  37668. ))
  37669. characterMakers.push(() => makeCharacter(
  37670. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37671. {
  37672. front: {
  37673. height: math.unit(5 + 5/12, "feet"),
  37674. name: "Front",
  37675. image: {
  37676. source: "./media/characters/mitsy/front.svg",
  37677. extra: 1842/1695,
  37678. bottom: 0/1842
  37679. }
  37680. },
  37681. },
  37682. [
  37683. {
  37684. name: "Normal",
  37685. height: math.unit(5 + 5/12, "feet"),
  37686. default: true
  37687. },
  37688. ]
  37689. ))
  37690. characterMakers.push(() => makeCharacter(
  37691. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37692. {
  37693. front: {
  37694. height: math.unit(6 + 3/12, "feet"),
  37695. name: "Front",
  37696. image: {
  37697. source: "./media/characters/silvy/front.svg",
  37698. extra: 1995/1836,
  37699. bottom: 225/2220
  37700. }
  37701. },
  37702. },
  37703. [
  37704. {
  37705. name: "Normal",
  37706. height: math.unit(6 + 3/12, "feet"),
  37707. default: true
  37708. },
  37709. ]
  37710. ))
  37711. characterMakers.push(() => makeCharacter(
  37712. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37713. {
  37714. front: {
  37715. height: math.unit(3 + 8/12, "feet"),
  37716. name: "Front",
  37717. image: {
  37718. source: "./media/characters/rodney/front.svg",
  37719. extra: 1956/1747,
  37720. bottom: 31/1987
  37721. }
  37722. },
  37723. frontDressed: {
  37724. height: math.unit(2.9, "feet"),
  37725. name: "Front (Dressed)",
  37726. image: {
  37727. source: "./media/characters/rodney/front-dressed.svg",
  37728. extra: 1382/1241,
  37729. bottom: 385/1767
  37730. }
  37731. },
  37732. },
  37733. [
  37734. {
  37735. name: "Normal",
  37736. height: math.unit(3 + 8/12, "feet"),
  37737. default: true
  37738. },
  37739. ]
  37740. ))
  37741. characterMakers.push(() => makeCharacter(
  37742. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37743. {
  37744. front: {
  37745. height: math.unit(5 + 9/12, "feet"),
  37746. weight: math.unit(194, "lbs"),
  37747. name: "Front",
  37748. image: {
  37749. source: "./media/characters/zakail-sudekai/front.svg",
  37750. extra: 2696/2533,
  37751. bottom: 248/2944
  37752. }
  37753. },
  37754. maw: {
  37755. height: math.unit(1.35, "feet"),
  37756. name: "Maw",
  37757. image: {
  37758. source: "./media/characters/zakail-sudekai/maw.svg"
  37759. }
  37760. },
  37761. },
  37762. [
  37763. {
  37764. name: "Normal",
  37765. height: math.unit(5 + 9/12, "feet"),
  37766. default: true
  37767. },
  37768. ]
  37769. ))
  37770. characterMakers.push(() => makeCharacter(
  37771. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37772. {
  37773. front: {
  37774. height: math.unit(8 + 4/12, "feet"),
  37775. weight: math.unit(1200, "lb"),
  37776. name: "Front",
  37777. image: {
  37778. source: "./media/characters/eleanor/front.svg",
  37779. extra: 1226/1192,
  37780. bottom: 52/1278
  37781. }
  37782. },
  37783. back: {
  37784. height: math.unit(8 + 4/12, "feet"),
  37785. weight: math.unit(1200, "lb"),
  37786. name: "Back",
  37787. image: {
  37788. source: "./media/characters/eleanor/back.svg",
  37789. extra: 1242/1184,
  37790. bottom: 60/1302
  37791. }
  37792. },
  37793. head: {
  37794. height: math.unit(2.62, "feet"),
  37795. name: "Head",
  37796. image: {
  37797. source: "./media/characters/eleanor/head.svg"
  37798. }
  37799. },
  37800. },
  37801. [
  37802. {
  37803. name: "Normal",
  37804. height: math.unit(8 + 4/12, "feet"),
  37805. default: true
  37806. },
  37807. ]
  37808. ))
  37809. characterMakers.push(() => makeCharacter(
  37810. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37811. {
  37812. front: {
  37813. height: math.unit(8 + 4/12, "feet"),
  37814. weight: math.unit(750, "lb"),
  37815. name: "Front",
  37816. image: {
  37817. source: "./media/characters/tanya/front.svg",
  37818. extra: 1749/1615,
  37819. bottom: 33/1782
  37820. }
  37821. },
  37822. },
  37823. [
  37824. {
  37825. name: "Normal",
  37826. height: math.unit(8 + 4/12, "feet"),
  37827. default: true
  37828. },
  37829. ]
  37830. ))
  37831. characterMakers.push(() => makeCharacter(
  37832. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37833. {
  37834. front: {
  37835. height: math.unit(5, "feet"),
  37836. weight: math.unit(225, "lb"),
  37837. name: "Front",
  37838. image: {
  37839. source: "./media/characters/cindy/front.svg",
  37840. extra: 1320/1250,
  37841. bottom: 42/1362
  37842. }
  37843. },
  37844. frontDressed: {
  37845. height: math.unit(5, "feet"),
  37846. weight: math.unit(225, "lb"),
  37847. name: "Front (Dressed)",
  37848. image: {
  37849. source: "./media/characters/cindy/front-dressed.svg",
  37850. extra: 1320/1250,
  37851. bottom: 42/1362
  37852. }
  37853. },
  37854. back: {
  37855. height: math.unit(5, "feet"),
  37856. weight: math.unit(225, "lb"),
  37857. name: "Back",
  37858. image: {
  37859. source: "./media/characters/cindy/back.svg",
  37860. extra: 1384/1346,
  37861. bottom: 14/1398
  37862. }
  37863. },
  37864. },
  37865. [
  37866. {
  37867. name: "Normal",
  37868. height: math.unit(5, "feet"),
  37869. default: true
  37870. },
  37871. ]
  37872. ))
  37873. characterMakers.push(() => makeCharacter(
  37874. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37875. {
  37876. front: {
  37877. height: math.unit(6 + 9/12, "feet"),
  37878. weight: math.unit(440, "lb"),
  37879. name: "Front",
  37880. image: {
  37881. source: "./media/characters/wilbur-owen/front.svg",
  37882. extra: 1575/1448,
  37883. bottom: 72/1647
  37884. }
  37885. },
  37886. back: {
  37887. height: math.unit(6 + 9/12, "feet"),
  37888. weight: math.unit(440, "lb"),
  37889. name: "Back",
  37890. image: {
  37891. source: "./media/characters/wilbur-owen/back.svg",
  37892. extra: 1578/1445,
  37893. bottom: 36/1614
  37894. }
  37895. },
  37896. },
  37897. [
  37898. {
  37899. name: "Normal",
  37900. height: math.unit(6 + 9/12, "feet"),
  37901. default: true
  37902. },
  37903. ]
  37904. ))
  37905. characterMakers.push(() => makeCharacter(
  37906. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37907. {
  37908. front: {
  37909. height: math.unit(6 + 5/12, "feet"),
  37910. weight: math.unit(650, "lb"),
  37911. name: "Front",
  37912. image: {
  37913. source: "./media/characters/keegan/front.svg",
  37914. extra: 2387/2198,
  37915. bottom: 33/2420
  37916. }
  37917. },
  37918. side: {
  37919. height: math.unit(6 + 5/12, "feet"),
  37920. weight: math.unit(650, "lb"),
  37921. name: "Side",
  37922. image: {
  37923. source: "./media/characters/keegan/side.svg",
  37924. extra: 2390/2202,
  37925. bottom: 47/2437
  37926. }
  37927. },
  37928. back: {
  37929. height: math.unit(6 + 5/12, "feet"),
  37930. weight: math.unit(650, "lb"),
  37931. name: "Back",
  37932. image: {
  37933. source: "./media/characters/keegan/back.svg",
  37934. extra: 2418/2268,
  37935. bottom: 15/2433
  37936. }
  37937. },
  37938. frontSfw: {
  37939. height: math.unit(6 + 5/12, "feet"),
  37940. weight: math.unit(650, "lb"),
  37941. name: "Front (SFW)",
  37942. image: {
  37943. source: "./media/characters/keegan/front-sfw.svg",
  37944. extra: 2387/2198,
  37945. bottom: 33/2420
  37946. }
  37947. },
  37948. beans: {
  37949. height: math.unit(1.85, "feet"),
  37950. name: "Beans",
  37951. image: {
  37952. source: "./media/characters/keegan/beans.svg"
  37953. }
  37954. },
  37955. },
  37956. [
  37957. {
  37958. name: "Normal",
  37959. height: math.unit(6 + 5/12, "feet"),
  37960. default: true
  37961. },
  37962. ]
  37963. ))
  37964. characterMakers.push(() => makeCharacter(
  37965. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37966. {
  37967. front: {
  37968. height: math.unit(9, "feet"),
  37969. name: "Front",
  37970. image: {
  37971. source: "./media/characters/colton/front.svg",
  37972. extra: 1589/1326,
  37973. bottom: 139/1728
  37974. }
  37975. },
  37976. },
  37977. [
  37978. {
  37979. name: "Normal",
  37980. height: math.unit(9, "feet"),
  37981. default: true
  37982. },
  37983. ]
  37984. ))
  37985. characterMakers.push(() => makeCharacter(
  37986. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37987. {
  37988. front: {
  37989. height: math.unit(2 + 9/12, "feet"),
  37990. name: "Front",
  37991. image: {
  37992. source: "./media/characters/bora/front.svg",
  37993. extra: 1265/1250,
  37994. bottom: 24/1289
  37995. }
  37996. },
  37997. },
  37998. [
  37999. {
  38000. name: "Normal",
  38001. height: math.unit(2 + 9/12, "feet"),
  38002. default: true
  38003. },
  38004. ]
  38005. ))
  38006. characterMakers.push(() => makeCharacter(
  38007. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38008. {
  38009. front: {
  38010. height: math.unit(8, "feet"),
  38011. name: "Front",
  38012. image: {
  38013. source: "./media/characters/myu-myu/front.svg",
  38014. extra: 1949/1857,
  38015. bottom: 90/2039
  38016. }
  38017. },
  38018. },
  38019. [
  38020. {
  38021. name: "Normal",
  38022. height: math.unit(8, "feet"),
  38023. default: true
  38024. },
  38025. {
  38026. name: "Big",
  38027. height: math.unit(15, "feet")
  38028. },
  38029. {
  38030. name: "BIG",
  38031. height: math.unit(25, "feet")
  38032. },
  38033. ]
  38034. ))
  38035. characterMakers.push(() => makeCharacter(
  38036. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38037. {
  38038. side: {
  38039. height: math.unit(7 + 5/12, "feet"),
  38040. weight: math.unit(2800, "lb"),
  38041. name: "Side",
  38042. image: {
  38043. source: "./media/characters/haloren/side.svg",
  38044. extra: 1793/409,
  38045. bottom: 59/1852
  38046. }
  38047. },
  38048. frontPaw: {
  38049. height: math.unit(2.36, "feet"),
  38050. name: "Front paw",
  38051. image: {
  38052. source: "./media/characters/haloren/front-paw.svg"
  38053. }
  38054. },
  38055. hindPaw: {
  38056. height: math.unit(3.18, "feet"),
  38057. name: "Hind paw",
  38058. image: {
  38059. source: "./media/characters/haloren/hind-paw.svg"
  38060. }
  38061. },
  38062. maw: {
  38063. height: math.unit(5.05, "feet"),
  38064. name: "Maw",
  38065. image: {
  38066. source: "./media/characters/haloren/maw.svg"
  38067. }
  38068. },
  38069. dick: {
  38070. height: math.unit(2.90, "feet"),
  38071. name: "Dick",
  38072. image: {
  38073. source: "./media/characters/haloren/dick.svg"
  38074. }
  38075. },
  38076. },
  38077. [
  38078. {
  38079. name: "Normal",
  38080. height: math.unit(7 + 5/12, "feet"),
  38081. default: true
  38082. },
  38083. {
  38084. name: "Enhanced",
  38085. height: math.unit(14 + 3/12, "feet")
  38086. },
  38087. ]
  38088. ))
  38089. characterMakers.push(() => makeCharacter(
  38090. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38091. {
  38092. front: {
  38093. height: math.unit(171, "cm"),
  38094. name: "Front",
  38095. image: {
  38096. source: "./media/characters/kimmy/front.svg",
  38097. extra: 1491/1435,
  38098. bottom: 53/1544
  38099. }
  38100. },
  38101. },
  38102. [
  38103. {
  38104. name: "Small",
  38105. height: math.unit(9, "cm")
  38106. },
  38107. {
  38108. name: "Normal",
  38109. height: math.unit(171, "cm"),
  38110. default: true
  38111. },
  38112. ]
  38113. ))
  38114. characterMakers.push(() => makeCharacter(
  38115. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38116. {
  38117. front: {
  38118. height: math.unit(8, "feet"),
  38119. weight: math.unit(300, "lb"),
  38120. name: "Front",
  38121. image: {
  38122. source: "./media/characters/galeboomer/front.svg",
  38123. extra: 4651/4415,
  38124. bottom: 162/4813
  38125. }
  38126. },
  38127. back: {
  38128. height: math.unit(8, "feet"),
  38129. weight: math.unit(300, "lb"),
  38130. name: "Back",
  38131. image: {
  38132. source: "./media/characters/galeboomer/back.svg",
  38133. extra: 4544/4314,
  38134. bottom: 16/4560
  38135. }
  38136. },
  38137. frontAlt: {
  38138. height: math.unit(8, "feet"),
  38139. weight: math.unit(300, "lb"),
  38140. name: "Front (Alt)",
  38141. image: {
  38142. source: "./media/characters/galeboomer/front-alt.svg",
  38143. extra: 4458/4228,
  38144. bottom: 68/4526
  38145. }
  38146. },
  38147. maw: {
  38148. height: math.unit(1.2, "feet"),
  38149. name: "Maw",
  38150. image: {
  38151. source: "./media/characters/galeboomer/maw.svg"
  38152. }
  38153. },
  38154. },
  38155. [
  38156. {
  38157. name: "Normal",
  38158. height: math.unit(8, "feet"),
  38159. default: true
  38160. },
  38161. ]
  38162. ))
  38163. characterMakers.push(() => makeCharacter(
  38164. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38165. {
  38166. front: {
  38167. height: math.unit(5 + 9/12, "feet"),
  38168. weight: math.unit(120, "lb"),
  38169. name: "Front",
  38170. image: {
  38171. source: "./media/characters/chyr/front.svg",
  38172. extra: 1323/1254,
  38173. bottom: 63/1386
  38174. }
  38175. },
  38176. back: {
  38177. height: math.unit(5 + 9/12, "feet"),
  38178. weight: math.unit(120, "lb"),
  38179. name: "Back",
  38180. image: {
  38181. source: "./media/characters/chyr/back.svg",
  38182. extra: 1323/1252,
  38183. bottom: 48/1371
  38184. }
  38185. },
  38186. },
  38187. [
  38188. {
  38189. name: "Normal",
  38190. height: math.unit(5 + 9/12, "feet"),
  38191. default: true
  38192. },
  38193. ]
  38194. ))
  38195. characterMakers.push(() => makeCharacter(
  38196. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38197. {
  38198. front: {
  38199. height: math.unit(7, "feet"),
  38200. weight: math.unit(310, "lb"),
  38201. name: "Front",
  38202. image: {
  38203. source: "./media/characters/solarus/front.svg",
  38204. extra: 2415/2021,
  38205. bottom: 103/2518
  38206. }
  38207. },
  38208. back: {
  38209. height: math.unit(7, "feet"),
  38210. weight: math.unit(310, "lb"),
  38211. name: "Back",
  38212. image: {
  38213. source: "./media/characters/solarus/back.svg",
  38214. extra: 2463/2089,
  38215. bottom: 79/2542
  38216. }
  38217. },
  38218. },
  38219. [
  38220. {
  38221. name: "Normal",
  38222. height: math.unit(7, "feet"),
  38223. default: true
  38224. },
  38225. ]
  38226. ))
  38227. characterMakers.push(() => makeCharacter(
  38228. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38229. {
  38230. front: {
  38231. height: math.unit(16, "feet"),
  38232. name: "Front",
  38233. image: {
  38234. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38235. extra: 1844/1780,
  38236. bottom: 58/1902
  38237. }
  38238. },
  38239. winterCoat: {
  38240. height: math.unit(16, "feet"),
  38241. name: "Winter Coat",
  38242. image: {
  38243. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38244. extra: 1807/1775,
  38245. bottom: 69/1876
  38246. }
  38247. },
  38248. },
  38249. [
  38250. {
  38251. name: "Normal",
  38252. height: math.unit(16, "feet"),
  38253. default: true
  38254. },
  38255. {
  38256. name: "Chicago Size",
  38257. height: math.unit(560, "feet")
  38258. },
  38259. ]
  38260. ))
  38261. characterMakers.push(() => makeCharacter(
  38262. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38263. {
  38264. front: {
  38265. height: math.unit(11 + 6/12, "feet"),
  38266. weight: math.unit(1366, "lb"),
  38267. name: "Front",
  38268. image: {
  38269. source: "./media/characters/lexor/front.svg",
  38270. extra: 1560/1481,
  38271. bottom: 211/1771
  38272. }
  38273. },
  38274. back: {
  38275. height: math.unit(11 + 6/12, "feet"),
  38276. weight: math.unit(1366, "lb"),
  38277. name: "Back",
  38278. image: {
  38279. source: "./media/characters/lexor/back.svg",
  38280. extra: 1614/1533,
  38281. bottom: 76/1690
  38282. }
  38283. },
  38284. maw: {
  38285. height: math.unit(3, "feet"),
  38286. name: "Maw",
  38287. image: {
  38288. source: "./media/characters/lexor/maw.svg"
  38289. }
  38290. },
  38291. dick: {
  38292. height: math.unit(2.59, "feet"),
  38293. name: "Dick",
  38294. image: {
  38295. source: "./media/characters/lexor/dick.svg"
  38296. }
  38297. },
  38298. },
  38299. [
  38300. {
  38301. name: "Normal",
  38302. height: math.unit(11 + 6/12, "feet"),
  38303. default: true
  38304. },
  38305. ]
  38306. ))
  38307. characterMakers.push(() => makeCharacter(
  38308. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38309. {
  38310. front: {
  38311. height: math.unit(5 + 8/12, "feet"),
  38312. name: "Front",
  38313. image: {
  38314. source: "./media/characters/magnum/front.svg",
  38315. extra: 942/855,
  38316. bottom: 26/968
  38317. }
  38318. },
  38319. },
  38320. [
  38321. {
  38322. name: "Normal",
  38323. height: math.unit(5 + 8/12, "feet"),
  38324. default: true
  38325. },
  38326. ]
  38327. ))
  38328. characterMakers.push(() => makeCharacter(
  38329. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38330. {
  38331. front: {
  38332. height: math.unit(18 + 4/12, "feet"),
  38333. weight: math.unit(1500, "kg"),
  38334. name: "Front",
  38335. image: {
  38336. source: "./media/characters/solas-sharpsman/front.svg",
  38337. extra: 1698/1589,
  38338. bottom: 0/1698
  38339. }
  38340. },
  38341. },
  38342. [
  38343. {
  38344. name: "Normal",
  38345. height: math.unit(18 + 4/12, "feet"),
  38346. default: true
  38347. },
  38348. ]
  38349. ))
  38350. characterMakers.push(() => makeCharacter(
  38351. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38352. {
  38353. front: {
  38354. height: math.unit(5 + 5/12, "feet"),
  38355. weight: math.unit(180, "lb"),
  38356. name: "Front",
  38357. image: {
  38358. source: "./media/characters/october/front.svg",
  38359. extra: 1800/1650,
  38360. bottom: 0/1800
  38361. }
  38362. },
  38363. frontNsfw: {
  38364. height: math.unit(5 + 5/12, "feet"),
  38365. weight: math.unit(180, "lb"),
  38366. name: "Front (NSFW)",
  38367. image: {
  38368. source: "./media/characters/october/front-nsfw.svg",
  38369. extra: 1392/1307,
  38370. bottom: 42/1434
  38371. }
  38372. },
  38373. },
  38374. [
  38375. {
  38376. name: "Normal",
  38377. height: math.unit(5 + 5/12, "feet"),
  38378. default: true
  38379. },
  38380. ]
  38381. ))
  38382. characterMakers.push(() => makeCharacter(
  38383. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38384. {
  38385. front: {
  38386. height: math.unit(8 + 6/12, "feet"),
  38387. name: "Front",
  38388. image: {
  38389. source: "./media/characters/essynkardi/front.svg",
  38390. extra: 1914/1846,
  38391. bottom: 22/1936
  38392. }
  38393. },
  38394. },
  38395. [
  38396. {
  38397. name: "Normal",
  38398. height: math.unit(8 + 6/12, "feet"),
  38399. default: true
  38400. },
  38401. ]
  38402. ))
  38403. characterMakers.push(() => makeCharacter(
  38404. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38405. {
  38406. front: {
  38407. height: math.unit(6 + 6/12, "feet"),
  38408. weight: math.unit(7, "lb"),
  38409. name: "Front",
  38410. image: {
  38411. source: "./media/characters/icky/front.svg",
  38412. extra: 813/782,
  38413. bottom: 66/879
  38414. }
  38415. },
  38416. back: {
  38417. height: math.unit(6 + 6/12, "feet"),
  38418. weight: math.unit(7, "lb"),
  38419. name: "Back",
  38420. image: {
  38421. source: "./media/characters/icky/back.svg",
  38422. extra: 754/735,
  38423. bottom: 56/810
  38424. }
  38425. },
  38426. },
  38427. [
  38428. {
  38429. name: "Normal",
  38430. height: math.unit(6 + 6/12, "feet"),
  38431. default: true
  38432. },
  38433. ]
  38434. ))
  38435. characterMakers.push(() => makeCharacter(
  38436. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38437. {
  38438. front: {
  38439. height: math.unit(15, "feet"),
  38440. name: "Front",
  38441. image: {
  38442. source: "./media/characters/rojas/front.svg",
  38443. extra: 1462/1408,
  38444. bottom: 95/1557
  38445. }
  38446. },
  38447. back: {
  38448. height: math.unit(15, "feet"),
  38449. name: "Back",
  38450. image: {
  38451. source: "./media/characters/rojas/back.svg",
  38452. extra: 1023/954,
  38453. bottom: 28/1051
  38454. }
  38455. },
  38456. },
  38457. [
  38458. {
  38459. name: "Normal",
  38460. height: math.unit(15, "feet"),
  38461. default: true
  38462. },
  38463. ]
  38464. ))
  38465. characterMakers.push(() => makeCharacter(
  38466. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38467. {
  38468. frontHuman: {
  38469. height: math.unit(5 + 7/12, "feet"),
  38470. name: "Front (Human)",
  38471. image: {
  38472. source: "./media/characters/alek-dryagan/front-human.svg",
  38473. extra: 1687/1667,
  38474. bottom: 69/1756
  38475. }
  38476. },
  38477. backHuman: {
  38478. height: math.unit(5 + 7/12, "feet"),
  38479. name: "Back (Human)",
  38480. image: {
  38481. source: "./media/characters/alek-dryagan/back-human.svg",
  38482. extra: 1670/1649,
  38483. bottom: 65/1735
  38484. }
  38485. },
  38486. frontDemi: {
  38487. height: math.unit(65, "feet"),
  38488. name: "Front (Demi)",
  38489. image: {
  38490. source: "./media/characters/alek-dryagan/front-demi.svg",
  38491. extra: 1669/1642,
  38492. bottom: 49/1718
  38493. }
  38494. },
  38495. backDemi: {
  38496. height: math.unit(65, "feet"),
  38497. name: "Back (Demi)",
  38498. image: {
  38499. source: "./media/characters/alek-dryagan/back-demi.svg",
  38500. extra: 1658/1637,
  38501. bottom: 40/1698
  38502. }
  38503. },
  38504. mawHuman: {
  38505. height: math.unit(0.3, "feet"),
  38506. name: "Maw (Human)",
  38507. image: {
  38508. source: "./media/characters/alek-dryagan/maw-human.svg"
  38509. }
  38510. },
  38511. mawDemi: {
  38512. height: math.unit(3.8, "feet"),
  38513. name: "Maw (Demi)",
  38514. image: {
  38515. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38516. }
  38517. },
  38518. },
  38519. [
  38520. {
  38521. name: "Normal",
  38522. height: math.unit(5 + 7/12, "feet"),
  38523. default: true
  38524. },
  38525. ]
  38526. ))
  38527. characterMakers.push(() => makeCharacter(
  38528. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38529. {
  38530. frontHuman: {
  38531. height: math.unit(5 + 2/12, "feet"),
  38532. name: "Front (Human)",
  38533. image: {
  38534. source: "./media/characters/gen/front-human.svg",
  38535. extra: 1627/1538,
  38536. bottom: 71/1698
  38537. }
  38538. },
  38539. backHuman: {
  38540. height: math.unit(5 + 2/12, "feet"),
  38541. name: "Back (Human)",
  38542. image: {
  38543. source: "./media/characters/gen/back-human.svg",
  38544. extra: 1638/1548,
  38545. bottom: 69/1707
  38546. }
  38547. },
  38548. frontDemi: {
  38549. height: math.unit(5 + 2/12, "feet"),
  38550. name: "Front (Demi)",
  38551. image: {
  38552. source: "./media/characters/gen/front-demi.svg",
  38553. extra: 1627/1538,
  38554. bottom: 71/1698
  38555. }
  38556. },
  38557. backDemi: {
  38558. height: math.unit(5 + 2/12, "feet"),
  38559. name: "Back (Demi)",
  38560. image: {
  38561. source: "./media/characters/gen/back-demi.svg",
  38562. extra: 1638/1548,
  38563. bottom: 69/1707
  38564. }
  38565. },
  38566. },
  38567. [
  38568. {
  38569. name: "Normal",
  38570. height: math.unit(5 + 2/12, "feet"),
  38571. default: true
  38572. },
  38573. ]
  38574. ))
  38575. characterMakers.push(() => makeCharacter(
  38576. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38577. {
  38578. frontImp: {
  38579. height: math.unit(1 + 11/12, "feet"),
  38580. name: "Front (Imp)",
  38581. image: {
  38582. source: "./media/characters/max-kobold/front-imp.svg",
  38583. extra: 1238/1134,
  38584. bottom: 81/1319
  38585. }
  38586. },
  38587. backImp: {
  38588. height: math.unit(1 + 11/12, "feet"),
  38589. name: "Back (Imp)",
  38590. image: {
  38591. source: "./media/characters/max-kobold/back-imp.svg",
  38592. extra: 1334/1175,
  38593. bottom: 34/1368
  38594. }
  38595. },
  38596. frontDemi: {
  38597. height: math.unit(5 + 9/12, "feet"),
  38598. name: "Front (Demi)",
  38599. image: {
  38600. source: "./media/characters/max-kobold/front-demi.svg",
  38601. extra: 1715/1685,
  38602. bottom: 54/1769
  38603. }
  38604. },
  38605. backDemi: {
  38606. height: math.unit(5 + 9/12, "feet"),
  38607. name: "Back (Demi)",
  38608. image: {
  38609. source: "./media/characters/max-kobold/back-demi.svg",
  38610. extra: 1752/1729,
  38611. bottom: 41/1793
  38612. }
  38613. },
  38614. handImp: {
  38615. height: math.unit(0.45, "feet"),
  38616. name: "Hand (Imp)",
  38617. image: {
  38618. source: "./media/characters/max-kobold/hand.svg"
  38619. }
  38620. },
  38621. pawImp: {
  38622. height: math.unit(0.46, "feet"),
  38623. name: "Paw (Imp)",
  38624. image: {
  38625. source: "./media/characters/max-kobold/paw.svg"
  38626. }
  38627. },
  38628. handDemi: {
  38629. height: math.unit(0.80, "feet"),
  38630. name: "Hand (Demi)",
  38631. image: {
  38632. source: "./media/characters/max-kobold/hand.svg"
  38633. }
  38634. },
  38635. pawDemi: {
  38636. height: math.unit(1.1, "feet"),
  38637. name: "Paw (Demi)",
  38638. image: {
  38639. source: "./media/characters/max-kobold/paw.svg"
  38640. }
  38641. },
  38642. headImp: {
  38643. height: math.unit(1.33, "feet"),
  38644. name: "Head (Imp)",
  38645. image: {
  38646. source: "./media/characters/max-kobold/head-imp.svg"
  38647. }
  38648. },
  38649. mawImp: {
  38650. height: math.unit(0.75, "feet"),
  38651. name: "Maw (Imp)",
  38652. image: {
  38653. source: "./media/characters/max-kobold/maw-imp.svg"
  38654. }
  38655. },
  38656. mawDemi: {
  38657. height: math.unit(0.42, "feet"),
  38658. name: "Maw (Demi)",
  38659. image: {
  38660. source: "./media/characters/max-kobold/maw-demi.svg"
  38661. }
  38662. },
  38663. },
  38664. [
  38665. {
  38666. name: "Normal",
  38667. height: math.unit(1 + 11/12, "feet"),
  38668. default: true
  38669. },
  38670. ]
  38671. ))
  38672. characterMakers.push(() => makeCharacter(
  38673. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38674. {
  38675. front: {
  38676. height: math.unit(7 + 5/12, "feet"),
  38677. name: "Front",
  38678. image: {
  38679. source: "./media/characters/carbon/front.svg",
  38680. extra: 1754/1689,
  38681. bottom: 65/1819
  38682. }
  38683. },
  38684. back: {
  38685. height: math.unit(7 + 5/12, "feet"),
  38686. name: "Back",
  38687. image: {
  38688. source: "./media/characters/carbon/back.svg",
  38689. extra: 1762/1695,
  38690. bottom: 24/1786
  38691. }
  38692. },
  38693. frontGigantamax: {
  38694. height: math.unit(150, "feet"),
  38695. name: "Front (Gigantamax)",
  38696. image: {
  38697. source: "./media/characters/carbon/front-gigantamax.svg",
  38698. extra: 1826/1669,
  38699. bottom: 59/1885
  38700. }
  38701. },
  38702. backGigantamax: {
  38703. height: math.unit(150, "feet"),
  38704. name: "Back (Gigantamax)",
  38705. image: {
  38706. source: "./media/characters/carbon/back-gigantamax.svg",
  38707. extra: 1796/1653,
  38708. bottom: 53/1849
  38709. }
  38710. },
  38711. maw: {
  38712. height: math.unit(0.48, "feet"),
  38713. name: "Maw",
  38714. image: {
  38715. source: "./media/characters/carbon/maw.svg"
  38716. }
  38717. },
  38718. mawGigantamax: {
  38719. height: math.unit(7.5, "feet"),
  38720. name: "Maw (Gigantamax)",
  38721. image: {
  38722. source: "./media/characters/carbon/maw-gigantamax.svg"
  38723. }
  38724. },
  38725. },
  38726. [
  38727. {
  38728. name: "Normal",
  38729. height: math.unit(7 + 5/12, "feet"),
  38730. default: true
  38731. },
  38732. ]
  38733. ))
  38734. characterMakers.push(() => makeCharacter(
  38735. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38736. {
  38737. front: {
  38738. height: math.unit(6, "feet"),
  38739. name: "Front",
  38740. image: {
  38741. source: "./media/characters/maverick/front.svg",
  38742. extra: 1672/1661,
  38743. bottom: 85/1757
  38744. }
  38745. },
  38746. back: {
  38747. height: math.unit(6, "feet"),
  38748. name: "Back",
  38749. image: {
  38750. source: "./media/characters/maverick/back.svg",
  38751. extra: 1642/1631,
  38752. bottom: 38/1680
  38753. }
  38754. },
  38755. },
  38756. [
  38757. {
  38758. name: "Normal",
  38759. height: math.unit(6, "feet"),
  38760. default: true
  38761. },
  38762. ]
  38763. ))
  38764. characterMakers.push(() => makeCharacter(
  38765. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38766. {
  38767. front: {
  38768. height: math.unit(15, "feet"),
  38769. weight: math.unit(615, "lb"),
  38770. name: "Front",
  38771. image: {
  38772. source: "./media/characters/grockle/front.svg",
  38773. extra: 1535/1427,
  38774. bottom: 56/1591
  38775. }
  38776. },
  38777. },
  38778. [
  38779. {
  38780. name: "Normal",
  38781. height: math.unit(15, "feet"),
  38782. default: true
  38783. },
  38784. {
  38785. name: "Large",
  38786. height: math.unit(150, "feet")
  38787. },
  38788. {
  38789. name: "Macro",
  38790. height: math.unit(1876, "feet")
  38791. },
  38792. {
  38793. name: "Mega Macro",
  38794. height: math.unit(121940, "feet")
  38795. },
  38796. {
  38797. name: "Giga Macro",
  38798. height: math.unit(750, "km")
  38799. },
  38800. {
  38801. name: "Tera Macro",
  38802. height: math.unit(750000, "km")
  38803. },
  38804. {
  38805. name: "Galactic",
  38806. height: math.unit(1.4e5, "km")
  38807. },
  38808. {
  38809. name: "Godlike",
  38810. height: math.unit(9.8e280, "galaxies")
  38811. },
  38812. ]
  38813. ))
  38814. characterMakers.push(() => makeCharacter(
  38815. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38816. {
  38817. front: {
  38818. height: math.unit(11, "meters"),
  38819. weight: math.unit(20, "tonnes"),
  38820. name: "Front",
  38821. image: {
  38822. source: "./media/characters/alistair/front.svg",
  38823. extra: 1265/1009,
  38824. bottom: 93/1358
  38825. }
  38826. },
  38827. },
  38828. [
  38829. {
  38830. name: "Normal",
  38831. height: math.unit(11, "meters"),
  38832. default: true
  38833. },
  38834. ]
  38835. ))
  38836. characterMakers.push(() => makeCharacter(
  38837. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38838. {
  38839. front: {
  38840. height: math.unit(5 + 8/12, "feet"),
  38841. name: "Front",
  38842. image: {
  38843. source: "./media/characters/haruka/front.svg",
  38844. extra: 2012/1952,
  38845. bottom: 0/2012
  38846. }
  38847. },
  38848. },
  38849. [
  38850. {
  38851. name: "Normal",
  38852. height: math.unit(5 + 8/12, "feet"),
  38853. default: true
  38854. },
  38855. ]
  38856. ))
  38857. characterMakers.push(() => makeCharacter(
  38858. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38859. {
  38860. back: {
  38861. height: math.unit(9, "feet"),
  38862. name: "Back",
  38863. image: {
  38864. source: "./media/characters/vivian-sylveon/back.svg",
  38865. extra: 1853/1714,
  38866. bottom: 0/1853
  38867. }
  38868. },
  38869. },
  38870. [
  38871. {
  38872. name: "Normal",
  38873. height: math.unit(9, "feet"),
  38874. default: true
  38875. },
  38876. {
  38877. name: "Macro",
  38878. height: math.unit(500, "feet")
  38879. },
  38880. {
  38881. name: "Megamacro",
  38882. height: math.unit(600, "miles")
  38883. },
  38884. {
  38885. name: "Gigamacro",
  38886. height: math.unit(30000, "miles")
  38887. },
  38888. ]
  38889. ))
  38890. characterMakers.push(() => makeCharacter(
  38891. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38892. {
  38893. anthro: {
  38894. height: math.unit(5 + 10/12, "feet"),
  38895. weight: math.unit(100, "lb"),
  38896. name: "Anthro",
  38897. image: {
  38898. source: "./media/characters/daiki/anthro.svg",
  38899. extra: 1115/1027,
  38900. bottom: 69/1184
  38901. }
  38902. },
  38903. feral: {
  38904. height: math.unit(200, "feet"),
  38905. name: "Feral",
  38906. image: {
  38907. source: "./media/characters/daiki/feral.svg",
  38908. extra: 1256/313,
  38909. bottom: 39/1295
  38910. }
  38911. },
  38912. feralHead: {
  38913. height: math.unit(171, "feet"),
  38914. name: "Feral Head",
  38915. image: {
  38916. source: "./media/characters/daiki/feral-head.svg"
  38917. }
  38918. },
  38919. manaDragon: {
  38920. height: math.unit(170, "meters"),
  38921. name: "Mana-dragon",
  38922. image: {
  38923. source: "./media/characters/daiki/mana-dragon.svg",
  38924. extra: 763/420,
  38925. bottom: 97/860
  38926. }
  38927. },
  38928. },
  38929. [
  38930. {
  38931. name: "Normal",
  38932. height: math.unit(5 + 10/12, "feet"),
  38933. default: true
  38934. },
  38935. ]
  38936. ))
  38937. characterMakers.push(() => makeCharacter(
  38938. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38939. {
  38940. fullyEquippedFront: {
  38941. height: math.unit(3 + 1/12, "feet"),
  38942. weight: math.unit(24, "lb"),
  38943. name: "Fully Equipped (Front)",
  38944. image: {
  38945. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38946. extra: 687/605,
  38947. bottom: 18/705
  38948. }
  38949. },
  38950. fullyEquippedBack: {
  38951. height: math.unit(3 + 1/12, "feet"),
  38952. weight: math.unit(24, "lb"),
  38953. name: "Fully Equipped (Back)",
  38954. image: {
  38955. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38956. extra: 689/590,
  38957. bottom: 18/707
  38958. }
  38959. },
  38960. dailyWear: {
  38961. height: math.unit(3 + 1/12, "feet"),
  38962. weight: math.unit(24, "lb"),
  38963. name: "Daily Wear",
  38964. image: {
  38965. source: "./media/characters/tea-spot/daily-wear.svg",
  38966. extra: 701/620,
  38967. bottom: 21/722
  38968. }
  38969. },
  38970. maidWork: {
  38971. height: math.unit(3 + 1/12, "feet"),
  38972. weight: math.unit(24, "lb"),
  38973. name: "Maid Work",
  38974. image: {
  38975. source: "./media/characters/tea-spot/maid-work.svg",
  38976. extra: 693/609,
  38977. bottom: 15/708
  38978. }
  38979. },
  38980. },
  38981. [
  38982. {
  38983. name: "Normal",
  38984. height: math.unit(3 + 1/12, "feet"),
  38985. default: true
  38986. },
  38987. ]
  38988. ))
  38989. characterMakers.push(() => makeCharacter(
  38990. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38991. {
  38992. front: {
  38993. height: math.unit(175, "cm"),
  38994. weight: math.unit(75, "kg"),
  38995. name: "Front",
  38996. image: {
  38997. source: "./media/characters/chee/front.svg",
  38998. extra: 1796/1740,
  38999. bottom: 40/1836
  39000. }
  39001. },
  39002. },
  39003. [
  39004. {
  39005. name: "Micro-Micro",
  39006. height: math.unit(1, "nm")
  39007. },
  39008. {
  39009. name: "Micro-erst",
  39010. height: math.unit(1, "micrometer")
  39011. },
  39012. {
  39013. name: "Micro-er",
  39014. height: math.unit(1, "cm")
  39015. },
  39016. {
  39017. name: "Normal",
  39018. height: math.unit(175, "cm"),
  39019. default: true
  39020. },
  39021. {
  39022. name: "Macro",
  39023. height: math.unit(100, "m")
  39024. },
  39025. {
  39026. name: "Macro-er",
  39027. height: math.unit(1, "km")
  39028. },
  39029. {
  39030. name: "Macro-erst",
  39031. height: math.unit(10, "km")
  39032. },
  39033. {
  39034. name: "Macro-Macro",
  39035. height: math.unit(100, "km")
  39036. },
  39037. ]
  39038. ))
  39039. characterMakers.push(() => makeCharacter(
  39040. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39041. {
  39042. front: {
  39043. height: math.unit(11 + 9/12, "feet"),
  39044. weight: math.unit(935, "lb"),
  39045. name: "Front",
  39046. image: {
  39047. source: "./media/characters/kingsley/front.svg",
  39048. extra: 1803/1674,
  39049. bottom: 127/1930
  39050. }
  39051. },
  39052. frontNude: {
  39053. height: math.unit(11 + 9/12, "feet"),
  39054. weight: math.unit(935, "lb"),
  39055. name: "Front (Nude)",
  39056. image: {
  39057. source: "./media/characters/kingsley/front-nude.svg",
  39058. extra: 1803/1674,
  39059. bottom: 127/1930
  39060. }
  39061. },
  39062. },
  39063. [
  39064. {
  39065. name: "Normal",
  39066. height: math.unit(11 + 9/12, "feet"),
  39067. default: true
  39068. },
  39069. ]
  39070. ))
  39071. characterMakers.push(() => makeCharacter(
  39072. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39073. {
  39074. side: {
  39075. height: math.unit(9, "feet"),
  39076. name: "Side",
  39077. image: {
  39078. source: "./media/characters/rymel/side.svg",
  39079. extra: 792/469,
  39080. bottom: 121/913
  39081. }
  39082. },
  39083. maw: {
  39084. height: math.unit(2.4, "meters"),
  39085. name: "Maw",
  39086. image: {
  39087. source: "./media/characters/rymel/maw.svg"
  39088. }
  39089. },
  39090. },
  39091. [
  39092. {
  39093. name: "House Drake",
  39094. height: math.unit(2, "feet")
  39095. },
  39096. {
  39097. name: "Reduced",
  39098. height: math.unit(4.5, "feet")
  39099. },
  39100. {
  39101. name: "Normal",
  39102. height: math.unit(9, "feet"),
  39103. default: true
  39104. },
  39105. ]
  39106. ))
  39107. characterMakers.push(() => makeCharacter(
  39108. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39109. {
  39110. front: {
  39111. height: math.unit(1.74, "meters"),
  39112. weight: math.unit(55, "kg"),
  39113. name: "Front",
  39114. image: {
  39115. source: "./media/characters/rubus/front.svg",
  39116. extra: 1894/1742,
  39117. bottom: 44/1938
  39118. }
  39119. },
  39120. },
  39121. [
  39122. {
  39123. name: "Normal",
  39124. height: math.unit(1.74, "meters"),
  39125. default: true
  39126. },
  39127. ]
  39128. ))
  39129. characterMakers.push(() => makeCharacter(
  39130. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39131. {
  39132. front: {
  39133. height: math.unit(5 + 2/12, "feet"),
  39134. weight: math.unit(112, "lb"),
  39135. name: "Front",
  39136. image: {
  39137. source: "./media/characters/cassie-kingston/front.svg",
  39138. extra: 1438/1390,
  39139. bottom: 47/1485
  39140. }
  39141. },
  39142. },
  39143. [
  39144. {
  39145. name: "Normal",
  39146. height: math.unit(5 + 2/12, "feet"),
  39147. default: true
  39148. },
  39149. {
  39150. name: "Macro",
  39151. height: math.unit(128, "feet")
  39152. },
  39153. {
  39154. name: "Megamacro",
  39155. height: math.unit(2.56, "miles")
  39156. },
  39157. ]
  39158. ))
  39159. characterMakers.push(() => makeCharacter(
  39160. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39161. {
  39162. front: {
  39163. height: math.unit(7, "feet"),
  39164. name: "Front",
  39165. image: {
  39166. source: "./media/characters/fox/front.svg",
  39167. extra: 1798/1703,
  39168. bottom: 55/1853
  39169. }
  39170. },
  39171. back: {
  39172. height: math.unit(7, "feet"),
  39173. name: "Back",
  39174. image: {
  39175. source: "./media/characters/fox/back.svg",
  39176. extra: 1748/1649,
  39177. bottom: 32/1780
  39178. }
  39179. },
  39180. head: {
  39181. height: math.unit(1.95, "feet"),
  39182. name: "Head",
  39183. image: {
  39184. source: "./media/characters/fox/head.svg"
  39185. }
  39186. },
  39187. dick: {
  39188. height: math.unit(1.33, "feet"),
  39189. name: "Dick",
  39190. image: {
  39191. source: "./media/characters/fox/dick.svg"
  39192. }
  39193. },
  39194. foot: {
  39195. height: math.unit(1, "feet"),
  39196. name: "Foot",
  39197. image: {
  39198. source: "./media/characters/fox/foot.svg"
  39199. }
  39200. },
  39201. paw: {
  39202. height: math.unit(0.92, "feet"),
  39203. name: "Paw",
  39204. image: {
  39205. source: "./media/characters/fox/paw.svg"
  39206. }
  39207. },
  39208. },
  39209. [
  39210. {
  39211. name: "Small",
  39212. height: math.unit(3, "inches")
  39213. },
  39214. {
  39215. name: "\"Realistic\"",
  39216. height: math.unit(7, "feet")
  39217. },
  39218. {
  39219. name: "Normal",
  39220. height: math.unit(150, "feet"),
  39221. default: true
  39222. },
  39223. {
  39224. name: "BIG",
  39225. height: math.unit(1200, "feet")
  39226. },
  39227. {
  39228. name: "👀",
  39229. height: math.unit(5, "miles")
  39230. },
  39231. {
  39232. name: "👀👀👀",
  39233. height: math.unit(64, "miles")
  39234. },
  39235. ]
  39236. ))
  39237. characterMakers.push(() => makeCharacter(
  39238. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39239. {
  39240. front: {
  39241. height: math.unit(625, "feet"),
  39242. name: "Front",
  39243. image: {
  39244. source: "./media/characters/asonja-rossa/front.svg",
  39245. extra: 1833/1686,
  39246. bottom: 24/1857
  39247. }
  39248. },
  39249. back: {
  39250. height: math.unit(625, "feet"),
  39251. name: "Back",
  39252. image: {
  39253. source: "./media/characters/asonja-rossa/back.svg",
  39254. extra: 1852/1753,
  39255. bottom: 26/1878
  39256. }
  39257. },
  39258. },
  39259. [
  39260. {
  39261. name: "Macro",
  39262. height: math.unit(625, "feet"),
  39263. default: true
  39264. },
  39265. ]
  39266. ))
  39267. characterMakers.push(() => makeCharacter(
  39268. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39269. {
  39270. side: {
  39271. height: math.unit(8, "feet"),
  39272. name: "Side",
  39273. image: {
  39274. source: "./media/characters/rezukii/side.svg",
  39275. extra: 979/542,
  39276. bottom: 87/1066
  39277. }
  39278. },
  39279. sitting: {
  39280. height: math.unit(14.6, "feet"),
  39281. name: "Sitting",
  39282. image: {
  39283. source: "./media/characters/rezukii/sitting.svg",
  39284. extra: 1023/813,
  39285. bottom: 45/1068
  39286. }
  39287. },
  39288. },
  39289. [
  39290. {
  39291. name: "Tiny",
  39292. height: math.unit(2, "feet")
  39293. },
  39294. {
  39295. name: "Smol",
  39296. height: math.unit(4, "feet")
  39297. },
  39298. {
  39299. name: "Normal",
  39300. height: math.unit(8, "feet"),
  39301. default: true
  39302. },
  39303. {
  39304. name: "Big",
  39305. height: math.unit(12, "feet")
  39306. },
  39307. {
  39308. name: "Macro",
  39309. height: math.unit(30, "feet")
  39310. },
  39311. ]
  39312. ))
  39313. characterMakers.push(() => makeCharacter(
  39314. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39315. {
  39316. front: {
  39317. height: math.unit(14, "feet"),
  39318. weight: math.unit(9.5, "tonnes"),
  39319. name: "Front",
  39320. image: {
  39321. source: "./media/characters/dawnheart/front.svg",
  39322. extra: 2792/2675,
  39323. bottom: 64/2856
  39324. }
  39325. },
  39326. },
  39327. [
  39328. {
  39329. name: "Normal",
  39330. height: math.unit(14, "feet"),
  39331. default: true
  39332. },
  39333. ]
  39334. ))
  39335. characterMakers.push(() => makeCharacter(
  39336. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39337. {
  39338. front: {
  39339. height: math.unit(1.7, "m"),
  39340. name: "Front",
  39341. image: {
  39342. source: "./media/characters/gladi/front.svg",
  39343. extra: 1460/1362,
  39344. bottom: 19/1479
  39345. }
  39346. },
  39347. back: {
  39348. height: math.unit(1.7, "m"),
  39349. name: "Back",
  39350. image: {
  39351. source: "./media/characters/gladi/back.svg",
  39352. extra: 1459/1357,
  39353. bottom: 12/1471
  39354. }
  39355. },
  39356. feral: {
  39357. height: math.unit(2.05, "m"),
  39358. name: "Feral",
  39359. image: {
  39360. source: "./media/characters/gladi/feral.svg",
  39361. extra: 821/557,
  39362. bottom: 91/912
  39363. }
  39364. },
  39365. },
  39366. [
  39367. {
  39368. name: "Shortest",
  39369. height: math.unit(70, "cm")
  39370. },
  39371. {
  39372. name: "Normal",
  39373. height: math.unit(1.7, "m")
  39374. },
  39375. {
  39376. name: "Macro",
  39377. height: math.unit(10, "m"),
  39378. default: true
  39379. },
  39380. {
  39381. name: "Tallest",
  39382. height: math.unit(200, "m")
  39383. },
  39384. ]
  39385. ))
  39386. characterMakers.push(() => makeCharacter(
  39387. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39388. {
  39389. front: {
  39390. height: math.unit(5 + 7/12, "feet"),
  39391. weight: math.unit(2, "tons"),
  39392. name: "Front",
  39393. image: {
  39394. source: "./media/characters/erdno/front.svg",
  39395. extra: 1234/1129,
  39396. bottom: 35/1269
  39397. }
  39398. },
  39399. angled: {
  39400. height: math.unit(5 + 7/12, "feet"),
  39401. weight: math.unit(2, "tons"),
  39402. name: "Angled",
  39403. image: {
  39404. source: "./media/characters/erdno/angled.svg",
  39405. extra: 1185/1139,
  39406. bottom: 36/1221
  39407. }
  39408. },
  39409. side: {
  39410. height: math.unit(5 + 7/12, "feet"),
  39411. weight: math.unit(2, "tons"),
  39412. name: "Side",
  39413. image: {
  39414. source: "./media/characters/erdno/side.svg",
  39415. extra: 1191/1144,
  39416. bottom: 40/1231
  39417. }
  39418. },
  39419. back: {
  39420. height: math.unit(5 + 7/12, "feet"),
  39421. weight: math.unit(2, "tons"),
  39422. name: "Back",
  39423. image: {
  39424. source: "./media/characters/erdno/back.svg",
  39425. extra: 1202/1146,
  39426. bottom: 17/1219
  39427. }
  39428. },
  39429. frontNsfw: {
  39430. height: math.unit(5 + 7/12, "feet"),
  39431. weight: math.unit(2, "tons"),
  39432. name: "Front (NSFW)",
  39433. image: {
  39434. source: "./media/characters/erdno/front-nsfw.svg",
  39435. extra: 1234/1129,
  39436. bottom: 35/1269
  39437. }
  39438. },
  39439. angledNsfw: {
  39440. height: math.unit(5 + 7/12, "feet"),
  39441. weight: math.unit(2, "tons"),
  39442. name: "Angled (NSFW)",
  39443. image: {
  39444. source: "./media/characters/erdno/angled-nsfw.svg",
  39445. extra: 1185/1139,
  39446. bottom: 36/1221
  39447. }
  39448. },
  39449. sideNsfw: {
  39450. height: math.unit(5 + 7/12, "feet"),
  39451. weight: math.unit(2, "tons"),
  39452. name: "Side (NSFW)",
  39453. image: {
  39454. source: "./media/characters/erdno/side-nsfw.svg",
  39455. extra: 1191/1144,
  39456. bottom: 40/1231
  39457. }
  39458. },
  39459. backNsfw: {
  39460. height: math.unit(5 + 7/12, "feet"),
  39461. weight: math.unit(2, "tons"),
  39462. name: "Back (NSFW)",
  39463. image: {
  39464. source: "./media/characters/erdno/back-nsfw.svg",
  39465. extra: 1202/1146,
  39466. bottom: 17/1219
  39467. }
  39468. },
  39469. frontHyper: {
  39470. height: math.unit(5 + 7/12, "feet"),
  39471. weight: math.unit(2, "tons"),
  39472. name: "Front (Hyper)",
  39473. image: {
  39474. source: "./media/characters/erdno/front-hyper.svg",
  39475. extra: 1298/1136,
  39476. bottom: 35/1333
  39477. }
  39478. },
  39479. },
  39480. [
  39481. {
  39482. name: "Normal",
  39483. height: math.unit(5 + 7/12, "feet"),
  39484. default: true
  39485. },
  39486. {
  39487. name: "Big",
  39488. height: math.unit(5.7, "meters")
  39489. },
  39490. {
  39491. name: "Macro",
  39492. height: math.unit(5.7, "kilometers")
  39493. },
  39494. {
  39495. name: "Megamacro",
  39496. height: math.unit(5.7, "earths")
  39497. },
  39498. ]
  39499. ))
  39500. characterMakers.push(() => makeCharacter(
  39501. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39502. {
  39503. front: {
  39504. height: math.unit(5 + 10/12, "feet"),
  39505. weight: math.unit(150, "lb"),
  39506. name: "Front",
  39507. image: {
  39508. source: "./media/characters/jamie/front.svg",
  39509. extra: 1908/1768,
  39510. bottom: 19/1927
  39511. }
  39512. },
  39513. },
  39514. [
  39515. {
  39516. name: "Minimum",
  39517. height: math.unit(2, "cm")
  39518. },
  39519. {
  39520. name: "Micro",
  39521. height: math.unit(3, "inches")
  39522. },
  39523. {
  39524. name: "Normal",
  39525. height: math.unit(5 + 10/12, "feet"),
  39526. default: true
  39527. },
  39528. {
  39529. name: "Macro",
  39530. height: math.unit(150, "feet")
  39531. },
  39532. {
  39533. name: "Megamacro",
  39534. height: math.unit(10000, "m")
  39535. },
  39536. ]
  39537. ))
  39538. characterMakers.push(() => makeCharacter(
  39539. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39540. {
  39541. front: {
  39542. height: math.unit(2, "meters"),
  39543. weight: math.unit(100, "kg"),
  39544. name: "Front",
  39545. image: {
  39546. source: "./media/characters/shiron/front.svg",
  39547. extra: 2103/1985,
  39548. bottom: 98/2201
  39549. }
  39550. },
  39551. back: {
  39552. height: math.unit(2, "meters"),
  39553. weight: math.unit(100, "kg"),
  39554. name: "Back",
  39555. image: {
  39556. source: "./media/characters/shiron/back.svg",
  39557. extra: 2110/2015,
  39558. bottom: 89/2199
  39559. }
  39560. },
  39561. hand: {
  39562. height: math.unit(0.96, "feet"),
  39563. name: "Hand",
  39564. image: {
  39565. source: "./media/characters/shiron/hand.svg"
  39566. }
  39567. },
  39568. foot: {
  39569. height: math.unit(1.464, "feet"),
  39570. name: "Foot",
  39571. image: {
  39572. source: "./media/characters/shiron/foot.svg"
  39573. }
  39574. },
  39575. },
  39576. [
  39577. {
  39578. name: "Normal",
  39579. height: math.unit(2, "meters")
  39580. },
  39581. {
  39582. name: "Macro",
  39583. height: math.unit(500, "meters"),
  39584. default: true
  39585. },
  39586. {
  39587. name: "Megamacro",
  39588. height: math.unit(20, "km")
  39589. },
  39590. ]
  39591. ))
  39592. characterMakers.push(() => makeCharacter(
  39593. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39594. {
  39595. front: {
  39596. height: math.unit(6, "feet"),
  39597. name: "Front",
  39598. image: {
  39599. source: "./media/characters/sam/front.svg",
  39600. extra: 849/826,
  39601. bottom: 19/868
  39602. }
  39603. },
  39604. },
  39605. [
  39606. {
  39607. name: "Normal",
  39608. height: math.unit(6, "feet"),
  39609. default: true
  39610. },
  39611. ]
  39612. ))
  39613. characterMakers.push(() => makeCharacter(
  39614. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39615. {
  39616. front: {
  39617. height: math.unit(8 + 4/12, "feet"),
  39618. weight: math.unit(122, "kg"),
  39619. name: "Front",
  39620. image: {
  39621. source: "./media/characters/namori-kurogawa/front.svg",
  39622. extra: 1894/1576,
  39623. bottom: 34/1928
  39624. }
  39625. },
  39626. },
  39627. [
  39628. {
  39629. name: "Normal",
  39630. height: math.unit(8 + 4/12, "feet"),
  39631. default: true
  39632. },
  39633. ]
  39634. ))
  39635. characterMakers.push(() => makeCharacter(
  39636. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39637. {
  39638. front: {
  39639. height: math.unit(9, "feet"),
  39640. weight: math.unit(621, "lb"),
  39641. name: "Front",
  39642. image: {
  39643. source: "./media/characters/unmru/front.svg",
  39644. extra: 1853/1747,
  39645. bottom: 73/1926
  39646. }
  39647. },
  39648. side: {
  39649. height: math.unit(9, "feet"),
  39650. weight: math.unit(621, "lb"),
  39651. name: "Side",
  39652. image: {
  39653. source: "./media/characters/unmru/side.svg",
  39654. extra: 1781/1671,
  39655. bottom: 127/1908
  39656. }
  39657. },
  39658. back: {
  39659. height: math.unit(9, "feet"),
  39660. weight: math.unit(621, "lb"),
  39661. name: "Back",
  39662. image: {
  39663. source: "./media/characters/unmru/back.svg",
  39664. extra: 1894/1765,
  39665. bottom: 75/1969
  39666. }
  39667. },
  39668. dick: {
  39669. height: math.unit(3, "feet"),
  39670. weight: math.unit(35, "lb"),
  39671. name: "Dick",
  39672. image: {
  39673. source: "./media/characters/unmru/dick.svg"
  39674. }
  39675. },
  39676. },
  39677. [
  39678. {
  39679. name: "Normal",
  39680. height: math.unit(9, "feet")
  39681. },
  39682. {
  39683. name: "Natural",
  39684. height: math.unit(27, "feet"),
  39685. default: true
  39686. },
  39687. {
  39688. name: "Giant",
  39689. height: math.unit(90, "feet")
  39690. },
  39691. {
  39692. name: "Kaiju",
  39693. height: math.unit(270, "feet")
  39694. },
  39695. {
  39696. name: "Macro",
  39697. height: math.unit(900, "feet")
  39698. },
  39699. {
  39700. name: "Macro+",
  39701. height: math.unit(2700, "feet")
  39702. },
  39703. {
  39704. name: "Megamacro",
  39705. height: math.unit(9000, "feet")
  39706. },
  39707. {
  39708. name: "City-Crushing",
  39709. height: math.unit(27000, "feet")
  39710. },
  39711. {
  39712. name: "Mountain-Mashing",
  39713. height: math.unit(90000, "feet")
  39714. },
  39715. {
  39716. name: "Earth-Eclipsing",
  39717. height: math.unit(2.7e8, "feet")
  39718. },
  39719. {
  39720. name: "Sol-Swallowing",
  39721. height: math.unit(9e10, "feet")
  39722. },
  39723. {
  39724. name: "Majoris-Munching",
  39725. height: math.unit(2.7e13, "feet")
  39726. },
  39727. ]
  39728. ))
  39729. characterMakers.push(() => makeCharacter(
  39730. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39731. {
  39732. front: {
  39733. height: math.unit(1, "inch"),
  39734. name: "Front",
  39735. image: {
  39736. source: "./media/characters/squeaks-mouse/front.svg",
  39737. extra: 352/308,
  39738. bottom: 25/377
  39739. }
  39740. },
  39741. },
  39742. [
  39743. {
  39744. name: "Micro",
  39745. height: math.unit(1, "inch"),
  39746. default: true
  39747. },
  39748. ]
  39749. ))
  39750. characterMakers.push(() => makeCharacter(
  39751. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39752. {
  39753. side: {
  39754. height: math.unit(35, "feet"),
  39755. name: "Side",
  39756. image: {
  39757. source: "./media/characters/sayko/side.svg",
  39758. extra: 1697/1021,
  39759. bottom: 82/1779
  39760. }
  39761. },
  39762. head: {
  39763. height: math.unit(16, "feet"),
  39764. name: "Head",
  39765. image: {
  39766. source: "./media/characters/sayko/head.svg"
  39767. }
  39768. },
  39769. forepaw: {
  39770. height: math.unit(7.85, "feet"),
  39771. name: "Forepaw",
  39772. image: {
  39773. source: "./media/characters/sayko/forepaw.svg"
  39774. }
  39775. },
  39776. hindpaw: {
  39777. height: math.unit(8.8, "feet"),
  39778. name: "Hindpaw",
  39779. image: {
  39780. source: "./media/characters/sayko/hindpaw.svg"
  39781. }
  39782. },
  39783. },
  39784. [
  39785. {
  39786. name: "Normal",
  39787. height: math.unit(35, "feet"),
  39788. default: true
  39789. },
  39790. {
  39791. name: "Colossus",
  39792. height: math.unit(100, "meters")
  39793. },
  39794. {
  39795. name: "\"Small\" Deity",
  39796. height: math.unit(1, "km")
  39797. },
  39798. {
  39799. name: "\"Large\" Deity",
  39800. height: math.unit(15, "km")
  39801. },
  39802. ]
  39803. ))
  39804. characterMakers.push(() => makeCharacter(
  39805. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39806. {
  39807. front: {
  39808. height: math.unit(6, "feet"),
  39809. weight: math.unit(250, "lb"),
  39810. name: "Front",
  39811. image: {
  39812. source: "./media/characters/mukiro/front.svg",
  39813. extra: 1368/1310,
  39814. bottom: 34/1402
  39815. }
  39816. },
  39817. },
  39818. [
  39819. {
  39820. name: "Normal",
  39821. height: math.unit(6, "feet"),
  39822. default: true
  39823. },
  39824. ]
  39825. ))
  39826. characterMakers.push(() => makeCharacter(
  39827. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39828. {
  39829. front: {
  39830. height: math.unit(12 + 4/12, "feet"),
  39831. name: "Front",
  39832. image: {
  39833. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39834. extra: 1346/1311,
  39835. bottom: 65/1411
  39836. }
  39837. },
  39838. },
  39839. [
  39840. {
  39841. name: "Base",
  39842. height: math.unit(12 + 4/12, "feet"),
  39843. default: true
  39844. },
  39845. {
  39846. name: "Macro",
  39847. height: math.unit(150, "feet")
  39848. },
  39849. {
  39850. name: "Mega",
  39851. height: math.unit(2, "miles")
  39852. },
  39853. {
  39854. name: "Demi God",
  39855. height: math.unit(4, "AU")
  39856. },
  39857. {
  39858. name: "God Size",
  39859. height: math.unit(1, "universe")
  39860. },
  39861. ]
  39862. ))
  39863. characterMakers.push(() => makeCharacter(
  39864. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39865. {
  39866. front: {
  39867. height: math.unit(3 + 3/12, "feet"),
  39868. weight: math.unit(88, "lb"),
  39869. name: "Front",
  39870. image: {
  39871. source: "./media/characters/trey/front.svg",
  39872. extra: 1815/1509,
  39873. bottom: 60/1875
  39874. }
  39875. },
  39876. },
  39877. [
  39878. {
  39879. name: "Normal",
  39880. height: math.unit(3 + 3/12, "feet"),
  39881. default: true
  39882. },
  39883. ]
  39884. ))
  39885. characterMakers.push(() => makeCharacter(
  39886. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39887. {
  39888. front: {
  39889. height: math.unit(4, "meters"),
  39890. name: "Front",
  39891. image: {
  39892. source: "./media/characters/adelonda/front.svg",
  39893. extra: 1077/982,
  39894. bottom: 39/1116
  39895. }
  39896. },
  39897. back: {
  39898. height: math.unit(4, "meters"),
  39899. name: "Back",
  39900. image: {
  39901. source: "./media/characters/adelonda/back.svg",
  39902. extra: 1105/1003,
  39903. bottom: 25/1130
  39904. }
  39905. },
  39906. feral: {
  39907. height: math.unit(40/1.5, "meters"),
  39908. name: "Feral",
  39909. image: {
  39910. source: "./media/characters/adelonda/feral.svg",
  39911. extra: 597/271,
  39912. bottom: 387/984
  39913. }
  39914. },
  39915. },
  39916. [
  39917. {
  39918. name: "Normal",
  39919. height: math.unit(4, "meters"),
  39920. default: true
  39921. },
  39922. ]
  39923. ))
  39924. characterMakers.push(() => makeCharacter(
  39925. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39926. {
  39927. front: {
  39928. height: math.unit(8 + 4/12, "feet"),
  39929. weight: math.unit(670, "lb"),
  39930. name: "Front",
  39931. image: {
  39932. source: "./media/characters/acadiel/front.svg",
  39933. extra: 1901/1595,
  39934. bottom: 142/2043
  39935. }
  39936. },
  39937. },
  39938. [
  39939. {
  39940. name: "Normal",
  39941. height: math.unit(8 + 4/12, "feet"),
  39942. default: true
  39943. },
  39944. {
  39945. name: "Macro",
  39946. height: math.unit(200, "feet")
  39947. },
  39948. ]
  39949. ))
  39950. characterMakers.push(() => makeCharacter(
  39951. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39952. {
  39953. front: {
  39954. height: math.unit(6 + 2/12, "feet"),
  39955. weight: math.unit(185, "lb"),
  39956. name: "Front",
  39957. image: {
  39958. source: "./media/characters/kayne-ein/front.svg",
  39959. extra: 1780/1560,
  39960. bottom: 81/1861
  39961. }
  39962. },
  39963. },
  39964. [
  39965. {
  39966. name: "Normal",
  39967. height: math.unit(6 + 2/12, "feet"),
  39968. default: true
  39969. },
  39970. {
  39971. name: "Transformation Stage",
  39972. height: math.unit(15, "feet")
  39973. },
  39974. {
  39975. name: "Macro",
  39976. height: math.unit(150, "feet")
  39977. },
  39978. {
  39979. name: "Earth's Shadow",
  39980. height: math.unit(6200, "miles")
  39981. },
  39982. {
  39983. name: "Universal Demon",
  39984. height: math.unit(28e9, "parsecs")
  39985. },
  39986. {
  39987. name: "Multiverse God",
  39988. height: math.unit(3, "multiverses")
  39989. },
  39990. ]
  39991. ))
  39992. characterMakers.push(() => makeCharacter(
  39993. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39994. {
  39995. front: {
  39996. height: math.unit(5 + 5/12, "feet"),
  39997. name: "Front",
  39998. image: {
  39999. source: "./media/characters/fawn/front.svg",
  40000. extra: 1873/1731,
  40001. bottom: 95/1968
  40002. }
  40003. },
  40004. back: {
  40005. height: math.unit(5 + 5/12, "feet"),
  40006. name: "Back",
  40007. image: {
  40008. source: "./media/characters/fawn/back.svg",
  40009. extra: 1813/1700,
  40010. bottom: 14/1827
  40011. }
  40012. },
  40013. hoof: {
  40014. height: math.unit(1.45, "feet"),
  40015. name: "Hoof",
  40016. image: {
  40017. source: "./media/characters/fawn/hoof.svg"
  40018. }
  40019. },
  40020. },
  40021. [
  40022. {
  40023. name: "Normal",
  40024. height: math.unit(5 + 5/12, "feet"),
  40025. default: true
  40026. },
  40027. ]
  40028. ))
  40029. characterMakers.push(() => makeCharacter(
  40030. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40031. {
  40032. front: {
  40033. height: math.unit(2 + 5/12, "feet"),
  40034. name: "Front",
  40035. image: {
  40036. source: "./media/characters/orion/front.svg",
  40037. extra: 1366/1304,
  40038. bottom: 43/1409
  40039. }
  40040. },
  40041. paw: {
  40042. height: math.unit(0.52, "feet"),
  40043. name: "Paw",
  40044. image: {
  40045. source: "./media/characters/orion/paw.svg"
  40046. }
  40047. },
  40048. },
  40049. [
  40050. {
  40051. name: "Normal",
  40052. height: math.unit(2 + 5/12, "feet"),
  40053. default: true
  40054. },
  40055. ]
  40056. ))
  40057. characterMakers.push(() => makeCharacter(
  40058. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40059. {
  40060. front: {
  40061. height: math.unit(5 + 10/12, "feet"),
  40062. name: "Front",
  40063. image: {
  40064. source: "./media/characters/vera/front.svg",
  40065. extra: 1680/1575,
  40066. bottom: 49/1729
  40067. }
  40068. },
  40069. back: {
  40070. height: math.unit(5 + 10/12, "feet"),
  40071. name: "Back",
  40072. image: {
  40073. source: "./media/characters/vera/back.svg",
  40074. extra: 1700/1588,
  40075. bottom: 18/1718
  40076. }
  40077. },
  40078. arcanine: {
  40079. height: math.unit(6 + 8/12, "feet"),
  40080. name: "Arcanine",
  40081. image: {
  40082. source: "./media/characters/vera/arcanine.svg",
  40083. extra: 1590/1511,
  40084. bottom: 71/1661
  40085. }
  40086. },
  40087. maw: {
  40088. height: math.unit(0.82, "feet"),
  40089. name: "Maw",
  40090. image: {
  40091. source: "./media/characters/vera/maw.svg"
  40092. }
  40093. },
  40094. mawArcanine: {
  40095. height: math.unit(0.97, "feet"),
  40096. name: "Maw (Arcanine)",
  40097. image: {
  40098. source: "./media/characters/vera/maw-arcanine.svg"
  40099. }
  40100. },
  40101. paw: {
  40102. height: math.unit(0.75, "feet"),
  40103. name: "Paw",
  40104. image: {
  40105. source: "./media/characters/vera/paw.svg"
  40106. }
  40107. },
  40108. pawprint: {
  40109. height: math.unit(0.52, "feet"),
  40110. name: "Pawprint",
  40111. image: {
  40112. source: "./media/characters/vera/pawprint.svg"
  40113. }
  40114. },
  40115. },
  40116. [
  40117. {
  40118. name: "Normal",
  40119. height: math.unit(5 + 10/12, "feet"),
  40120. default: true
  40121. },
  40122. {
  40123. name: "Macro",
  40124. height: math.unit(75, "feet")
  40125. },
  40126. ]
  40127. ))
  40128. characterMakers.push(() => makeCharacter(
  40129. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40130. {
  40131. front: {
  40132. height: math.unit(4, "feet"),
  40133. weight: math.unit(40, "lb"),
  40134. name: "Front",
  40135. image: {
  40136. source: "./media/characters/orvan-rabbit/front.svg",
  40137. extra: 1896/1642,
  40138. bottom: 29/1925
  40139. }
  40140. },
  40141. },
  40142. [
  40143. {
  40144. name: "Normal",
  40145. height: math.unit(4, "feet"),
  40146. default: true
  40147. },
  40148. ]
  40149. ))
  40150. characterMakers.push(() => makeCharacter(
  40151. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40152. {
  40153. front: {
  40154. height: math.unit(6, "feet"),
  40155. weight: math.unit(168, "lb"),
  40156. name: "Front",
  40157. image: {
  40158. source: "./media/characters/lisa/front.svg",
  40159. extra: 2065/1867,
  40160. bottom: 46/2111
  40161. }
  40162. },
  40163. back: {
  40164. height: math.unit(6, "feet"),
  40165. weight: math.unit(168, "lb"),
  40166. name: "Back",
  40167. image: {
  40168. source: "./media/characters/lisa/back.svg",
  40169. extra: 1982/1838,
  40170. bottom: 29/2011
  40171. }
  40172. },
  40173. maw: {
  40174. height: math.unit(0.81, "feet"),
  40175. name: "Maw",
  40176. image: {
  40177. source: "./media/characters/lisa/maw.svg"
  40178. }
  40179. },
  40180. paw: {
  40181. height: math.unit(0.9, "feet"),
  40182. name: "Paw",
  40183. image: {
  40184. source: "./media/characters/lisa/paw.svg"
  40185. }
  40186. },
  40187. caribousune: {
  40188. height: math.unit(7 + 2/12, "feet"),
  40189. weight: math.unit(268, "lb"),
  40190. name: "Caribousune",
  40191. image: {
  40192. source: "./media/characters/lisa/caribousune.svg",
  40193. extra: 1843/1633,
  40194. bottom: 29/1872
  40195. }
  40196. },
  40197. frontCaribousune: {
  40198. height: math.unit(7 + 2/12, "feet"),
  40199. weight: math.unit(268, "lb"),
  40200. name: "Front (Caribousune)",
  40201. image: {
  40202. source: "./media/characters/lisa/front-caribousune.svg",
  40203. extra: 1818/1638,
  40204. bottom: 52/1870
  40205. }
  40206. },
  40207. sideCaribousune: {
  40208. height: math.unit(7 + 2/12, "feet"),
  40209. weight: math.unit(268, "lb"),
  40210. name: "Side (Caribousune)",
  40211. image: {
  40212. source: "./media/characters/lisa/side-caribousune.svg",
  40213. extra: 1851/1635,
  40214. bottom: 16/1867
  40215. }
  40216. },
  40217. backCaribousune: {
  40218. height: math.unit(7 + 2/12, "feet"),
  40219. weight: math.unit(268, "lb"),
  40220. name: "Back (Caribousune)",
  40221. image: {
  40222. source: "./media/characters/lisa/back-caribousune.svg",
  40223. extra: 1801/1604,
  40224. bottom: 44/1845
  40225. }
  40226. },
  40227. caribou: {
  40228. height: math.unit(7 + 2/12, "feet"),
  40229. weight: math.unit(268, "lb"),
  40230. name: "Caribou",
  40231. image: {
  40232. source: "./media/characters/lisa/caribou.svg",
  40233. extra: 1843/1633,
  40234. bottom: 29/1872
  40235. }
  40236. },
  40237. frontCaribou: {
  40238. height: math.unit(7 + 2/12, "feet"),
  40239. weight: math.unit(268, "lb"),
  40240. name: "Front (Caribou)",
  40241. image: {
  40242. source: "./media/characters/lisa/front-caribou.svg",
  40243. extra: 1818/1638,
  40244. bottom: 52/1870
  40245. }
  40246. },
  40247. sideCaribou: {
  40248. height: math.unit(7 + 2/12, "feet"),
  40249. weight: math.unit(268, "lb"),
  40250. name: "Side (Caribou)",
  40251. image: {
  40252. source: "./media/characters/lisa/side-caribou.svg",
  40253. extra: 1851/1635,
  40254. bottom: 16/1867
  40255. }
  40256. },
  40257. backCaribou: {
  40258. height: math.unit(7 + 2/12, "feet"),
  40259. weight: math.unit(268, "lb"),
  40260. name: "Back (Caribou)",
  40261. image: {
  40262. source: "./media/characters/lisa/back-caribou.svg",
  40263. extra: 1801/1604,
  40264. bottom: 44/1845
  40265. }
  40266. },
  40267. mawCaribou: {
  40268. height: math.unit(1.45, "feet"),
  40269. name: "Maw (Caribou)",
  40270. image: {
  40271. source: "./media/characters/lisa/maw-caribou.svg"
  40272. }
  40273. },
  40274. mawCaribousune: {
  40275. height: math.unit(1.45, "feet"),
  40276. name: "Maw (Caribousune)",
  40277. image: {
  40278. source: "./media/characters/lisa/maw-caribousune.svg"
  40279. }
  40280. },
  40281. pawCaribousune: {
  40282. height: math.unit(1.61, "feet"),
  40283. name: "Paw (Caribou)",
  40284. image: {
  40285. source: "./media/characters/lisa/paw-caribousune.svg"
  40286. }
  40287. },
  40288. },
  40289. [
  40290. {
  40291. name: "Normal",
  40292. height: math.unit(6, "feet")
  40293. },
  40294. {
  40295. name: "God Size",
  40296. height: math.unit(72, "feet"),
  40297. default: true
  40298. },
  40299. {
  40300. name: "Towering",
  40301. height: math.unit(288, "feet")
  40302. },
  40303. {
  40304. name: "City Size",
  40305. height: math.unit(48384, "feet")
  40306. },
  40307. {
  40308. name: "Continental",
  40309. height: math.unit(4200, "miles")
  40310. },
  40311. {
  40312. name: "Planet Eater",
  40313. height: math.unit(42, "earths")
  40314. },
  40315. {
  40316. name: "Star Swallower",
  40317. height: math.unit(42, "solarradii")
  40318. },
  40319. {
  40320. name: "System Swallower",
  40321. height: math.unit(84000, "AU")
  40322. },
  40323. {
  40324. name: "Galaxy Gobbler",
  40325. height: math.unit(42, "galaxies")
  40326. },
  40327. {
  40328. name: "Universe Devourer",
  40329. height: math.unit(42, "universes")
  40330. },
  40331. {
  40332. name: "Multiverse Muncher",
  40333. height: math.unit(42, "multiverses")
  40334. },
  40335. ]
  40336. ))
  40337. characterMakers.push(() => makeCharacter(
  40338. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40339. {
  40340. front: {
  40341. height: math.unit(36, "feet"),
  40342. name: "Front",
  40343. image: {
  40344. source: "./media/characters/shadow-rat/front.svg",
  40345. extra: 1845/1758,
  40346. bottom: 83/1928
  40347. }
  40348. },
  40349. },
  40350. [
  40351. {
  40352. name: "Macro",
  40353. height: math.unit(36, "feet"),
  40354. default: true
  40355. },
  40356. ]
  40357. ))
  40358. characterMakers.push(() => makeCharacter(
  40359. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40360. {
  40361. side: {
  40362. height: math.unit(8, "feet"),
  40363. weight: math.unit(2630, "lb"),
  40364. name: "Side",
  40365. image: {
  40366. source: "./media/characters/torallia/side.svg",
  40367. extra: 2164/2021,
  40368. bottom: 371/2535
  40369. }
  40370. },
  40371. },
  40372. [
  40373. {
  40374. name: "Mortal Interaction",
  40375. height: math.unit(8, "feet")
  40376. },
  40377. {
  40378. name: "Natural",
  40379. height: math.unit(24, "feet"),
  40380. default: true
  40381. },
  40382. {
  40383. name: "Giant",
  40384. height: math.unit(80, "feet")
  40385. },
  40386. {
  40387. name: "Kaiju",
  40388. height: math.unit(240, "feet")
  40389. },
  40390. {
  40391. name: "Macro",
  40392. height: math.unit(800, "feet")
  40393. },
  40394. {
  40395. name: "Macro+",
  40396. height: math.unit(2400, "feet")
  40397. },
  40398. {
  40399. name: "Macro++",
  40400. height: math.unit(8000, "feet")
  40401. },
  40402. {
  40403. name: "City-Crushing",
  40404. height: math.unit(24000, "feet")
  40405. },
  40406. {
  40407. name: "Mountain-Mashing",
  40408. height: math.unit(80000, "feet")
  40409. },
  40410. {
  40411. name: "District Demolisher",
  40412. height: math.unit(240000, "feet")
  40413. },
  40414. {
  40415. name: "Tri-County Terror",
  40416. height: math.unit(800000, "feet")
  40417. },
  40418. {
  40419. name: "State Smasher",
  40420. height: math.unit(2.4e6, "feet")
  40421. },
  40422. {
  40423. name: "Nation Nemesis",
  40424. height: math.unit(8e6, "feet")
  40425. },
  40426. {
  40427. name: "Continent Cracker",
  40428. height: math.unit(2.4e7, "feet")
  40429. },
  40430. {
  40431. name: "Planet-Pillaging",
  40432. height: math.unit(8e7, "feet")
  40433. },
  40434. {
  40435. name: "Earth-Eclipsing",
  40436. height: math.unit(2.4e8, "feet")
  40437. },
  40438. {
  40439. name: "Jovian-Jostling",
  40440. height: math.unit(8e8, "feet")
  40441. },
  40442. {
  40443. name: "Gas Giant Gulper",
  40444. height: math.unit(2.4e9, "feet")
  40445. },
  40446. {
  40447. name: "Astral Annihilator",
  40448. height: math.unit(8e9, "feet")
  40449. },
  40450. {
  40451. name: "Celestial Conqueror",
  40452. height: math.unit(2.4e10, "feet")
  40453. },
  40454. {
  40455. name: "Sol-Swallowing",
  40456. height: math.unit(8e10, "feet")
  40457. },
  40458. {
  40459. name: "Hunter of the Heavens",
  40460. height: math.unit(2.4e13, "feet")
  40461. },
  40462. ]
  40463. ))
  40464. characterMakers.push(() => makeCharacter(
  40465. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40466. {
  40467. front: {
  40468. height: math.unit(6 + 8/12, "feet"),
  40469. weight: math.unit(250, "kilograms"),
  40470. volume: math.unit(28, "liters"),
  40471. name: "Front",
  40472. image: {
  40473. source: "./media/characters/rebecca-pawlson/front.svg",
  40474. extra: 1737/1596,
  40475. bottom: 107/1844
  40476. }
  40477. },
  40478. back: {
  40479. height: math.unit(6 + 8/12, "feet"),
  40480. weight: math.unit(250, "kilograms"),
  40481. volume: math.unit(28, "liters"),
  40482. name: "Back",
  40483. image: {
  40484. source: "./media/characters/rebecca-pawlson/back.svg",
  40485. extra: 1702/1523,
  40486. bottom: 86/1788
  40487. }
  40488. },
  40489. },
  40490. [
  40491. {
  40492. name: "Normal",
  40493. height: math.unit(6 + 8/12, "feet")
  40494. },
  40495. {
  40496. name: "Mini Macro",
  40497. height: math.unit(10, "feet"),
  40498. default: true
  40499. },
  40500. {
  40501. name: "Macro",
  40502. height: math.unit(100, "feet")
  40503. },
  40504. {
  40505. name: "Mega Macro",
  40506. height: math.unit(2500, "feet")
  40507. },
  40508. {
  40509. name: "Giga Macro",
  40510. height: math.unit(50, "miles")
  40511. },
  40512. ]
  40513. ))
  40514. characterMakers.push(() => makeCharacter(
  40515. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40516. {
  40517. front: {
  40518. height: math.unit(7 + 6/12, "feet"),
  40519. weight: math.unit(600, "lb"),
  40520. name: "Front",
  40521. image: {
  40522. source: "./media/characters/moxie-nova/front.svg",
  40523. extra: 1734/1652,
  40524. bottom: 41/1775
  40525. }
  40526. },
  40527. },
  40528. [
  40529. {
  40530. name: "Normal",
  40531. height: math.unit(7 + 6/12, "feet"),
  40532. default: true
  40533. },
  40534. ]
  40535. ))
  40536. characterMakers.push(() => makeCharacter(
  40537. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40538. {
  40539. goat: {
  40540. height: math.unit(4, "feet"),
  40541. weight: math.unit(180, "lb"),
  40542. name: "Goat",
  40543. image: {
  40544. source: "./media/characters/tiffany/goat.svg",
  40545. extra: 1845/1595,
  40546. bottom: 106/1951
  40547. }
  40548. },
  40549. front: {
  40550. height: math.unit(5, "feet"),
  40551. weight: math.unit(150, "lb"),
  40552. name: "Foxcoon",
  40553. image: {
  40554. source: "./media/characters/tiffany/foxcoon.svg",
  40555. extra: 1941/1845,
  40556. bottom: 58/1999
  40557. }
  40558. },
  40559. },
  40560. [
  40561. {
  40562. name: "Normal",
  40563. height: math.unit(5, "feet"),
  40564. default: true
  40565. },
  40566. ]
  40567. ))
  40568. characterMakers.push(() => makeCharacter(
  40569. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40570. {
  40571. front: {
  40572. height: math.unit(8, "feet"),
  40573. weight: math.unit(300, "lb"),
  40574. name: "Front",
  40575. image: {
  40576. source: "./media/characters/raxinath/front.svg",
  40577. extra: 1407/1309,
  40578. bottom: 39/1446
  40579. }
  40580. },
  40581. back: {
  40582. height: math.unit(8, "feet"),
  40583. weight: math.unit(300, "lb"),
  40584. name: "Back",
  40585. image: {
  40586. source: "./media/characters/raxinath/back.svg",
  40587. extra: 1405/1315,
  40588. bottom: 9/1414
  40589. }
  40590. },
  40591. },
  40592. [
  40593. {
  40594. name: "Speck",
  40595. height: math.unit(0.5, "nm")
  40596. },
  40597. {
  40598. name: "Micro",
  40599. height: math.unit(3, "inches")
  40600. },
  40601. {
  40602. name: "Kobold",
  40603. height: math.unit(3, "feet")
  40604. },
  40605. {
  40606. name: "Normal",
  40607. height: math.unit(8, "feet"),
  40608. default: true
  40609. },
  40610. {
  40611. name: "Giant",
  40612. height: math.unit(50, "feet")
  40613. },
  40614. {
  40615. name: "Macro",
  40616. height: math.unit(1000, "feet")
  40617. },
  40618. {
  40619. name: "Megamacro",
  40620. height: math.unit(1, "mile")
  40621. },
  40622. ]
  40623. ))
  40624. characterMakers.push(() => makeCharacter(
  40625. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40626. {
  40627. front: {
  40628. height: math.unit(10, "feet"),
  40629. weight: math.unit(1442, "lb"),
  40630. name: "Front",
  40631. image: {
  40632. source: "./media/characters/mal-dragon/front.svg",
  40633. extra: 1515/1444,
  40634. bottom: 113/1628
  40635. }
  40636. },
  40637. back: {
  40638. height: math.unit(10, "feet"),
  40639. weight: math.unit(1442, "lb"),
  40640. name: "Back",
  40641. image: {
  40642. source: "./media/characters/mal-dragon/back.svg",
  40643. extra: 1527/1434,
  40644. bottom: 25/1552
  40645. }
  40646. },
  40647. },
  40648. [
  40649. {
  40650. name: "Mortal Interaction",
  40651. height: math.unit(10, "feet"),
  40652. default: true
  40653. },
  40654. {
  40655. name: "Large",
  40656. height: math.unit(30, "feet")
  40657. },
  40658. {
  40659. name: "Kaiju",
  40660. height: math.unit(300, "feet")
  40661. },
  40662. {
  40663. name: "Megamacro",
  40664. height: math.unit(10000, "feet")
  40665. },
  40666. {
  40667. name: "Continent Cracker",
  40668. height: math.unit(30000000, "feet")
  40669. },
  40670. {
  40671. name: "Sol-Swallowing",
  40672. height: math.unit(1e11, "feet")
  40673. },
  40674. {
  40675. name: "Light Universal",
  40676. height: math.unit(5, "universes")
  40677. },
  40678. {
  40679. name: "Universe Atoms",
  40680. height: math.unit(1.829e9, "universes")
  40681. },
  40682. {
  40683. name: "Light Multiversal",
  40684. height: math.unit(5, "multiverses")
  40685. },
  40686. {
  40687. name: "Multiverse Atoms",
  40688. height: math.unit(1.829e9, "multiverses")
  40689. },
  40690. {
  40691. name: "Fabric of Time",
  40692. height: math.unit(1e262, "multiverses")
  40693. },
  40694. ]
  40695. ))
  40696. characterMakers.push(() => makeCharacter(
  40697. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40698. {
  40699. front: {
  40700. height: math.unit(9, "feet"),
  40701. weight: math.unit(1050, "lb"),
  40702. name: "Front",
  40703. image: {
  40704. source: "./media/characters/tabitha/front.svg",
  40705. extra: 2083/1994,
  40706. bottom: 68/2151
  40707. }
  40708. },
  40709. },
  40710. [
  40711. {
  40712. name: "Baseline",
  40713. height: math.unit(9, "feet"),
  40714. default: true
  40715. },
  40716. {
  40717. name: "Giant",
  40718. height: math.unit(90, "feet")
  40719. },
  40720. {
  40721. name: "Macro",
  40722. height: math.unit(900, "feet")
  40723. },
  40724. {
  40725. name: "Megamacro",
  40726. height: math.unit(9000, "feet")
  40727. },
  40728. {
  40729. name: "City-Crushing",
  40730. height: math.unit(27000, "feet")
  40731. },
  40732. {
  40733. name: "Mountain-Mashing",
  40734. height: math.unit(90000, "feet")
  40735. },
  40736. {
  40737. name: "Nation Nemesis",
  40738. height: math.unit(9e6, "feet")
  40739. },
  40740. {
  40741. name: "Continent Cracker",
  40742. height: math.unit(27e6, "feet")
  40743. },
  40744. {
  40745. name: "Earth-Eclipsing",
  40746. height: math.unit(2.7e8, "feet")
  40747. },
  40748. {
  40749. name: "Gas Giant Gulper",
  40750. height: math.unit(2.7e9, "feet")
  40751. },
  40752. {
  40753. name: "Sol-Swallowing",
  40754. height: math.unit(9e10, "feet")
  40755. },
  40756. {
  40757. name: "Galaxy Gulper",
  40758. height: math.unit(9, "galaxies")
  40759. },
  40760. {
  40761. name: "Cosmos Churner",
  40762. height: math.unit(9, "universes")
  40763. },
  40764. ]
  40765. ))
  40766. characterMakers.push(() => makeCharacter(
  40767. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40768. {
  40769. front: {
  40770. height: math.unit(160, "cm"),
  40771. weight: math.unit(55, "kg"),
  40772. name: "Front",
  40773. image: {
  40774. source: "./media/characters/tow/front.svg",
  40775. extra: 1751/1722,
  40776. bottom: 74/1825
  40777. }
  40778. },
  40779. },
  40780. [
  40781. {
  40782. name: "Norm",
  40783. height: math.unit(160, "cm")
  40784. },
  40785. {
  40786. name: "Casual",
  40787. height: math.unit(3200, "m"),
  40788. default: true
  40789. },
  40790. {
  40791. name: "Show-Off",
  40792. height: math.unit(160, "km")
  40793. },
  40794. ]
  40795. ))
  40796. characterMakers.push(() => makeCharacter(
  40797. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40798. {
  40799. front: {
  40800. height: math.unit(7 + 11/12, "feet"),
  40801. weight: math.unit(342.8, "lb"),
  40802. name: "Front",
  40803. image: {
  40804. source: "./media/characters/vivian-orca-dragon/front.svg",
  40805. extra: 1890/1865,
  40806. bottom: 28/1918
  40807. }
  40808. },
  40809. },
  40810. [
  40811. {
  40812. name: "Micro",
  40813. height: math.unit(5, "inches")
  40814. },
  40815. {
  40816. name: "Normal",
  40817. height: math.unit(7 + 11/12, "feet"),
  40818. default: true
  40819. },
  40820. {
  40821. name: "Macro",
  40822. height: math.unit(395 + 7/12, "feet")
  40823. },
  40824. ]
  40825. ))
  40826. characterMakers.push(() => makeCharacter(
  40827. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40828. {
  40829. side: {
  40830. height: math.unit(10, "feet"),
  40831. weight: math.unit(1442, "lb"),
  40832. name: "Side",
  40833. image: {
  40834. source: "./media/characters/lotherakon/side.svg",
  40835. extra: 1604/1497,
  40836. bottom: 89/1693
  40837. }
  40838. },
  40839. },
  40840. [
  40841. {
  40842. name: "Mortal Interaction",
  40843. height: math.unit(10, "feet")
  40844. },
  40845. {
  40846. name: "Large",
  40847. height: math.unit(30, "feet"),
  40848. default: true
  40849. },
  40850. {
  40851. name: "Giant",
  40852. height: math.unit(100, "feet")
  40853. },
  40854. {
  40855. name: "Kaiju",
  40856. height: math.unit(300, "feet")
  40857. },
  40858. {
  40859. name: "Macro",
  40860. height: math.unit(1000, "feet")
  40861. },
  40862. {
  40863. name: "Macro+",
  40864. height: math.unit(3000, "feet")
  40865. },
  40866. {
  40867. name: "Megamacro",
  40868. height: math.unit(10000, "feet")
  40869. },
  40870. {
  40871. name: "City-Crushing",
  40872. height: math.unit(30000, "feet")
  40873. },
  40874. {
  40875. name: "Continent Cracker",
  40876. height: math.unit(30e6, "feet")
  40877. },
  40878. {
  40879. name: "Earth Eclipsing",
  40880. height: math.unit(3e8, "feet")
  40881. },
  40882. {
  40883. name: "Gas Giant Gulper",
  40884. height: math.unit(3e9, "feet")
  40885. },
  40886. {
  40887. name: "Sol-Swallowing",
  40888. height: math.unit(1e11, "feet")
  40889. },
  40890. {
  40891. name: "System Swallower",
  40892. height: math.unit(3e14, "feet")
  40893. },
  40894. {
  40895. name: "Galaxy Gulper",
  40896. height: math.unit(10, "galaxies")
  40897. },
  40898. {
  40899. name: "Light Universal",
  40900. height: math.unit(5, "universes")
  40901. },
  40902. {
  40903. name: "Universe Palm",
  40904. height: math.unit(20, "universes")
  40905. },
  40906. {
  40907. name: "Light Multiversal",
  40908. height: math.unit(5, "multiverses")
  40909. },
  40910. {
  40911. name: "Multiverse Palm",
  40912. height: math.unit(20, "multiverses")
  40913. },
  40914. {
  40915. name: "Inferno Incarnate",
  40916. height: math.unit(1e7, "multiverses")
  40917. },
  40918. ]
  40919. ))
  40920. characterMakers.push(() => makeCharacter(
  40921. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40922. {
  40923. front: {
  40924. height: math.unit(8, "feet"),
  40925. weight: math.unit(1200, "lb"),
  40926. name: "Front",
  40927. image: {
  40928. source: "./media/characters/malithee/front.svg",
  40929. extra: 1675/1640,
  40930. bottom: 162/1837
  40931. }
  40932. },
  40933. },
  40934. [
  40935. {
  40936. name: "Mortal Interaction",
  40937. height: math.unit(8, "feet"),
  40938. default: true
  40939. },
  40940. {
  40941. name: "Large",
  40942. height: math.unit(24, "feet")
  40943. },
  40944. {
  40945. name: "Kaiju",
  40946. height: math.unit(240, "feet")
  40947. },
  40948. {
  40949. name: "Megamacro",
  40950. height: math.unit(8000, "feet")
  40951. },
  40952. {
  40953. name: "Continent Cracker",
  40954. height: math.unit(24e6, "feet")
  40955. },
  40956. {
  40957. name: "Earth-Eclipsing",
  40958. height: math.unit(2.4e8, "feet")
  40959. },
  40960. {
  40961. name: "Sol-Swallowing",
  40962. height: math.unit(8e10, "feet")
  40963. },
  40964. {
  40965. name: "Galaxy Gulper",
  40966. height: math.unit(8, "galaxies")
  40967. },
  40968. {
  40969. name: "Light Universal",
  40970. height: math.unit(4, "universes")
  40971. },
  40972. {
  40973. name: "Universe Atoms",
  40974. height: math.unit(1.829e9, "universes")
  40975. },
  40976. {
  40977. name: "Light Multiversal",
  40978. height: math.unit(4, "multiverses")
  40979. },
  40980. {
  40981. name: "Multiverse Atoms",
  40982. height: math.unit(1.829e9, "multiverses")
  40983. },
  40984. {
  40985. name: "Nigh-Omnipresence",
  40986. height: math.unit(8e261, "multiverses")
  40987. },
  40988. ]
  40989. ))
  40990. characterMakers.push(() => makeCharacter(
  40991. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40992. {
  40993. front: {
  40994. height: math.unit(10, "feet"),
  40995. weight: math.unit(1500, "lb"),
  40996. name: "Front",
  40997. image: {
  40998. source: "./media/characters/miles-thestia/front.svg",
  40999. extra: 1812/1727,
  41000. bottom: 86/1898
  41001. }
  41002. },
  41003. back: {
  41004. height: math.unit(10, "feet"),
  41005. weight: math.unit(1500, "lb"),
  41006. name: "Back",
  41007. image: {
  41008. source: "./media/characters/miles-thestia/back.svg",
  41009. extra: 1799/1690,
  41010. bottom: 47/1846
  41011. }
  41012. },
  41013. frontNsfw: {
  41014. height: math.unit(10, "feet"),
  41015. weight: math.unit(1500, "lb"),
  41016. name: "Front (NSFW)",
  41017. image: {
  41018. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41019. extra: 1812/1727,
  41020. bottom: 86/1898
  41021. }
  41022. },
  41023. },
  41024. [
  41025. {
  41026. name: "Mini-Macro",
  41027. height: math.unit(10, "feet"),
  41028. default: true
  41029. },
  41030. ]
  41031. ))
  41032. characterMakers.push(() => makeCharacter(
  41033. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41034. {
  41035. front: {
  41036. height: math.unit(25, "feet"),
  41037. name: "Front",
  41038. image: {
  41039. source: "./media/characters/titan-s-wulf/front.svg",
  41040. extra: 1560/1484,
  41041. bottom: 76/1636
  41042. }
  41043. },
  41044. },
  41045. [
  41046. {
  41047. name: "Smallest",
  41048. height: math.unit(25, "feet"),
  41049. default: true
  41050. },
  41051. {
  41052. name: "Normal",
  41053. height: math.unit(200, "feet")
  41054. },
  41055. {
  41056. name: "Macro",
  41057. height: math.unit(200000, "feet")
  41058. },
  41059. {
  41060. name: "Multiversal Original",
  41061. height: math.unit(10000, "multiverses")
  41062. },
  41063. ]
  41064. ))
  41065. characterMakers.push(() => makeCharacter(
  41066. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41067. {
  41068. front: {
  41069. height: math.unit(8, "feet"),
  41070. weight: math.unit(553, "lb"),
  41071. name: "Front",
  41072. image: {
  41073. source: "./media/characters/tawendeh/front.svg",
  41074. extra: 2365/2268,
  41075. bottom: 83/2448
  41076. }
  41077. },
  41078. frontClothed: {
  41079. height: math.unit(8, "feet"),
  41080. weight: math.unit(553, "lb"),
  41081. name: "Front (Clothed)",
  41082. image: {
  41083. source: "./media/characters/tawendeh/front-clothed.svg",
  41084. extra: 2365/2268,
  41085. bottom: 83/2448
  41086. }
  41087. },
  41088. back: {
  41089. height: math.unit(8, "feet"),
  41090. weight: math.unit(553, "lb"),
  41091. name: "Back",
  41092. image: {
  41093. source: "./media/characters/tawendeh/back.svg",
  41094. extra: 2397/2294,
  41095. bottom: 42/2439
  41096. }
  41097. },
  41098. },
  41099. [
  41100. {
  41101. name: "Mortal Interaction",
  41102. height: math.unit(8, "feet"),
  41103. default: true
  41104. },
  41105. {
  41106. name: "Giant",
  41107. height: math.unit(80, "feet")
  41108. },
  41109. {
  41110. name: "Macro",
  41111. height: math.unit(800, "feet")
  41112. },
  41113. {
  41114. name: "Megamacro",
  41115. height: math.unit(8000, "feet")
  41116. },
  41117. {
  41118. name: "City-Crushing",
  41119. height: math.unit(24000, "feet")
  41120. },
  41121. {
  41122. name: "Mountain-Mashing",
  41123. height: math.unit(80000, "feet")
  41124. },
  41125. {
  41126. name: "Nation Nemesis",
  41127. height: math.unit(8e6, "feet")
  41128. },
  41129. {
  41130. name: "Continent Cracker",
  41131. height: math.unit(24e6, "feet")
  41132. },
  41133. {
  41134. name: "Earth-Eclipsing",
  41135. height: math.unit(2.4e8, "feet")
  41136. },
  41137. {
  41138. name: "Gas Giant Gulper",
  41139. height: math.unit(2.4e9, "feet")
  41140. },
  41141. {
  41142. name: "Sol-Swallowing",
  41143. height: math.unit(8e10, "feet")
  41144. },
  41145. {
  41146. name: "Galaxy Gulper",
  41147. height: math.unit(8, "galaxies")
  41148. },
  41149. {
  41150. name: "Cosmos Churner",
  41151. height: math.unit(8, "universes")
  41152. },
  41153. {
  41154. name: "Omnipotent Otter",
  41155. height: math.unit(80, "universes")
  41156. },
  41157. ]
  41158. ))
  41159. characterMakers.push(() => makeCharacter(
  41160. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41161. {
  41162. front: {
  41163. height: math.unit(2.6, "meters"),
  41164. weight: math.unit(900, "kg"),
  41165. name: "Front",
  41166. image: {
  41167. source: "./media/characters/neesha/front.svg",
  41168. extra: 1803/1653,
  41169. bottom: 128/1931
  41170. }
  41171. },
  41172. },
  41173. [
  41174. {
  41175. name: "Normal",
  41176. height: math.unit(2.6, "meters"),
  41177. default: true
  41178. },
  41179. {
  41180. name: "Macro",
  41181. height: math.unit(50, "meters")
  41182. },
  41183. ]
  41184. ))
  41185. characterMakers.push(() => makeCharacter(
  41186. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41187. {
  41188. front: {
  41189. height: math.unit(5, "feet"),
  41190. weight: math.unit(185, "lb"),
  41191. name: "Front",
  41192. image: {
  41193. source: "./media/characters/kyera/front.svg",
  41194. extra: 1875/1790,
  41195. bottom: 96/1971
  41196. }
  41197. },
  41198. },
  41199. [
  41200. {
  41201. name: "Normal",
  41202. height: math.unit(5, "feet"),
  41203. default: true
  41204. },
  41205. ]
  41206. ))
  41207. characterMakers.push(() => makeCharacter(
  41208. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41209. {
  41210. front: {
  41211. height: math.unit(7 + 6/12, "feet"),
  41212. weight: math.unit(540, "lb"),
  41213. name: "Front",
  41214. image: {
  41215. source: "./media/characters/yuko/front.svg",
  41216. extra: 1282/1222,
  41217. bottom: 101/1383
  41218. }
  41219. },
  41220. frontClothed: {
  41221. height: math.unit(7 + 6/12, "feet"),
  41222. weight: math.unit(540, "lb"),
  41223. name: "Front (Clothed)",
  41224. image: {
  41225. source: "./media/characters/yuko/front-clothed.svg",
  41226. extra: 1282/1222,
  41227. bottom: 101/1383
  41228. }
  41229. },
  41230. },
  41231. [
  41232. {
  41233. name: "Normal",
  41234. height: math.unit(7 + 6/12, "feet"),
  41235. default: true
  41236. },
  41237. {
  41238. name: "Macro",
  41239. height: math.unit(26 + 9/12, "feet")
  41240. },
  41241. {
  41242. name: "Megamacro",
  41243. height: math.unit(300, "feet")
  41244. },
  41245. {
  41246. name: "Gigamacro",
  41247. height: math.unit(5000, "feet")
  41248. },
  41249. {
  41250. name: "Planetary",
  41251. height: math.unit(10000, "miles")
  41252. },
  41253. ]
  41254. ))
  41255. characterMakers.push(() => makeCharacter(
  41256. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41257. {
  41258. front: {
  41259. height: math.unit(8 + 2/12, "feet"),
  41260. weight: math.unit(600, "lb"),
  41261. name: "Front",
  41262. image: {
  41263. source: "./media/characters/deam-nitrel/front.svg",
  41264. extra: 1308/1234,
  41265. bottom: 125/1433
  41266. }
  41267. },
  41268. },
  41269. [
  41270. {
  41271. name: "Normal",
  41272. height: math.unit(8 + 2/12, "feet"),
  41273. default: true
  41274. },
  41275. ]
  41276. ))
  41277. characterMakers.push(() => makeCharacter(
  41278. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41279. {
  41280. front: {
  41281. height: math.unit(6.1, "feet"),
  41282. weight: math.unit(180, "lb"),
  41283. name: "Front",
  41284. image: {
  41285. source: "./media/characters/skyress/front.svg",
  41286. extra: 1045/915,
  41287. bottom: 28/1073
  41288. }
  41289. },
  41290. maw: {
  41291. height: math.unit(1, "feet"),
  41292. name: "Maw",
  41293. image: {
  41294. source: "./media/characters/skyress/maw.svg"
  41295. }
  41296. },
  41297. },
  41298. [
  41299. {
  41300. name: "Normal",
  41301. height: math.unit(6.1, "feet"),
  41302. default: true
  41303. },
  41304. {
  41305. name: "Macro",
  41306. height: math.unit(200, "feet")
  41307. },
  41308. ]
  41309. ))
  41310. characterMakers.push(() => makeCharacter(
  41311. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41312. {
  41313. front: {
  41314. height: math.unit(4 + 2/12, "feet"),
  41315. weight: math.unit(40, "kg"),
  41316. name: "Front",
  41317. image: {
  41318. source: "./media/characters/amethyst-jones/front.svg",
  41319. extra: 1220/1150,
  41320. bottom: 101/1321
  41321. }
  41322. },
  41323. },
  41324. [
  41325. {
  41326. name: "Normal",
  41327. height: math.unit(4 + 2/12, "feet"),
  41328. default: true
  41329. },
  41330. ]
  41331. ))
  41332. characterMakers.push(() => makeCharacter(
  41333. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41334. {
  41335. front: {
  41336. height: math.unit(1.7, "m"),
  41337. weight: math.unit(135, "lb"),
  41338. name: "Front",
  41339. image: {
  41340. source: "./media/characters/jade/front.svg",
  41341. extra: 1818/1767,
  41342. bottom: 32/1850
  41343. }
  41344. },
  41345. back: {
  41346. height: math.unit(1.7, "m"),
  41347. weight: math.unit(135, "lb"),
  41348. name: "Back",
  41349. image: {
  41350. source: "./media/characters/jade/back.svg",
  41351. extra: 1869/1809,
  41352. bottom: 35/1904
  41353. }
  41354. },
  41355. hand: {
  41356. height: math.unit(0.24, "m"),
  41357. name: "Hand",
  41358. image: {
  41359. source: "./media/characters/jade/hand.svg"
  41360. }
  41361. },
  41362. foot: {
  41363. height: math.unit(0.263, "m"),
  41364. name: "Foot",
  41365. image: {
  41366. source: "./media/characters/jade/foot.svg"
  41367. }
  41368. },
  41369. dick: {
  41370. height: math.unit(0.47, "m"),
  41371. name: "Dick",
  41372. image: {
  41373. source: "./media/characters/jade/dick.svg"
  41374. }
  41375. },
  41376. },
  41377. [
  41378. {
  41379. name: "Micro",
  41380. height: math.unit(22, "cm")
  41381. },
  41382. {
  41383. name: "Normal",
  41384. height: math.unit(1.7, "m"),
  41385. default: true
  41386. },
  41387. {
  41388. name: "Macro",
  41389. height: math.unit(152, "m")
  41390. },
  41391. ]
  41392. ))
  41393. characterMakers.push(() => makeCharacter(
  41394. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41395. {
  41396. front: {
  41397. height: math.unit(100, "miles"),
  41398. weight: math.unit(20000, "tons"),
  41399. name: "Front",
  41400. image: {
  41401. source: "./media/characters/cookie/front.svg",
  41402. extra: 1125/1070,
  41403. bottom: 30/1155
  41404. }
  41405. },
  41406. },
  41407. [
  41408. {
  41409. name: "Big",
  41410. height: math.unit(50, "feet")
  41411. },
  41412. {
  41413. name: "Macro",
  41414. height: math.unit(100, "miles"),
  41415. default: true
  41416. },
  41417. {
  41418. name: "Megamacro",
  41419. height: math.unit(90000, "miles")
  41420. },
  41421. ]
  41422. ))
  41423. characterMakers.push(() => makeCharacter(
  41424. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41425. {
  41426. front: {
  41427. height: math.unit(6, "feet"),
  41428. weight: math.unit(145, "lb"),
  41429. name: "Front",
  41430. image: {
  41431. source: "./media/characters/farzian/front.svg",
  41432. extra: 1902/1693,
  41433. bottom: 108/2010
  41434. }
  41435. },
  41436. },
  41437. [
  41438. {
  41439. name: "Macro",
  41440. height: math.unit(500, "feet"),
  41441. default: true
  41442. },
  41443. ]
  41444. ))
  41445. characterMakers.push(() => makeCharacter(
  41446. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41447. {
  41448. front: {
  41449. height: math.unit(3 + 6/12, "feet"),
  41450. weight: math.unit(50, "lb"),
  41451. name: "Front",
  41452. image: {
  41453. source: "./media/characters/kimberly-tilson/front.svg",
  41454. extra: 1400/1322,
  41455. bottom: 36/1436
  41456. }
  41457. },
  41458. back: {
  41459. height: math.unit(3 + 6/12, "feet"),
  41460. weight: math.unit(50, "lb"),
  41461. name: "Back",
  41462. image: {
  41463. source: "./media/characters/kimberly-tilson/back.svg",
  41464. extra: 1370/1307,
  41465. bottom: 20/1390
  41466. }
  41467. },
  41468. },
  41469. [
  41470. {
  41471. name: "Normal",
  41472. height: math.unit(3 + 6/12, "feet"),
  41473. default: true
  41474. },
  41475. ]
  41476. ))
  41477. characterMakers.push(() => makeCharacter(
  41478. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41479. {
  41480. front: {
  41481. height: math.unit(1148, "feet"),
  41482. weight: math.unit(34057, "lb"),
  41483. name: "Front",
  41484. image: {
  41485. source: "./media/characters/harthos/front.svg",
  41486. extra: 1391/1339,
  41487. bottom: 13/1404
  41488. }
  41489. },
  41490. },
  41491. [
  41492. {
  41493. name: "Macro",
  41494. height: math.unit(1148, "feet"),
  41495. default: true
  41496. },
  41497. ]
  41498. ))
  41499. characterMakers.push(() => makeCharacter(
  41500. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41501. {
  41502. front: {
  41503. height: math.unit(15, "feet"),
  41504. name: "Front",
  41505. image: {
  41506. source: "./media/characters/hypatia/front.svg",
  41507. extra: 1653/1591,
  41508. bottom: 79/1732
  41509. }
  41510. },
  41511. },
  41512. [
  41513. {
  41514. name: "Normal",
  41515. height: math.unit(15, "feet")
  41516. },
  41517. {
  41518. name: "Small",
  41519. height: math.unit(300, "feet")
  41520. },
  41521. {
  41522. name: "Macro",
  41523. height: math.unit(2500, "feet"),
  41524. default: true
  41525. },
  41526. {
  41527. name: "Mega Macro",
  41528. height: math.unit(1500, "miles")
  41529. },
  41530. {
  41531. name: "Giga Macro",
  41532. height: math.unit(1.5e6, "miles")
  41533. },
  41534. ]
  41535. ))
  41536. characterMakers.push(() => makeCharacter(
  41537. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41538. {
  41539. front: {
  41540. height: math.unit(6, "feet"),
  41541. weight: math.unit(200, "lb"),
  41542. name: "Front",
  41543. image: {
  41544. source: "./media/characters/wulver/front.svg",
  41545. extra: 1724/1632,
  41546. bottom: 130/1854
  41547. }
  41548. },
  41549. frontNsfw: {
  41550. height: math.unit(6, "feet"),
  41551. weight: math.unit(200, "lb"),
  41552. name: "Front (NSFW)",
  41553. image: {
  41554. source: "./media/characters/wulver/front-nsfw.svg",
  41555. extra: 1724/1632,
  41556. bottom: 130/1854
  41557. }
  41558. },
  41559. },
  41560. [
  41561. {
  41562. name: "Human-Sized",
  41563. height: math.unit(6, "feet")
  41564. },
  41565. {
  41566. name: "Normal",
  41567. height: math.unit(4, "meters"),
  41568. default: true
  41569. },
  41570. {
  41571. name: "Large",
  41572. height: math.unit(6, "m")
  41573. },
  41574. ]
  41575. ))
  41576. characterMakers.push(() => makeCharacter(
  41577. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41578. {
  41579. front: {
  41580. height: math.unit(7, "feet"),
  41581. name: "Front",
  41582. image: {
  41583. source: "./media/characters/maru/front.svg",
  41584. extra: 1595/1570,
  41585. bottom: 0/1595
  41586. }
  41587. },
  41588. },
  41589. [
  41590. {
  41591. name: "Normal",
  41592. height: math.unit(7, "feet"),
  41593. default: true
  41594. },
  41595. {
  41596. name: "Macro",
  41597. height: math.unit(700, "feet")
  41598. },
  41599. {
  41600. name: "Mega Macro",
  41601. height: math.unit(25, "miles")
  41602. },
  41603. ]
  41604. ))
  41605. characterMakers.push(() => makeCharacter(
  41606. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41607. {
  41608. front: {
  41609. height: math.unit(6, "feet"),
  41610. weight: math.unit(170, "lb"),
  41611. name: "Front",
  41612. image: {
  41613. source: "./media/characters/xenon/front.svg",
  41614. extra: 1376/1305,
  41615. bottom: 56/1432
  41616. }
  41617. },
  41618. back: {
  41619. height: math.unit(6, "feet"),
  41620. weight: math.unit(170, "lb"),
  41621. name: "Back",
  41622. image: {
  41623. source: "./media/characters/xenon/back.svg",
  41624. extra: 1328/1259,
  41625. bottom: 95/1423
  41626. }
  41627. },
  41628. maw: {
  41629. height: math.unit(0.52, "feet"),
  41630. name: "Maw",
  41631. image: {
  41632. source: "./media/characters/xenon/maw.svg"
  41633. }
  41634. },
  41635. handLeft: {
  41636. height: math.unit(0.82 * 169 / 153, "feet"),
  41637. name: "Hand (Left)",
  41638. image: {
  41639. source: "./media/characters/xenon/hand-left.svg"
  41640. }
  41641. },
  41642. handRight: {
  41643. height: math.unit(0.82, "feet"),
  41644. name: "Hand (Right)",
  41645. image: {
  41646. source: "./media/characters/xenon/hand-right.svg"
  41647. }
  41648. },
  41649. footLeft: {
  41650. height: math.unit(1.13, "feet"),
  41651. name: "Foot (Left)",
  41652. image: {
  41653. source: "./media/characters/xenon/foot-left.svg"
  41654. }
  41655. },
  41656. footRight: {
  41657. height: math.unit(1.13 * 194 / 196, "feet"),
  41658. name: "Foot (Right)",
  41659. image: {
  41660. source: "./media/characters/xenon/foot-right.svg"
  41661. }
  41662. },
  41663. },
  41664. [
  41665. {
  41666. name: "Micro",
  41667. height: math.unit(0.8, "inches")
  41668. },
  41669. {
  41670. name: "Normal",
  41671. height: math.unit(6, "feet")
  41672. },
  41673. {
  41674. name: "Macro",
  41675. height: math.unit(50, "feet"),
  41676. default: true
  41677. },
  41678. {
  41679. name: "Macro+",
  41680. height: math.unit(250, "feet")
  41681. },
  41682. {
  41683. name: "Megamacro",
  41684. height: math.unit(1500, "feet")
  41685. },
  41686. ]
  41687. ))
  41688. characterMakers.push(() => makeCharacter(
  41689. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41690. {
  41691. front: {
  41692. height: math.unit(7 + 5/12, "feet"),
  41693. name: "Front",
  41694. image: {
  41695. source: "./media/characters/zane/front.svg",
  41696. extra: 1260/1203,
  41697. bottom: 94/1354
  41698. }
  41699. },
  41700. back: {
  41701. height: math.unit(5.05, "feet"),
  41702. name: "Back",
  41703. image: {
  41704. source: "./media/characters/zane/back.svg",
  41705. extra: 893/829,
  41706. bottom: 30/923
  41707. }
  41708. },
  41709. werewolf: {
  41710. height: math.unit(11, "feet"),
  41711. name: "Werewolf",
  41712. image: {
  41713. source: "./media/characters/zane/werewolf.svg",
  41714. extra: 1383/1323,
  41715. bottom: 89/1472
  41716. }
  41717. },
  41718. foot: {
  41719. height: math.unit(1.46, "feet"),
  41720. name: "Foot",
  41721. image: {
  41722. source: "./media/characters/zane/foot.svg"
  41723. }
  41724. },
  41725. footFront: {
  41726. height: math.unit(0.784, "feet"),
  41727. name: "Foot (Front)",
  41728. image: {
  41729. source: "./media/characters/zane/foot-front.svg"
  41730. }
  41731. },
  41732. dick: {
  41733. height: math.unit(1.95, "feet"),
  41734. name: "Dick",
  41735. image: {
  41736. source: "./media/characters/zane/dick.svg"
  41737. }
  41738. },
  41739. dickWerewolf: {
  41740. height: math.unit(3.77, "feet"),
  41741. name: "Dick (Werewolf)",
  41742. image: {
  41743. source: "./media/characters/zane/dick.svg"
  41744. }
  41745. },
  41746. },
  41747. [
  41748. {
  41749. name: "Normal",
  41750. height: math.unit(7 + 5/12, "feet"),
  41751. default: true
  41752. },
  41753. ]
  41754. ))
  41755. characterMakers.push(() => makeCharacter(
  41756. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41757. {
  41758. front: {
  41759. height: math.unit(6 + 2/12, "feet"),
  41760. weight: math.unit(284, "lb"),
  41761. name: "Front",
  41762. image: {
  41763. source: "./media/characters/benni-desparque/front.svg",
  41764. extra: 1353/1126,
  41765. bottom: 69/1422
  41766. }
  41767. },
  41768. },
  41769. [
  41770. {
  41771. name: "Civilian",
  41772. height: math.unit(6 + 2/12, "feet")
  41773. },
  41774. {
  41775. name: "Normal",
  41776. height: math.unit(98, "feet"),
  41777. default: true
  41778. },
  41779. {
  41780. name: "Kaiju Fighter",
  41781. height: math.unit(268, "feet")
  41782. },
  41783. ]
  41784. ))
  41785. characterMakers.push(() => makeCharacter(
  41786. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41787. {
  41788. front: {
  41789. height: math.unit(5, "feet"),
  41790. weight: math.unit(105, "lb"),
  41791. name: "Front",
  41792. image: {
  41793. source: "./media/characters/maxine/front.svg",
  41794. extra: 1386/1250,
  41795. bottom: 71/1457
  41796. }
  41797. },
  41798. },
  41799. [
  41800. {
  41801. name: "Normal",
  41802. height: math.unit(5, "feet"),
  41803. default: true
  41804. },
  41805. ]
  41806. ))
  41807. characterMakers.push(() => makeCharacter(
  41808. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41809. {
  41810. front: {
  41811. height: math.unit(11 + 7/12, "feet"),
  41812. weight: math.unit(9576, "lb"),
  41813. name: "Front",
  41814. image: {
  41815. source: "./media/characters/scaly/front.svg",
  41816. extra: 888/867,
  41817. bottom: 36/924
  41818. }
  41819. },
  41820. },
  41821. [
  41822. {
  41823. name: "Normal",
  41824. height: math.unit(11 + 7/12, "feet"),
  41825. default: true
  41826. },
  41827. ]
  41828. ))
  41829. characterMakers.push(() => makeCharacter(
  41830. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41831. {
  41832. front: {
  41833. height: math.unit(6 + 3/12, "feet"),
  41834. name: "Front",
  41835. image: {
  41836. source: "./media/characters/saelria/front.svg",
  41837. extra: 1243/1138,
  41838. bottom: 46/1289
  41839. }
  41840. },
  41841. },
  41842. [
  41843. {
  41844. name: "Micro",
  41845. height: math.unit(6, "inches"),
  41846. },
  41847. {
  41848. name: "Normal",
  41849. height: math.unit(6 + 3/12, "feet"),
  41850. default: true
  41851. },
  41852. {
  41853. name: "Macro",
  41854. height: math.unit(25, "feet")
  41855. },
  41856. ]
  41857. ))
  41858. characterMakers.push(() => makeCharacter(
  41859. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41860. {
  41861. front: {
  41862. height: math.unit(80, "meters"),
  41863. weight: math.unit(7000, "tonnes"),
  41864. name: "Front",
  41865. image: {
  41866. source: "./media/characters/tef/front.svg",
  41867. extra: 2036/1991,
  41868. bottom: 54/2090
  41869. }
  41870. },
  41871. back: {
  41872. height: math.unit(80, "meters"),
  41873. weight: math.unit(7000, "tonnes"),
  41874. name: "Back",
  41875. image: {
  41876. source: "./media/characters/tef/back.svg",
  41877. extra: 2036/1991,
  41878. bottom: 54/2090
  41879. }
  41880. },
  41881. },
  41882. [
  41883. {
  41884. name: "Macro",
  41885. height: math.unit(80, "meters"),
  41886. default: true
  41887. },
  41888. ]
  41889. ))
  41890. characterMakers.push(() => makeCharacter(
  41891. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41892. {
  41893. front: {
  41894. height: math.unit(13, "feet"),
  41895. weight: math.unit(6, "tons"),
  41896. name: "Front",
  41897. image: {
  41898. source: "./media/characters/rover/front.svg",
  41899. extra: 1233/1156,
  41900. bottom: 50/1283
  41901. }
  41902. },
  41903. back: {
  41904. height: math.unit(13, "feet"),
  41905. weight: math.unit(6, "tons"),
  41906. name: "Back",
  41907. image: {
  41908. source: "./media/characters/rover/back.svg",
  41909. extra: 1327/1258,
  41910. bottom: 39/1366
  41911. }
  41912. },
  41913. },
  41914. [
  41915. {
  41916. name: "Normal",
  41917. height: math.unit(13, "feet"),
  41918. default: true
  41919. },
  41920. {
  41921. name: "Macro",
  41922. height: math.unit(1300, "feet")
  41923. },
  41924. {
  41925. name: "Megamacro",
  41926. height: math.unit(1300, "miles")
  41927. },
  41928. {
  41929. name: "Gigamacro",
  41930. height: math.unit(1300000, "miles")
  41931. },
  41932. ]
  41933. ))
  41934. characterMakers.push(() => makeCharacter(
  41935. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41936. {
  41937. front: {
  41938. height: math.unit(6, "feet"),
  41939. weight: math.unit(150, "lb"),
  41940. name: "Front",
  41941. image: {
  41942. source: "./media/characters/ariz/front.svg",
  41943. extra: 1401/1346,
  41944. bottom: 5/1406
  41945. }
  41946. },
  41947. },
  41948. [
  41949. {
  41950. name: "Normal",
  41951. height: math.unit(10, "feet"),
  41952. default: true
  41953. },
  41954. ]
  41955. ))
  41956. characterMakers.push(() => makeCharacter(
  41957. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41958. {
  41959. front: {
  41960. height: math.unit(6, "feet"),
  41961. weight: math.unit(140, "lb"),
  41962. name: "Front",
  41963. image: {
  41964. source: "./media/characters/sigrun/front.svg",
  41965. extra: 1418/1359,
  41966. bottom: 27/1445
  41967. }
  41968. },
  41969. },
  41970. [
  41971. {
  41972. name: "Macro",
  41973. height: math.unit(35, "feet"),
  41974. default: true
  41975. },
  41976. ]
  41977. ))
  41978. characterMakers.push(() => makeCharacter(
  41979. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41980. {
  41981. front: {
  41982. height: math.unit(6, "feet"),
  41983. weight: math.unit(150, "lb"),
  41984. name: "Front",
  41985. image: {
  41986. source: "./media/characters/numin/front.svg",
  41987. extra: 1433/1388,
  41988. bottom: 12/1445
  41989. }
  41990. },
  41991. },
  41992. [
  41993. {
  41994. name: "Macro",
  41995. height: math.unit(21.5, "km"),
  41996. default: true
  41997. },
  41998. ]
  41999. ))
  42000. characterMakers.push(() => makeCharacter(
  42001. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42002. {
  42003. front: {
  42004. height: math.unit(6, "feet"),
  42005. weight: math.unit(463, "lb"),
  42006. name: "Front",
  42007. image: {
  42008. source: "./media/characters/melwa/front.svg",
  42009. extra: 1307/1248,
  42010. bottom: 93/1400
  42011. }
  42012. },
  42013. },
  42014. [
  42015. {
  42016. name: "Macro",
  42017. height: math.unit(50, "meters"),
  42018. default: true
  42019. },
  42020. ]
  42021. ))
  42022. characterMakers.push(() => makeCharacter(
  42023. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42024. {
  42025. front: {
  42026. height: math.unit(325, "feet"),
  42027. name: "Front",
  42028. image: {
  42029. source: "./media/characters/zorkaiju/front.svg",
  42030. extra: 1955/1814,
  42031. bottom: 40/1995
  42032. }
  42033. },
  42034. frontExtended: {
  42035. height: math.unit(325, "feet"),
  42036. name: "Front (Extended)",
  42037. image: {
  42038. source: "./media/characters/zorkaiju/front-extended.svg",
  42039. extra: 1955/1814,
  42040. bottom: 40/1995
  42041. }
  42042. },
  42043. side: {
  42044. height: math.unit(325, "feet"),
  42045. name: "Side",
  42046. image: {
  42047. source: "./media/characters/zorkaiju/side.svg",
  42048. extra: 1495/1396,
  42049. bottom: 17/1512
  42050. }
  42051. },
  42052. sideExtended: {
  42053. height: math.unit(325, "feet"),
  42054. name: "Side (Extended)",
  42055. image: {
  42056. source: "./media/characters/zorkaiju/side-extended.svg",
  42057. extra: 1495/1396,
  42058. bottom: 17/1512
  42059. }
  42060. },
  42061. back: {
  42062. height: math.unit(325, "feet"),
  42063. name: "Back",
  42064. image: {
  42065. source: "./media/characters/zorkaiju/back.svg",
  42066. extra: 1959/1821,
  42067. bottom: 31/1990
  42068. }
  42069. },
  42070. backExtended: {
  42071. height: math.unit(325, "feet"),
  42072. name: "Back (Extended)",
  42073. image: {
  42074. source: "./media/characters/zorkaiju/back-extended.svg",
  42075. extra: 1959/1821,
  42076. bottom: 31/1990
  42077. }
  42078. },
  42079. hand: {
  42080. height: math.unit(58.4, "feet"),
  42081. name: "Hand",
  42082. image: {
  42083. source: "./media/characters/zorkaiju/hand.svg"
  42084. }
  42085. },
  42086. handExtended: {
  42087. height: math.unit(61.4, "feet"),
  42088. name: "Hand (Extended)",
  42089. image: {
  42090. source: "./media/characters/zorkaiju/hand-extended.svg"
  42091. }
  42092. },
  42093. foot: {
  42094. height: math.unit(95, "feet"),
  42095. name: "Foot",
  42096. image: {
  42097. source: "./media/characters/zorkaiju/foot.svg"
  42098. }
  42099. },
  42100. leftArm: {
  42101. height: math.unit(59, "feet"),
  42102. name: "Left Arm",
  42103. image: {
  42104. source: "./media/characters/zorkaiju/left-arm.svg"
  42105. }
  42106. },
  42107. rightArm: {
  42108. height: math.unit(59, "feet"),
  42109. name: "Right Arm",
  42110. image: {
  42111. source: "./media/characters/zorkaiju/right-arm.svg"
  42112. }
  42113. },
  42114. leftArmExtended: {
  42115. height: math.unit(59 * 1.033546, "feet"),
  42116. name: "Left Arm (Extended)",
  42117. image: {
  42118. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42119. }
  42120. },
  42121. rightArmExtended: {
  42122. height: math.unit(59 * 1.0496, "feet"),
  42123. name: "Right Arm (Extended)",
  42124. image: {
  42125. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42126. }
  42127. },
  42128. tail: {
  42129. height: math.unit(104, "feet"),
  42130. name: "Tail",
  42131. image: {
  42132. source: "./media/characters/zorkaiju/tail.svg"
  42133. }
  42134. },
  42135. tailExtended: {
  42136. height: math.unit(104, "feet"),
  42137. name: "Tail (Extended)",
  42138. image: {
  42139. source: "./media/characters/zorkaiju/tail-extended.svg"
  42140. }
  42141. },
  42142. tailBottom: {
  42143. height: math.unit(104, "feet"),
  42144. name: "Tail Bottom",
  42145. image: {
  42146. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42147. }
  42148. },
  42149. crystal: {
  42150. height: math.unit(27.54, "feet"),
  42151. name: "Crystal",
  42152. image: {
  42153. source: "./media/characters/zorkaiju/crystal.svg"
  42154. }
  42155. },
  42156. },
  42157. [
  42158. {
  42159. name: "Kaiju",
  42160. height: math.unit(325, "feet"),
  42161. default: true
  42162. },
  42163. ]
  42164. ))
  42165. characterMakers.push(() => makeCharacter(
  42166. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42167. {
  42168. front: {
  42169. height: math.unit(6 + 1/12, "feet"),
  42170. weight: math.unit(115, "lb"),
  42171. name: "Front",
  42172. image: {
  42173. source: "./media/characters/bailey-belfry/front.svg",
  42174. extra: 1240/1121,
  42175. bottom: 101/1341
  42176. }
  42177. },
  42178. },
  42179. [
  42180. {
  42181. name: "Normal",
  42182. height: math.unit(6 + 1/12, "feet"),
  42183. default: true
  42184. },
  42185. ]
  42186. ))
  42187. characterMakers.push(() => makeCharacter(
  42188. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42189. {
  42190. side: {
  42191. height: math.unit(4, "meters"),
  42192. weight: math.unit(250, "kg"),
  42193. name: "Side",
  42194. image: {
  42195. source: "./media/characters/blacky/side.svg",
  42196. extra: 1027/919,
  42197. bottom: 43/1070
  42198. }
  42199. },
  42200. maw: {
  42201. height: math.unit(1, "meters"),
  42202. name: "Maw",
  42203. image: {
  42204. source: "./media/characters/blacky/maw.svg"
  42205. }
  42206. },
  42207. paw: {
  42208. height: math.unit(1, "meters"),
  42209. name: "Paw",
  42210. image: {
  42211. source: "./media/characters/blacky/paw.svg"
  42212. }
  42213. },
  42214. },
  42215. [
  42216. {
  42217. name: "Normal",
  42218. height: math.unit(4, "meters"),
  42219. default: true
  42220. },
  42221. ]
  42222. ))
  42223. characterMakers.push(() => makeCharacter(
  42224. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42225. {
  42226. front: {
  42227. height: math.unit(170, "cm"),
  42228. weight: math.unit(66, "kg"),
  42229. name: "Front",
  42230. image: {
  42231. source: "./media/characters/thux-ei/front.svg",
  42232. extra: 1109/1011,
  42233. bottom: 8/1117
  42234. }
  42235. },
  42236. },
  42237. [
  42238. {
  42239. name: "Normal",
  42240. height: math.unit(170, "cm"),
  42241. default: true
  42242. },
  42243. ]
  42244. ))
  42245. characterMakers.push(() => makeCharacter(
  42246. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42247. {
  42248. front: {
  42249. height: math.unit(5, "feet"),
  42250. weight: math.unit(120, "lb"),
  42251. name: "Front",
  42252. image: {
  42253. source: "./media/characters/roxanne-voltaire/front.svg",
  42254. extra: 1901/1779,
  42255. bottom: 53/1954
  42256. }
  42257. },
  42258. },
  42259. [
  42260. {
  42261. name: "Normal",
  42262. height: math.unit(5, "feet"),
  42263. default: true
  42264. },
  42265. {
  42266. name: "Giant",
  42267. height: math.unit(50, "feet")
  42268. },
  42269. {
  42270. name: "Titan",
  42271. height: math.unit(500, "feet")
  42272. },
  42273. {
  42274. name: "Macro",
  42275. height: math.unit(5000, "feet")
  42276. },
  42277. {
  42278. name: "Megamacro",
  42279. height: math.unit(50000, "feet")
  42280. },
  42281. {
  42282. name: "Gigamacro",
  42283. height: math.unit(500000, "feet")
  42284. },
  42285. {
  42286. name: "Teramacro",
  42287. height: math.unit(5e6, "feet")
  42288. },
  42289. ]
  42290. ))
  42291. characterMakers.push(() => makeCharacter(
  42292. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42293. {
  42294. front: {
  42295. height: math.unit(6 + 2/12, "feet"),
  42296. name: "Front",
  42297. image: {
  42298. source: "./media/characters/squeaks/front.svg",
  42299. extra: 1823/1768,
  42300. bottom: 138/1961
  42301. }
  42302. },
  42303. },
  42304. [
  42305. {
  42306. name: "Micro",
  42307. height: math.unit(0.5, "inches")
  42308. },
  42309. {
  42310. name: "Normal",
  42311. height: math.unit(6 + 2/12, "feet"),
  42312. default: true
  42313. },
  42314. {
  42315. name: "Macro",
  42316. height: math.unit(600, "feet")
  42317. },
  42318. ]
  42319. ))
  42320. characterMakers.push(() => makeCharacter(
  42321. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42322. {
  42323. front: {
  42324. height: math.unit(1.72, "meters"),
  42325. name: "Front",
  42326. image: {
  42327. source: "./media/characters/archinger/front.svg",
  42328. extra: 1861/1675,
  42329. bottom: 125/1986
  42330. }
  42331. },
  42332. back: {
  42333. height: math.unit(1.72, "meters"),
  42334. name: "Back",
  42335. image: {
  42336. source: "./media/characters/archinger/back.svg",
  42337. extra: 1844/1701,
  42338. bottom: 104/1948
  42339. }
  42340. },
  42341. cock: {
  42342. height: math.unit(0.59, "feet"),
  42343. name: "Cock",
  42344. image: {
  42345. source: "./media/characters/archinger/cock.svg"
  42346. }
  42347. },
  42348. },
  42349. [
  42350. {
  42351. name: "Normal",
  42352. height: math.unit(1.72, "meters"),
  42353. default: true
  42354. },
  42355. {
  42356. name: "Macro",
  42357. height: math.unit(84, "meters")
  42358. },
  42359. {
  42360. name: "Macro+",
  42361. height: math.unit(112, "meters")
  42362. },
  42363. {
  42364. name: "Macro++",
  42365. height: math.unit(960, "meters")
  42366. },
  42367. {
  42368. name: "Macro+++",
  42369. height: math.unit(4, "km")
  42370. },
  42371. {
  42372. name: "Macro++++",
  42373. height: math.unit(48, "km")
  42374. },
  42375. {
  42376. name: "Macro+++++",
  42377. height: math.unit(4500, "km")
  42378. },
  42379. ]
  42380. ))
  42381. characterMakers.push(() => makeCharacter(
  42382. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42383. {
  42384. front: {
  42385. height: math.unit(5 + 5/12, "feet"),
  42386. name: "Front",
  42387. image: {
  42388. source: "./media/characters/alsnapz/front.svg",
  42389. extra: 1157/1065,
  42390. bottom: 42/1199
  42391. }
  42392. },
  42393. },
  42394. [
  42395. {
  42396. name: "Normal",
  42397. height: math.unit(5 + 5/12, "feet"),
  42398. default: true
  42399. },
  42400. ]
  42401. ))
  42402. characterMakers.push(() => makeCharacter(
  42403. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42404. {
  42405. side: {
  42406. height: math.unit(3.2, "earths"),
  42407. name: "Side",
  42408. image: {
  42409. source: "./media/characters/mag/side.svg",
  42410. extra: 1331/1008,
  42411. bottom: 52/1383
  42412. }
  42413. },
  42414. wing: {
  42415. height: math.unit(1.94, "earths"),
  42416. name: "Wing",
  42417. image: {
  42418. source: "./media/characters/mag/wing.svg"
  42419. }
  42420. },
  42421. dick: {
  42422. height: math.unit(1.8, "earths"),
  42423. name: "Dick",
  42424. image: {
  42425. source: "./media/characters/mag/dick.svg"
  42426. }
  42427. },
  42428. ass: {
  42429. height: math.unit(1.33, "earths"),
  42430. name: "Ass",
  42431. image: {
  42432. source: "./media/characters/mag/ass.svg"
  42433. }
  42434. },
  42435. head: {
  42436. height: math.unit(1.1, "earths"),
  42437. name: "Head",
  42438. image: {
  42439. source: "./media/characters/mag/head.svg"
  42440. }
  42441. },
  42442. maw: {
  42443. height: math.unit(1.62, "earths"),
  42444. name: "Maw",
  42445. image: {
  42446. source: "./media/characters/mag/maw.svg"
  42447. }
  42448. },
  42449. },
  42450. [
  42451. {
  42452. name: "Small",
  42453. height: math.unit(162, "feet")
  42454. },
  42455. {
  42456. name: "Normal",
  42457. height: math.unit(3.2, "earths"),
  42458. default: true
  42459. },
  42460. ]
  42461. ))
  42462. characterMakers.push(() => makeCharacter(
  42463. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42464. {
  42465. front: {
  42466. height: math.unit(512, "feet"),
  42467. weight: math.unit(63509, "tonnes"),
  42468. name: "Front",
  42469. image: {
  42470. source: "./media/characters/vorrel-harroc/front.svg",
  42471. extra: 1075/1063,
  42472. bottom: 62/1137
  42473. }
  42474. },
  42475. },
  42476. [
  42477. {
  42478. name: "Normal",
  42479. height: math.unit(10, "feet")
  42480. },
  42481. {
  42482. name: "Macro",
  42483. height: math.unit(512, "feet"),
  42484. default: true
  42485. },
  42486. {
  42487. name: "Megamacro",
  42488. height: math.unit(256, "miles")
  42489. },
  42490. {
  42491. name: "Gigamacro",
  42492. height: math.unit(4096, "miles")
  42493. },
  42494. ]
  42495. ))
  42496. characterMakers.push(() => makeCharacter(
  42497. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42498. {
  42499. side: {
  42500. height: math.unit(50, "feet"),
  42501. name: "Side",
  42502. image: {
  42503. source: "./media/characters/froimar/side.svg",
  42504. extra: 855/638,
  42505. bottom: 99/954
  42506. }
  42507. },
  42508. },
  42509. [
  42510. {
  42511. name: "Macro",
  42512. height: math.unit(50, "feet"),
  42513. default: true
  42514. },
  42515. ]
  42516. ))
  42517. characterMakers.push(() => makeCharacter(
  42518. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42519. {
  42520. front: {
  42521. height: math.unit(210, "miles"),
  42522. name: "Front",
  42523. image: {
  42524. source: "./media/characters/timothy/front.svg",
  42525. extra: 1007/943,
  42526. bottom: 62/1069
  42527. }
  42528. },
  42529. frontSkirt: {
  42530. height: math.unit(210, "miles"),
  42531. name: "Front (Skirt)",
  42532. image: {
  42533. source: "./media/characters/timothy/front-skirt.svg",
  42534. extra: 1007/943,
  42535. bottom: 62/1069
  42536. }
  42537. },
  42538. frontCoat: {
  42539. height: math.unit(210, "miles"),
  42540. name: "Front (Coat)",
  42541. image: {
  42542. source: "./media/characters/timothy/front-coat.svg",
  42543. extra: 1007/943,
  42544. bottom: 62/1069
  42545. }
  42546. },
  42547. },
  42548. [
  42549. {
  42550. name: "Macro",
  42551. height: math.unit(210, "miles"),
  42552. default: true
  42553. },
  42554. {
  42555. name: "Megamacro",
  42556. height: math.unit(210000, "miles")
  42557. },
  42558. ]
  42559. ))
  42560. characterMakers.push(() => makeCharacter(
  42561. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42562. {
  42563. front: {
  42564. height: math.unit(188, "feet"),
  42565. name: "Front",
  42566. image: {
  42567. source: "./media/characters/pyotr/front.svg",
  42568. extra: 1912/1826,
  42569. bottom: 18/1930
  42570. }
  42571. },
  42572. },
  42573. [
  42574. {
  42575. name: "Macro",
  42576. height: math.unit(188, "feet"),
  42577. default: true
  42578. },
  42579. {
  42580. name: "Megamacro",
  42581. height: math.unit(8, "miles")
  42582. },
  42583. ]
  42584. ))
  42585. characterMakers.push(() => makeCharacter(
  42586. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42587. {
  42588. side: {
  42589. height: math.unit(10, "feet"),
  42590. weight: math.unit(4500, "lb"),
  42591. name: "Side",
  42592. image: {
  42593. source: "./media/characters/ackart/side.svg",
  42594. extra: 1776/1668,
  42595. bottom: 116/1892
  42596. }
  42597. },
  42598. },
  42599. [
  42600. {
  42601. name: "Normal",
  42602. height: math.unit(10, "feet"),
  42603. default: true
  42604. },
  42605. ]
  42606. ))
  42607. characterMakers.push(() => makeCharacter(
  42608. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42609. {
  42610. side: {
  42611. height: math.unit(21, "feet"),
  42612. name: "Side",
  42613. image: {
  42614. source: "./media/characters/nolow/side.svg",
  42615. extra: 1484/1434,
  42616. bottom: 85/1569
  42617. }
  42618. },
  42619. sideErect: {
  42620. height: math.unit(21, "feet"),
  42621. name: "Side-erect",
  42622. image: {
  42623. source: "./media/characters/nolow/side-erect.svg",
  42624. extra: 1484/1434,
  42625. bottom: 85/1569
  42626. }
  42627. },
  42628. },
  42629. [
  42630. {
  42631. name: "Regular",
  42632. height: math.unit(12, "feet")
  42633. },
  42634. {
  42635. name: "Big Chee",
  42636. height: math.unit(21, "feet"),
  42637. default: true
  42638. },
  42639. ]
  42640. ))
  42641. characterMakers.push(() => makeCharacter(
  42642. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42643. {
  42644. front: {
  42645. height: math.unit(7, "feet"),
  42646. weight: math.unit(250, "lb"),
  42647. name: "Front",
  42648. image: {
  42649. source: "./media/characters/nines/front.svg",
  42650. extra: 1741/1607,
  42651. bottom: 41/1782
  42652. }
  42653. },
  42654. side: {
  42655. height: math.unit(7, "feet"),
  42656. weight: math.unit(250, "lb"),
  42657. name: "Side",
  42658. image: {
  42659. source: "./media/characters/nines/side.svg",
  42660. extra: 1854/1735,
  42661. bottom: 93/1947
  42662. }
  42663. },
  42664. back: {
  42665. height: math.unit(7, "feet"),
  42666. weight: math.unit(250, "lb"),
  42667. name: "Back",
  42668. image: {
  42669. source: "./media/characters/nines/back.svg",
  42670. extra: 1748/1615,
  42671. bottom: 20/1768
  42672. }
  42673. },
  42674. },
  42675. [
  42676. {
  42677. name: "Megamacro",
  42678. height: math.unit(99, "km"),
  42679. default: true
  42680. },
  42681. ]
  42682. ))
  42683. characterMakers.push(() => makeCharacter(
  42684. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42685. {
  42686. front: {
  42687. height: math.unit(5 + 10/12, "feet"),
  42688. weight: math.unit(210, "lb"),
  42689. name: "Front",
  42690. image: {
  42691. source: "./media/characters/zenith/front.svg",
  42692. extra: 1531/1452,
  42693. bottom: 198/1729
  42694. }
  42695. },
  42696. back: {
  42697. height: math.unit(5 + 10/12, "feet"),
  42698. weight: math.unit(210, "lb"),
  42699. name: "Back",
  42700. image: {
  42701. source: "./media/characters/zenith/back.svg",
  42702. extra: 1571/1487,
  42703. bottom: 75/1646
  42704. }
  42705. },
  42706. },
  42707. [
  42708. {
  42709. name: "Normal",
  42710. height: math.unit(5 + 10/12, "feet"),
  42711. default: true
  42712. }
  42713. ]
  42714. ))
  42715. characterMakers.push(() => makeCharacter(
  42716. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42717. {
  42718. front: {
  42719. height: math.unit(4, "feet"),
  42720. weight: math.unit(60, "lb"),
  42721. name: "Front",
  42722. image: {
  42723. source: "./media/characters/jasper/front.svg",
  42724. extra: 1450/1379,
  42725. bottom: 19/1469
  42726. }
  42727. },
  42728. },
  42729. [
  42730. {
  42731. name: "Normal",
  42732. height: math.unit(4, "feet"),
  42733. default: true
  42734. },
  42735. ]
  42736. ))
  42737. characterMakers.push(() => makeCharacter(
  42738. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42739. {
  42740. front: {
  42741. height: math.unit(6 + 5/12, "feet"),
  42742. weight: math.unit(290, "lb"),
  42743. name: "Front",
  42744. image: {
  42745. source: "./media/characters/tiberius-thyben/front.svg",
  42746. extra: 757/739,
  42747. bottom: 39/796
  42748. }
  42749. },
  42750. },
  42751. [
  42752. {
  42753. name: "Micro",
  42754. height: math.unit(1.5, "inches")
  42755. },
  42756. {
  42757. name: "Normal",
  42758. height: math.unit(6 + 5/12, "feet"),
  42759. default: true
  42760. },
  42761. {
  42762. name: "Macro",
  42763. height: math.unit(300, "feet")
  42764. },
  42765. ]
  42766. ))
  42767. characterMakers.push(() => makeCharacter(
  42768. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42769. {
  42770. front: {
  42771. height: math.unit(5 + 6/12, "feet"),
  42772. weight: math.unit(60, "kg"),
  42773. name: "Front",
  42774. image: {
  42775. source: "./media/characters/sabre/front.svg",
  42776. extra: 738/671,
  42777. bottom: 27/765
  42778. }
  42779. },
  42780. },
  42781. [
  42782. {
  42783. name: "Teeny",
  42784. height: math.unit(2, "inches")
  42785. },
  42786. {
  42787. name: "Smol",
  42788. height: math.unit(8, "inches")
  42789. },
  42790. {
  42791. name: "Normal",
  42792. height: math.unit(5 + 6/12, "feet"),
  42793. default: true
  42794. },
  42795. {
  42796. name: "Mini-Macro",
  42797. height: math.unit(15, "feet")
  42798. },
  42799. {
  42800. name: "Macro",
  42801. height: math.unit(50, "feet")
  42802. },
  42803. ]
  42804. ))
  42805. characterMakers.push(() => makeCharacter(
  42806. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42807. {
  42808. front: {
  42809. height: math.unit(6 + 4/12, "feet"),
  42810. weight: math.unit(170, "lb"),
  42811. name: "Front",
  42812. image: {
  42813. source: "./media/characters/charlie/front.svg",
  42814. extra: 1348/1228,
  42815. bottom: 15/1363
  42816. }
  42817. },
  42818. },
  42819. [
  42820. {
  42821. name: "Macro",
  42822. height: math.unit(1700, "meters"),
  42823. default: true
  42824. },
  42825. {
  42826. name: "MegaMacro",
  42827. height: math.unit(20400, "meters")
  42828. },
  42829. ]
  42830. ))
  42831. characterMakers.push(() => makeCharacter(
  42832. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42833. {
  42834. front: {
  42835. height: math.unit(6 + 3/12, "feet"),
  42836. weight: math.unit(185, "lb"),
  42837. name: "Front",
  42838. image: {
  42839. source: "./media/characters/susan-grant/front.svg",
  42840. extra: 1351/1327,
  42841. bottom: 26/1377
  42842. }
  42843. },
  42844. },
  42845. [
  42846. {
  42847. name: "Normal",
  42848. height: math.unit(6 + 3/12, "feet"),
  42849. default: true
  42850. },
  42851. {
  42852. name: "Macro",
  42853. height: math.unit(225, "feet")
  42854. },
  42855. {
  42856. name: "Macro+",
  42857. height: math.unit(900, "feet")
  42858. },
  42859. {
  42860. name: "MegaMacro",
  42861. height: math.unit(14400, "feet")
  42862. },
  42863. ]
  42864. ))
  42865. characterMakers.push(() => makeCharacter(
  42866. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42867. {
  42868. front: {
  42869. height: math.unit(5 + 4/12, "feet"),
  42870. weight: math.unit(110, "lb"),
  42871. name: "Front",
  42872. image: {
  42873. source: "./media/characters/axel-isanov/front.svg",
  42874. extra: 1096/1065,
  42875. bottom: 13/1109
  42876. }
  42877. },
  42878. },
  42879. [
  42880. {
  42881. name: "Normal",
  42882. height: math.unit(5 + 4/12, "feet"),
  42883. default: true
  42884. },
  42885. ]
  42886. ))
  42887. characterMakers.push(() => makeCharacter(
  42888. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42889. {
  42890. front: {
  42891. height: math.unit(9, "feet"),
  42892. weight: math.unit(467, "lb"),
  42893. name: "Front",
  42894. image: {
  42895. source: "./media/characters/necahual/front.svg",
  42896. extra: 920/873,
  42897. bottom: 26/946
  42898. }
  42899. },
  42900. back: {
  42901. height: math.unit(9, "feet"),
  42902. weight: math.unit(467, "lb"),
  42903. name: "Back",
  42904. image: {
  42905. source: "./media/characters/necahual/back.svg",
  42906. extra: 930/884,
  42907. bottom: 16/946
  42908. }
  42909. },
  42910. frontUnderwear: {
  42911. height: math.unit(9, "feet"),
  42912. weight: math.unit(467, "lb"),
  42913. name: "Front (Underwear)",
  42914. image: {
  42915. source: "./media/characters/necahual/front-underwear.svg",
  42916. extra: 920/873,
  42917. bottom: 26/946
  42918. }
  42919. },
  42920. frontDressed: {
  42921. height: math.unit(9, "feet"),
  42922. weight: math.unit(467, "lb"),
  42923. name: "Front (Dressed)",
  42924. image: {
  42925. source: "./media/characters/necahual/front-dressed.svg",
  42926. extra: 920/873,
  42927. bottom: 26/946
  42928. }
  42929. },
  42930. },
  42931. [
  42932. {
  42933. name: "Comprsesed",
  42934. height: math.unit(9, "feet")
  42935. },
  42936. {
  42937. name: "Natural",
  42938. height: math.unit(15, "feet"),
  42939. default: true
  42940. },
  42941. {
  42942. name: "Boosted",
  42943. height: math.unit(50, "feet")
  42944. },
  42945. {
  42946. name: "Boosted+",
  42947. height: math.unit(150, "feet")
  42948. },
  42949. {
  42950. name: "Max",
  42951. height: math.unit(500, "feet")
  42952. },
  42953. ]
  42954. ))
  42955. characterMakers.push(() => makeCharacter(
  42956. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42957. {
  42958. front: {
  42959. height: math.unit(22 + 1/12, "feet"),
  42960. weight: math.unit(3200, "lb"),
  42961. name: "Front",
  42962. image: {
  42963. source: "./media/characters/theo-acacia/front.svg",
  42964. extra: 1796/1741,
  42965. bottom: 83/1879
  42966. }
  42967. },
  42968. frontUnderwear: {
  42969. height: math.unit(22 + 1/12, "feet"),
  42970. weight: math.unit(3200, "lb"),
  42971. name: "Front (Underwear)",
  42972. image: {
  42973. source: "./media/characters/theo-acacia/front-underwear.svg",
  42974. extra: 1796/1741,
  42975. bottom: 83/1879
  42976. }
  42977. },
  42978. frontNude: {
  42979. height: math.unit(22 + 1/12, "feet"),
  42980. weight: math.unit(3200, "lb"),
  42981. name: "Front (Nude)",
  42982. image: {
  42983. source: "./media/characters/theo-acacia/front-nude.svg",
  42984. extra: 1796/1741,
  42985. bottom: 83/1879
  42986. }
  42987. },
  42988. },
  42989. [
  42990. {
  42991. name: "Normal",
  42992. height: math.unit(22 + 1/12, "feet"),
  42993. default: true
  42994. },
  42995. ]
  42996. ))
  42997. characterMakers.push(() => makeCharacter(
  42998. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42999. {
  43000. front: {
  43001. height: math.unit(20, "feet"),
  43002. name: "Front",
  43003. image: {
  43004. source: "./media/characters/astra/front.svg",
  43005. extra: 1850/1714,
  43006. bottom: 106/1956
  43007. }
  43008. },
  43009. frontUndressed: {
  43010. height: math.unit(20, "feet"),
  43011. name: "Front (Undressed)",
  43012. image: {
  43013. source: "./media/characters/astra/front-undressed.svg",
  43014. extra: 1926/1749,
  43015. bottom: 0/1926
  43016. }
  43017. },
  43018. hand: {
  43019. height: math.unit(1.53, "feet"),
  43020. name: "Hand",
  43021. image: {
  43022. source: "./media/characters/astra/hand.svg"
  43023. }
  43024. },
  43025. paw: {
  43026. height: math.unit(1.53, "feet"),
  43027. name: "Paw",
  43028. image: {
  43029. source: "./media/characters/astra/paw.svg"
  43030. }
  43031. },
  43032. },
  43033. [
  43034. {
  43035. name: "Smallest",
  43036. height: math.unit(20, "feet")
  43037. },
  43038. {
  43039. name: "Normal",
  43040. height: math.unit(1e9, "miles"),
  43041. default: true
  43042. },
  43043. {
  43044. name: "Larger",
  43045. height: math.unit(5, "multiverses")
  43046. },
  43047. {
  43048. name: "Largest",
  43049. height: math.unit(1e9, "multiverses")
  43050. },
  43051. ]
  43052. ))
  43053. characterMakers.push(() => makeCharacter(
  43054. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43055. {
  43056. front: {
  43057. height: math.unit(8, "feet"),
  43058. name: "Front",
  43059. image: {
  43060. source: "./media/characters/breanna/front.svg",
  43061. extra: 1912/1632,
  43062. bottom: 33/1945
  43063. }
  43064. },
  43065. },
  43066. [
  43067. {
  43068. name: "Smallest",
  43069. height: math.unit(8, "feet")
  43070. },
  43071. {
  43072. name: "Normal",
  43073. height: math.unit(1, "mile"),
  43074. default: true
  43075. },
  43076. {
  43077. name: "Maximum",
  43078. height: math.unit(1500000000000, "lightyears")
  43079. },
  43080. ]
  43081. ))
  43082. characterMakers.push(() => makeCharacter(
  43083. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43084. {
  43085. front: {
  43086. height: math.unit(5 + 11/12, "feet"),
  43087. weight: math.unit(155, "lb"),
  43088. name: "Front",
  43089. image: {
  43090. source: "./media/characters/cai/front.svg",
  43091. extra: 1823/1702,
  43092. bottom: 32/1855
  43093. }
  43094. },
  43095. back: {
  43096. height: math.unit(5 + 11/12, "feet"),
  43097. weight: math.unit(155, "lb"),
  43098. name: "Back",
  43099. image: {
  43100. source: "./media/characters/cai/back.svg",
  43101. extra: 1809/1708,
  43102. bottom: 31/1840
  43103. }
  43104. },
  43105. },
  43106. [
  43107. {
  43108. name: "Normal",
  43109. height: math.unit(5 + 11/12, "feet"),
  43110. default: true
  43111. },
  43112. {
  43113. name: "Big",
  43114. height: math.unit(15, "feet")
  43115. },
  43116. {
  43117. name: "Macro",
  43118. height: math.unit(200, "feet")
  43119. },
  43120. ]
  43121. ))
  43122. characterMakers.push(() => makeCharacter(
  43123. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43124. {
  43125. front: {
  43126. height: math.unit(5 + 6/12, "feet"),
  43127. weight: math.unit(160, "lb"),
  43128. name: "Front",
  43129. image: {
  43130. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43131. extra: 1227/1174,
  43132. bottom: 37/1264
  43133. }
  43134. },
  43135. },
  43136. [
  43137. {
  43138. name: "Macro",
  43139. height: math.unit(444, "meters"),
  43140. default: true
  43141. },
  43142. ]
  43143. ))
  43144. characterMakers.push(() => makeCharacter(
  43145. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43146. {
  43147. front: {
  43148. height: math.unit(18 + 7/12, "feet"),
  43149. name: "Front",
  43150. image: {
  43151. source: "./media/characters/rex/front.svg",
  43152. extra: 1941/1807,
  43153. bottom: 66/2007
  43154. }
  43155. },
  43156. back: {
  43157. height: math.unit(18 + 7/12, "feet"),
  43158. name: "Back",
  43159. image: {
  43160. source: "./media/characters/rex/back.svg",
  43161. extra: 1937/1822,
  43162. bottom: 42/1979
  43163. }
  43164. },
  43165. boot: {
  43166. height: math.unit(3.45, "feet"),
  43167. name: "Boot",
  43168. image: {
  43169. source: "./media/characters/rex/boot.svg"
  43170. }
  43171. },
  43172. paw: {
  43173. height: math.unit(4.17, "feet"),
  43174. name: "Paw",
  43175. image: {
  43176. source: "./media/characters/rex/paw.svg"
  43177. }
  43178. },
  43179. head: {
  43180. height: math.unit(6.728, "feet"),
  43181. name: "Head",
  43182. image: {
  43183. source: "./media/characters/rex/head.svg"
  43184. }
  43185. },
  43186. },
  43187. [
  43188. {
  43189. name: "Nano",
  43190. height: math.unit(18 + 7/12, "feet")
  43191. },
  43192. {
  43193. name: "Micro",
  43194. height: math.unit(1.5, "megameters")
  43195. },
  43196. {
  43197. name: "Normal",
  43198. height: math.unit(440, "megameters"),
  43199. default: true
  43200. },
  43201. {
  43202. name: "Macro",
  43203. height: math.unit(2.5, "gigameters")
  43204. },
  43205. {
  43206. name: "Gigamacro",
  43207. height: math.unit(2, "galaxies")
  43208. },
  43209. ]
  43210. ))
  43211. characterMakers.push(() => makeCharacter(
  43212. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43213. {
  43214. side: {
  43215. height: math.unit(32, "feet"),
  43216. weight: math.unit(250000, "lb"),
  43217. name: "Side",
  43218. image: {
  43219. source: "./media/characters/silverwing/side.svg",
  43220. extra: 1100/1019,
  43221. bottom: 204/1304
  43222. }
  43223. },
  43224. },
  43225. [
  43226. {
  43227. name: "Normal",
  43228. height: math.unit(32, "feet"),
  43229. default: true
  43230. },
  43231. ]
  43232. ))
  43233. characterMakers.push(() => makeCharacter(
  43234. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43235. {
  43236. front: {
  43237. height: math.unit(6 + 6/12, "feet"),
  43238. weight: math.unit(350, "lb"),
  43239. name: "Front",
  43240. image: {
  43241. source: "./media/characters/tristan-hawthorne/front.svg",
  43242. extra: 1159/1124,
  43243. bottom: 37/1196
  43244. },
  43245. form: "labrador",
  43246. default: true
  43247. },
  43248. skunkFront: {
  43249. height: math.unit(4 + 6/12, "feet"),
  43250. weight: math.unit(120, "lb"),
  43251. name: "Front",
  43252. image: {
  43253. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43254. extra: 1609/1551,
  43255. bottom: 169/1778
  43256. },
  43257. form: "skunk",
  43258. default: true
  43259. },
  43260. },
  43261. [
  43262. {
  43263. name: "Normal",
  43264. height: math.unit(6 + 6/12, "feet"),
  43265. form: "labrador",
  43266. default: true
  43267. },
  43268. {
  43269. name: "Normal",
  43270. height: math.unit(4 + 6/12, "feet"),
  43271. form: "skunk",
  43272. default: true
  43273. },
  43274. ],
  43275. {
  43276. "labrador": {
  43277. name: "Labrador",
  43278. default: true
  43279. },
  43280. "skunk": {
  43281. name: "Skunk"
  43282. }
  43283. }
  43284. ))
  43285. characterMakers.push(() => makeCharacter(
  43286. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43287. {
  43288. front: {
  43289. height: math.unit(5 + 11/12, "feet"),
  43290. weight: math.unit(190, "lb"),
  43291. name: "Front",
  43292. image: {
  43293. source: "./media/characters/mizu/front.svg",
  43294. extra: 1988/1788,
  43295. bottom: 14/2002
  43296. }
  43297. },
  43298. },
  43299. [
  43300. {
  43301. name: "Normal",
  43302. height: math.unit(5 + 11/12, "feet"),
  43303. default: true
  43304. },
  43305. ]
  43306. ))
  43307. characterMakers.push(() => makeCharacter(
  43308. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43309. {
  43310. front: {
  43311. height: math.unit(1.7, "feet"),
  43312. weight: math.unit(50, "lb"),
  43313. name: "Front",
  43314. image: {
  43315. source: "./media/characters/dechroma/front.svg",
  43316. extra: 1095/859,
  43317. bottom: 64/1159
  43318. }
  43319. },
  43320. },
  43321. [
  43322. {
  43323. name: "Normal",
  43324. height: math.unit(1.7, "feet"),
  43325. default: true
  43326. },
  43327. ]
  43328. ))
  43329. characterMakers.push(() => makeCharacter(
  43330. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43331. {
  43332. side: {
  43333. height: math.unit(30, "feet"),
  43334. name: "Side",
  43335. image: {
  43336. source: "./media/characters/veluren-thanazel/side.svg",
  43337. extra: 1611/633,
  43338. bottom: 118/1729
  43339. }
  43340. },
  43341. front: {
  43342. height: math.unit(30, "feet"),
  43343. name: "Front",
  43344. image: {
  43345. source: "./media/characters/veluren-thanazel/front.svg",
  43346. extra: 1486/636,
  43347. bottom: 238/1724
  43348. }
  43349. },
  43350. head: {
  43351. height: math.unit(21.4, "feet"),
  43352. name: "Head",
  43353. image: {
  43354. source: "./media/characters/veluren-thanazel/head.svg"
  43355. }
  43356. },
  43357. genitals: {
  43358. height: math.unit(19.4, "feet"),
  43359. name: "Genitals",
  43360. image: {
  43361. source: "./media/characters/veluren-thanazel/genitals.svg"
  43362. }
  43363. },
  43364. },
  43365. [
  43366. {
  43367. name: "Social",
  43368. height: math.unit(6, "feet")
  43369. },
  43370. {
  43371. name: "Play",
  43372. height: math.unit(12, "feet")
  43373. },
  43374. {
  43375. name: "True",
  43376. height: math.unit(30, "feet"),
  43377. default: true
  43378. },
  43379. ]
  43380. ))
  43381. characterMakers.push(() => makeCharacter(
  43382. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43383. {
  43384. front: {
  43385. height: math.unit(7 + 6/12, "feet"),
  43386. weight: math.unit(500, "kg"),
  43387. name: "Front",
  43388. image: {
  43389. source: "./media/characters/arcturas/front.svg",
  43390. extra: 1700/1500,
  43391. bottom: 145/1845
  43392. }
  43393. },
  43394. },
  43395. [
  43396. {
  43397. name: "Normal",
  43398. height: math.unit(7 + 6/12, "feet"),
  43399. default: true
  43400. },
  43401. ]
  43402. ))
  43403. characterMakers.push(() => makeCharacter(
  43404. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43405. {
  43406. side: {
  43407. height: math.unit(6, "feet"),
  43408. weight: math.unit(2, "tons"),
  43409. name: "Side",
  43410. image: {
  43411. source: "./media/characters/vitaen/side.svg",
  43412. extra: 1157/617,
  43413. bottom: 122/1279
  43414. }
  43415. },
  43416. },
  43417. [
  43418. {
  43419. name: "Normal",
  43420. height: math.unit(6, "feet"),
  43421. default: true
  43422. },
  43423. ]
  43424. ))
  43425. characterMakers.push(() => makeCharacter(
  43426. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43427. {
  43428. front: {
  43429. height: math.unit(19, "feet"),
  43430. name: "Front",
  43431. image: {
  43432. source: "./media/characters/fia-dreamweaver/front.svg",
  43433. extra: 1630/1504,
  43434. bottom: 25/1655
  43435. }
  43436. },
  43437. },
  43438. [
  43439. {
  43440. name: "Normal",
  43441. height: math.unit(19, "feet"),
  43442. default: true
  43443. },
  43444. ]
  43445. ))
  43446. characterMakers.push(() => makeCharacter(
  43447. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43448. {
  43449. front: {
  43450. height: math.unit(5 + 4/12, "feet"),
  43451. name: "Front",
  43452. image: {
  43453. source: "./media/characters/artan/front.svg",
  43454. extra: 1618/1535,
  43455. bottom: 46/1664
  43456. }
  43457. },
  43458. back: {
  43459. height: math.unit(5 + 4/12, "feet"),
  43460. name: "Back",
  43461. image: {
  43462. source: "./media/characters/artan/back.svg",
  43463. extra: 1618/1543,
  43464. bottom: 31/1649
  43465. }
  43466. },
  43467. },
  43468. [
  43469. {
  43470. name: "Normal",
  43471. height: math.unit(5 + 4/12, "feet"),
  43472. default: true
  43473. },
  43474. ]
  43475. ))
  43476. characterMakers.push(() => makeCharacter(
  43477. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43478. {
  43479. side: {
  43480. height: math.unit(182, "cm"),
  43481. weight: math.unit(1000, "lb"),
  43482. name: "Side",
  43483. image: {
  43484. source: "./media/characters/silver-dragon/side.svg",
  43485. extra: 710/287,
  43486. bottom: 88/798
  43487. }
  43488. },
  43489. },
  43490. [
  43491. {
  43492. name: "Normal",
  43493. height: math.unit(182, "cm"),
  43494. default: true
  43495. },
  43496. ]
  43497. ))
  43498. characterMakers.push(() => makeCharacter(
  43499. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43500. {
  43501. side: {
  43502. height: math.unit(6 + 6/12, "feet"),
  43503. weight: math.unit(1.5, "tons"),
  43504. name: "Side",
  43505. image: {
  43506. source: "./media/characters/zephyr/side.svg",
  43507. extra: 1433/586,
  43508. bottom: 109/1542
  43509. }
  43510. },
  43511. },
  43512. [
  43513. {
  43514. name: "Normal",
  43515. height: math.unit(6 + 6/12, "feet"),
  43516. default: true
  43517. },
  43518. ]
  43519. ))
  43520. characterMakers.push(() => makeCharacter(
  43521. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43522. {
  43523. side: {
  43524. height: math.unit(1, "feet"),
  43525. name: "Side",
  43526. image: {
  43527. source: "./media/characters/vixye/side.svg",
  43528. extra: 632/541,
  43529. bottom: 0/632
  43530. }
  43531. },
  43532. },
  43533. [
  43534. {
  43535. name: "Normal",
  43536. height: math.unit(1, "feet"),
  43537. default: true
  43538. },
  43539. {
  43540. name: "True",
  43541. height: math.unit(1e15, "multiverses")
  43542. },
  43543. ]
  43544. ))
  43545. characterMakers.push(() => makeCharacter(
  43546. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43547. {
  43548. front: {
  43549. height: math.unit(8 + 2/12, "feet"),
  43550. weight: math.unit(650, "lb"),
  43551. name: "Front",
  43552. image: {
  43553. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43554. extra: 1174/1137,
  43555. bottom: 82/1256
  43556. }
  43557. },
  43558. back: {
  43559. height: math.unit(8 + 2/12, "feet"),
  43560. weight: math.unit(650, "lb"),
  43561. name: "Back",
  43562. image: {
  43563. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43564. extra: 1204/1157,
  43565. bottom: 46/1250
  43566. }
  43567. },
  43568. },
  43569. [
  43570. {
  43571. name: "Wildform",
  43572. height: math.unit(8 + 2/12, "feet"),
  43573. default: true
  43574. },
  43575. ]
  43576. ))
  43577. characterMakers.push(() => makeCharacter(
  43578. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43579. {
  43580. front: {
  43581. height: math.unit(18, "feet"),
  43582. name: "Front",
  43583. image: {
  43584. source: "./media/characters/cyphin/front.svg",
  43585. extra: 970/886,
  43586. bottom: 42/1012
  43587. }
  43588. },
  43589. back: {
  43590. height: math.unit(18, "feet"),
  43591. name: "Back",
  43592. image: {
  43593. source: "./media/characters/cyphin/back.svg",
  43594. extra: 1009/894,
  43595. bottom: 24/1033
  43596. }
  43597. },
  43598. head: {
  43599. height: math.unit(5.05, "feet"),
  43600. name: "Head",
  43601. image: {
  43602. source: "./media/characters/cyphin/head.svg"
  43603. }
  43604. },
  43605. tailbud: {
  43606. height: math.unit(5, "feet"),
  43607. name: "Tailbud",
  43608. image: {
  43609. source: "./media/characters/cyphin/tailbud.svg"
  43610. }
  43611. },
  43612. },
  43613. [
  43614. ]
  43615. ))
  43616. characterMakers.push(() => makeCharacter(
  43617. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43618. {
  43619. side: {
  43620. height: math.unit(10, "feet"),
  43621. weight: math.unit(6, "tons"),
  43622. name: "Side",
  43623. image: {
  43624. source: "./media/characters/raijin/side.svg",
  43625. extra: 1529/613,
  43626. bottom: 337/1866
  43627. }
  43628. },
  43629. },
  43630. [
  43631. {
  43632. name: "Normal",
  43633. height: math.unit(10, "feet"),
  43634. default: true
  43635. },
  43636. ]
  43637. ))
  43638. characterMakers.push(() => makeCharacter(
  43639. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43640. {
  43641. side: {
  43642. height: math.unit(9, "feet"),
  43643. name: "Side",
  43644. image: {
  43645. source: "./media/characters/nilghais/side.svg",
  43646. extra: 1047/744,
  43647. bottom: 91/1138
  43648. }
  43649. },
  43650. head: {
  43651. height: math.unit(3.14, "feet"),
  43652. name: "Head",
  43653. image: {
  43654. source: "./media/characters/nilghais/head.svg"
  43655. }
  43656. },
  43657. mouth: {
  43658. height: math.unit(4.6, "feet"),
  43659. name: "Mouth",
  43660. image: {
  43661. source: "./media/characters/nilghais/mouth.svg"
  43662. }
  43663. },
  43664. wings: {
  43665. height: math.unit(24, "feet"),
  43666. name: "Wings",
  43667. image: {
  43668. source: "./media/characters/nilghais/wings.svg"
  43669. }
  43670. },
  43671. ass: {
  43672. height: math.unit(6.12, "feet"),
  43673. name: "Ass",
  43674. image: {
  43675. source: "./media/characters/nilghais/ass.svg"
  43676. }
  43677. },
  43678. },
  43679. [
  43680. {
  43681. name: "Normal",
  43682. height: math.unit(9, "feet"),
  43683. default: true
  43684. },
  43685. ]
  43686. ))
  43687. characterMakers.push(() => makeCharacter(
  43688. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43689. {
  43690. regular: {
  43691. height: math.unit(16 + 2/12, "feet"),
  43692. weight: math.unit(2300, "lb"),
  43693. name: "Regular",
  43694. image: {
  43695. source: "./media/characters/zolgar/regular.svg",
  43696. extra: 1246/1004,
  43697. bottom: 124/1370
  43698. }
  43699. },
  43700. boxers: {
  43701. height: math.unit(16 + 2/12, "feet"),
  43702. weight: math.unit(2300, "lb"),
  43703. name: "Boxers",
  43704. image: {
  43705. source: "./media/characters/zolgar/boxers.svg",
  43706. extra: 1246/1004,
  43707. bottom: 124/1370
  43708. }
  43709. },
  43710. armored: {
  43711. height: math.unit(16 + 2/12, "feet"),
  43712. weight: math.unit(2300, "lb"),
  43713. name: "Armored",
  43714. image: {
  43715. source: "./media/characters/zolgar/armored.svg",
  43716. extra: 1246/1004,
  43717. bottom: 124/1370
  43718. }
  43719. },
  43720. goth: {
  43721. height: math.unit(16 + 2/12, "feet"),
  43722. weight: math.unit(2300, "lb"),
  43723. name: "Goth",
  43724. image: {
  43725. source: "./media/characters/zolgar/goth.svg",
  43726. extra: 1246/1004,
  43727. bottom: 124/1370
  43728. }
  43729. },
  43730. },
  43731. [
  43732. {
  43733. name: "Shrunken Down",
  43734. height: math.unit(9 + 2/12, "feet")
  43735. },
  43736. {
  43737. name: "Normal",
  43738. height: math.unit(16 + 2/12, "feet"),
  43739. default: true
  43740. },
  43741. ]
  43742. ))
  43743. characterMakers.push(() => makeCharacter(
  43744. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43745. {
  43746. front: {
  43747. height: math.unit(6, "feet"),
  43748. weight: math.unit(168, "lb"),
  43749. name: "Front",
  43750. image: {
  43751. source: "./media/characters/luca/front.svg",
  43752. extra: 841/667,
  43753. bottom: 102/943
  43754. }
  43755. },
  43756. },
  43757. [
  43758. {
  43759. name: "Normal",
  43760. height: math.unit(6, "feet"),
  43761. default: true
  43762. },
  43763. ]
  43764. ))
  43765. characterMakers.push(() => makeCharacter(
  43766. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43767. {
  43768. side: {
  43769. height: math.unit(7 + 3/12, "feet"),
  43770. weight: math.unit(312, "lb"),
  43771. name: "Side",
  43772. image: {
  43773. source: "./media/characters/zezo/side.svg",
  43774. extra: 1192/1067,
  43775. bottom: 63/1255
  43776. }
  43777. },
  43778. },
  43779. [
  43780. {
  43781. name: "Normal",
  43782. height: math.unit(7 + 3/12, "feet"),
  43783. default: true
  43784. },
  43785. ]
  43786. ))
  43787. characterMakers.push(() => makeCharacter(
  43788. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43789. {
  43790. front: {
  43791. height: math.unit(5 + 5/12, "feet"),
  43792. weight: math.unit(170, "lb"),
  43793. name: "Front",
  43794. image: {
  43795. source: "./media/characters/mayso/front.svg",
  43796. extra: 1215/1108,
  43797. bottom: 16/1231
  43798. }
  43799. },
  43800. },
  43801. [
  43802. {
  43803. name: "Normal",
  43804. height: math.unit(5 + 5/12, "feet"),
  43805. default: true
  43806. },
  43807. ]
  43808. ))
  43809. characterMakers.push(() => makeCharacter(
  43810. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43811. {
  43812. front: {
  43813. height: math.unit(4 + 3/12, "feet"),
  43814. weight: math.unit(80, "lb"),
  43815. name: "Front",
  43816. image: {
  43817. source: "./media/characters/hess/front.svg",
  43818. extra: 1200/1123,
  43819. bottom: 16/1216
  43820. }
  43821. },
  43822. },
  43823. [
  43824. {
  43825. name: "Normal",
  43826. height: math.unit(4 + 3/12, "feet"),
  43827. default: true
  43828. },
  43829. ]
  43830. ))
  43831. characterMakers.push(() => makeCharacter(
  43832. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43833. {
  43834. front: {
  43835. height: math.unit(1.9, "meters"),
  43836. name: "Front",
  43837. image: {
  43838. source: "./media/characters/ashgar/front.svg",
  43839. extra: 1177/1146,
  43840. bottom: 99/1276
  43841. }
  43842. },
  43843. back: {
  43844. height: math.unit(1.9, "meters"),
  43845. name: "Back",
  43846. image: {
  43847. source: "./media/characters/ashgar/back.svg",
  43848. extra: 1201/1183,
  43849. bottom: 53/1254
  43850. }
  43851. },
  43852. feral: {
  43853. height: math.unit(1.4, "meters"),
  43854. name: "Feral",
  43855. image: {
  43856. source: "./media/characters/ashgar/feral.svg",
  43857. extra: 370/345,
  43858. bottom: 45/415
  43859. }
  43860. },
  43861. },
  43862. [
  43863. {
  43864. name: "Normal",
  43865. height: math.unit(1.9, "meters"),
  43866. default: true
  43867. },
  43868. ]
  43869. ))
  43870. characterMakers.push(() => makeCharacter(
  43871. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43872. {
  43873. regular: {
  43874. height: math.unit(6, "feet"),
  43875. weight: math.unit(220, "lb"),
  43876. name: "Regular",
  43877. image: {
  43878. source: "./media/characters/phillip/regular.svg",
  43879. extra: 1373/1277,
  43880. bottom: 75/1448
  43881. }
  43882. },
  43883. dressed: {
  43884. height: math.unit(6, "feet"),
  43885. weight: math.unit(220, "lb"),
  43886. name: "Dressed",
  43887. image: {
  43888. source: "./media/characters/phillip/dressed.svg",
  43889. extra: 1373/1277,
  43890. bottom: 75/1448
  43891. }
  43892. },
  43893. paw: {
  43894. height: math.unit(1.44, "feet"),
  43895. name: "Paw",
  43896. image: {
  43897. source: "./media/characters/phillip/paw.svg"
  43898. }
  43899. },
  43900. },
  43901. [
  43902. {
  43903. name: "Normal",
  43904. height: math.unit(6, "feet"),
  43905. default: true
  43906. },
  43907. ]
  43908. ))
  43909. characterMakers.push(() => makeCharacter(
  43910. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43911. {
  43912. side: {
  43913. height: math.unit(42, "feet"),
  43914. name: "Side",
  43915. image: {
  43916. source: "./media/characters/uvula/side.svg",
  43917. extra: 683/586,
  43918. bottom: 60/743
  43919. }
  43920. },
  43921. front: {
  43922. height: math.unit(42, "feet"),
  43923. name: "Front",
  43924. image: {
  43925. source: "./media/characters/uvula/front.svg",
  43926. extra: 705/613,
  43927. bottom: 54/759
  43928. }
  43929. },
  43930. maw: {
  43931. height: math.unit(23.5, "feet"),
  43932. name: "Maw",
  43933. image: {
  43934. source: "./media/characters/uvula/maw.svg"
  43935. }
  43936. },
  43937. },
  43938. [
  43939. {
  43940. name: "Original Size",
  43941. height: math.unit(14, "inches")
  43942. },
  43943. {
  43944. name: "Human Size",
  43945. height: math.unit(6, "feet")
  43946. },
  43947. {
  43948. name: "Big",
  43949. height: math.unit(42, "feet"),
  43950. default: true
  43951. },
  43952. {
  43953. name: "Bigger",
  43954. height: math.unit(100, "feet")
  43955. },
  43956. ]
  43957. ))
  43958. characterMakers.push(() => makeCharacter(
  43959. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43960. {
  43961. front: {
  43962. height: math.unit(5 + 11/12, "feet"),
  43963. name: "Front",
  43964. image: {
  43965. source: "./media/characters/lannah/front.svg",
  43966. extra: 1208/1113,
  43967. bottom: 97/1305
  43968. }
  43969. },
  43970. },
  43971. [
  43972. {
  43973. name: "Normal",
  43974. height: math.unit(5 + 11/12, "feet"),
  43975. default: true
  43976. },
  43977. ]
  43978. ))
  43979. characterMakers.push(() => makeCharacter(
  43980. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43981. {
  43982. front: {
  43983. height: math.unit(6 + 3/12, "feet"),
  43984. weight: math.unit(3.5, "tons"),
  43985. name: "Front",
  43986. image: {
  43987. source: "./media/characters/emberflame/front.svg",
  43988. extra: 1198/672,
  43989. bottom: 82/1280
  43990. }
  43991. },
  43992. side: {
  43993. height: math.unit(6 + 3/12, "feet"),
  43994. weight: math.unit(3.5, "tons"),
  43995. name: "Side",
  43996. image: {
  43997. source: "./media/characters/emberflame/side.svg",
  43998. extra: 938/527,
  43999. bottom: 56/994
  44000. }
  44001. },
  44002. },
  44003. [
  44004. {
  44005. name: "Normal",
  44006. height: math.unit(6 + 3/12, "feet"),
  44007. default: true
  44008. },
  44009. ]
  44010. ))
  44011. characterMakers.push(() => makeCharacter(
  44012. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44013. {
  44014. side: {
  44015. height: math.unit(17.5, "feet"),
  44016. weight: math.unit(35, "tons"),
  44017. name: "Side",
  44018. image: {
  44019. source: "./media/characters/sophie-ambrose/side.svg",
  44020. extra: 1573/1242,
  44021. bottom: 71/1644
  44022. }
  44023. },
  44024. maw: {
  44025. height: math.unit(7.4, "feet"),
  44026. name: "Maw",
  44027. image: {
  44028. source: "./media/characters/sophie-ambrose/maw.svg"
  44029. }
  44030. },
  44031. },
  44032. [
  44033. {
  44034. name: "Normal",
  44035. height: math.unit(17.5, "feet"),
  44036. default: true
  44037. },
  44038. ]
  44039. ))
  44040. characterMakers.push(() => makeCharacter(
  44041. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44042. {
  44043. front: {
  44044. height: math.unit(280, "feet"),
  44045. weight: math.unit(550, "tons"),
  44046. name: "Front",
  44047. image: {
  44048. source: "./media/characters/king-mugi/front.svg",
  44049. extra: 1102/947,
  44050. bottom: 104/1206
  44051. }
  44052. },
  44053. },
  44054. [
  44055. {
  44056. name: "King Mugi",
  44057. height: math.unit(280, "feet"),
  44058. default: true
  44059. },
  44060. ]
  44061. ))
  44062. characterMakers.push(() => makeCharacter(
  44063. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44064. {
  44065. front: {
  44066. height: math.unit(64, "meters"),
  44067. name: "Front",
  44068. image: {
  44069. source: "./media/characters/nova-fox/front.svg",
  44070. extra: 1310/1246,
  44071. bottom: 65/1375
  44072. }
  44073. },
  44074. },
  44075. [
  44076. {
  44077. name: "Macro",
  44078. height: math.unit(64, "meters"),
  44079. default: true
  44080. },
  44081. ]
  44082. ))
  44083. characterMakers.push(() => makeCharacter(
  44084. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44085. {
  44086. front: {
  44087. height: math.unit(6 + 3/12, "feet"),
  44088. weight: math.unit(170, "lb"),
  44089. name: "Front",
  44090. image: {
  44091. source: "./media/characters/sam-bat/front.svg",
  44092. extra: 1601/1411,
  44093. bottom: 125/1726
  44094. }
  44095. },
  44096. back: {
  44097. height: math.unit(6 + 3/12, "feet"),
  44098. weight: math.unit(170, "lb"),
  44099. name: "Back",
  44100. image: {
  44101. source: "./media/characters/sam-bat/back.svg",
  44102. extra: 1577/1405,
  44103. bottom: 58/1635
  44104. }
  44105. },
  44106. },
  44107. [
  44108. {
  44109. name: "Normal",
  44110. height: math.unit(6 + 3/12, "feet"),
  44111. default: true
  44112. },
  44113. ]
  44114. ))
  44115. characterMakers.push(() => makeCharacter(
  44116. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44117. {
  44118. front: {
  44119. height: math.unit(59, "feet"),
  44120. weight: math.unit(40000, "lb"),
  44121. name: "Front",
  44122. image: {
  44123. source: "./media/characters/inari/front.svg",
  44124. extra: 1884/1350,
  44125. bottom: 95/1979
  44126. }
  44127. },
  44128. },
  44129. [
  44130. {
  44131. name: "Gigantamax",
  44132. height: math.unit(59, "feet"),
  44133. default: true
  44134. },
  44135. ]
  44136. ))
  44137. characterMakers.push(() => makeCharacter(
  44138. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44139. {
  44140. front: {
  44141. height: math.unit(5 + 8/12, "feet"),
  44142. name: "Front",
  44143. image: {
  44144. source: "./media/characters/elizabeth/front.svg",
  44145. extra: 1395/1298,
  44146. bottom: 54/1449
  44147. }
  44148. },
  44149. mouth: {
  44150. height: math.unit(1.97, "feet"),
  44151. name: "Mouth",
  44152. image: {
  44153. source: "./media/characters/elizabeth/mouth.svg"
  44154. }
  44155. },
  44156. foot: {
  44157. height: math.unit(1.17, "feet"),
  44158. name: "Foot",
  44159. image: {
  44160. source: "./media/characters/elizabeth/foot.svg"
  44161. }
  44162. },
  44163. },
  44164. [
  44165. {
  44166. name: "Normal",
  44167. height: math.unit(5 + 8/12, "feet"),
  44168. default: true
  44169. },
  44170. {
  44171. name: "Minimacro",
  44172. height: math.unit(18, "feet")
  44173. },
  44174. {
  44175. name: "Macro",
  44176. height: math.unit(180, "feet")
  44177. },
  44178. ]
  44179. ))
  44180. characterMakers.push(() => makeCharacter(
  44181. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44182. {
  44183. front: {
  44184. height: math.unit(5 + 2/12, "feet"),
  44185. name: "Front",
  44186. image: {
  44187. source: "./media/characters/october-gossamer/front.svg",
  44188. extra: 505/454,
  44189. bottom: 7/512
  44190. }
  44191. },
  44192. back: {
  44193. height: math.unit(5 + 2/12, "feet"),
  44194. name: "Back",
  44195. image: {
  44196. source: "./media/characters/october-gossamer/back.svg",
  44197. extra: 501/454,
  44198. bottom: 11/512
  44199. }
  44200. },
  44201. },
  44202. [
  44203. {
  44204. name: "Normal",
  44205. height: math.unit(5 + 2/12, "feet"),
  44206. default: true
  44207. },
  44208. ]
  44209. ))
  44210. characterMakers.push(() => makeCharacter(
  44211. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44212. {
  44213. front: {
  44214. height: math.unit(5, "feet"),
  44215. name: "Front",
  44216. image: {
  44217. source: "./media/characters/epiglottis/front.svg",
  44218. extra: 923/849,
  44219. bottom: 17/940
  44220. }
  44221. },
  44222. },
  44223. [
  44224. {
  44225. name: "Original Size",
  44226. height: math.unit(10, "inches")
  44227. },
  44228. {
  44229. name: "Human Size",
  44230. height: math.unit(5, "feet"),
  44231. default: true
  44232. },
  44233. {
  44234. name: "Big",
  44235. height: math.unit(25, "feet")
  44236. },
  44237. {
  44238. name: "Bigger",
  44239. height: math.unit(50, "feet")
  44240. },
  44241. {
  44242. name: "oh lawd",
  44243. height: math.unit(75, "feet")
  44244. },
  44245. ]
  44246. ))
  44247. characterMakers.push(() => makeCharacter(
  44248. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44249. {
  44250. front: {
  44251. height: math.unit(2 + 4/12, "feet"),
  44252. weight: math.unit(60, "lb"),
  44253. name: "Front",
  44254. image: {
  44255. source: "./media/characters/lerm/front.svg",
  44256. extra: 796/790,
  44257. bottom: 79/875
  44258. }
  44259. },
  44260. },
  44261. [
  44262. {
  44263. name: "Normal",
  44264. height: math.unit(2 + 4/12, "feet"),
  44265. default: true
  44266. },
  44267. ]
  44268. ))
  44269. characterMakers.push(() => makeCharacter(
  44270. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44271. {
  44272. front: {
  44273. height: math.unit(5.5, "feet"),
  44274. weight: math.unit(130, "lb"),
  44275. name: "Front",
  44276. image: {
  44277. source: "./media/characters/xena-nebadon/front.svg",
  44278. extra: 1828/1730,
  44279. bottom: 79/1907
  44280. }
  44281. },
  44282. },
  44283. [
  44284. {
  44285. name: "Tiny Puppy",
  44286. height: math.unit(3, "inches")
  44287. },
  44288. {
  44289. name: "Normal",
  44290. height: math.unit(5.5, "feet"),
  44291. default: true
  44292. },
  44293. {
  44294. name: "Lotta Lady",
  44295. height: math.unit(12, "feet")
  44296. },
  44297. {
  44298. name: "Pretty Big",
  44299. height: math.unit(100, "feet")
  44300. },
  44301. {
  44302. name: "Big",
  44303. height: math.unit(500, "feet")
  44304. },
  44305. {
  44306. name: "Skyscraper Toys",
  44307. height: math.unit(2500, "feet")
  44308. },
  44309. {
  44310. name: "Plane Catcher",
  44311. height: math.unit(8, "miles")
  44312. },
  44313. {
  44314. name: "Planet Toys",
  44315. height: math.unit(15, "earths")
  44316. },
  44317. {
  44318. name: "Stardust",
  44319. height: math.unit(0.25, "galaxies")
  44320. },
  44321. {
  44322. name: "Snacks",
  44323. height: math.unit(70, "universes")
  44324. },
  44325. ]
  44326. ))
  44327. characterMakers.push(() => makeCharacter(
  44328. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44329. {
  44330. front: {
  44331. height: math.unit(1.6, "meters"),
  44332. weight: math.unit(60, "kg"),
  44333. name: "Front",
  44334. image: {
  44335. source: "./media/characters/bounty/front.svg",
  44336. extra: 1426/1308,
  44337. bottom: 15/1441
  44338. }
  44339. },
  44340. back: {
  44341. height: math.unit(1.6, "meters"),
  44342. weight: math.unit(60, "kg"),
  44343. name: "Back",
  44344. image: {
  44345. source: "./media/characters/bounty/back.svg",
  44346. extra: 1417/1307,
  44347. bottom: 8/1425
  44348. }
  44349. },
  44350. },
  44351. [
  44352. {
  44353. name: "Normal",
  44354. height: math.unit(1.6, "meters"),
  44355. default: true
  44356. },
  44357. {
  44358. name: "Macro",
  44359. height: math.unit(300, "meters")
  44360. },
  44361. ]
  44362. ))
  44363. characterMakers.push(() => makeCharacter(
  44364. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44365. {
  44366. front: {
  44367. height: math.unit(2 + 8/12, "feet"),
  44368. weight: math.unit(15, "lb"),
  44369. name: "Front",
  44370. image: {
  44371. source: "./media/characters/mochi/front.svg",
  44372. extra: 1022/852,
  44373. bottom: 435/1457
  44374. }
  44375. },
  44376. back: {
  44377. height: math.unit(2 + 8/12, "feet"),
  44378. weight: math.unit(15, "lb"),
  44379. name: "Back",
  44380. image: {
  44381. source: "./media/characters/mochi/back.svg",
  44382. extra: 1335/1119,
  44383. bottom: 39/1374
  44384. }
  44385. },
  44386. bird: {
  44387. height: math.unit(2 + 8/12, "feet"),
  44388. weight: math.unit(15, "lb"),
  44389. name: "Bird",
  44390. image: {
  44391. source: "./media/characters/mochi/bird.svg",
  44392. extra: 1251/1113,
  44393. bottom: 178/1429
  44394. }
  44395. },
  44396. kaiju: {
  44397. height: math.unit(154, "feet"),
  44398. weight: math.unit(1e7, "lb"),
  44399. name: "Kaiju",
  44400. image: {
  44401. source: "./media/characters/mochi/kaiju.svg",
  44402. extra: 460/324,
  44403. bottom: 40/500
  44404. }
  44405. },
  44406. head: {
  44407. height: math.unit(1.21, "feet"),
  44408. name: "Head",
  44409. image: {
  44410. source: "./media/characters/mochi/head.svg"
  44411. }
  44412. },
  44413. alternateTail: {
  44414. height: math.unit(2 + 8/12, "feet"),
  44415. weight: math.unit(45, "lb"),
  44416. name: "Alternate Tail",
  44417. image: {
  44418. source: "./media/characters/mochi/alternate-tail.svg",
  44419. extra: 139/76,
  44420. bottom: 45/184
  44421. }
  44422. },
  44423. },
  44424. [
  44425. {
  44426. name: "Micro",
  44427. height: math.unit(2, "inches")
  44428. },
  44429. {
  44430. name: "Normal",
  44431. height: math.unit(2 + 8/12, "feet"),
  44432. default: true
  44433. },
  44434. {
  44435. name: "Macro",
  44436. height: math.unit(106, "feet")
  44437. },
  44438. ]
  44439. ))
  44440. characterMakers.push(() => makeCharacter(
  44441. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44442. {
  44443. front: {
  44444. height: math.unit(5.67, "feet"),
  44445. weight: math.unit(135, "lb"),
  44446. name: "Front",
  44447. image: {
  44448. source: "./media/characters/sarel/front.svg",
  44449. extra: 865/788,
  44450. bottom: 97/962
  44451. }
  44452. },
  44453. back: {
  44454. height: math.unit(5.67, "feet"),
  44455. weight: math.unit(135, "lb"),
  44456. name: "Back",
  44457. image: {
  44458. source: "./media/characters/sarel/back.svg",
  44459. extra: 857/777,
  44460. bottom: 32/889
  44461. }
  44462. },
  44463. chozoan: {
  44464. height: math.unit(5.67, "feet"),
  44465. weight: math.unit(135, "lb"),
  44466. name: "Chozoan",
  44467. image: {
  44468. source: "./media/characters/sarel/chozoan.svg",
  44469. extra: 865/788,
  44470. bottom: 97/962
  44471. }
  44472. },
  44473. current: {
  44474. height: math.unit(5.67, "feet"),
  44475. weight: math.unit(135, "lb"),
  44476. name: "Current",
  44477. image: {
  44478. source: "./media/characters/sarel/current.svg",
  44479. extra: 865/788,
  44480. bottom: 97/962
  44481. }
  44482. },
  44483. head: {
  44484. height: math.unit(1.77, "feet"),
  44485. name: "Head",
  44486. image: {
  44487. source: "./media/characters/sarel/head.svg"
  44488. }
  44489. },
  44490. claws: {
  44491. height: math.unit(1.8, "feet"),
  44492. name: "Claws",
  44493. image: {
  44494. source: "./media/characters/sarel/claws.svg"
  44495. }
  44496. },
  44497. clawsAlt: {
  44498. height: math.unit(1.8, "feet"),
  44499. name: "Claws-alt",
  44500. image: {
  44501. source: "./media/characters/sarel/claws-alt.svg"
  44502. }
  44503. },
  44504. },
  44505. [
  44506. {
  44507. name: "Normal",
  44508. height: math.unit(5.67, "feet"),
  44509. default: true
  44510. },
  44511. ]
  44512. ))
  44513. characterMakers.push(() => makeCharacter(
  44514. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44515. {
  44516. front: {
  44517. height: math.unit(5500, "feet"),
  44518. name: "Front",
  44519. image: {
  44520. source: "./media/characters/alyonia/front.svg",
  44521. extra: 1200/1135,
  44522. bottom: 29/1229
  44523. }
  44524. },
  44525. back: {
  44526. height: math.unit(5500, "feet"),
  44527. name: "Back",
  44528. image: {
  44529. source: "./media/characters/alyonia/back.svg",
  44530. extra: 1205/1138,
  44531. bottom: 10/1215
  44532. }
  44533. },
  44534. },
  44535. [
  44536. {
  44537. name: "Small",
  44538. height: math.unit(10, "feet")
  44539. },
  44540. {
  44541. name: "Macro",
  44542. height: math.unit(500, "feet")
  44543. },
  44544. {
  44545. name: "Mega Macro",
  44546. height: math.unit(5500, "feet"),
  44547. default: true
  44548. },
  44549. {
  44550. name: "Mega Macro+",
  44551. height: math.unit(500000, "feet")
  44552. },
  44553. {
  44554. name: "Giga Macro",
  44555. height: math.unit(3000, "miles")
  44556. },
  44557. {
  44558. name: "Tera Macro",
  44559. height: math.unit(2.8e6, "miles")
  44560. },
  44561. {
  44562. name: "Galactic",
  44563. height: math.unit(120000, "lightyears")
  44564. },
  44565. ]
  44566. ))
  44567. characterMakers.push(() => makeCharacter(
  44568. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44569. {
  44570. werewolf: {
  44571. height: math.unit(8, "feet"),
  44572. weight: math.unit(425, "lb"),
  44573. name: "Werewolf",
  44574. image: {
  44575. source: "./media/characters/autumn/werewolf.svg",
  44576. extra: 2154/2031,
  44577. bottom: 160/2314
  44578. }
  44579. },
  44580. human: {
  44581. height: math.unit(5 + 8/12, "feet"),
  44582. weight: math.unit(150, "lb"),
  44583. name: "Human",
  44584. image: {
  44585. source: "./media/characters/autumn/human.svg",
  44586. extra: 1200/1149,
  44587. bottom: 30/1230
  44588. }
  44589. },
  44590. },
  44591. [
  44592. {
  44593. name: "Normal",
  44594. height: math.unit(8, "feet"),
  44595. default: true
  44596. },
  44597. ]
  44598. ))
  44599. characterMakers.push(() => makeCharacter(
  44600. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44601. {
  44602. front: {
  44603. height: math.unit(8 + 5/12, "feet"),
  44604. weight: math.unit(825, "lb"),
  44605. name: "Front",
  44606. image: {
  44607. source: "./media/characters/cobalt-charizard/front.svg",
  44608. extra: 1268/1155,
  44609. bottom: 122/1390
  44610. }
  44611. },
  44612. side: {
  44613. height: math.unit(8 + 5/12, "feet"),
  44614. weight: math.unit(825, "lb"),
  44615. name: "Side",
  44616. image: {
  44617. source: "./media/characters/cobalt-charizard/side.svg",
  44618. extra: 1348/1257,
  44619. bottom: 58/1406
  44620. }
  44621. },
  44622. gMax: {
  44623. height: math.unit(134 + 11/12, "feet"),
  44624. name: "G-Max",
  44625. image: {
  44626. source: "./media/characters/cobalt-charizard/g-max.svg",
  44627. extra: 1835/1541,
  44628. bottom: 151/1986
  44629. }
  44630. },
  44631. },
  44632. [
  44633. {
  44634. name: "Normal",
  44635. height: math.unit(8 + 5/12, "feet"),
  44636. default: true
  44637. },
  44638. ]
  44639. ))
  44640. characterMakers.push(() => makeCharacter(
  44641. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44642. {
  44643. front: {
  44644. height: math.unit(6 + 3/12, "feet"),
  44645. weight: math.unit(210, "lb"),
  44646. name: "Front",
  44647. image: {
  44648. source: "./media/characters/stella/front.svg",
  44649. extra: 3549/3335,
  44650. bottom: 51/3600
  44651. }
  44652. },
  44653. },
  44654. [
  44655. {
  44656. name: "Normal",
  44657. height: math.unit(6 + 3/12, "feet"),
  44658. default: true
  44659. },
  44660. ]
  44661. ))
  44662. characterMakers.push(() => makeCharacter(
  44663. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44664. {
  44665. front: {
  44666. height: math.unit(5, "feet"),
  44667. weight: math.unit(90, "lb"),
  44668. name: "Front",
  44669. image: {
  44670. source: "./media/characters/riley-bishop/front.svg",
  44671. extra: 1450/1428,
  44672. bottom: 152/1602
  44673. }
  44674. },
  44675. },
  44676. [
  44677. {
  44678. name: "Normal",
  44679. height: math.unit(5, "feet"),
  44680. default: true
  44681. },
  44682. ]
  44683. ))
  44684. characterMakers.push(() => makeCharacter(
  44685. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44686. {
  44687. side: {
  44688. height: math.unit(8 + 2/12, "feet"),
  44689. weight: math.unit(500, "kg"),
  44690. name: "Side",
  44691. image: {
  44692. source: "./media/characters/theo-arcanine/side.svg",
  44693. extra: 1342/1074,
  44694. bottom: 111/1453
  44695. }
  44696. },
  44697. },
  44698. [
  44699. {
  44700. name: "Normal",
  44701. height: math.unit(8 + 2/12, "feet"),
  44702. default: true
  44703. },
  44704. ]
  44705. ))
  44706. characterMakers.push(() => makeCharacter(
  44707. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44708. {
  44709. front: {
  44710. height: math.unit(4, "feet"),
  44711. name: "Front",
  44712. image: {
  44713. source: "./media/characters/kali/front.svg",
  44714. extra: 1921/1357,
  44715. bottom: 70/1991
  44716. }
  44717. },
  44718. },
  44719. [
  44720. {
  44721. name: "Normal",
  44722. height: math.unit(4, "feet"),
  44723. default: true
  44724. },
  44725. {
  44726. name: "Macro",
  44727. height: math.unit(32, "meters")
  44728. },
  44729. {
  44730. name: "Macro+",
  44731. height: math.unit(150, "meters")
  44732. },
  44733. {
  44734. name: "Megamacro",
  44735. height: math.unit(7500, "meters")
  44736. },
  44737. {
  44738. name: "Megamacro+",
  44739. height: math.unit(80, "kilometers")
  44740. },
  44741. ]
  44742. ))
  44743. characterMakers.push(() => makeCharacter(
  44744. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44745. {
  44746. side: {
  44747. height: math.unit(5 + 11/12, "feet"),
  44748. weight: math.unit(236, "lb"),
  44749. name: "Side",
  44750. image: {
  44751. source: "./media/characters/gapp/side.svg",
  44752. extra: 775/340,
  44753. bottom: 58/833
  44754. }
  44755. },
  44756. mouth: {
  44757. height: math.unit(2.98, "feet"),
  44758. name: "Mouth",
  44759. image: {
  44760. source: "./media/characters/gapp/mouth.svg"
  44761. }
  44762. },
  44763. },
  44764. [
  44765. {
  44766. name: "Normal",
  44767. height: math.unit(5 + 1/12, "feet"),
  44768. default: true
  44769. },
  44770. ]
  44771. ))
  44772. characterMakers.push(() => makeCharacter(
  44773. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44774. {
  44775. front: {
  44776. height: math.unit(6, "feet"),
  44777. name: "Front",
  44778. image: {
  44779. source: "./media/characters/persephone/front.svg",
  44780. extra: 1895/1717,
  44781. bottom: 96/1991
  44782. }
  44783. },
  44784. back: {
  44785. height: math.unit(6, "feet"),
  44786. name: "Back",
  44787. image: {
  44788. source: "./media/characters/persephone/back.svg",
  44789. extra: 1868/1679,
  44790. bottom: 26/1894
  44791. }
  44792. },
  44793. casual: {
  44794. height: math.unit(6, "feet"),
  44795. name: "Casual",
  44796. image: {
  44797. source: "./media/characters/persephone/casual.svg",
  44798. extra: 1713/1541,
  44799. bottom: 76/1789
  44800. }
  44801. },
  44802. },
  44803. [
  44804. {
  44805. name: "Human Size",
  44806. height: math.unit(6, "feet")
  44807. },
  44808. {
  44809. name: "Big Steppy",
  44810. height: math.unit(600, "meters"),
  44811. default: true
  44812. },
  44813. {
  44814. name: "Galaxy Brain",
  44815. height: math.unit(1, "zettameter")
  44816. },
  44817. ]
  44818. ))
  44819. characterMakers.push(() => makeCharacter(
  44820. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44821. {
  44822. front: {
  44823. height: math.unit(1.85, "meters"),
  44824. name: "Front",
  44825. image: {
  44826. source: "./media/characters/riley-foxthing/front.svg",
  44827. extra: 1495/1354,
  44828. bottom: 122/1617
  44829. }
  44830. },
  44831. frontAlt: {
  44832. height: math.unit(1.85, "meters"),
  44833. name: "Front (Alt)",
  44834. image: {
  44835. source: "./media/characters/riley-foxthing/front-alt.svg",
  44836. extra: 1572/1389,
  44837. bottom: 116/1688
  44838. }
  44839. },
  44840. },
  44841. [
  44842. {
  44843. name: "Normal Sized",
  44844. height: math.unit(1.85, "meters"),
  44845. default: true
  44846. },
  44847. {
  44848. name: "Quite Sizable",
  44849. height: math.unit(5, "meters")
  44850. },
  44851. {
  44852. name: "Rather Large",
  44853. height: math.unit(20, "meters")
  44854. },
  44855. {
  44856. name: "Macro",
  44857. height: math.unit(450, "meters")
  44858. },
  44859. {
  44860. name: "Giga",
  44861. height: math.unit(5, "km")
  44862. },
  44863. ]
  44864. ))
  44865. characterMakers.push(() => makeCharacter(
  44866. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44867. {
  44868. front: {
  44869. height: math.unit(6, "feet"),
  44870. weight: math.unit(200, "lb"),
  44871. name: "Front",
  44872. image: {
  44873. source: "./media/characters/blizzard/front.svg",
  44874. extra: 1136/990,
  44875. bottom: 136/1272
  44876. }
  44877. },
  44878. back: {
  44879. height: math.unit(6, "feet"),
  44880. weight: math.unit(200, "lb"),
  44881. name: "Back",
  44882. image: {
  44883. source: "./media/characters/blizzard/back.svg",
  44884. extra: 1175/1034,
  44885. bottom: 97/1272
  44886. }
  44887. },
  44888. sitting: {
  44889. height: math.unit(3.725, "feet"),
  44890. weight: math.unit(200, "lb"),
  44891. name: "Sitting",
  44892. image: {
  44893. source: "./media/characters/blizzard/sitting.svg",
  44894. extra: 581/485,
  44895. bottom: 90/671
  44896. }
  44897. },
  44898. frontWizard: {
  44899. height: math.unit(7.9, "feet"),
  44900. weight: math.unit(200, "lb"),
  44901. name: "Front (Wizard)",
  44902. image: {
  44903. source: "./media/characters/blizzard/front-wizard.svg"
  44904. }
  44905. },
  44906. backWizard: {
  44907. height: math.unit(7.9, "feet"),
  44908. weight: math.unit(200, "lb"),
  44909. name: "Back (Wizard)",
  44910. image: {
  44911. source: "./media/characters/blizzard/back-wizard.svg"
  44912. }
  44913. },
  44914. frontNsfw: {
  44915. height: math.unit(6, "feet"),
  44916. weight: math.unit(200, "lb"),
  44917. name: "Front (NSFW)",
  44918. image: {
  44919. source: "./media/characters/blizzard/front-nsfw.svg",
  44920. extra: 1136/990,
  44921. bottom: 136/1272
  44922. }
  44923. },
  44924. backNsfw: {
  44925. height: math.unit(6, "feet"),
  44926. weight: math.unit(200, "lb"),
  44927. name: "Back (NSFW)",
  44928. image: {
  44929. source: "./media/characters/blizzard/back-nsfw.svg",
  44930. extra: 1175/1034,
  44931. bottom: 97/1272
  44932. }
  44933. },
  44934. sittingNsfw: {
  44935. height: math.unit(3.725, "feet"),
  44936. weight: math.unit(200, "lb"),
  44937. name: "Sitting (NSFW)",
  44938. image: {
  44939. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44940. extra: 581/485,
  44941. bottom: 90/671
  44942. }
  44943. },
  44944. wizardFrontNsfw: {
  44945. height: math.unit(7.9, "feet"),
  44946. weight: math.unit(200, "lb"),
  44947. name: "Wizard (Front, NSFW)",
  44948. image: {
  44949. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44950. }
  44951. },
  44952. },
  44953. [
  44954. {
  44955. name: "Normal",
  44956. height: math.unit(6, "feet"),
  44957. default: true
  44958. },
  44959. ]
  44960. ))
  44961. characterMakers.push(() => makeCharacter(
  44962. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44963. {
  44964. front: {
  44965. height: math.unit(5 + 2/12, "feet"),
  44966. name: "Front",
  44967. image: {
  44968. source: "./media/characters/lumi/front.svg",
  44969. extra: 1328/1268,
  44970. bottom: 103/1431
  44971. }
  44972. },
  44973. back: {
  44974. height: math.unit(5 + 2/12, "feet"),
  44975. name: "Back",
  44976. image: {
  44977. source: "./media/characters/lumi/back.svg",
  44978. extra: 1381/1327,
  44979. bottom: 43/1424
  44980. }
  44981. },
  44982. },
  44983. [
  44984. {
  44985. name: "Normal",
  44986. height: math.unit(5 + 2/12, "feet"),
  44987. default: true
  44988. },
  44989. ]
  44990. ))
  44991. characterMakers.push(() => makeCharacter(
  44992. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44993. {
  44994. front: {
  44995. height: math.unit(5 + 9/12, "feet"),
  44996. name: "Front",
  44997. image: {
  44998. source: "./media/characters/aliya-cotton/front.svg",
  44999. extra: 577/564,
  45000. bottom: 29/606
  45001. }
  45002. },
  45003. },
  45004. [
  45005. {
  45006. name: "Normal",
  45007. height: math.unit(5 + 9/12, "feet"),
  45008. default: true
  45009. },
  45010. ]
  45011. ))
  45012. characterMakers.push(() => makeCharacter(
  45013. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45014. {
  45015. front: {
  45016. height: math.unit(2.7, "meters"),
  45017. weight: math.unit(25000, "lb"),
  45018. name: "Front",
  45019. image: {
  45020. source: "./media/characters/noah-luxray/front.svg",
  45021. extra: 1644/825,
  45022. bottom: 339/1983
  45023. }
  45024. },
  45025. side: {
  45026. height: math.unit(2.97, "meters"),
  45027. weight: math.unit(25000, "lb"),
  45028. name: "Side",
  45029. image: {
  45030. source: "./media/characters/noah-luxray/side.svg",
  45031. extra: 1319/650,
  45032. bottom: 163/1482
  45033. }
  45034. },
  45035. dick: {
  45036. height: math.unit(7.4, "feet"),
  45037. weight: math.unit(2500, "lb"),
  45038. name: "Dick",
  45039. image: {
  45040. source: "./media/characters/noah-luxray/dick.svg"
  45041. }
  45042. },
  45043. dickAlt: {
  45044. height: math.unit(10.83, "feet"),
  45045. weight: math.unit(2500, "lb"),
  45046. name: "Dick-alt",
  45047. image: {
  45048. source: "./media/characters/noah-luxray/dick-alt.svg"
  45049. }
  45050. },
  45051. },
  45052. [
  45053. {
  45054. name: "BIG",
  45055. height: math.unit(2.7, "meters"),
  45056. default: true
  45057. },
  45058. ]
  45059. ))
  45060. characterMakers.push(() => makeCharacter(
  45061. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45062. {
  45063. standing: {
  45064. height: math.unit(183, "cm"),
  45065. weight: math.unit(68, "kg"),
  45066. name: "Standing",
  45067. image: {
  45068. source: "./media/characters/arion/standing.svg",
  45069. extra: 1869/1807,
  45070. bottom: 93/1962
  45071. }
  45072. },
  45073. reclining: {
  45074. height: math.unit(70.5, "cm"),
  45075. weight: math.unit(68, "lb"),
  45076. name: "Reclining",
  45077. image: {
  45078. source: "./media/characters/arion/reclining.svg",
  45079. extra: 937/870,
  45080. bottom: 63/1000
  45081. }
  45082. },
  45083. },
  45084. [
  45085. {
  45086. name: "Colossus Size, Low",
  45087. height: math.unit(33, "meters"),
  45088. default: true
  45089. },
  45090. {
  45091. name: "Colossus Size, Mid",
  45092. height: math.unit(52, "meters")
  45093. },
  45094. {
  45095. name: "Colossus Size, High",
  45096. height: math.unit(60, "meters")
  45097. },
  45098. {
  45099. name: "Titan Size, Low",
  45100. height: math.unit(91, "meters"),
  45101. },
  45102. {
  45103. name: "Titan Size, Mid",
  45104. height: math.unit(122, "meters")
  45105. },
  45106. {
  45107. name: "Titan Size, High",
  45108. height: math.unit(162, "meters")
  45109. },
  45110. ]
  45111. ))
  45112. characterMakers.push(() => makeCharacter(
  45113. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45114. {
  45115. front: {
  45116. height: math.unit(53, "meters"),
  45117. name: "Front",
  45118. image: {
  45119. source: "./media/characters/stellar-marbey/front.svg",
  45120. extra: 1913/1805,
  45121. bottom: 92/2005
  45122. }
  45123. },
  45124. back: {
  45125. height: math.unit(53, "meters"),
  45126. name: "Back",
  45127. image: {
  45128. source: "./media/characters/stellar-marbey/back.svg",
  45129. extra: 1960/1851,
  45130. bottom: 28/1988
  45131. }
  45132. },
  45133. mouth: {
  45134. height: math.unit(3.5, "meters"),
  45135. name: "Mouth",
  45136. image: {
  45137. source: "./media/characters/stellar-marbey/mouth.svg"
  45138. }
  45139. },
  45140. },
  45141. [
  45142. {
  45143. name: "Macro",
  45144. height: math.unit(53, "meters"),
  45145. default: true
  45146. },
  45147. ]
  45148. ))
  45149. characterMakers.push(() => makeCharacter(
  45150. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45151. {
  45152. front: {
  45153. height: math.unit(8 + 1/12, "feet"),
  45154. weight: math.unit(233, "lb"),
  45155. name: "Front",
  45156. image: {
  45157. source: "./media/characters/matsu/front.svg",
  45158. extra: 832/772,
  45159. bottom: 40/872
  45160. }
  45161. },
  45162. back: {
  45163. height: math.unit(8 + 1/12, "feet"),
  45164. weight: math.unit(233, "lb"),
  45165. name: "Back",
  45166. image: {
  45167. source: "./media/characters/matsu/back.svg",
  45168. extra: 839/780,
  45169. bottom: 47/886
  45170. }
  45171. },
  45172. },
  45173. [
  45174. {
  45175. name: "Normal",
  45176. height: math.unit(8 + 1/12, "feet"),
  45177. default: true
  45178. },
  45179. ]
  45180. ))
  45181. characterMakers.push(() => makeCharacter(
  45182. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45183. {
  45184. front: {
  45185. height: math.unit(4, "feet"),
  45186. weight: math.unit(148, "lb"),
  45187. name: "Front",
  45188. image: {
  45189. source: "./media/characters/thiz/front.svg",
  45190. extra: 1913/1748,
  45191. bottom: 62/1975
  45192. }
  45193. },
  45194. },
  45195. [
  45196. {
  45197. name: "Normal",
  45198. height: math.unit(4, "feet"),
  45199. default: true
  45200. },
  45201. ]
  45202. ))
  45203. characterMakers.push(() => makeCharacter(
  45204. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45205. {
  45206. front: {
  45207. height: math.unit(7 + 6/12, "feet"),
  45208. weight: math.unit(267, "lb"),
  45209. name: "Front",
  45210. image: {
  45211. source: "./media/characters/marcel/front.svg",
  45212. extra: 1221/1096,
  45213. bottom: 76/1297
  45214. }
  45215. },
  45216. },
  45217. [
  45218. {
  45219. name: "Normal",
  45220. height: math.unit(7 + 6/12, "feet"),
  45221. default: true
  45222. },
  45223. ]
  45224. ))
  45225. characterMakers.push(() => makeCharacter(
  45226. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45227. {
  45228. side: {
  45229. height: math.unit(42, "meters"),
  45230. name: "Side",
  45231. image: {
  45232. source: "./media/characters/flake/side.svg",
  45233. extra: 1525/1306,
  45234. bottom: 209/1734
  45235. }
  45236. },
  45237. },
  45238. [
  45239. {
  45240. name: "Normal",
  45241. height: math.unit(42, "meters"),
  45242. default: true
  45243. },
  45244. ]
  45245. ))
  45246. characterMakers.push(() => makeCharacter(
  45247. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45248. {
  45249. dressed: {
  45250. height: math.unit(6 + 4/12, "feet"),
  45251. weight: math.unit(520, "lb"),
  45252. name: "Dressed",
  45253. image: {
  45254. source: "./media/characters/someonne/dressed.svg",
  45255. extra: 1020/1010,
  45256. bottom: 178/1198
  45257. }
  45258. },
  45259. undressed: {
  45260. height: math.unit(6 + 4/12, "feet"),
  45261. weight: math.unit(520, "lb"),
  45262. name: "Undressed",
  45263. image: {
  45264. source: "./media/characters/someonne/undressed.svg",
  45265. extra: 1019/1014,
  45266. bottom: 169/1188
  45267. }
  45268. },
  45269. },
  45270. [
  45271. {
  45272. name: "Normal",
  45273. height: math.unit(6 + 4/12, "feet"),
  45274. default: true
  45275. },
  45276. ]
  45277. ))
  45278. characterMakers.push(() => makeCharacter(
  45279. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45280. {
  45281. front: {
  45282. height: math.unit(3, "feet"),
  45283. weight: math.unit(30, "lb"),
  45284. name: "Front",
  45285. image: {
  45286. source: "./media/characters/till/front.svg",
  45287. extra: 892/823,
  45288. bottom: 55/947
  45289. }
  45290. },
  45291. },
  45292. [
  45293. {
  45294. name: "Normal",
  45295. height: math.unit(3, "feet"),
  45296. default: true
  45297. },
  45298. ]
  45299. ))
  45300. characterMakers.push(() => makeCharacter(
  45301. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45302. {
  45303. front: {
  45304. height: math.unit(9 + 8/12, "feet"),
  45305. weight: math.unit(800, "lb"),
  45306. name: "Front",
  45307. image: {
  45308. source: "./media/characters/sydney-heki/front.svg",
  45309. extra: 1360/1300,
  45310. bottom: 22/1382
  45311. }
  45312. },
  45313. back: {
  45314. height: math.unit(9 + 8/12, "feet"),
  45315. weight: math.unit(800, "lb"),
  45316. name: "Back",
  45317. image: {
  45318. source: "./media/characters/sydney-heki/back.svg",
  45319. extra: 1356/1293,
  45320. bottom: 12/1368
  45321. }
  45322. },
  45323. frontDressed: {
  45324. height: math.unit(9 + 8/12, "feet"),
  45325. weight: math.unit(800, "lb"),
  45326. name: "Front-dressed",
  45327. image: {
  45328. source: "./media/characters/sydney-heki/front-dressed.svg",
  45329. extra: 1360/1300,
  45330. bottom: 22/1382
  45331. }
  45332. },
  45333. },
  45334. [
  45335. {
  45336. name: "Normal",
  45337. height: math.unit(9 + 8/12, "feet"),
  45338. default: true
  45339. },
  45340. {
  45341. name: "Macro",
  45342. height: math.unit(500, "feet")
  45343. },
  45344. {
  45345. name: "Megamacro",
  45346. height: math.unit(3.6, "miles")
  45347. },
  45348. ]
  45349. ))
  45350. characterMakers.push(() => makeCharacter(
  45351. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45352. {
  45353. front: {
  45354. height: math.unit(200, "cm"),
  45355. weight: math.unit(250, "lb"),
  45356. name: "Front",
  45357. image: {
  45358. source: "./media/characters/fowler-karlsson/front.svg",
  45359. extra: 897/845,
  45360. bottom: 123/1020
  45361. }
  45362. },
  45363. back: {
  45364. height: math.unit(200, "cm"),
  45365. weight: math.unit(250, "lb"),
  45366. name: "Back",
  45367. image: {
  45368. source: "./media/characters/fowler-karlsson/back.svg",
  45369. extra: 999/944,
  45370. bottom: 26/1025
  45371. }
  45372. },
  45373. dick: {
  45374. height: math.unit(1.92, "feet"),
  45375. weight: math.unit(150, "lb"),
  45376. name: "Dick",
  45377. image: {
  45378. source: "./media/characters/fowler-karlsson/dick.svg"
  45379. }
  45380. },
  45381. },
  45382. [
  45383. {
  45384. name: "Normal",
  45385. height: math.unit(200, "cm"),
  45386. default: true
  45387. },
  45388. {
  45389. name: "Smaller Macro",
  45390. height: math.unit(90, "m")
  45391. },
  45392. {
  45393. name: "Macro",
  45394. height: math.unit(150, "m")
  45395. },
  45396. {
  45397. name: "Bigger Macro",
  45398. height: math.unit(300, "m")
  45399. },
  45400. ]
  45401. ))
  45402. characterMakers.push(() => makeCharacter(
  45403. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45404. {
  45405. side: {
  45406. height: math.unit(8 + 2/12, "feet"),
  45407. weight: math.unit(1, "tonne"),
  45408. name: "Side",
  45409. image: {
  45410. source: "./media/characters/rylide/side.svg",
  45411. extra: 1318/1034,
  45412. bottom: 106/1424
  45413. }
  45414. },
  45415. sitting: {
  45416. height: math.unit(303, "cm"),
  45417. weight: math.unit(1, "tonne"),
  45418. name: "Sitting",
  45419. image: {
  45420. source: "./media/characters/rylide/sitting.svg",
  45421. extra: 1303/1103,
  45422. bottom: 36/1339
  45423. }
  45424. },
  45425. },
  45426. [
  45427. {
  45428. name: "Normal",
  45429. height: math.unit(8 + 2/12, "feet"),
  45430. default: true
  45431. },
  45432. ]
  45433. ))
  45434. characterMakers.push(() => makeCharacter(
  45435. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45436. {
  45437. front: {
  45438. height: math.unit(5 + 10/12, "feet"),
  45439. weight: math.unit(160, "lb"),
  45440. name: "Front",
  45441. image: {
  45442. source: "./media/characters/pudask/front.svg",
  45443. extra: 1616/1590,
  45444. bottom: 161/1777
  45445. }
  45446. },
  45447. },
  45448. [
  45449. {
  45450. name: "Ferret Height",
  45451. height: math.unit(2 + 5/12, "feet")
  45452. },
  45453. {
  45454. name: "Canon Height",
  45455. height: math.unit(5 + 10/12, "feet"),
  45456. default: true
  45457. },
  45458. ]
  45459. ))
  45460. characterMakers.push(() => makeCharacter(
  45461. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45462. {
  45463. front: {
  45464. height: math.unit(3 + 6/12, "feet"),
  45465. weight: math.unit(60, "lb"),
  45466. name: "Front",
  45467. image: {
  45468. source: "./media/characters/ramita/front.svg",
  45469. extra: 1402/1232,
  45470. bottom: 62/1464
  45471. }
  45472. },
  45473. dressed: {
  45474. height: math.unit(3 + 6/12, "feet"),
  45475. weight: math.unit(60, "lb"),
  45476. name: "Dressed",
  45477. image: {
  45478. source: "./media/characters/ramita/dressed.svg",
  45479. extra: 1534/1249,
  45480. bottom: 50/1584
  45481. }
  45482. },
  45483. },
  45484. [
  45485. {
  45486. name: "Normal",
  45487. height: math.unit(3 + 6/12, "feet"),
  45488. default: true
  45489. },
  45490. ]
  45491. ))
  45492. characterMakers.push(() => makeCharacter(
  45493. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45494. {
  45495. front: {
  45496. height: math.unit(8, "feet"),
  45497. name: "Front",
  45498. image: {
  45499. source: "./media/characters/ark/front.svg",
  45500. extra: 772/693,
  45501. bottom: 45/817
  45502. }
  45503. },
  45504. },
  45505. [
  45506. {
  45507. name: "Normal",
  45508. height: math.unit(8, "feet"),
  45509. default: true
  45510. },
  45511. ]
  45512. ))
  45513. characterMakers.push(() => makeCharacter(
  45514. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45515. {
  45516. front: {
  45517. height: math.unit(6, "feet"),
  45518. weight: math.unit(250, "lb"),
  45519. volume: math.unit(5/8, "gallons"),
  45520. name: "Front",
  45521. image: {
  45522. source: "./media/characters/ludwig-horn/front.svg",
  45523. extra: 1782/1635,
  45524. bottom: 96/1878
  45525. }
  45526. },
  45527. back: {
  45528. height: math.unit(6, "feet"),
  45529. weight: math.unit(250, "lb"),
  45530. volume: math.unit(5/8, "gallons"),
  45531. name: "Back",
  45532. image: {
  45533. source: "./media/characters/ludwig-horn/back.svg",
  45534. extra: 1874/1729,
  45535. bottom: 27/1901
  45536. }
  45537. },
  45538. dick: {
  45539. height: math.unit(1.05, "feet"),
  45540. weight: math.unit(15, "lb"),
  45541. volume: math.unit(5/8, "gallons"),
  45542. name: "Dick",
  45543. image: {
  45544. source: "./media/characters/ludwig-horn/dick.svg"
  45545. }
  45546. },
  45547. },
  45548. [
  45549. {
  45550. name: "Small",
  45551. height: math.unit(6, "feet")
  45552. },
  45553. {
  45554. name: "Typical",
  45555. height: math.unit(12, "feet"),
  45556. default: true
  45557. },
  45558. {
  45559. name: "Building",
  45560. height: math.unit(80, "feet")
  45561. },
  45562. {
  45563. name: "Town",
  45564. height: math.unit(800, "feet")
  45565. },
  45566. {
  45567. name: "Kingdom",
  45568. height: math.unit(80000, "feet")
  45569. },
  45570. {
  45571. name: "Planet",
  45572. height: math.unit(8000000, "feet")
  45573. },
  45574. {
  45575. name: "Universe",
  45576. height: math.unit(8000000000, "feet")
  45577. },
  45578. {
  45579. name: "Transcended",
  45580. height: math.unit(8e27, "feet")
  45581. },
  45582. ]
  45583. ))
  45584. characterMakers.push(() => makeCharacter(
  45585. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45586. {
  45587. front: {
  45588. height: math.unit(5, "feet"),
  45589. weight: math.unit(50, "kg"),
  45590. name: "Front",
  45591. image: {
  45592. source: "./media/characters/biot-avery/front.svg",
  45593. extra: 1295/1232,
  45594. bottom: 86/1381
  45595. }
  45596. },
  45597. },
  45598. [
  45599. {
  45600. name: "Normal",
  45601. height: math.unit(5, "feet"),
  45602. default: true
  45603. },
  45604. ]
  45605. ))
  45606. characterMakers.push(() => makeCharacter(
  45607. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45608. {
  45609. front: {
  45610. height: math.unit(6, "feet"),
  45611. name: "Front",
  45612. image: {
  45613. source: "./media/characters/kitsune-kiro/front.svg",
  45614. extra: 1270/1158,
  45615. bottom: 42/1312
  45616. }
  45617. },
  45618. frontAlt: {
  45619. height: math.unit(6, "feet"),
  45620. name: "Front-alt",
  45621. image: {
  45622. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45623. extra: 1130/1081,
  45624. bottom: 36/1166
  45625. }
  45626. },
  45627. },
  45628. [
  45629. {
  45630. name: "Smol",
  45631. height: math.unit(3, "feet")
  45632. },
  45633. {
  45634. name: "Normal",
  45635. height: math.unit(6, "feet"),
  45636. default: true
  45637. },
  45638. ]
  45639. ))
  45640. characterMakers.push(() => makeCharacter(
  45641. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45642. {
  45643. front: {
  45644. height: math.unit(6, "feet"),
  45645. weight: math.unit(125, "lb"),
  45646. name: "Front",
  45647. image: {
  45648. source: "./media/characters/jack-thatcher/front.svg",
  45649. extra: 1474/1370,
  45650. bottom: 26/1500
  45651. }
  45652. },
  45653. back: {
  45654. height: math.unit(6, "feet"),
  45655. weight: math.unit(125, "lb"),
  45656. name: "Back",
  45657. image: {
  45658. source: "./media/characters/jack-thatcher/back.svg",
  45659. extra: 1489/1384,
  45660. bottom: 18/1507
  45661. }
  45662. },
  45663. },
  45664. [
  45665. {
  45666. name: "Normal",
  45667. height: math.unit(6, "feet"),
  45668. default: true
  45669. },
  45670. {
  45671. name: "Macro",
  45672. height: math.unit(75, "feet")
  45673. },
  45674. {
  45675. name: "Macro-er",
  45676. height: math.unit(250, "feet")
  45677. },
  45678. ]
  45679. ))
  45680. characterMakers.push(() => makeCharacter(
  45681. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45682. {
  45683. front: {
  45684. height: math.unit(7, "feet"),
  45685. weight: math.unit(110, "kg"),
  45686. name: "Front",
  45687. image: {
  45688. source: "./media/characters/max-hyper/front.svg",
  45689. extra: 1969/1881,
  45690. bottom: 49/2018
  45691. }
  45692. },
  45693. },
  45694. [
  45695. {
  45696. name: "Normal",
  45697. height: math.unit(7, "feet"),
  45698. default: true
  45699. },
  45700. ]
  45701. ))
  45702. characterMakers.push(() => makeCharacter(
  45703. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45704. {
  45705. front: {
  45706. height: math.unit(5 + 5/12, "feet"),
  45707. weight: math.unit(160, "lb"),
  45708. name: "Front",
  45709. image: {
  45710. source: "./media/characters/spook/front.svg",
  45711. extra: 794/791,
  45712. bottom: 54/848
  45713. }
  45714. },
  45715. back: {
  45716. height: math.unit(5 + 5/12, "feet"),
  45717. weight: math.unit(160, "lb"),
  45718. name: "Back",
  45719. image: {
  45720. source: "./media/characters/spook/back.svg",
  45721. extra: 812/798,
  45722. bottom: 32/844
  45723. }
  45724. },
  45725. },
  45726. [
  45727. {
  45728. name: "Normal",
  45729. height: math.unit(5 + 5/12, "feet"),
  45730. default: true
  45731. },
  45732. ]
  45733. ))
  45734. characterMakers.push(() => makeCharacter(
  45735. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45736. {
  45737. front: {
  45738. height: math.unit(18, "feet"),
  45739. name: "Front",
  45740. image: {
  45741. source: "./media/characters/xeaduulix/front.svg",
  45742. extra: 1380/1166,
  45743. bottom: 110/1490
  45744. }
  45745. },
  45746. back: {
  45747. height: math.unit(18, "feet"),
  45748. name: "Back",
  45749. image: {
  45750. source: "./media/characters/xeaduulix/back.svg",
  45751. extra: 1592/1170,
  45752. bottom: 128/1720
  45753. }
  45754. },
  45755. frontNsfw: {
  45756. height: math.unit(18, "feet"),
  45757. name: "Front (NSFW)",
  45758. image: {
  45759. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45760. extra: 1380/1166,
  45761. bottom: 110/1490
  45762. }
  45763. },
  45764. backNsfw: {
  45765. height: math.unit(18, "feet"),
  45766. name: "Back (NSFW)",
  45767. image: {
  45768. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45769. extra: 1592/1170,
  45770. bottom: 128/1720
  45771. }
  45772. },
  45773. },
  45774. [
  45775. {
  45776. name: "Normal",
  45777. height: math.unit(18, "feet"),
  45778. default: true
  45779. },
  45780. ]
  45781. ))
  45782. characterMakers.push(() => makeCharacter(
  45783. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45784. {
  45785. spreadWings: {
  45786. height: math.unit(20, "feet"),
  45787. name: "Spread Wings",
  45788. image: {
  45789. source: "./media/characters/fledge/spread-wings.svg",
  45790. extra: 693/635,
  45791. bottom: 26/719
  45792. }
  45793. },
  45794. front: {
  45795. height: math.unit(20, "feet"),
  45796. name: "Front",
  45797. image: {
  45798. source: "./media/characters/fledge/front.svg",
  45799. extra: 684/637,
  45800. bottom: 18/702
  45801. }
  45802. },
  45803. frontAlt: {
  45804. height: math.unit(20, "feet"),
  45805. name: "Front (Alt)",
  45806. image: {
  45807. source: "./media/characters/fledge/front-alt.svg",
  45808. extra: 708/664,
  45809. bottom: 13/721
  45810. }
  45811. },
  45812. back: {
  45813. height: math.unit(20, "feet"),
  45814. name: "Back",
  45815. image: {
  45816. source: "./media/characters/fledge/back.svg",
  45817. extra: 718/634,
  45818. bottom: 22/740
  45819. }
  45820. },
  45821. head: {
  45822. height: math.unit(5.55, "feet"),
  45823. name: "Head",
  45824. image: {
  45825. source: "./media/characters/fledge/head.svg"
  45826. }
  45827. },
  45828. headAlt: {
  45829. height: math.unit(5.1, "feet"),
  45830. name: "Head (Alt)",
  45831. image: {
  45832. source: "./media/characters/fledge/head-alt.svg"
  45833. }
  45834. },
  45835. },
  45836. [
  45837. {
  45838. name: "Small",
  45839. height: math.unit(6 + 2/12, "feet")
  45840. },
  45841. {
  45842. name: "Big",
  45843. height: math.unit(20, "feet"),
  45844. default: true
  45845. },
  45846. {
  45847. name: "Giant",
  45848. height: math.unit(100, "feet")
  45849. },
  45850. {
  45851. name: "Macro",
  45852. height: math.unit(200, "feet")
  45853. },
  45854. ]
  45855. ))
  45856. characterMakers.push(() => makeCharacter(
  45857. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45858. {
  45859. front: {
  45860. height: math.unit(1, "meter"),
  45861. name: "Front",
  45862. image: {
  45863. source: "./media/characters/atlas-morenai/front.svg",
  45864. extra: 1275/1043,
  45865. bottom: 19/1294
  45866. }
  45867. },
  45868. back: {
  45869. height: math.unit(1, "meter"),
  45870. name: "Back",
  45871. image: {
  45872. source: "./media/characters/atlas-morenai/back.svg",
  45873. extra: 1141/1001,
  45874. bottom: 25/1166
  45875. }
  45876. },
  45877. },
  45878. [
  45879. {
  45880. name: "Normal",
  45881. height: math.unit(1, "meter"),
  45882. default: true
  45883. },
  45884. {
  45885. name: "Magic-Infused",
  45886. height: math.unit(5, "meters")
  45887. },
  45888. ]
  45889. ))
  45890. characterMakers.push(() => makeCharacter(
  45891. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45892. {
  45893. front: {
  45894. height: math.unit(5, "meters"),
  45895. name: "Front",
  45896. image: {
  45897. source: "./media/characters/cintia/front.svg",
  45898. extra: 1312/1228,
  45899. bottom: 38/1350
  45900. }
  45901. },
  45902. back: {
  45903. height: math.unit(5, "meters"),
  45904. name: "Back",
  45905. image: {
  45906. source: "./media/characters/cintia/back.svg",
  45907. extra: 1260/1166,
  45908. bottom: 98/1358
  45909. }
  45910. },
  45911. frontDick: {
  45912. height: math.unit(5, "meters"),
  45913. name: "Front (Dick)",
  45914. image: {
  45915. source: "./media/characters/cintia/front-dick.svg",
  45916. extra: 1312/1228,
  45917. bottom: 38/1350
  45918. }
  45919. },
  45920. backDick: {
  45921. height: math.unit(5, "meters"),
  45922. name: "Back (Dick)",
  45923. image: {
  45924. source: "./media/characters/cintia/back-dick.svg",
  45925. extra: 1260/1166,
  45926. bottom: 98/1358
  45927. }
  45928. },
  45929. bust: {
  45930. height: math.unit(1.97, "meters"),
  45931. name: "Bust",
  45932. image: {
  45933. source: "./media/characters/cintia/bust.svg",
  45934. extra: 617/565,
  45935. bottom: 0/617
  45936. }
  45937. },
  45938. },
  45939. [
  45940. {
  45941. name: "Normal",
  45942. height: math.unit(5, "meters"),
  45943. default: true
  45944. },
  45945. ]
  45946. ))
  45947. characterMakers.push(() => makeCharacter(
  45948. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45949. {
  45950. side: {
  45951. height: math.unit(100, "feet"),
  45952. name: "Side",
  45953. image: {
  45954. source: "./media/characters/denora/side.svg",
  45955. extra: 875/803,
  45956. bottom: 9/884
  45957. }
  45958. },
  45959. },
  45960. [
  45961. {
  45962. name: "Standard",
  45963. height: math.unit(100, "feet"),
  45964. default: true
  45965. },
  45966. {
  45967. name: "Grand",
  45968. height: math.unit(1000, "feet")
  45969. },
  45970. {
  45971. name: "Conquering",
  45972. height: math.unit(10000, "feet")
  45973. },
  45974. ]
  45975. ))
  45976. characterMakers.push(() => makeCharacter(
  45977. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45978. {
  45979. dressed: {
  45980. height: math.unit(8 + 5/12, "feet"),
  45981. weight: math.unit(700, "lb"),
  45982. name: "Dressed",
  45983. image: {
  45984. source: "./media/characters/kiva/dressed.svg",
  45985. extra: 1102/1055,
  45986. bottom: 60/1162
  45987. }
  45988. },
  45989. nude: {
  45990. height: math.unit(8 + 5/12, "feet"),
  45991. weight: math.unit(700, "lb"),
  45992. name: "Nude",
  45993. image: {
  45994. source: "./media/characters/kiva/nude.svg",
  45995. extra: 1102/1055,
  45996. bottom: 60/1162
  45997. }
  45998. },
  45999. },
  46000. [
  46001. {
  46002. name: "Base Height",
  46003. height: math.unit(8 + 5/12, "feet"),
  46004. default: true
  46005. },
  46006. {
  46007. name: "Macro",
  46008. height: math.unit(100, "feet")
  46009. },
  46010. {
  46011. name: "Max",
  46012. height: math.unit(3280, "feet")
  46013. },
  46014. ]
  46015. ))
  46016. characterMakers.push(() => makeCharacter(
  46017. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46018. {
  46019. front: {
  46020. height: math.unit(6 + 8/12, "feet"),
  46021. weight: math.unit(250, "lb"),
  46022. name: "Front",
  46023. image: {
  46024. source: "./media/characters/ztragon/front.svg",
  46025. extra: 1825/1684,
  46026. bottom: 98/1923
  46027. }
  46028. },
  46029. },
  46030. [
  46031. {
  46032. name: "Normal",
  46033. height: math.unit(6 + 8/12, "feet"),
  46034. default: true
  46035. },
  46036. {
  46037. name: "Macro",
  46038. height: math.unit(80, "feet")
  46039. },
  46040. ]
  46041. ))
  46042. characterMakers.push(() => makeCharacter(
  46043. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46044. {
  46045. front: {
  46046. height: math.unit(10.4, "feet"),
  46047. weight: math.unit(2, "tons"),
  46048. name: "Front",
  46049. image: {
  46050. source: "./media/characters/yesenia/front.svg",
  46051. extra: 1479/1474,
  46052. bottom: 233/1712
  46053. }
  46054. },
  46055. },
  46056. [
  46057. {
  46058. name: "Normal",
  46059. height: math.unit(10.4, "feet"),
  46060. default: true
  46061. },
  46062. ]
  46063. ))
  46064. characterMakers.push(() => makeCharacter(
  46065. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46066. {
  46067. normal: {
  46068. height: math.unit(6 + 1/12, "feet"),
  46069. weight: math.unit(180, "lb"),
  46070. name: "Normal",
  46071. image: {
  46072. source: "./media/characters/leanne-lycheborne/normal.svg",
  46073. extra: 1748/1660,
  46074. bottom: 98/1846
  46075. }
  46076. },
  46077. were: {
  46078. height: math.unit(12, "feet"),
  46079. weight: math.unit(1600, "lb"),
  46080. name: "Were",
  46081. image: {
  46082. source: "./media/characters/leanne-lycheborne/were.svg",
  46083. extra: 1485/1432,
  46084. bottom: 66/1551
  46085. }
  46086. },
  46087. },
  46088. [
  46089. {
  46090. name: "Normal",
  46091. height: math.unit(6 + 1/12, "feet"),
  46092. default: true
  46093. },
  46094. ]
  46095. ))
  46096. characterMakers.push(() => makeCharacter(
  46097. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46098. {
  46099. side: {
  46100. height: math.unit(13, "feet"),
  46101. name: "Side",
  46102. image: {
  46103. source: "./media/characters/kira-tyler/side.svg",
  46104. extra: 693/393,
  46105. bottom: 58/751
  46106. }
  46107. },
  46108. },
  46109. [
  46110. {
  46111. name: "Normal",
  46112. height: math.unit(13, "feet"),
  46113. default: true
  46114. },
  46115. ]
  46116. ))
  46117. characterMakers.push(() => makeCharacter(
  46118. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46119. {
  46120. front: {
  46121. height: math.unit(10.3, "feet"),
  46122. weight: math.unit(150, "lb"),
  46123. name: "Front",
  46124. image: {
  46125. source: "./media/characters/blaze/front.svg",
  46126. extra: 1378/1286,
  46127. bottom: 172/1550
  46128. }
  46129. },
  46130. },
  46131. [
  46132. {
  46133. name: "Normal",
  46134. height: math.unit(10.3, "feet"),
  46135. default: true
  46136. },
  46137. ]
  46138. ))
  46139. characterMakers.push(() => makeCharacter(
  46140. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46141. {
  46142. side: {
  46143. height: math.unit(2, "meters"),
  46144. weight: math.unit(400, "kg"),
  46145. name: "Side",
  46146. image: {
  46147. source: "./media/characters/anu/side.svg",
  46148. extra: 506/394,
  46149. bottom: 18/524
  46150. }
  46151. },
  46152. },
  46153. [
  46154. {
  46155. name: "Humanoid",
  46156. height: math.unit(2, "meters")
  46157. },
  46158. {
  46159. name: "Normal",
  46160. height: math.unit(5, "meters"),
  46161. default: true
  46162. },
  46163. ]
  46164. ))
  46165. characterMakers.push(() => makeCharacter(
  46166. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46167. {
  46168. front: {
  46169. height: math.unit(5 + 5/12, "feet"),
  46170. weight: math.unit(170, "lb"),
  46171. name: "Front",
  46172. image: {
  46173. source: "./media/characters/synx-the-lynx/front.svg",
  46174. extra: 1893/1745,
  46175. bottom: 17/1910
  46176. }
  46177. },
  46178. side: {
  46179. height: math.unit(5 + 5/12, "feet"),
  46180. weight: math.unit(170, "lb"),
  46181. name: "Side",
  46182. image: {
  46183. source: "./media/characters/synx-the-lynx/side.svg",
  46184. extra: 1884/1740,
  46185. bottom: 39/1923
  46186. }
  46187. },
  46188. back: {
  46189. height: math.unit(5 + 5/12, "feet"),
  46190. weight: math.unit(170, "lb"),
  46191. name: "Back",
  46192. image: {
  46193. source: "./media/characters/synx-the-lynx/back.svg",
  46194. extra: 1903/1755,
  46195. bottom: 14/1917
  46196. }
  46197. },
  46198. },
  46199. [
  46200. {
  46201. name: "Normal",
  46202. height: math.unit(5 + 5/12, "feet"),
  46203. default: true
  46204. },
  46205. ]
  46206. ))
  46207. characterMakers.push(() => makeCharacter(
  46208. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46209. {
  46210. back: {
  46211. height: math.unit(15, "feet"),
  46212. name: "Back",
  46213. image: {
  46214. source: "./media/characters/nadezda-fex/back.svg",
  46215. extra: 1695/1481,
  46216. bottom: 25/1720
  46217. }
  46218. },
  46219. },
  46220. [
  46221. {
  46222. name: "Normal",
  46223. height: math.unit(15, "feet"),
  46224. default: true
  46225. },
  46226. {
  46227. name: "Macro",
  46228. height: math.unit(2.5, "miles")
  46229. },
  46230. {
  46231. name: "Goddess",
  46232. height: math.unit(2, "multiverses")
  46233. },
  46234. ]
  46235. ))
  46236. characterMakers.push(() => makeCharacter(
  46237. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46238. {
  46239. front: {
  46240. height: math.unit(216, "cm"),
  46241. name: "Front",
  46242. image: {
  46243. source: "./media/characters/lev/front.svg",
  46244. extra: 1728/1670,
  46245. bottom: 82/1810
  46246. }
  46247. },
  46248. back: {
  46249. height: math.unit(216, "cm"),
  46250. name: "Back",
  46251. image: {
  46252. source: "./media/characters/lev/back.svg",
  46253. extra: 1738/1675,
  46254. bottom: 24/1762
  46255. }
  46256. },
  46257. dressed: {
  46258. height: math.unit(216, "cm"),
  46259. name: "Dressed",
  46260. image: {
  46261. source: "./media/characters/lev/dressed.svg",
  46262. extra: 1397/1351,
  46263. bottom: 73/1470
  46264. }
  46265. },
  46266. head: {
  46267. height: math.unit(0.51, "meter"),
  46268. name: "Head",
  46269. image: {
  46270. source: "./media/characters/lev/head.svg"
  46271. }
  46272. },
  46273. },
  46274. [
  46275. {
  46276. name: "Normal",
  46277. height: math.unit(216, "cm"),
  46278. default: true
  46279. },
  46280. {
  46281. name: "Relatively Macro",
  46282. height: math.unit(80, "meters")
  46283. },
  46284. {
  46285. name: "Megamacro",
  46286. height: math.unit(21600, "meters")
  46287. },
  46288. {
  46289. name: "Megamacro+",
  46290. height: math.unit(64800, "meters")
  46291. },
  46292. ]
  46293. ))
  46294. characterMakers.push(() => makeCharacter(
  46295. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46296. {
  46297. front: {
  46298. height: math.unit(2, "meters"),
  46299. weight: math.unit(80, "kg"),
  46300. name: "Front",
  46301. image: {
  46302. source: "./media/characters/moka/front.svg",
  46303. extra: 1337/1255,
  46304. bottom: 58/1395
  46305. }
  46306. },
  46307. },
  46308. [
  46309. {
  46310. name: "Micro",
  46311. height: math.unit(15, "cm")
  46312. },
  46313. {
  46314. name: "Normal",
  46315. height: math.unit(2, "meters"),
  46316. default: true
  46317. },
  46318. {
  46319. name: "Macro",
  46320. height: math.unit(20, "meters"),
  46321. },
  46322. ]
  46323. ))
  46324. characterMakers.push(() => makeCharacter(
  46325. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46326. {
  46327. front: {
  46328. height: math.unit(9, "feet"),
  46329. weight: math.unit(240, "lb"),
  46330. name: "Front",
  46331. image: {
  46332. source: "./media/characters/kuzco/front.svg",
  46333. extra: 1593/1487,
  46334. bottom: 32/1625
  46335. }
  46336. },
  46337. side: {
  46338. height: math.unit(9, "feet"),
  46339. weight: math.unit(240, "lb"),
  46340. name: "Side",
  46341. image: {
  46342. source: "./media/characters/kuzco/side.svg",
  46343. extra: 1575/1485,
  46344. bottom: 30/1605
  46345. }
  46346. },
  46347. back: {
  46348. height: math.unit(9, "feet"),
  46349. weight: math.unit(240, "lb"),
  46350. name: "Back",
  46351. image: {
  46352. source: "./media/characters/kuzco/back.svg",
  46353. extra: 1603/1514,
  46354. bottom: 14/1617
  46355. }
  46356. },
  46357. },
  46358. [
  46359. {
  46360. name: "Normal",
  46361. height: math.unit(9, "feet"),
  46362. default: true
  46363. },
  46364. ]
  46365. ))
  46366. characterMakers.push(() => makeCharacter(
  46367. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46368. {
  46369. side: {
  46370. height: math.unit(2, "meters"),
  46371. weight: math.unit(300, "kg"),
  46372. name: "Side",
  46373. image: {
  46374. source: "./media/characters/ceruleus/side.svg",
  46375. extra: 1068/974,
  46376. bottom: 126/1194
  46377. }
  46378. },
  46379. },
  46380. [
  46381. {
  46382. name: "Normal",
  46383. height: math.unit(16, "meters"),
  46384. default: true
  46385. },
  46386. ]
  46387. ))
  46388. characterMakers.push(() => makeCharacter(
  46389. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46390. {
  46391. front: {
  46392. height: math.unit(9, "feet"),
  46393. weight: math.unit(500, "kg"),
  46394. name: "Front",
  46395. image: {
  46396. source: "./media/characters/acouya/front.svg",
  46397. extra: 1660/1473,
  46398. bottom: 28/1688
  46399. }
  46400. },
  46401. },
  46402. [
  46403. {
  46404. name: "Normal",
  46405. height: math.unit(9, "feet"),
  46406. default: true
  46407. },
  46408. ]
  46409. ))
  46410. characterMakers.push(() => makeCharacter(
  46411. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46412. {
  46413. front: {
  46414. height: math.unit(5 + 6/12, "feet"),
  46415. weight: math.unit(195, "lb"),
  46416. name: "Front",
  46417. image: {
  46418. source: "./media/characters/vant/front.svg",
  46419. extra: 1396/1320,
  46420. bottom: 20/1416
  46421. }
  46422. },
  46423. back: {
  46424. height: math.unit(5 + 6/12, "feet"),
  46425. weight: math.unit(195, "lb"),
  46426. name: "Back",
  46427. image: {
  46428. source: "./media/characters/vant/back.svg",
  46429. extra: 1396/1320,
  46430. bottom: 20/1416
  46431. }
  46432. },
  46433. maw: {
  46434. height: math.unit(0.75, "feet"),
  46435. name: "Maw",
  46436. image: {
  46437. source: "./media/characters/vant/maw.svg"
  46438. }
  46439. },
  46440. paw: {
  46441. height: math.unit(1.07, "feet"),
  46442. name: "Paw",
  46443. image: {
  46444. source: "./media/characters/vant/paw.svg"
  46445. }
  46446. },
  46447. },
  46448. [
  46449. {
  46450. name: "Micro",
  46451. height: math.unit(0.25, "inches")
  46452. },
  46453. {
  46454. name: "Normal",
  46455. height: math.unit(5 + 6/12, "feet"),
  46456. default: true
  46457. },
  46458. {
  46459. name: "Macro",
  46460. height: math.unit(75, "feet")
  46461. },
  46462. ]
  46463. ))
  46464. characterMakers.push(() => makeCharacter(
  46465. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46466. {
  46467. front: {
  46468. height: math.unit(30, "meters"),
  46469. weight: math.unit(363, "tons"),
  46470. name: "Front",
  46471. image: {
  46472. source: "./media/characters/ahra/front.svg",
  46473. extra: 1914/1814,
  46474. bottom: 46/1960
  46475. }
  46476. },
  46477. },
  46478. [
  46479. {
  46480. name: "Macro",
  46481. height: math.unit(30, "meters"),
  46482. default: true
  46483. },
  46484. ]
  46485. ))
  46486. characterMakers.push(() => makeCharacter(
  46487. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46488. {
  46489. undressed: {
  46490. height: math.unit(2, "m"),
  46491. weight: math.unit(250, "kg"),
  46492. name: "Undressed",
  46493. image: {
  46494. source: "./media/characters/coriander/undressed.svg",
  46495. extra: 1757/1606,
  46496. bottom: 107/1864
  46497. }
  46498. },
  46499. dressed: {
  46500. height: math.unit(2, "m"),
  46501. weight: math.unit(250, "kg"),
  46502. name: "Dressed",
  46503. image: {
  46504. source: "./media/characters/coriander/dressed.svg",
  46505. extra: 1757/1606,
  46506. bottom: 107/1864
  46507. }
  46508. },
  46509. },
  46510. [
  46511. {
  46512. name: "Normal",
  46513. height: math.unit(4, "meters"),
  46514. default: true
  46515. },
  46516. {
  46517. name: "XL",
  46518. height: math.unit(6, "meters")
  46519. },
  46520. {
  46521. name: "XXL",
  46522. height: math.unit(8, "meters")
  46523. },
  46524. ]
  46525. ))
  46526. characterMakers.push(() => makeCharacter(
  46527. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46528. {
  46529. front: {
  46530. height: math.unit(6, "feet"),
  46531. name: "Front",
  46532. image: {
  46533. source: "./media/characters/syrinx/front.svg",
  46534. extra: 1557/1259,
  46535. bottom: 171/1728
  46536. }
  46537. },
  46538. },
  46539. [
  46540. {
  46541. name: "Normal",
  46542. height: math.unit(6 + 3/12, "feet"),
  46543. default: true
  46544. },
  46545. ]
  46546. ))
  46547. characterMakers.push(() => makeCharacter(
  46548. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46549. {
  46550. front: {
  46551. height: math.unit(11 + 6/12, "feet"),
  46552. weight: math.unit(1.5, "tons"),
  46553. name: "Front",
  46554. image: {
  46555. source: "./media/characters/bor/front.svg",
  46556. extra: 1189/1109,
  46557. bottom: 170/1359
  46558. }
  46559. },
  46560. },
  46561. [
  46562. {
  46563. name: "Normal",
  46564. height: math.unit(11 + 6/12, "feet"),
  46565. default: true
  46566. },
  46567. {
  46568. name: "Macro",
  46569. height: math.unit(32 + 9/12, "feet")
  46570. },
  46571. ]
  46572. ))
  46573. characterMakers.push(() => makeCharacter(
  46574. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46575. {
  46576. anthro: {
  46577. height: math.unit(9, "feet"),
  46578. weight: math.unit(2076, "lb"),
  46579. name: "Anthro",
  46580. image: {
  46581. source: "./media/characters/abacus/anthro.svg",
  46582. extra: 1540/1494,
  46583. bottom: 233/1773
  46584. }
  46585. },
  46586. pigeon: {
  46587. height: math.unit(1, "feet"),
  46588. name: "Pigeon",
  46589. image: {
  46590. source: "./media/characters/abacus/pigeon.svg",
  46591. extra: 528/525,
  46592. bottom: 46/574
  46593. }
  46594. },
  46595. },
  46596. [
  46597. {
  46598. name: "Normal",
  46599. height: math.unit(9, "feet"),
  46600. default: true
  46601. },
  46602. ]
  46603. ))
  46604. characterMakers.push(() => makeCharacter(
  46605. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46606. {
  46607. side: {
  46608. height: math.unit(6, "feet"),
  46609. name: "Side",
  46610. image: {
  46611. source: "./media/characters/delkhan/side.svg",
  46612. extra: 1884/1786,
  46613. bottom: 308/2192
  46614. }
  46615. },
  46616. head: {
  46617. height: math.unit(3.38, "feet"),
  46618. name: "Head",
  46619. image: {
  46620. source: "./media/characters/delkhan/head.svg"
  46621. }
  46622. },
  46623. },
  46624. [
  46625. {
  46626. name: "Normal",
  46627. height: math.unit(72, "feet"),
  46628. default: true
  46629. },
  46630. {
  46631. name: "Giant",
  46632. height: math.unit(172, "feet")
  46633. },
  46634. ]
  46635. ))
  46636. characterMakers.push(() => makeCharacter(
  46637. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46638. {
  46639. standing: {
  46640. height: math.unit(6, "feet"),
  46641. name: "Standing",
  46642. image: {
  46643. source: "./media/characters/euchidat/standing.svg",
  46644. extra: 1612/1553,
  46645. bottom: 116/1728
  46646. }
  46647. },
  46648. leaning: {
  46649. height: math.unit(6, "feet"),
  46650. name: "Leaning",
  46651. image: {
  46652. source: "./media/characters/euchidat/leaning.svg",
  46653. extra: 1719/1674,
  46654. bottom: 27/1746
  46655. }
  46656. },
  46657. },
  46658. [
  46659. {
  46660. name: "Normal",
  46661. height: math.unit(175, "feet"),
  46662. default: true
  46663. },
  46664. {
  46665. name: "Megamacro",
  46666. height: math.unit(190, "miles")
  46667. },
  46668. {
  46669. name: "Gigamacro",
  46670. height: math.unit(190000, "miles")
  46671. },
  46672. ]
  46673. ))
  46674. characterMakers.push(() => makeCharacter(
  46675. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46676. {
  46677. front: {
  46678. height: math.unit(6, "feet"),
  46679. weight: math.unit(150, "lb"),
  46680. name: "Front",
  46681. image: {
  46682. source: "./media/characters/rebecca-stack/front.svg",
  46683. extra: 1256/1201,
  46684. bottom: 18/1274
  46685. }
  46686. },
  46687. },
  46688. [
  46689. {
  46690. name: "Normal",
  46691. height: math.unit(5 + 8/12, "feet"),
  46692. default: true
  46693. },
  46694. {
  46695. name: "Demolitionist",
  46696. height: math.unit(200, "feet")
  46697. },
  46698. {
  46699. name: "Out of Control",
  46700. height: math.unit(2, "miles")
  46701. },
  46702. {
  46703. name: "Giga",
  46704. height: math.unit(7200, "miles")
  46705. },
  46706. ]
  46707. ))
  46708. characterMakers.push(() => makeCharacter(
  46709. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46710. {
  46711. front: {
  46712. height: math.unit(6, "feet"),
  46713. weight: math.unit(150, "lb"),
  46714. name: "Front",
  46715. image: {
  46716. source: "./media/characters/jenny-cartwright/front.svg",
  46717. extra: 1384/1376,
  46718. bottom: 58/1442
  46719. }
  46720. },
  46721. },
  46722. [
  46723. {
  46724. name: "Normal",
  46725. height: math.unit(6 + 7/12, "feet"),
  46726. default: true
  46727. },
  46728. {
  46729. name: "Librarian",
  46730. height: math.unit(55, "feet")
  46731. },
  46732. {
  46733. name: "Sightseer",
  46734. height: math.unit(50, "miles")
  46735. },
  46736. {
  46737. name: "Giga",
  46738. height: math.unit(30000, "miles")
  46739. },
  46740. ]
  46741. ))
  46742. characterMakers.push(() => makeCharacter(
  46743. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46744. {
  46745. nude: {
  46746. height: math.unit(8, "feet"),
  46747. weight: math.unit(225, "lb"),
  46748. name: "Nude",
  46749. image: {
  46750. source: "./media/characters/marvy/nude.svg",
  46751. extra: 1900/1683,
  46752. bottom: 89/1989
  46753. }
  46754. },
  46755. dressed: {
  46756. height: math.unit(8, "feet"),
  46757. weight: math.unit(225, "lb"),
  46758. name: "Dressed",
  46759. image: {
  46760. source: "./media/characters/marvy/dressed.svg",
  46761. extra: 1900/1683,
  46762. bottom: 89/1989
  46763. }
  46764. },
  46765. head: {
  46766. height: math.unit(2.85, "feet"),
  46767. name: "Head",
  46768. image: {
  46769. source: "./media/characters/marvy/head.svg"
  46770. }
  46771. },
  46772. },
  46773. [
  46774. {
  46775. name: "Normal",
  46776. height: math.unit(8, "feet"),
  46777. default: true
  46778. },
  46779. ]
  46780. ))
  46781. characterMakers.push(() => makeCharacter(
  46782. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46783. {
  46784. front: {
  46785. height: math.unit(8, "feet"),
  46786. weight: math.unit(250, "lb"),
  46787. name: "Front",
  46788. image: {
  46789. source: "./media/characters/leah/front.svg",
  46790. extra: 1257/1149,
  46791. bottom: 109/1366
  46792. }
  46793. },
  46794. },
  46795. [
  46796. {
  46797. name: "Normal",
  46798. height: math.unit(8, "feet"),
  46799. default: true
  46800. },
  46801. {
  46802. name: "Minimacro",
  46803. height: math.unit(40, "feet")
  46804. },
  46805. {
  46806. name: "Macro",
  46807. height: math.unit(124, "feet")
  46808. },
  46809. {
  46810. name: "Megamacro",
  46811. height: math.unit(850, "feet")
  46812. },
  46813. ]
  46814. ))
  46815. characterMakers.push(() => makeCharacter(
  46816. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46817. {
  46818. side: {
  46819. height: math.unit(13 + 6/12, "feet"),
  46820. weight: math.unit(3200, "lb"),
  46821. name: "Side",
  46822. image: {
  46823. source: "./media/characters/alvir/side.svg",
  46824. extra: 896/589,
  46825. bottom: 26/922
  46826. }
  46827. },
  46828. },
  46829. [
  46830. {
  46831. name: "Normal",
  46832. height: math.unit(13 + 6/12, "feet"),
  46833. default: true
  46834. },
  46835. ]
  46836. ))
  46837. characterMakers.push(() => makeCharacter(
  46838. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46839. {
  46840. front: {
  46841. height: math.unit(5 + 4/12, "feet"),
  46842. weight: math.unit(236, "lb"),
  46843. name: "Front",
  46844. image: {
  46845. source: "./media/characters/zaina-khalil/front.svg",
  46846. extra: 1533/1485,
  46847. bottom: 94/1627
  46848. }
  46849. },
  46850. side: {
  46851. height: math.unit(5 + 4/12, "feet"),
  46852. weight: math.unit(236, "lb"),
  46853. name: "Side",
  46854. image: {
  46855. source: "./media/characters/zaina-khalil/side.svg",
  46856. extra: 1537/1498,
  46857. bottom: 66/1603
  46858. }
  46859. },
  46860. back: {
  46861. height: math.unit(5 + 4/12, "feet"),
  46862. weight: math.unit(236, "lb"),
  46863. name: "Back",
  46864. image: {
  46865. source: "./media/characters/zaina-khalil/back.svg",
  46866. extra: 1546/1494,
  46867. bottom: 89/1635
  46868. }
  46869. },
  46870. },
  46871. [
  46872. {
  46873. name: "Normal",
  46874. height: math.unit(5 + 4/12, "feet"),
  46875. default: true
  46876. },
  46877. ]
  46878. ))
  46879. characterMakers.push(() => makeCharacter(
  46880. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46881. {
  46882. side: {
  46883. height: math.unit(12, "feet"),
  46884. weight: math.unit(4000, "lb"),
  46885. name: "Side",
  46886. image: {
  46887. source: "./media/characters/terry/side.svg",
  46888. extra: 1518/1439,
  46889. bottom: 149/1667
  46890. }
  46891. },
  46892. },
  46893. [
  46894. {
  46895. name: "Normal",
  46896. height: math.unit(12, "feet"),
  46897. default: true
  46898. },
  46899. ]
  46900. ))
  46901. characterMakers.push(() => makeCharacter(
  46902. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46903. {
  46904. front: {
  46905. height: math.unit(12, "feet"),
  46906. weight: math.unit(1500, "lb"),
  46907. name: "Front",
  46908. image: {
  46909. source: "./media/characters/kahea/front.svg",
  46910. extra: 1722/1617,
  46911. bottom: 179/1901
  46912. }
  46913. },
  46914. },
  46915. [
  46916. {
  46917. name: "Normal",
  46918. height: math.unit(12, "feet"),
  46919. default: true
  46920. },
  46921. ]
  46922. ))
  46923. characterMakers.push(() => makeCharacter(
  46924. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46925. {
  46926. demonFront: {
  46927. height: math.unit(36, "feet"),
  46928. name: "Front",
  46929. image: {
  46930. source: "./media/characters/alex-xuria/demon-front.svg",
  46931. extra: 1705/1673,
  46932. bottom: 198/1903
  46933. },
  46934. form: "demon",
  46935. default: true
  46936. },
  46937. demonBack: {
  46938. height: math.unit(36, "feet"),
  46939. name: "Back",
  46940. image: {
  46941. source: "./media/characters/alex-xuria/demon-back.svg",
  46942. extra: 1725/1693,
  46943. bottom: 70/1795
  46944. },
  46945. form: "demon"
  46946. },
  46947. demonHead: {
  46948. height: math.unit(2.14, "meters"),
  46949. name: "Head",
  46950. image: {
  46951. source: "./media/characters/alex-xuria/demon-head.svg"
  46952. },
  46953. form: "demon"
  46954. },
  46955. demonHand: {
  46956. height: math.unit(1.61, "meters"),
  46957. name: "Hand",
  46958. image: {
  46959. source: "./media/characters/alex-xuria/demon-hand.svg"
  46960. },
  46961. form: "demon"
  46962. },
  46963. demonPaw: {
  46964. height: math.unit(1.35, "meters"),
  46965. name: "Paw",
  46966. image: {
  46967. source: "./media/characters/alex-xuria/demon-paw.svg"
  46968. },
  46969. form: "demon"
  46970. },
  46971. demonFoot: {
  46972. height: math.unit(2.2, "meters"),
  46973. name: "Foot",
  46974. image: {
  46975. source: "./media/characters/alex-xuria/demon-foot.svg"
  46976. },
  46977. form: "demon"
  46978. },
  46979. demonCock: {
  46980. height: math.unit(1.74, "meters"),
  46981. name: "Cock",
  46982. image: {
  46983. source: "./media/characters/alex-xuria/demon-cock.svg"
  46984. },
  46985. form: "demon"
  46986. },
  46987. demonTailClosed: {
  46988. height: math.unit(1.47, "meters"),
  46989. name: "Tail (Closed)",
  46990. image: {
  46991. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46992. },
  46993. form: "demon"
  46994. },
  46995. demonTailOpen: {
  46996. height: math.unit(2.85, "meters"),
  46997. name: "Tail (Open)",
  46998. image: {
  46999. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47000. },
  47001. form: "demon"
  47002. },
  47003. incubusFront: {
  47004. height: math.unit(12, "feet"),
  47005. name: "Front",
  47006. image: {
  47007. source: "./media/characters/alex-xuria/incubus-front.svg",
  47008. extra: 1754/1677,
  47009. bottom: 125/1879
  47010. },
  47011. form: "incubus",
  47012. default: true
  47013. },
  47014. incubusBack: {
  47015. height: math.unit(12, "feet"),
  47016. name: "Back",
  47017. image: {
  47018. source: "./media/characters/alex-xuria/incubus-back.svg",
  47019. extra: 1702/1647,
  47020. bottom: 30/1732
  47021. },
  47022. form: "incubus"
  47023. },
  47024. incubusHead: {
  47025. height: math.unit(3.45, "feet"),
  47026. name: "Head",
  47027. image: {
  47028. source: "./media/characters/alex-xuria/incubus-head.svg"
  47029. },
  47030. form: "incubus"
  47031. },
  47032. rabbitFront: {
  47033. height: math.unit(6, "feet"),
  47034. name: "Front",
  47035. image: {
  47036. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47037. extra: 1369/1349,
  47038. bottom: 45/1414
  47039. },
  47040. form: "rabbit",
  47041. default: true
  47042. },
  47043. rabbitSide: {
  47044. height: math.unit(6, "feet"),
  47045. name: "Side",
  47046. image: {
  47047. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47048. extra: 1370/1356,
  47049. bottom: 37/1407
  47050. },
  47051. form: "rabbit"
  47052. },
  47053. rabbitBack: {
  47054. height: math.unit(6, "feet"),
  47055. name: "Back",
  47056. image: {
  47057. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47058. extra: 1375/1358,
  47059. bottom: 43/1418
  47060. },
  47061. form: "rabbit"
  47062. },
  47063. },
  47064. [
  47065. {
  47066. name: "Normal",
  47067. height: math.unit(6, "feet"),
  47068. default: true,
  47069. form: "rabbit"
  47070. },
  47071. {
  47072. name: "Incubus",
  47073. height: math.unit(12, "feet"),
  47074. default: true,
  47075. form: "incubus"
  47076. },
  47077. {
  47078. name: "Demon",
  47079. height: math.unit(36, "feet"),
  47080. default: true,
  47081. form: "demon"
  47082. }
  47083. ],
  47084. {
  47085. "demon": {
  47086. name: "Demon",
  47087. default: true
  47088. },
  47089. "incubus": {
  47090. name: "Incubus",
  47091. },
  47092. "rabbit": {
  47093. name: "Rabbit"
  47094. }
  47095. }
  47096. ))
  47097. characterMakers.push(() => makeCharacter(
  47098. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47099. {
  47100. front: {
  47101. height: math.unit(7 + 5/12, "feet"),
  47102. weight: math.unit(510, "lb"),
  47103. name: "Front",
  47104. image: {
  47105. source: "./media/characters/syrup/front.svg",
  47106. extra: 932/916,
  47107. bottom: 26/958
  47108. }
  47109. },
  47110. },
  47111. [
  47112. {
  47113. name: "Normal",
  47114. height: math.unit(7 + 5/12, "feet"),
  47115. default: true
  47116. },
  47117. {
  47118. name: "Big",
  47119. height: math.unit(50, "feet")
  47120. },
  47121. {
  47122. name: "Macro",
  47123. height: math.unit(300, "feet")
  47124. },
  47125. {
  47126. name: "Megamacro",
  47127. height: math.unit(1, "mile")
  47128. },
  47129. ]
  47130. ))
  47131. characterMakers.push(() => makeCharacter(
  47132. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47133. {
  47134. front: {
  47135. height: math.unit(6 + 9/12, "feet"),
  47136. name: "Front",
  47137. image: {
  47138. source: "./media/characters/zeimne/front.svg",
  47139. extra: 1969/1806,
  47140. bottom: 53/2022
  47141. }
  47142. },
  47143. },
  47144. [
  47145. {
  47146. name: "Normal",
  47147. height: math.unit(6 + 9/12, "feet"),
  47148. default: true
  47149. },
  47150. {
  47151. name: "Giant",
  47152. height: math.unit(550, "feet")
  47153. },
  47154. {
  47155. name: "Mega",
  47156. height: math.unit(3, "miles")
  47157. },
  47158. {
  47159. name: "Giga",
  47160. height: math.unit(250, "miles")
  47161. },
  47162. {
  47163. name: "Tera",
  47164. height: math.unit(1, "AU")
  47165. },
  47166. ]
  47167. ))
  47168. characterMakers.push(() => makeCharacter(
  47169. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47170. {
  47171. front: {
  47172. height: math.unit(5 + 2/12, "feet"),
  47173. name: "Front",
  47174. image: {
  47175. source: "./media/characters/grar/front.svg",
  47176. extra: 1331/1119,
  47177. bottom: 60/1391
  47178. }
  47179. },
  47180. back: {
  47181. height: math.unit(5 + 2/12, "feet"),
  47182. name: "Back",
  47183. image: {
  47184. source: "./media/characters/grar/back.svg",
  47185. extra: 1385/1169,
  47186. bottom: 23/1408
  47187. }
  47188. },
  47189. },
  47190. [
  47191. {
  47192. name: "Normal",
  47193. height: math.unit(5 + 2/12, "feet"),
  47194. default: true
  47195. },
  47196. ]
  47197. ))
  47198. characterMakers.push(() => makeCharacter(
  47199. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47200. {
  47201. front: {
  47202. height: math.unit(13 + 7/12, "feet"),
  47203. weight: math.unit(2200, "lb"),
  47204. name: "Front",
  47205. image: {
  47206. source: "./media/characters/endraya/front.svg",
  47207. extra: 1289/1215,
  47208. bottom: 50/1339
  47209. }
  47210. },
  47211. nude: {
  47212. height: math.unit(13 + 7/12, "feet"),
  47213. weight: math.unit(2200, "lb"),
  47214. name: "Nude",
  47215. image: {
  47216. source: "./media/characters/endraya/nude.svg",
  47217. extra: 1247/1171,
  47218. bottom: 40/1287
  47219. }
  47220. },
  47221. head: {
  47222. height: math.unit(2.6, "feet"),
  47223. name: "Head",
  47224. image: {
  47225. source: "./media/characters/endraya/head.svg"
  47226. }
  47227. },
  47228. slit: {
  47229. height: math.unit(3.4, "feet"),
  47230. name: "Slit",
  47231. image: {
  47232. source: "./media/characters/endraya/slit.svg"
  47233. }
  47234. },
  47235. },
  47236. [
  47237. {
  47238. name: "Normal",
  47239. height: math.unit(13 + 7/12, "feet"),
  47240. default: true
  47241. },
  47242. {
  47243. name: "Macro",
  47244. height: math.unit(200, "feet")
  47245. },
  47246. ]
  47247. ))
  47248. characterMakers.push(() => makeCharacter(
  47249. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47250. {
  47251. front: {
  47252. height: math.unit(1.81, "meters"),
  47253. weight: math.unit(69, "kg"),
  47254. name: "Front",
  47255. image: {
  47256. source: "./media/characters/rodryana/front.svg",
  47257. extra: 2002/1921,
  47258. bottom: 53/2055
  47259. }
  47260. },
  47261. back: {
  47262. height: math.unit(1.81, "meters"),
  47263. weight: math.unit(69, "kg"),
  47264. name: "Back",
  47265. image: {
  47266. source: "./media/characters/rodryana/back.svg",
  47267. extra: 1993/1926,
  47268. bottom: 48/2041
  47269. }
  47270. },
  47271. maw: {
  47272. height: math.unit(0.19769417475, "meters"),
  47273. name: "Maw",
  47274. image: {
  47275. source: "./media/characters/rodryana/maw.svg"
  47276. }
  47277. },
  47278. slit: {
  47279. height: math.unit(0.31631067961, "meters"),
  47280. name: "Slit",
  47281. image: {
  47282. source: "./media/characters/rodryana/slit.svg"
  47283. }
  47284. },
  47285. },
  47286. [
  47287. {
  47288. name: "Normal",
  47289. height: math.unit(1.81, "meters")
  47290. },
  47291. {
  47292. name: "Mini Macro",
  47293. height: math.unit(181, "meters")
  47294. },
  47295. {
  47296. name: "Macro",
  47297. height: math.unit(452, "meters"),
  47298. default: true
  47299. },
  47300. {
  47301. name: "Mega Macro",
  47302. height: math.unit(1.375, "km")
  47303. },
  47304. {
  47305. name: "Giga Macro",
  47306. height: math.unit(13.575, "km")
  47307. },
  47308. ]
  47309. ))
  47310. characterMakers.push(() => makeCharacter(
  47311. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47312. {
  47313. front: {
  47314. height: math.unit(6, "feet"),
  47315. weight: math.unit(1000, "lb"),
  47316. name: "Front",
  47317. image: {
  47318. source: "./media/characters/asaya/front.svg",
  47319. extra: 1460/1200,
  47320. bottom: 71/1531
  47321. }
  47322. },
  47323. },
  47324. [
  47325. {
  47326. name: "Normal",
  47327. height: math.unit(8, "km"),
  47328. default: true
  47329. },
  47330. ]
  47331. ))
  47332. characterMakers.push(() => makeCharacter(
  47333. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47334. {
  47335. front: {
  47336. height: math.unit(3.5, "meters"),
  47337. name: "Front",
  47338. image: {
  47339. source: "./media/characters/sarzu-and-israz/front.svg",
  47340. extra: 1570/1558,
  47341. bottom: 150/1720
  47342. },
  47343. },
  47344. back: {
  47345. height: math.unit(3.5, "meters"),
  47346. name: "Back",
  47347. image: {
  47348. source: "./media/characters/sarzu-and-israz/back.svg",
  47349. extra: 1523/1509,
  47350. bottom: 132/1655
  47351. },
  47352. },
  47353. frontFemale: {
  47354. height: math.unit(3.5, "meters"),
  47355. name: "Front (Female)",
  47356. image: {
  47357. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47358. extra: 1570/1558,
  47359. bottom: 150/1720
  47360. },
  47361. },
  47362. frontHerm: {
  47363. height: math.unit(3.5, "meters"),
  47364. name: "Front (Herm)",
  47365. image: {
  47366. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47367. extra: 1570/1558,
  47368. bottom: 150/1720
  47369. },
  47370. },
  47371. },
  47372. [
  47373. {
  47374. name: "Normal",
  47375. height: math.unit(3.5, "meters"),
  47376. default: true,
  47377. },
  47378. {
  47379. name: "Macro",
  47380. height: math.unit(65.5, "meters"),
  47381. },
  47382. ],
  47383. ))
  47384. characterMakers.push(() => makeCharacter(
  47385. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47386. {
  47387. front: {
  47388. height: math.unit(6, "feet"),
  47389. weight: math.unit(250, "lb"),
  47390. name: "Front",
  47391. image: {
  47392. source: "./media/characters/zenimma/front.svg",
  47393. extra: 1346/1320,
  47394. bottom: 58/1404
  47395. }
  47396. },
  47397. back: {
  47398. height: math.unit(6, "feet"),
  47399. weight: math.unit(250, "lb"),
  47400. name: "Back",
  47401. image: {
  47402. source: "./media/characters/zenimma/back.svg",
  47403. extra: 1324/1308,
  47404. bottom: 44/1368
  47405. }
  47406. },
  47407. dick: {
  47408. height: math.unit(1.44, "feet"),
  47409. name: "Dick",
  47410. image: {
  47411. source: "./media/characters/zenimma/dick.svg"
  47412. }
  47413. },
  47414. },
  47415. [
  47416. {
  47417. name: "Canon Height",
  47418. height: math.unit(66, "miles"),
  47419. default: true
  47420. },
  47421. ]
  47422. ))
  47423. characterMakers.push(() => makeCharacter(
  47424. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47425. {
  47426. nude: {
  47427. height: math.unit(6, "feet"),
  47428. weight: math.unit(150, "lb"),
  47429. name: "Nude",
  47430. image: {
  47431. source: "./media/characters/shavon/nude.svg",
  47432. extra: 1242/1096,
  47433. bottom: 98/1340
  47434. }
  47435. },
  47436. dressed: {
  47437. height: math.unit(6, "feet"),
  47438. weight: math.unit(150, "lb"),
  47439. name: "Dressed",
  47440. image: {
  47441. source: "./media/characters/shavon/dressed.svg",
  47442. extra: 1242/1096,
  47443. bottom: 98/1340
  47444. }
  47445. },
  47446. },
  47447. [
  47448. {
  47449. name: "Macro",
  47450. height: math.unit(255, "feet"),
  47451. default: true
  47452. },
  47453. ]
  47454. ))
  47455. characterMakers.push(() => makeCharacter(
  47456. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47457. {
  47458. front: {
  47459. height: math.unit(6, "feet"),
  47460. name: "Front",
  47461. image: {
  47462. source: "./media/characters/steph/front.svg",
  47463. extra: 1430/1330,
  47464. bottom: 54/1484
  47465. }
  47466. },
  47467. },
  47468. [
  47469. {
  47470. name: "Normal",
  47471. height: math.unit(6, "feet"),
  47472. default: true
  47473. },
  47474. ]
  47475. ))
  47476. characterMakers.push(() => makeCharacter(
  47477. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47478. {
  47479. front: {
  47480. height: math.unit(9, "feet"),
  47481. weight: math.unit(400, "lb"),
  47482. name: "Front",
  47483. image: {
  47484. source: "./media/characters/kil'aman/front.svg",
  47485. extra: 1210/1159,
  47486. bottom: 109/1319
  47487. }
  47488. },
  47489. head: {
  47490. height: math.unit(2.14, "feet"),
  47491. name: "Head",
  47492. image: {
  47493. source: "./media/characters/kil'aman/head.svg"
  47494. }
  47495. },
  47496. maw: {
  47497. height: math.unit(1.21, "feet"),
  47498. name: "Maw",
  47499. image: {
  47500. source: "./media/characters/kil'aman/maw.svg"
  47501. }
  47502. },
  47503. foot: {
  47504. height: math.unit(1.7, "feet"),
  47505. name: "Foot",
  47506. image: {
  47507. source: "./media/characters/kil'aman/foot.svg"
  47508. }
  47509. },
  47510. dick: {
  47511. height: math.unit(2.1, "feet"),
  47512. name: "Dick",
  47513. image: {
  47514. source: "./media/characters/kil'aman/dick.svg"
  47515. }
  47516. },
  47517. },
  47518. [
  47519. {
  47520. name: "Normal",
  47521. height: math.unit(9, "feet")
  47522. },
  47523. {
  47524. name: "Canon Height",
  47525. height: math.unit(10, "miles"),
  47526. default: true
  47527. },
  47528. {
  47529. name: "Maximum",
  47530. height: math.unit(6e9, "miles")
  47531. },
  47532. ]
  47533. ))
  47534. characterMakers.push(() => makeCharacter(
  47535. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47536. {
  47537. front: {
  47538. height: math.unit(90, "feet"),
  47539. weight: math.unit(675000, "lb"),
  47540. name: "Front",
  47541. image: {
  47542. source: "./media/characters/qadan/front.svg",
  47543. extra: 1012/1004,
  47544. bottom: 78/1090
  47545. }
  47546. },
  47547. back: {
  47548. height: math.unit(90, "feet"),
  47549. weight: math.unit(675000, "lb"),
  47550. name: "Back",
  47551. image: {
  47552. source: "./media/characters/qadan/back.svg",
  47553. extra: 1042/1031,
  47554. bottom: 55/1097
  47555. }
  47556. },
  47557. armored: {
  47558. height: math.unit(90, "feet"),
  47559. weight: math.unit(675000, "lb"),
  47560. name: "Armored",
  47561. image: {
  47562. source: "./media/characters/qadan/armored.svg",
  47563. extra: 1047/1037,
  47564. bottom: 48/1095
  47565. }
  47566. },
  47567. },
  47568. [
  47569. {
  47570. name: "Normal",
  47571. height: math.unit(90, "feet"),
  47572. default: true
  47573. },
  47574. ]
  47575. ))
  47576. characterMakers.push(() => makeCharacter(
  47577. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47578. {
  47579. front: {
  47580. height: math.unit(6, "feet"),
  47581. weight: math.unit(225, "lb"),
  47582. name: "Front",
  47583. image: {
  47584. source: "./media/characters/brooke/front.svg",
  47585. extra: 1050/1010,
  47586. bottom: 66/1116
  47587. }
  47588. },
  47589. back: {
  47590. height: math.unit(6, "feet"),
  47591. weight: math.unit(225, "lb"),
  47592. name: "Back",
  47593. image: {
  47594. source: "./media/characters/brooke/back.svg",
  47595. extra: 1053/1013,
  47596. bottom: 41/1094
  47597. }
  47598. },
  47599. dressed: {
  47600. height: math.unit(6, "feet"),
  47601. weight: math.unit(225, "lb"),
  47602. name: "Dressed",
  47603. image: {
  47604. source: "./media/characters/brooke/dressed.svg",
  47605. extra: 1050/1010,
  47606. bottom: 66/1116
  47607. }
  47608. },
  47609. },
  47610. [
  47611. {
  47612. name: "Canon Height",
  47613. height: math.unit(500, "miles"),
  47614. default: true
  47615. },
  47616. ]
  47617. ))
  47618. characterMakers.push(() => makeCharacter(
  47619. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47620. {
  47621. front: {
  47622. height: math.unit(6 + 2/12, "feet"),
  47623. weight: math.unit(210, "lb"),
  47624. name: "Front",
  47625. image: {
  47626. source: "./media/characters/wubs/front.svg",
  47627. extra: 1345/1325,
  47628. bottom: 70/1415
  47629. }
  47630. },
  47631. back: {
  47632. height: math.unit(6 + 2/12, "feet"),
  47633. weight: math.unit(210, "lb"),
  47634. name: "Back",
  47635. image: {
  47636. source: "./media/characters/wubs/back.svg",
  47637. extra: 1296/1275,
  47638. bottom: 58/1354
  47639. }
  47640. },
  47641. },
  47642. [
  47643. {
  47644. name: "Normal",
  47645. height: math.unit(6 + 2/12, "feet"),
  47646. default: true
  47647. },
  47648. {
  47649. name: "Macro",
  47650. height: math.unit(1000, "feet")
  47651. },
  47652. {
  47653. name: "Megamacro",
  47654. height: math.unit(1, "mile")
  47655. },
  47656. ]
  47657. ))
  47658. characterMakers.push(() => makeCharacter(
  47659. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47660. {
  47661. front: {
  47662. height: math.unit(4, "feet"),
  47663. weight: math.unit(120, "lb"),
  47664. name: "Front",
  47665. image: {
  47666. source: "./media/characters/blue/front.svg",
  47667. extra: 1636/1525,
  47668. bottom: 43/1679
  47669. }
  47670. },
  47671. back: {
  47672. height: math.unit(4, "feet"),
  47673. weight: math.unit(120, "lb"),
  47674. name: "Back",
  47675. image: {
  47676. source: "./media/characters/blue/back.svg",
  47677. extra: 1660/1560,
  47678. bottom: 57/1717
  47679. }
  47680. },
  47681. paws: {
  47682. height: math.unit(0.826, "feet"),
  47683. name: "Paws",
  47684. image: {
  47685. source: "./media/characters/blue/paws.svg"
  47686. }
  47687. },
  47688. },
  47689. [
  47690. {
  47691. name: "Micro",
  47692. height: math.unit(3, "inches")
  47693. },
  47694. {
  47695. name: "Normal",
  47696. height: math.unit(4, "feet"),
  47697. default: true
  47698. },
  47699. {
  47700. name: "Femenine Form",
  47701. height: math.unit(14, "feet")
  47702. },
  47703. {
  47704. name: "Werebat Form",
  47705. height: math.unit(18, "feet")
  47706. },
  47707. ]
  47708. ))
  47709. characterMakers.push(() => makeCharacter(
  47710. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47711. {
  47712. female: {
  47713. height: math.unit(7 + 4/12, "feet"),
  47714. weight: math.unit(243, "lb"),
  47715. name: "Female",
  47716. image: {
  47717. source: "./media/characters/kaya/female.svg",
  47718. extra: 975/898,
  47719. bottom: 34/1009
  47720. }
  47721. },
  47722. herm: {
  47723. height: math.unit(7 + 4/12, "feet"),
  47724. weight: math.unit(243, "lb"),
  47725. name: "Herm",
  47726. image: {
  47727. source: "./media/characters/kaya/herm.svg",
  47728. extra: 975/898,
  47729. bottom: 34/1009
  47730. }
  47731. },
  47732. },
  47733. [
  47734. {
  47735. name: "Normal",
  47736. height: math.unit(7 + 4/12, "feet"),
  47737. default: true
  47738. },
  47739. ]
  47740. ))
  47741. characterMakers.push(() => makeCharacter(
  47742. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47743. {
  47744. female: {
  47745. height: math.unit(9 + 4/12, "feet"),
  47746. weight: math.unit(398, "lb"),
  47747. name: "Female",
  47748. image: {
  47749. source: "./media/characters/kassandra/female.svg",
  47750. extra: 908/839,
  47751. bottom: 61/969
  47752. }
  47753. },
  47754. intersex: {
  47755. height: math.unit(9 + 4/12, "feet"),
  47756. weight: math.unit(398, "lb"),
  47757. name: "Intersex",
  47758. image: {
  47759. source: "./media/characters/kassandra/intersex.svg",
  47760. extra: 908/839,
  47761. bottom: 61/969
  47762. }
  47763. },
  47764. },
  47765. [
  47766. {
  47767. name: "Normal",
  47768. height: math.unit(9 + 4/12, "feet"),
  47769. default: true
  47770. },
  47771. ]
  47772. ))
  47773. characterMakers.push(() => makeCharacter(
  47774. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47775. {
  47776. front: {
  47777. height: math.unit(3, "meters"),
  47778. name: "Front",
  47779. image: {
  47780. source: "./media/characters/amy/front.svg",
  47781. extra: 1380/1343,
  47782. bottom: 70/1450
  47783. }
  47784. },
  47785. back: {
  47786. height: math.unit(3, "meters"),
  47787. name: "Back",
  47788. image: {
  47789. source: "./media/characters/amy/back.svg",
  47790. extra: 1380/1347,
  47791. bottom: 66/1446
  47792. }
  47793. },
  47794. },
  47795. [
  47796. {
  47797. name: "Normal",
  47798. height: math.unit(3, "meters"),
  47799. default: true
  47800. },
  47801. ]
  47802. ))
  47803. characterMakers.push(() => makeCharacter(
  47804. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47805. {
  47806. side: {
  47807. height: math.unit(47, "cm"),
  47808. weight: math.unit(10.8, "kg"),
  47809. name: "Side",
  47810. image: {
  47811. source: "./media/characters/alphaschakal/side.svg",
  47812. extra: 1058/568,
  47813. bottom: 62/1120
  47814. }
  47815. },
  47816. back: {
  47817. height: math.unit(78, "cm"),
  47818. weight: math.unit(10.8, "kg"),
  47819. name: "Back",
  47820. image: {
  47821. source: "./media/characters/alphaschakal/back.svg",
  47822. extra: 1102/942,
  47823. bottom: 185/1287
  47824. }
  47825. },
  47826. head: {
  47827. height: math.unit(28, "cm"),
  47828. name: "Head",
  47829. image: {
  47830. source: "./media/characters/alphaschakal/head.svg",
  47831. extra: 696/508,
  47832. bottom: 0/696
  47833. }
  47834. },
  47835. paw: {
  47836. height: math.unit(16, "cm"),
  47837. name: "Paw",
  47838. image: {
  47839. source: "./media/characters/alphaschakal/paw.svg"
  47840. }
  47841. },
  47842. },
  47843. [
  47844. {
  47845. name: "Normal",
  47846. height: math.unit(47, "cm"),
  47847. default: true
  47848. },
  47849. {
  47850. name: "Macro",
  47851. height: math.unit(340, "cm")
  47852. },
  47853. ]
  47854. ))
  47855. characterMakers.push(() => makeCharacter(
  47856. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47857. {
  47858. front: {
  47859. height: math.unit(36, "earths"),
  47860. name: "Front",
  47861. image: {
  47862. source: "./media/characters/ecobyss/front.svg",
  47863. extra: 1282/1215,
  47864. bottom: 11/1293
  47865. }
  47866. },
  47867. back: {
  47868. height: math.unit(36, "earths"),
  47869. name: "Back",
  47870. image: {
  47871. source: "./media/characters/ecobyss/back.svg",
  47872. extra: 1291/1222,
  47873. bottom: 8/1299
  47874. }
  47875. },
  47876. },
  47877. [
  47878. {
  47879. name: "Normal",
  47880. height: math.unit(36, "earths"),
  47881. default: true
  47882. },
  47883. ]
  47884. ))
  47885. characterMakers.push(() => makeCharacter(
  47886. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47887. {
  47888. front: {
  47889. height: math.unit(12, "feet"),
  47890. name: "Front",
  47891. image: {
  47892. source: "./media/characters/vasuk/front.svg",
  47893. extra: 1326/1207,
  47894. bottom: 64/1390
  47895. }
  47896. },
  47897. },
  47898. [
  47899. {
  47900. name: "Normal",
  47901. height: math.unit(12, "feet"),
  47902. default: true
  47903. },
  47904. ]
  47905. ))
  47906. characterMakers.push(() => makeCharacter(
  47907. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47908. {
  47909. side: {
  47910. height: math.unit(100, "feet"),
  47911. name: "Side",
  47912. image: {
  47913. source: "./media/characters/linneaus/side.svg",
  47914. extra: 987/807,
  47915. bottom: 47/1034
  47916. }
  47917. },
  47918. },
  47919. [
  47920. {
  47921. name: "Macro",
  47922. height: math.unit(100, "feet"),
  47923. default: true
  47924. },
  47925. ]
  47926. ))
  47927. characterMakers.push(() => makeCharacter(
  47928. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47929. {
  47930. front: {
  47931. height: math.unit(8, "feet"),
  47932. weight: math.unit(1200, "lb"),
  47933. name: "Front",
  47934. image: {
  47935. source: "./media/characters/nyterious-daligdig/front.svg",
  47936. extra: 1284/1094,
  47937. bottom: 84/1368
  47938. }
  47939. },
  47940. back: {
  47941. height: math.unit(8, "feet"),
  47942. weight: math.unit(1200, "lb"),
  47943. name: "Back",
  47944. image: {
  47945. source: "./media/characters/nyterious-daligdig/back.svg",
  47946. extra: 1301/1121,
  47947. bottom: 129/1430
  47948. }
  47949. },
  47950. mouth: {
  47951. height: math.unit(1.464, "feet"),
  47952. name: "Mouth",
  47953. image: {
  47954. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47955. }
  47956. },
  47957. },
  47958. [
  47959. {
  47960. name: "Small",
  47961. height: math.unit(8, "feet"),
  47962. default: true
  47963. },
  47964. {
  47965. name: "Normal",
  47966. height: math.unit(15, "feet")
  47967. },
  47968. {
  47969. name: "Macro",
  47970. height: math.unit(90, "feet")
  47971. },
  47972. ]
  47973. ))
  47974. characterMakers.push(() => makeCharacter(
  47975. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47976. {
  47977. front: {
  47978. height: math.unit(7 + 4/12, "feet"),
  47979. weight: math.unit(252, "lb"),
  47980. name: "Front",
  47981. image: {
  47982. source: "./media/characters/bandel/front.svg",
  47983. extra: 1946/1775,
  47984. bottom: 26/1972
  47985. }
  47986. },
  47987. back: {
  47988. height: math.unit(7 + 4/12, "feet"),
  47989. weight: math.unit(252, "lb"),
  47990. name: "Back",
  47991. image: {
  47992. source: "./media/characters/bandel/back.svg",
  47993. extra: 1940/1770,
  47994. bottom: 25/1965
  47995. }
  47996. },
  47997. maw: {
  47998. height: math.unit(2.15, "feet"),
  47999. name: "Maw",
  48000. image: {
  48001. source: "./media/characters/bandel/maw.svg"
  48002. }
  48003. },
  48004. stomach: {
  48005. height: math.unit(1.95, "feet"),
  48006. name: "Stomach",
  48007. image: {
  48008. source: "./media/characters/bandel/stomach.svg"
  48009. }
  48010. },
  48011. },
  48012. [
  48013. {
  48014. name: "Normal",
  48015. height: math.unit(7 + 4/12, "feet"),
  48016. default: true
  48017. },
  48018. ]
  48019. ))
  48020. characterMakers.push(() => makeCharacter(
  48021. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48022. {
  48023. front: {
  48024. height: math.unit(10 + 5/12, "feet"),
  48025. weight: math.unit(773.5, "kg"),
  48026. name: "Front",
  48027. image: {
  48028. source: "./media/characters/zed/front.svg",
  48029. extra: 987/941,
  48030. bottom: 52/1039
  48031. }
  48032. },
  48033. },
  48034. [
  48035. {
  48036. name: "Short",
  48037. height: math.unit(5 + 4/12, "feet")
  48038. },
  48039. {
  48040. name: "Average",
  48041. height: math.unit(10 + 5/12, "feet"),
  48042. default: true
  48043. },
  48044. {
  48045. name: "Mini-Macro",
  48046. height: math.unit(24 + 9/12, "feet")
  48047. },
  48048. {
  48049. name: "Macro",
  48050. height: math.unit(249, "feet")
  48051. },
  48052. {
  48053. name: "Mega-Macro",
  48054. height: math.unit(12490, "feet")
  48055. },
  48056. {
  48057. name: "Giga-Macro",
  48058. height: math.unit(24.9, "miles")
  48059. },
  48060. {
  48061. name: "Tera-Macro",
  48062. height: math.unit(24900, "miles")
  48063. },
  48064. {
  48065. name: "Cosmic Scale",
  48066. height: math.unit(38.9, "lightyears")
  48067. },
  48068. {
  48069. name: "Universal Scale",
  48070. height: math.unit(138e12, "lightyears")
  48071. },
  48072. ]
  48073. ))
  48074. characterMakers.push(() => makeCharacter(
  48075. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48076. {
  48077. front: {
  48078. height: math.unit(1561, "inches"),
  48079. name: "Front",
  48080. image: {
  48081. source: "./media/characters/ivan/front.svg",
  48082. extra: 1126/1071,
  48083. bottom: 26/1152
  48084. }
  48085. },
  48086. back: {
  48087. height: math.unit(1561, "inches"),
  48088. name: "Back",
  48089. image: {
  48090. source: "./media/characters/ivan/back.svg",
  48091. extra: 1134/1079,
  48092. bottom: 30/1164
  48093. }
  48094. },
  48095. },
  48096. [
  48097. {
  48098. name: "Normal",
  48099. height: math.unit(1561, "inches"),
  48100. default: true
  48101. },
  48102. ]
  48103. ))
  48104. characterMakers.push(() => makeCharacter(
  48105. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48106. {
  48107. front: {
  48108. height: math.unit(5 + 7/12, "feet"),
  48109. weight: math.unit(150, "lb"),
  48110. name: "Front",
  48111. image: {
  48112. source: "./media/characters/robin-arctic-hare/front.svg",
  48113. extra: 1148/974,
  48114. bottom: 20/1168
  48115. }
  48116. },
  48117. },
  48118. [
  48119. {
  48120. name: "Normal",
  48121. height: math.unit(5 + 7/12, "feet"),
  48122. default: true
  48123. },
  48124. ]
  48125. ))
  48126. characterMakers.push(() => makeCharacter(
  48127. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48128. {
  48129. side: {
  48130. height: math.unit(5, "feet"),
  48131. name: "Side",
  48132. image: {
  48133. source: "./media/characters/birch/side.svg",
  48134. extra: 985/796,
  48135. bottom: 111/1096
  48136. }
  48137. },
  48138. },
  48139. [
  48140. {
  48141. name: "Normal",
  48142. height: math.unit(5, "feet"),
  48143. default: true
  48144. },
  48145. ]
  48146. ))
  48147. characterMakers.push(() => makeCharacter(
  48148. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48149. {
  48150. front: {
  48151. height: math.unit(4, "feet"),
  48152. name: "Front",
  48153. image: {
  48154. source: "./media/characters/rasp/front.svg",
  48155. extra: 561/478,
  48156. bottom: 74/635
  48157. }
  48158. },
  48159. },
  48160. [
  48161. {
  48162. name: "Normal",
  48163. height: math.unit(4, "feet"),
  48164. default: true
  48165. },
  48166. ]
  48167. ))
  48168. characterMakers.push(() => makeCharacter(
  48169. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48170. {
  48171. front: {
  48172. height: math.unit(4 + 6/12, "feet"),
  48173. name: "Front",
  48174. image: {
  48175. source: "./media/characters/agatha/front.svg",
  48176. extra: 947/933,
  48177. bottom: 42/989
  48178. }
  48179. },
  48180. back: {
  48181. height: math.unit(4 + 6/12, "feet"),
  48182. name: "Back",
  48183. image: {
  48184. source: "./media/characters/agatha/back.svg",
  48185. extra: 935/922,
  48186. bottom: 48/983
  48187. }
  48188. },
  48189. },
  48190. [
  48191. {
  48192. name: "Normal",
  48193. height: math.unit(4 + 6 /12, "feet"),
  48194. default: true
  48195. },
  48196. {
  48197. name: "Max Size",
  48198. height: math.unit(500, "feet")
  48199. },
  48200. ]
  48201. ))
  48202. characterMakers.push(() => makeCharacter(
  48203. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48204. {
  48205. side: {
  48206. height: math.unit(30, "feet"),
  48207. name: "Side",
  48208. image: {
  48209. source: "./media/characters/roggy/side.svg",
  48210. extra: 909/643,
  48211. bottom: 63/972
  48212. }
  48213. },
  48214. lounging: {
  48215. height: math.unit(20, "feet"),
  48216. name: "Lounging",
  48217. image: {
  48218. source: "./media/characters/roggy/lounging.svg",
  48219. extra: 643/479,
  48220. bottom: 145/788
  48221. }
  48222. },
  48223. handpaw: {
  48224. height: math.unit(13.1, "feet"),
  48225. name: "Handpaw",
  48226. image: {
  48227. source: "./media/characters/roggy/handpaw.svg"
  48228. }
  48229. },
  48230. footpaw: {
  48231. height: math.unit(15.8, "feet"),
  48232. name: "Footpaw",
  48233. image: {
  48234. source: "./media/characters/roggy/footpaw.svg"
  48235. }
  48236. },
  48237. },
  48238. [
  48239. {
  48240. name: "Menacing",
  48241. height: math.unit(30, "feet"),
  48242. default: true
  48243. },
  48244. ]
  48245. ))
  48246. characterMakers.push(() => makeCharacter(
  48247. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48248. {
  48249. front: {
  48250. height: math.unit(5 + 7/12, "feet"),
  48251. weight: math.unit(135, "lb"),
  48252. name: "Front",
  48253. image: {
  48254. source: "./media/characters/naomi/front.svg",
  48255. extra: 1209/1154,
  48256. bottom: 129/1338
  48257. }
  48258. },
  48259. back: {
  48260. height: math.unit(5 + 7/12, "feet"),
  48261. weight: math.unit(135, "lb"),
  48262. name: "Back",
  48263. image: {
  48264. source: "./media/characters/naomi/back.svg",
  48265. extra: 1252/1190,
  48266. bottom: 23/1275
  48267. }
  48268. },
  48269. },
  48270. [
  48271. {
  48272. name: "Normal",
  48273. height: math.unit(5 + 7 /12, "feet"),
  48274. default: true
  48275. },
  48276. ]
  48277. ))
  48278. characterMakers.push(() => makeCharacter(
  48279. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48280. {
  48281. side: {
  48282. height: math.unit(35, "meters"),
  48283. name: "Side",
  48284. image: {
  48285. source: "./media/characters/kimpi/side.svg",
  48286. extra: 419/382,
  48287. bottom: 63/482
  48288. }
  48289. },
  48290. hand: {
  48291. height: math.unit(8.96, "meters"),
  48292. name: "Hand",
  48293. image: {
  48294. source: "./media/characters/kimpi/hand.svg"
  48295. }
  48296. },
  48297. },
  48298. [
  48299. {
  48300. name: "Normal",
  48301. height: math.unit(35, "meters"),
  48302. default: true
  48303. },
  48304. ]
  48305. ))
  48306. characterMakers.push(() => makeCharacter(
  48307. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48308. {
  48309. front: {
  48310. height: math.unit(4 + 4/12, "feet"),
  48311. name: "Front",
  48312. image: {
  48313. source: "./media/characters/pepper-purrloin/front.svg",
  48314. extra: 1141/1024,
  48315. bottom: 21/1162
  48316. }
  48317. },
  48318. },
  48319. [
  48320. {
  48321. name: "Normal",
  48322. height: math.unit(4 + 4/12, "feet"),
  48323. default: true
  48324. },
  48325. ]
  48326. ))
  48327. characterMakers.push(() => makeCharacter(
  48328. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48329. {
  48330. front: {
  48331. height: math.unit(6 + 2/12, "feet"),
  48332. name: "Front",
  48333. image: {
  48334. source: "./media/characters/raphael/front.svg",
  48335. extra: 1101/962,
  48336. bottom: 59/1160
  48337. }
  48338. },
  48339. },
  48340. [
  48341. {
  48342. name: "Normal",
  48343. height: math.unit(6 + 2/12, "feet"),
  48344. default: true
  48345. },
  48346. ]
  48347. ))
  48348. characterMakers.push(() => makeCharacter(
  48349. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48350. {
  48351. front: {
  48352. height: math.unit(6, "feet"),
  48353. weight: math.unit(150, "lb"),
  48354. name: "Front",
  48355. image: {
  48356. source: "./media/characters/victor-williams/front.svg",
  48357. extra: 1894/1825,
  48358. bottom: 67/1961
  48359. }
  48360. },
  48361. },
  48362. [
  48363. {
  48364. name: "Normal",
  48365. height: math.unit(6, "feet"),
  48366. default: true
  48367. },
  48368. ]
  48369. ))
  48370. characterMakers.push(() => makeCharacter(
  48371. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48372. {
  48373. front: {
  48374. height: math.unit(5 + 8/12, "feet"),
  48375. weight: math.unit(150, "lb"),
  48376. name: "Front",
  48377. image: {
  48378. source: "./media/characters/rachel/front.svg",
  48379. extra: 1902/1787,
  48380. bottom: 46/1948
  48381. }
  48382. },
  48383. },
  48384. [
  48385. {
  48386. name: "Base Height",
  48387. height: math.unit(5 + 8/12, "feet"),
  48388. default: true
  48389. },
  48390. {
  48391. name: "Macro",
  48392. height: math.unit(200, "feet")
  48393. },
  48394. {
  48395. name: "Mega Macro",
  48396. height: math.unit(1, "mile")
  48397. },
  48398. {
  48399. name: "Giga Macro",
  48400. height: math.unit(1500, "miles")
  48401. },
  48402. {
  48403. name: "Tera Macro",
  48404. height: math.unit(8000, "miles")
  48405. },
  48406. {
  48407. name: "Tera Macro+",
  48408. height: math.unit(2e5, "miles")
  48409. },
  48410. ]
  48411. ))
  48412. characterMakers.push(() => makeCharacter(
  48413. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48414. {
  48415. front: {
  48416. height: math.unit(6.5, "feet"),
  48417. name: "Front",
  48418. image: {
  48419. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48420. extra: 860/819,
  48421. bottom: 307/1167
  48422. }
  48423. },
  48424. back: {
  48425. height: math.unit(6.5, "feet"),
  48426. name: "Back",
  48427. image: {
  48428. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48429. extra: 880/837,
  48430. bottom: 395/1275
  48431. }
  48432. },
  48433. sleeping: {
  48434. height: math.unit(2.79, "feet"),
  48435. name: "Sleeping",
  48436. image: {
  48437. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48438. extra: 465/383,
  48439. bottom: 263/728
  48440. }
  48441. },
  48442. maw: {
  48443. height: math.unit(2.52, "feet"),
  48444. name: "Maw",
  48445. image: {
  48446. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48447. }
  48448. },
  48449. },
  48450. [
  48451. {
  48452. name: "Normal",
  48453. height: math.unit(6.5, "feet"),
  48454. default: true
  48455. },
  48456. ]
  48457. ))
  48458. characterMakers.push(() => makeCharacter(
  48459. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48460. {
  48461. front: {
  48462. height: math.unit(5, "feet"),
  48463. name: "Front",
  48464. image: {
  48465. source: "./media/characters/nova-nerium/front.svg",
  48466. extra: 1548/1392,
  48467. bottom: 374/1922
  48468. }
  48469. },
  48470. back: {
  48471. height: math.unit(5, "feet"),
  48472. name: "Back",
  48473. image: {
  48474. source: "./media/characters/nova-nerium/back.svg",
  48475. extra: 1658/1468,
  48476. bottom: 257/1915
  48477. }
  48478. },
  48479. },
  48480. [
  48481. {
  48482. name: "Normal",
  48483. height: math.unit(5, "feet"),
  48484. default: true
  48485. },
  48486. ]
  48487. ))
  48488. characterMakers.push(() => makeCharacter(
  48489. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48490. {
  48491. front: {
  48492. height: math.unit(5 + 4/12, "feet"),
  48493. name: "Front",
  48494. image: {
  48495. source: "./media/characters/ashe-pyriph/front.svg",
  48496. extra: 1935/1747,
  48497. bottom: 60/1995
  48498. }
  48499. },
  48500. },
  48501. [
  48502. {
  48503. name: "Normal",
  48504. height: math.unit(5 + 4/12, "feet"),
  48505. default: true
  48506. },
  48507. ]
  48508. ))
  48509. characterMakers.push(() => makeCharacter(
  48510. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48511. {
  48512. front: {
  48513. height: math.unit(8.7, "feet"),
  48514. name: "Front",
  48515. image: {
  48516. source: "./media/characters/flicker-wisp/front.svg",
  48517. extra: 1835/1613,
  48518. bottom: 449/2284
  48519. }
  48520. },
  48521. side: {
  48522. height: math.unit(8.7, "feet"),
  48523. name: "Side",
  48524. image: {
  48525. source: "./media/characters/flicker-wisp/side.svg",
  48526. extra: 1841/1642,
  48527. bottom: 336/2177
  48528. },
  48529. default: true
  48530. },
  48531. maw: {
  48532. height: math.unit(3.35, "feet"),
  48533. name: "Maw",
  48534. image: {
  48535. source: "./media/characters/flicker-wisp/maw.svg",
  48536. extra: 2338/1506,
  48537. bottom: 0/2338
  48538. }
  48539. },
  48540. ovipositor: {
  48541. height: math.unit(4.95, "feet"),
  48542. name: "Ovipositor",
  48543. image: {
  48544. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48545. }
  48546. },
  48547. egg: {
  48548. height: math.unit(0.385, "feet"),
  48549. weight: math.unit(2, "lb"),
  48550. name: "Egg",
  48551. image: {
  48552. source: "./media/characters/flicker-wisp/egg.svg"
  48553. }
  48554. },
  48555. },
  48556. [
  48557. {
  48558. name: "Normal",
  48559. height: math.unit(8.7, "feet"),
  48560. default: true
  48561. },
  48562. ]
  48563. ))
  48564. characterMakers.push(() => makeCharacter(
  48565. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48566. {
  48567. side: {
  48568. height: math.unit(11, "feet"),
  48569. name: "Side",
  48570. image: {
  48571. source: "./media/characters/faefnul/side.svg",
  48572. extra: 1100/1007,
  48573. bottom: 0/1100
  48574. }
  48575. },
  48576. },
  48577. [
  48578. {
  48579. name: "Normal",
  48580. height: math.unit(11, "feet"),
  48581. default: true
  48582. },
  48583. ]
  48584. ))
  48585. characterMakers.push(() => makeCharacter(
  48586. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48587. {
  48588. front: {
  48589. height: math.unit(6 + 2/12, "feet"),
  48590. name: "Front",
  48591. image: {
  48592. source: "./media/characters/shady/front.svg",
  48593. extra: 502/461,
  48594. bottom: 9/511
  48595. }
  48596. },
  48597. kneeling: {
  48598. height: math.unit(4.6, "feet"),
  48599. name: "Kneeling",
  48600. image: {
  48601. source: "./media/characters/shady/kneeling.svg",
  48602. extra: 1328/1219,
  48603. bottom: 117/1445
  48604. }
  48605. },
  48606. maw: {
  48607. height: math.unit(2, "feet"),
  48608. name: "Maw",
  48609. image: {
  48610. source: "./media/characters/shady/maw.svg"
  48611. }
  48612. },
  48613. },
  48614. [
  48615. {
  48616. name: "Nano",
  48617. height: math.unit(1, "mm")
  48618. },
  48619. {
  48620. name: "Micro",
  48621. height: math.unit(12, "mm")
  48622. },
  48623. {
  48624. name: "Tiny",
  48625. height: math.unit(3, "inches")
  48626. },
  48627. {
  48628. name: "Normal",
  48629. height: math.unit(6 + 2/12, "feet"),
  48630. default: true
  48631. },
  48632. {
  48633. name: "Big",
  48634. height: math.unit(15, "feet")
  48635. },
  48636. {
  48637. name: "Macro",
  48638. height: math.unit(150, "feet")
  48639. },
  48640. {
  48641. name: "Titanic",
  48642. height: math.unit(500, "feet")
  48643. },
  48644. ]
  48645. ))
  48646. characterMakers.push(() => makeCharacter(
  48647. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48648. {
  48649. front: {
  48650. height: math.unit(12, "feet"),
  48651. name: "Front",
  48652. image: {
  48653. source: "./media/characters/fenrir/front.svg",
  48654. extra: 968/875,
  48655. bottom: 22/990
  48656. }
  48657. },
  48658. },
  48659. [
  48660. {
  48661. name: "Big",
  48662. height: math.unit(12, "feet"),
  48663. default: true
  48664. },
  48665. ]
  48666. ))
  48667. characterMakers.push(() => makeCharacter(
  48668. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48669. {
  48670. front: {
  48671. height: math.unit(5 + 4/12, "feet"),
  48672. name: "Front",
  48673. image: {
  48674. source: "./media/characters/makar/front.svg",
  48675. extra: 1181/1112,
  48676. bottom: 78/1259
  48677. }
  48678. },
  48679. },
  48680. [
  48681. {
  48682. name: "Normal",
  48683. height: math.unit(5 + 4/12, "feet"),
  48684. default: true
  48685. },
  48686. ]
  48687. ))
  48688. characterMakers.push(() => makeCharacter(
  48689. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48690. {
  48691. front: {
  48692. height: math.unit(5 + 7/12, "feet"),
  48693. name: "Front",
  48694. image: {
  48695. source: "./media/characters/callow/front.svg",
  48696. extra: 1482/1304,
  48697. bottom: 23/1505
  48698. }
  48699. },
  48700. back: {
  48701. height: math.unit(5 + 7/12, "feet"),
  48702. name: "Back",
  48703. image: {
  48704. source: "./media/characters/callow/back.svg",
  48705. extra: 1484/1296,
  48706. bottom: 25/1509
  48707. }
  48708. },
  48709. },
  48710. [
  48711. {
  48712. name: "Micro",
  48713. height: math.unit(3, "inches"),
  48714. default: true
  48715. },
  48716. {
  48717. name: "Normal",
  48718. height: math.unit(5 + 7/12, "feet")
  48719. },
  48720. ]
  48721. ))
  48722. characterMakers.push(() => makeCharacter(
  48723. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48724. {
  48725. front: {
  48726. height: math.unit(6 + 2/12, "feet"),
  48727. name: "Front",
  48728. image: {
  48729. source: "./media/characters/natel/front.svg",
  48730. extra: 1833/1692,
  48731. bottom: 166/1999
  48732. }
  48733. },
  48734. },
  48735. [
  48736. {
  48737. name: "Normal",
  48738. height: math.unit(6 + 2/12, "feet"),
  48739. default: true
  48740. },
  48741. ]
  48742. ))
  48743. characterMakers.push(() => makeCharacter(
  48744. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48745. {
  48746. front: {
  48747. height: math.unit(1.75, "meters"),
  48748. name: "Front",
  48749. image: {
  48750. source: "./media/characters/misu/front.svg",
  48751. extra: 1690/1558,
  48752. bottom: 234/1924
  48753. }
  48754. },
  48755. back: {
  48756. height: math.unit(1.75, "meters"),
  48757. name: "Back",
  48758. image: {
  48759. source: "./media/characters/misu/back.svg",
  48760. extra: 1762/1618,
  48761. bottom: 146/1908
  48762. }
  48763. },
  48764. frontNude: {
  48765. height: math.unit(1.75, "meters"),
  48766. name: "Front (Nude)",
  48767. image: {
  48768. source: "./media/characters/misu/front-nude.svg",
  48769. extra: 1690/1558,
  48770. bottom: 234/1924
  48771. }
  48772. },
  48773. backNude: {
  48774. height: math.unit(1.75, "meters"),
  48775. name: "Back (Nude)",
  48776. image: {
  48777. source: "./media/characters/misu/back-nude.svg",
  48778. extra: 1762/1618,
  48779. bottom: 146/1908
  48780. }
  48781. },
  48782. frontErect: {
  48783. height: math.unit(1.75, "meters"),
  48784. name: "Front (Erect)",
  48785. image: {
  48786. source: "./media/characters/misu/front-erect.svg",
  48787. extra: 1690/1558,
  48788. bottom: 234/1924
  48789. }
  48790. },
  48791. maw: {
  48792. height: math.unit(0.47, "meters"),
  48793. name: "Maw",
  48794. image: {
  48795. source: "./media/characters/misu/maw.svg"
  48796. }
  48797. },
  48798. head: {
  48799. height: math.unit(0.35, "meters"),
  48800. name: "Head",
  48801. image: {
  48802. source: "./media/characters/misu/head.svg"
  48803. }
  48804. },
  48805. rear: {
  48806. height: math.unit(0.47, "meters"),
  48807. name: "Rear",
  48808. image: {
  48809. source: "./media/characters/misu/rear.svg"
  48810. }
  48811. },
  48812. },
  48813. [
  48814. {
  48815. name: "Normal",
  48816. height: math.unit(1.75, "meters")
  48817. },
  48818. {
  48819. name: "Not good for the people",
  48820. height: math.unit(42, "meters")
  48821. },
  48822. {
  48823. name: "Not good for the neighborhood",
  48824. height: math.unit(135, "meters")
  48825. },
  48826. {
  48827. name: "Bit bigger problem",
  48828. height: math.unit(380, "meters"),
  48829. default: true
  48830. },
  48831. {
  48832. name: "Not good for the city",
  48833. height: math.unit(1.5, "km")
  48834. },
  48835. {
  48836. name: "Not good for the county",
  48837. height: math.unit(5.5, "km")
  48838. },
  48839. {
  48840. name: "Not good for the state",
  48841. height: math.unit(25, "km")
  48842. },
  48843. {
  48844. name: "Not good for the country",
  48845. height: math.unit(125, "km")
  48846. },
  48847. {
  48848. name: "Not good for the continent",
  48849. height: math.unit(2100, "km")
  48850. },
  48851. {
  48852. name: "Not good for the planet",
  48853. height: math.unit(35000, "km")
  48854. },
  48855. {
  48856. name: "Just no",
  48857. height: math.unit(8.5e18, "km")
  48858. },
  48859. ]
  48860. ))
  48861. characterMakers.push(() => makeCharacter(
  48862. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48863. {
  48864. front: {
  48865. height: math.unit(6.5, "feet"),
  48866. name: "Front",
  48867. image: {
  48868. source: "./media/characters/poppy/front.svg",
  48869. extra: 1878/1812,
  48870. bottom: 43/1921
  48871. }
  48872. },
  48873. feet: {
  48874. height: math.unit(1.06, "feet"),
  48875. name: "Feet",
  48876. image: {
  48877. source: "./media/characters/poppy/feet.svg",
  48878. extra: 1083/1083,
  48879. bottom: 87/1170
  48880. }
  48881. },
  48882. },
  48883. [
  48884. {
  48885. name: "Human",
  48886. height: math.unit(6.5, "feet")
  48887. },
  48888. {
  48889. name: "Default",
  48890. height: math.unit(300, "feet"),
  48891. default: true
  48892. },
  48893. {
  48894. name: "Huge",
  48895. height: math.unit(850, "feet")
  48896. },
  48897. {
  48898. name: "Mega",
  48899. height: math.unit(8000, "feet")
  48900. },
  48901. {
  48902. name: "Giga",
  48903. height: math.unit(300, "miles")
  48904. },
  48905. ]
  48906. ))
  48907. characterMakers.push(() => makeCharacter(
  48908. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48909. {
  48910. bipedal: {
  48911. height: math.unit(7, "feet"),
  48912. name: "Bipedal",
  48913. image: {
  48914. source: "./media/characters/zener/bipedal.svg",
  48915. extra: 874/805,
  48916. bottom: 109/983
  48917. }
  48918. },
  48919. quadrupedal: {
  48920. height: math.unit(4.64, "feet"),
  48921. name: "Quadrupedal",
  48922. image: {
  48923. source: "./media/characters/zener/quadrupedal.svg",
  48924. extra: 638/507,
  48925. bottom: 190/828
  48926. }
  48927. },
  48928. cock: {
  48929. height: math.unit(18, "inches"),
  48930. name: "Cock",
  48931. image: {
  48932. source: "./media/characters/zener/cock.svg"
  48933. }
  48934. },
  48935. },
  48936. [
  48937. {
  48938. name: "Normal",
  48939. height: math.unit(7, "feet"),
  48940. default: true
  48941. },
  48942. ]
  48943. ))
  48944. characterMakers.push(() => makeCharacter(
  48945. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48946. {
  48947. nude: {
  48948. height: math.unit(5 + 6/12, "feet"),
  48949. name: "Nude",
  48950. image: {
  48951. source: "./media/characters/charlie-dog/nude.svg",
  48952. extra: 768/734,
  48953. bottom: 26/794
  48954. }
  48955. },
  48956. dressed: {
  48957. height: math.unit(5 + 6/12, "feet"),
  48958. name: "Dressed",
  48959. image: {
  48960. source: "./media/characters/charlie-dog/dressed.svg",
  48961. extra: 768/734,
  48962. bottom: 26/794
  48963. }
  48964. },
  48965. },
  48966. [
  48967. {
  48968. name: "Normal",
  48969. height: math.unit(5 + 6/12, "feet"),
  48970. default: true
  48971. },
  48972. ]
  48973. ))
  48974. characterMakers.push(() => makeCharacter(
  48975. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48976. {
  48977. front: {
  48978. height: math.unit(6 + 4/12, "feet"),
  48979. name: "Front",
  48980. image: {
  48981. source: "./media/characters/ir'istrasz/front.svg",
  48982. extra: 1014/977,
  48983. bottom: 65/1079
  48984. }
  48985. },
  48986. back: {
  48987. height: math.unit(6 + 4/12, "feet"),
  48988. name: "Back",
  48989. image: {
  48990. source: "./media/characters/ir'istrasz/back.svg",
  48991. extra: 1024/992,
  48992. bottom: 34/1058
  48993. }
  48994. },
  48995. },
  48996. [
  48997. {
  48998. name: "Normal",
  48999. height: math.unit(6 + 4/12, "feet"),
  49000. default: true
  49001. },
  49002. ]
  49003. ))
  49004. characterMakers.push(() => makeCharacter(
  49005. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49006. {
  49007. front: {
  49008. height: math.unit(5 + 8/12, "feet"),
  49009. name: "Front",
  49010. image: {
  49011. source: "./media/characters/dee-ditto/front.svg",
  49012. extra: 1874/1785,
  49013. bottom: 68/1942
  49014. }
  49015. },
  49016. back: {
  49017. height: math.unit(5 + 8/12, "feet"),
  49018. name: "Back",
  49019. image: {
  49020. source: "./media/characters/dee-ditto/back.svg",
  49021. extra: 1870/1783,
  49022. bottom: 77/1947
  49023. }
  49024. },
  49025. },
  49026. [
  49027. {
  49028. name: "Normal",
  49029. height: math.unit(5 + 8/12, "feet"),
  49030. default: true
  49031. },
  49032. ]
  49033. ))
  49034. characterMakers.push(() => makeCharacter(
  49035. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49036. {
  49037. front: {
  49038. height: math.unit(7 + 6/12, "feet"),
  49039. name: "Front",
  49040. image: {
  49041. source: "./media/characters/fey/front.svg",
  49042. extra: 995/979,
  49043. bottom: 30/1025
  49044. }
  49045. },
  49046. back: {
  49047. height: math.unit(7 + 6/12, "feet"),
  49048. name: "Back",
  49049. image: {
  49050. source: "./media/characters/fey/back.svg",
  49051. extra: 1079/1008,
  49052. bottom: 5/1084
  49053. }
  49054. },
  49055. dressed: {
  49056. height: math.unit(7 + 6/12, "feet"),
  49057. name: "Dressed",
  49058. image: {
  49059. source: "./media/characters/fey/dressed.svg",
  49060. extra: 995/979,
  49061. bottom: 30/1025
  49062. }
  49063. },
  49064. },
  49065. [
  49066. {
  49067. name: "Normal",
  49068. height: math.unit(7 + 6/12, "feet"),
  49069. default: true
  49070. },
  49071. ]
  49072. ))
  49073. characterMakers.push(() => makeCharacter(
  49074. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49075. {
  49076. standing: {
  49077. height: math.unit(17, "feet"),
  49078. name: "Standing",
  49079. image: {
  49080. source: "./media/characters/aster/standing.svg",
  49081. extra: 1798/1598,
  49082. bottom: 117/1915
  49083. }
  49084. },
  49085. },
  49086. [
  49087. {
  49088. name: "Normal",
  49089. height: math.unit(17, "feet"),
  49090. default: true
  49091. },
  49092. {
  49093. name: "Homewrecker",
  49094. height: math.unit(95, "feet")
  49095. },
  49096. {
  49097. name: "Planet Devourer",
  49098. height: math.unit(1008000, "miles")
  49099. },
  49100. ]
  49101. ))
  49102. characterMakers.push(() => makeCharacter(
  49103. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49104. {
  49105. front: {
  49106. height: math.unit(6 + 5/12, "feet"),
  49107. weight: math.unit(265, "lb"),
  49108. name: "Front",
  49109. image: {
  49110. source: "./media/characters/devon-childs/front.svg",
  49111. extra: 1795/1721,
  49112. bottom: 41/1836
  49113. }
  49114. },
  49115. side: {
  49116. height: math.unit(6 + 5/12, "feet"),
  49117. weight: math.unit(265, "lb"),
  49118. name: "Side",
  49119. image: {
  49120. source: "./media/characters/devon-childs/side.svg",
  49121. extra: 1812/1738,
  49122. bottom: 30/1842
  49123. }
  49124. },
  49125. back: {
  49126. height: math.unit(6 + 5/12, "feet"),
  49127. weight: math.unit(265, "lb"),
  49128. name: "Back",
  49129. image: {
  49130. source: "./media/characters/devon-childs/back.svg",
  49131. extra: 1808/1735,
  49132. bottom: 23/1831
  49133. }
  49134. },
  49135. hand: {
  49136. height: math.unit(1.464, "feet"),
  49137. name: "Hand",
  49138. image: {
  49139. source: "./media/characters/devon-childs/hand.svg"
  49140. }
  49141. },
  49142. foot: {
  49143. height: math.unit(1.6, "feet"),
  49144. name: "Foot",
  49145. image: {
  49146. source: "./media/characters/devon-childs/foot.svg"
  49147. }
  49148. },
  49149. },
  49150. [
  49151. {
  49152. name: "Micro",
  49153. height: math.unit(7, "cm")
  49154. },
  49155. {
  49156. name: "Normal",
  49157. height: math.unit(6 + 5/12, "feet"),
  49158. default: true
  49159. },
  49160. {
  49161. name: "Macro",
  49162. height: math.unit(154, "feet")
  49163. },
  49164. ]
  49165. ))
  49166. characterMakers.push(() => makeCharacter(
  49167. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49168. {
  49169. front: {
  49170. height: math.unit(6, "feet"),
  49171. weight: math.unit(180, "lb"),
  49172. name: "Front",
  49173. image: {
  49174. source: "./media/characters/lydemox-vir/front.svg",
  49175. extra: 1632/1435,
  49176. bottom: 58/1690
  49177. }
  49178. },
  49179. frontSFW: {
  49180. height: math.unit(6, "feet"),
  49181. weight: math.unit(180, "lb"),
  49182. name: "Front (SFW)",
  49183. image: {
  49184. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49185. extra: 1632/1435,
  49186. bottom: 58/1690
  49187. }
  49188. },
  49189. back: {
  49190. height: math.unit(6, "feet"),
  49191. weight: math.unit(180, "lb"),
  49192. name: "Back",
  49193. image: {
  49194. source: "./media/characters/lydemox-vir/back.svg",
  49195. extra: 1593/1408,
  49196. bottom: 31/1624
  49197. }
  49198. },
  49199. paw: {
  49200. height: math.unit(1.85, "feet"),
  49201. name: "Paw",
  49202. image: {
  49203. source: "./media/characters/lydemox-vir/paw.svg"
  49204. }
  49205. },
  49206. dick: {
  49207. height: math.unit(1.8, "feet"),
  49208. name: "Dick",
  49209. image: {
  49210. source: "./media/characters/lydemox-vir/dick.svg"
  49211. }
  49212. },
  49213. },
  49214. [
  49215. {
  49216. name: "Macro",
  49217. height: math.unit(100, "feet"),
  49218. default: true
  49219. },
  49220. {
  49221. name: "Teramacro",
  49222. height: math.unit(1, "earth")
  49223. },
  49224. {
  49225. name: "Planetary",
  49226. height: math.unit(20, "earths")
  49227. },
  49228. ]
  49229. ))
  49230. characterMakers.push(() => makeCharacter(
  49231. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49232. {
  49233. front: {
  49234. height: math.unit(15 + 8/12, "feet"),
  49235. weight: math.unit(1237, "kg"),
  49236. name: "Front",
  49237. image: {
  49238. source: "./media/characters/mia/front.svg",
  49239. extra: 1573/1446,
  49240. bottom: 58/1631
  49241. }
  49242. },
  49243. },
  49244. [
  49245. {
  49246. name: "Small",
  49247. height: math.unit(9 + 5/12, "feet")
  49248. },
  49249. {
  49250. name: "Normal",
  49251. height: math.unit(15 + 8/12, "feet"),
  49252. default: true
  49253. },
  49254. ]
  49255. ))
  49256. characterMakers.push(() => makeCharacter(
  49257. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49258. {
  49259. front: {
  49260. height: math.unit(10 + 6/12, "feet"),
  49261. weight: math.unit(1.3, "tons"),
  49262. name: "Front",
  49263. image: {
  49264. source: "./media/characters/mr-graves/front.svg",
  49265. extra: 1779/1695,
  49266. bottom: 198/1977
  49267. }
  49268. },
  49269. },
  49270. [
  49271. {
  49272. name: "Normal",
  49273. height: math.unit(10 + 6 /12, "feet"),
  49274. default: true
  49275. },
  49276. ]
  49277. ))
  49278. characterMakers.push(() => makeCharacter(
  49279. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49280. {
  49281. dressedFront: {
  49282. height: math.unit(5 + 8/12, "feet"),
  49283. weight: math.unit(125, "lb"),
  49284. name: "Dressed (Front)",
  49285. image: {
  49286. source: "./media/characters/jess/dressed-front.svg",
  49287. extra: 1176/1152,
  49288. bottom: 42/1218
  49289. }
  49290. },
  49291. dressedSide: {
  49292. height: math.unit(5 + 8/12, "feet"),
  49293. weight: math.unit(125, "lb"),
  49294. name: "Dressed (Side)",
  49295. image: {
  49296. source: "./media/characters/jess/dressed-side.svg",
  49297. extra: 1204/1190,
  49298. bottom: 6/1210
  49299. }
  49300. },
  49301. nudeFront: {
  49302. height: math.unit(5 + 8/12, "feet"),
  49303. weight: math.unit(125, "lb"),
  49304. name: "Nude (Front)",
  49305. image: {
  49306. source: "./media/characters/jess/nude-front.svg",
  49307. extra: 1176/1152,
  49308. bottom: 42/1218
  49309. }
  49310. },
  49311. nudeSide: {
  49312. height: math.unit(5 + 8/12, "feet"),
  49313. weight: math.unit(125, "lb"),
  49314. name: "Nude (Side)",
  49315. image: {
  49316. source: "./media/characters/jess/nude-side.svg",
  49317. extra: 1204/1190,
  49318. bottom: 6/1210
  49319. }
  49320. },
  49321. organsFront: {
  49322. height: math.unit(2.83799342105, "feet"),
  49323. name: "Organs (Front)",
  49324. image: {
  49325. source: "./media/characters/jess/organs-front.svg"
  49326. }
  49327. },
  49328. organsSide: {
  49329. height: math.unit(2.64225290474, "feet"),
  49330. name: "Organs (Side)",
  49331. image: {
  49332. source: "./media/characters/jess/organs-side.svg"
  49333. }
  49334. },
  49335. digestiveTractFront: {
  49336. height: math.unit(2.8106580871, "feet"),
  49337. name: "Digestive Tract (Front)",
  49338. image: {
  49339. source: "./media/characters/jess/digestive-tract-front.svg"
  49340. }
  49341. },
  49342. digestiveTractSide: {
  49343. height: math.unit(2.54365045014, "feet"),
  49344. name: "Digestive Tract (Side)",
  49345. image: {
  49346. source: "./media/characters/jess/digestive-tract-side.svg"
  49347. }
  49348. },
  49349. respiratorySystemFront: {
  49350. height: math.unit(1.11196233456, "feet"),
  49351. name: "Respiratory System (Front)",
  49352. image: {
  49353. source: "./media/characters/jess/respiratory-system-front.svg"
  49354. }
  49355. },
  49356. respiratorySystemSide: {
  49357. height: math.unit(0.89327966297, "feet"),
  49358. name: "Respiratory System (Side)",
  49359. image: {
  49360. source: "./media/characters/jess/respiratory-system-side.svg"
  49361. }
  49362. },
  49363. urinaryTractFront: {
  49364. height: math.unit(1.16126356186, "feet"),
  49365. name: "Urinary Tract (Front)",
  49366. image: {
  49367. source: "./media/characters/jess/urinary-tract-front.svg"
  49368. }
  49369. },
  49370. urinaryTractSide: {
  49371. height: math.unit(1.20910039627, "feet"),
  49372. name: "Urinary Tract (Side)",
  49373. image: {
  49374. source: "./media/characters/jess/urinary-tract-side.svg"
  49375. }
  49376. },
  49377. reproductiveOrgansFront: {
  49378. height: math.unit(0.48422591566, "feet"),
  49379. name: "Reproductive Organs (Front)",
  49380. image: {
  49381. source: "./media/characters/jess/reproductive-organs-front.svg"
  49382. }
  49383. },
  49384. reproductiveOrgansSide: {
  49385. height: math.unit(0.61553314481, "feet"),
  49386. name: "Reproductive Organs (Side)",
  49387. image: {
  49388. source: "./media/characters/jess/reproductive-organs-side.svg"
  49389. }
  49390. },
  49391. breastsFront: {
  49392. height: math.unit(0.47690395121, "feet"),
  49393. name: "Breasts (Front)",
  49394. image: {
  49395. source: "./media/characters/jess/breasts-front.svg"
  49396. }
  49397. },
  49398. breastsSide: {
  49399. height: math.unit(0.30556998307, "feet"),
  49400. name: "Breasts (Side)",
  49401. image: {
  49402. source: "./media/characters/jess/breasts-side.svg"
  49403. }
  49404. },
  49405. heartFront: {
  49406. height: math.unit(0.53011022622, "feet"),
  49407. name: "Heart (Front)",
  49408. image: {
  49409. source: "./media/characters/jess/heart-front.svg"
  49410. }
  49411. },
  49412. heartSide: {
  49413. height: math.unit(0.51790695213, "feet"),
  49414. name: "Heart (Side)",
  49415. image: {
  49416. source: "./media/characters/jess/heart-side.svg"
  49417. }
  49418. },
  49419. earsAndNoseFront: {
  49420. height: math.unit(0.29385483995, "feet"),
  49421. name: "Ears and Nose (Front)",
  49422. image: {
  49423. source: "./media/characters/jess/ears-and-nose-front.svg"
  49424. }
  49425. },
  49426. earsAndNoseSide: {
  49427. height: math.unit(0.18109658741, "feet"),
  49428. name: "Ears and Nose (Side)",
  49429. image: {
  49430. source: "./media/characters/jess/ears-and-nose-side.svg"
  49431. }
  49432. },
  49433. },
  49434. [
  49435. {
  49436. name: "Normal",
  49437. height: math.unit(5 + 8/12, "feet"),
  49438. default: true
  49439. },
  49440. ]
  49441. ))
  49442. characterMakers.push(() => makeCharacter(
  49443. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49444. {
  49445. front: {
  49446. height: math.unit(6, "feet"),
  49447. weight: math.unit(6.64467e-7, "grams"),
  49448. name: "Front",
  49449. image: {
  49450. source: "./media/characters/wimpering/front.svg",
  49451. extra: 597/587,
  49452. bottom: 34/631
  49453. }
  49454. },
  49455. },
  49456. [
  49457. {
  49458. name: "Micro",
  49459. height: math.unit(0.4, "mm"),
  49460. default: true
  49461. },
  49462. ]
  49463. ))
  49464. characterMakers.push(() => makeCharacter(
  49465. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49466. {
  49467. front: {
  49468. height: math.unit(5 + 2/12, "feet"),
  49469. weight: math.unit(110, "lb"),
  49470. name: "Front",
  49471. image: {
  49472. source: "./media/characters/keltre/front.svg",
  49473. extra: 1099/1057,
  49474. bottom: 22/1121
  49475. }
  49476. },
  49477. back: {
  49478. height: math.unit(5 + 2/12, "feet"),
  49479. weight: math.unit(110, "lb"),
  49480. name: "Back",
  49481. image: {
  49482. source: "./media/characters/keltre/back.svg",
  49483. extra: 1095/1053,
  49484. bottom: 17/1112
  49485. }
  49486. },
  49487. dressed: {
  49488. height: math.unit(5 + 2/12, "feet"),
  49489. weight: math.unit(110, "lb"),
  49490. name: "Dressed",
  49491. image: {
  49492. source: "./media/characters/keltre/dressed.svg",
  49493. extra: 1099/1057,
  49494. bottom: 22/1121
  49495. }
  49496. },
  49497. winter: {
  49498. height: math.unit(5 + 2/12, "feet"),
  49499. weight: math.unit(110, "lb"),
  49500. name: "Winter",
  49501. image: {
  49502. source: "./media/characters/keltre/winter.svg",
  49503. extra: 1099/1057,
  49504. bottom: 22/1121
  49505. }
  49506. },
  49507. head: {
  49508. height: math.unit(1.61 * 0.86, "feet"),
  49509. name: "Head",
  49510. image: {
  49511. source: "./media/characters/keltre/head.svg",
  49512. extra: 534/421,
  49513. bottom: 0/534
  49514. }
  49515. },
  49516. hand: {
  49517. height: math.unit(1.3 * 0.86, "feet"),
  49518. name: "Hand",
  49519. image: {
  49520. source: "./media/characters/keltre/hand.svg"
  49521. }
  49522. },
  49523. foot: {
  49524. height: math.unit(1.8 * 0.86, "feet"),
  49525. name: "Foot",
  49526. image: {
  49527. source: "./media/characters/keltre/foot.svg"
  49528. }
  49529. },
  49530. },
  49531. [
  49532. {
  49533. name: "Fine",
  49534. height: math.unit(1, "inch")
  49535. },
  49536. {
  49537. name: "Dimnutive",
  49538. height: math.unit(4, "inches")
  49539. },
  49540. {
  49541. name: "Tiny",
  49542. height: math.unit(1, "foot")
  49543. },
  49544. {
  49545. name: "Small",
  49546. height: math.unit(3, "feet")
  49547. },
  49548. {
  49549. name: "Normal",
  49550. height: math.unit(5 + 2/12, "feet"),
  49551. default: true
  49552. },
  49553. ]
  49554. ))
  49555. characterMakers.push(() => makeCharacter(
  49556. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49557. {
  49558. front: {
  49559. height: math.unit(6 + 2/12, "feet"),
  49560. name: "Front",
  49561. image: {
  49562. source: "./media/characters/nox/front.svg",
  49563. extra: 1917/1830,
  49564. bottom: 74/1991
  49565. }
  49566. },
  49567. back: {
  49568. height: math.unit(6 + 2/12, "feet"),
  49569. name: "Back",
  49570. image: {
  49571. source: "./media/characters/nox/back.svg",
  49572. extra: 1896/1815,
  49573. bottom: 21/1917
  49574. }
  49575. },
  49576. head: {
  49577. height: math.unit(1.1, "feet"),
  49578. name: "Head",
  49579. image: {
  49580. source: "./media/characters/nox/head.svg",
  49581. extra: 874/704,
  49582. bottom: 0/874
  49583. }
  49584. },
  49585. tattoo: {
  49586. height: math.unit(0.729, "feet"),
  49587. name: "Tattoo",
  49588. image: {
  49589. source: "./media/characters/nox/tattoo.svg"
  49590. }
  49591. },
  49592. },
  49593. [
  49594. {
  49595. name: "Normal",
  49596. height: math.unit(6 + 2/12, "feet")
  49597. },
  49598. {
  49599. name: "Gigamacro",
  49600. height: math.unit(2, "earths"),
  49601. default: true
  49602. },
  49603. {
  49604. name: "Cosmic",
  49605. height: math.unit(867, "yottameters")
  49606. },
  49607. ]
  49608. ))
  49609. characterMakers.push(() => makeCharacter(
  49610. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49611. {
  49612. front: {
  49613. height: math.unit(6, "feet"),
  49614. weight: math.unit(150, "lb"),
  49615. name: "Front",
  49616. image: {
  49617. source: "./media/characters/caspian/front.svg",
  49618. extra: 1443/1359,
  49619. bottom: 0/1443
  49620. }
  49621. },
  49622. back: {
  49623. height: math.unit(6, "feet"),
  49624. weight: math.unit(150, "lb"),
  49625. name: "Back",
  49626. image: {
  49627. source: "./media/characters/caspian/back.svg",
  49628. extra: 1379/1309,
  49629. bottom: 0/1379
  49630. }
  49631. },
  49632. head: {
  49633. height: math.unit(0.9, "feet"),
  49634. name: "Head",
  49635. image: {
  49636. source: "./media/characters/caspian/head.svg",
  49637. extra: 692/492,
  49638. bottom: 0/692
  49639. }
  49640. },
  49641. headAlt: {
  49642. height: math.unit(0.95, "feet"),
  49643. name: "Head (Alt)",
  49644. image: {
  49645. source: "./media/characters/caspian/head-alt.svg",
  49646. extra: 668/508,
  49647. bottom: 0/668
  49648. }
  49649. },
  49650. hand: {
  49651. height: math.unit(0.8, "feet"),
  49652. name: "Hand",
  49653. image: {
  49654. source: "./media/characters/caspian/hand.svg"
  49655. }
  49656. },
  49657. paw: {
  49658. height: math.unit(0.95, "feet"),
  49659. name: "Paw",
  49660. image: {
  49661. source: "./media/characters/caspian/paw.svg"
  49662. }
  49663. },
  49664. },
  49665. [
  49666. {
  49667. name: "Normal",
  49668. height: math.unit(162, "feet"),
  49669. default: true
  49670. },
  49671. ]
  49672. ))
  49673. characterMakers.push(() => makeCharacter(
  49674. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49675. {
  49676. front: {
  49677. height: math.unit(6, "feet"),
  49678. name: "Front",
  49679. image: {
  49680. source: "./media/characters/myra-aisling/front.svg",
  49681. extra: 1268/1166,
  49682. bottom: 73/1341
  49683. }
  49684. },
  49685. back: {
  49686. height: math.unit(6, "feet"),
  49687. name: "Back",
  49688. image: {
  49689. source: "./media/characters/myra-aisling/back.svg",
  49690. extra: 1249/1149,
  49691. bottom: 79/1328
  49692. }
  49693. },
  49694. dressed: {
  49695. height: math.unit(6, "feet"),
  49696. name: "Dressed",
  49697. image: {
  49698. source: "./media/characters/myra-aisling/dressed.svg",
  49699. extra: 1290/1189,
  49700. bottom: 47/1337
  49701. }
  49702. },
  49703. hand: {
  49704. height: math.unit(1.1, "feet"),
  49705. name: "Hand",
  49706. image: {
  49707. source: "./media/characters/myra-aisling/hand.svg"
  49708. }
  49709. },
  49710. paw: {
  49711. height: math.unit(1.23, "feet"),
  49712. name: "Paw",
  49713. image: {
  49714. source: "./media/characters/myra-aisling/paw.svg"
  49715. }
  49716. },
  49717. },
  49718. [
  49719. {
  49720. name: "Normal",
  49721. height: math.unit(160, "feet"),
  49722. default: true
  49723. },
  49724. ]
  49725. ))
  49726. characterMakers.push(() => makeCharacter(
  49727. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49728. {
  49729. front: {
  49730. height: math.unit(6, "feet"),
  49731. name: "Front",
  49732. image: {
  49733. source: "./media/characters/tenley-sidero/front.svg",
  49734. extra: 1365/1276,
  49735. bottom: 47/1412
  49736. }
  49737. },
  49738. back: {
  49739. height: math.unit(6, "feet"),
  49740. name: "Back",
  49741. image: {
  49742. source: "./media/characters/tenley-sidero/back.svg",
  49743. extra: 1383/1283,
  49744. bottom: 35/1418
  49745. }
  49746. },
  49747. dressed: {
  49748. height: math.unit(6, "feet"),
  49749. name: "Dressed",
  49750. image: {
  49751. source: "./media/characters/tenley-sidero/dressed.svg",
  49752. extra: 1364/1275,
  49753. bottom: 42/1406
  49754. }
  49755. },
  49756. head: {
  49757. height: math.unit(1.47, "feet"),
  49758. name: "Head",
  49759. image: {
  49760. source: "./media/characters/tenley-sidero/head.svg",
  49761. extra: 610/490,
  49762. bottom: 0/610
  49763. }
  49764. },
  49765. },
  49766. [
  49767. {
  49768. name: "Normal",
  49769. height: math.unit(154, "feet"),
  49770. default: true
  49771. },
  49772. ]
  49773. ))
  49774. characterMakers.push(() => makeCharacter(
  49775. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49776. {
  49777. front: {
  49778. height: math.unit(5, "inches"),
  49779. name: "Front",
  49780. image: {
  49781. source: "./media/characters/mallory/front.svg",
  49782. extra: 1919/1678,
  49783. bottom: 29/1948
  49784. }
  49785. },
  49786. hand: {
  49787. height: math.unit(0.73, "inches"),
  49788. name: "Hand",
  49789. image: {
  49790. source: "./media/characters/mallory/hand.svg"
  49791. }
  49792. },
  49793. paw: {
  49794. height: math.unit(0.68, "inches"),
  49795. name: "Paw",
  49796. image: {
  49797. source: "./media/characters/mallory/paw.svg"
  49798. }
  49799. },
  49800. },
  49801. [
  49802. {
  49803. name: "Small",
  49804. height: math.unit(5, "inches"),
  49805. default: true
  49806. },
  49807. ]
  49808. ))
  49809. characterMakers.push(() => makeCharacter(
  49810. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49811. {
  49812. naked: {
  49813. height: math.unit(6, "feet"),
  49814. name: "Naked",
  49815. image: {
  49816. source: "./media/characters/mab/naked.svg",
  49817. extra: 1855/1757,
  49818. bottom: 208/2063
  49819. }
  49820. },
  49821. outside: {
  49822. height: math.unit(6, "feet"),
  49823. name: "Outside",
  49824. image: {
  49825. source: "./media/characters/mab/outside.svg",
  49826. extra: 1855/1757,
  49827. bottom: 208/2063
  49828. }
  49829. },
  49830. party: {
  49831. height: math.unit(6, "feet"),
  49832. name: "Party",
  49833. image: {
  49834. source: "./media/characters/mab/party.svg",
  49835. extra: 1855/1757,
  49836. bottom: 208/2063
  49837. }
  49838. },
  49839. },
  49840. [
  49841. {
  49842. name: "Normal",
  49843. height: math.unit(165, "feet"),
  49844. default: true
  49845. },
  49846. ]
  49847. ))
  49848. characterMakers.push(() => makeCharacter(
  49849. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49850. {
  49851. feral: {
  49852. height: math.unit(12, "feet"),
  49853. weight: math.unit(20000, "lb"),
  49854. name: "Side",
  49855. image: {
  49856. source: "./media/characters/winter/feral.svg",
  49857. extra: 1286/943,
  49858. bottom: 112/1398
  49859. },
  49860. form: "feral",
  49861. default: true
  49862. },
  49863. feralNsfw: {
  49864. height: math.unit(12, "feet"),
  49865. weight: math.unit(20000, "lb"),
  49866. name: "Side (NSFW)",
  49867. image: {
  49868. source: "./media/characters/winter/feral-nsfw.svg",
  49869. extra: 1286/943,
  49870. bottom: 112/1398
  49871. },
  49872. form: "feral"
  49873. },
  49874. dick: {
  49875. height: math.unit(3.79, "feet"),
  49876. name: "Dick",
  49877. image: {
  49878. source: "./media/characters/winter/dick.svg"
  49879. },
  49880. form: "feral"
  49881. },
  49882. anthro: {
  49883. height: math.unit(12, "feet"),
  49884. weight: math.unit(10, "tons"),
  49885. name: "Anthro",
  49886. image: {
  49887. source: "./media/characters/winter/anthro.svg",
  49888. extra: 1701/1553,
  49889. bottom: 64/1765
  49890. },
  49891. form: "anthro",
  49892. default: true
  49893. },
  49894. },
  49895. [
  49896. {
  49897. name: "Big",
  49898. height: math.unit(12, "feet"),
  49899. default: true,
  49900. form: "feral"
  49901. },
  49902. {
  49903. name: "Big",
  49904. height: math.unit(12, "feet"),
  49905. default: true,
  49906. form: "anthro"
  49907. },
  49908. ],
  49909. {
  49910. "feral": {
  49911. name: "Feral",
  49912. default: true
  49913. },
  49914. "anthro": {
  49915. name: "Anthro"
  49916. }
  49917. }
  49918. ))
  49919. characterMakers.push(() => makeCharacter(
  49920. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49921. {
  49922. front: {
  49923. height: math.unit(4.1, "inches"),
  49924. name: "Front",
  49925. image: {
  49926. source: "./media/characters/alto/front.svg",
  49927. extra: 736/627,
  49928. bottom: 90/826
  49929. }
  49930. },
  49931. },
  49932. [
  49933. {
  49934. name: "Normal",
  49935. height: math.unit(4.1, "inches"),
  49936. default: true
  49937. },
  49938. ]
  49939. ))
  49940. characterMakers.push(() => makeCharacter(
  49941. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49942. {
  49943. sitting: {
  49944. height: math.unit(3, "feet"),
  49945. name: "Sitting",
  49946. image: {
  49947. source: "./media/characters/ratstrid-v/sitting.svg",
  49948. extra: 355/310,
  49949. bottom: 136/491
  49950. }
  49951. },
  49952. },
  49953. [
  49954. {
  49955. name: "Normal",
  49956. height: math.unit(3, "feet"),
  49957. default: true
  49958. },
  49959. ]
  49960. ))
  49961. characterMakers.push(() => makeCharacter(
  49962. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49963. {
  49964. back: {
  49965. height: math.unit(6, "feet"),
  49966. weight: math.unit(350, "lb"),
  49967. name: "Back",
  49968. image: {
  49969. source: "./media/characters/siz/back.svg",
  49970. extra: 1449/1274,
  49971. bottom: 13/1462
  49972. }
  49973. },
  49974. },
  49975. [
  49976. {
  49977. name: "Over-Overcompressed",
  49978. height: math.unit(8, "feet")
  49979. },
  49980. {
  49981. name: "Overcompressed",
  49982. height: math.unit(32, "feet")
  49983. },
  49984. {
  49985. name: "Compressed",
  49986. height: math.unit(128, "feet"),
  49987. default: true
  49988. },
  49989. {
  49990. name: "Half-Compressed",
  49991. height: math.unit(512, "feet")
  49992. },
  49993. {
  49994. name: "Quarter-Compressed",
  49995. height: math.unit(2048, "feet")
  49996. },
  49997. {
  49998. name: "Uncompressed?",
  49999. height: math.unit(8192, "feet")
  50000. },
  50001. ]
  50002. ))
  50003. characterMakers.push(() => makeCharacter(
  50004. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50005. {
  50006. front: {
  50007. height: math.unit(5 + 9/12, "feet"),
  50008. weight: math.unit(150, "lb"),
  50009. name: "Front",
  50010. image: {
  50011. source: "./media/characters/ven/front.svg",
  50012. extra: 1372/1320,
  50013. bottom: 73/1445
  50014. }
  50015. },
  50016. side: {
  50017. height: math.unit(5 + 9/12, "feet"),
  50018. weight: math.unit(1150, "lb"),
  50019. name: "Side",
  50020. image: {
  50021. source: "./media/characters/ven/side.svg",
  50022. extra: 1119/1070,
  50023. bottom: 42/1161
  50024. },
  50025. default: true
  50026. },
  50027. },
  50028. [
  50029. {
  50030. name: "Normal",
  50031. height: math.unit(5 + 9/12, "feet"),
  50032. default: true
  50033. },
  50034. ]
  50035. ))
  50036. characterMakers.push(() => makeCharacter(
  50037. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50038. {
  50039. front: {
  50040. height: math.unit(12, "feet"),
  50041. weight: math.unit(1000, "kg"),
  50042. name: "Front",
  50043. image: {
  50044. source: "./media/characters/maple/front.svg",
  50045. extra: 1193/1081,
  50046. bottom: 22/1215
  50047. }
  50048. },
  50049. },
  50050. [
  50051. {
  50052. name: "Compressed",
  50053. height: math.unit(7, "feet")
  50054. },
  50055. {
  50056. name: "Normal",
  50057. height: math.unit(12, "feet"),
  50058. default: true
  50059. },
  50060. ]
  50061. ))
  50062. characterMakers.push(() => makeCharacter(
  50063. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50064. {
  50065. front: {
  50066. height: math.unit(9, "feet"),
  50067. weight: math.unit(1500, "lb"),
  50068. name: "Front",
  50069. image: {
  50070. source: "./media/characters/nora/front.svg",
  50071. extra: 1348/1286,
  50072. bottom: 218/1566
  50073. }
  50074. },
  50075. erect: {
  50076. height: math.unit(9, "feet"),
  50077. weight: math.unit(11500, "lb"),
  50078. name: "Erect",
  50079. image: {
  50080. source: "./media/characters/nora/erect.svg",
  50081. extra: 1488/1433,
  50082. bottom: 133/1621
  50083. }
  50084. },
  50085. },
  50086. [
  50087. {
  50088. name: "Normal",
  50089. height: math.unit(9, "feet"),
  50090. default: true
  50091. },
  50092. ]
  50093. ))
  50094. characterMakers.push(() => makeCharacter(
  50095. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50096. {
  50097. front: {
  50098. height: math.unit(25, "feet"),
  50099. weight: math.unit(27500, "lb"),
  50100. name: "Front",
  50101. image: {
  50102. source: "./media/characters/north-caudin/front.svg",
  50103. extra: 1184/1082,
  50104. bottom: 23/1207
  50105. }
  50106. },
  50107. },
  50108. [
  50109. {
  50110. name: "Compressed",
  50111. height: math.unit(10, "feet")
  50112. },
  50113. {
  50114. name: "Normal",
  50115. height: math.unit(25, "feet"),
  50116. default: true
  50117. },
  50118. ]
  50119. ))
  50120. characterMakers.push(() => makeCharacter(
  50121. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50122. {
  50123. front: {
  50124. height: math.unit(9, "feet"),
  50125. weight: math.unit(1250, "lb"),
  50126. name: "Front",
  50127. image: {
  50128. source: "./media/characters/merrian/front.svg",
  50129. extra: 2393/2304,
  50130. bottom: 40/2433
  50131. }
  50132. },
  50133. },
  50134. [
  50135. {
  50136. name: "Normal",
  50137. height: math.unit(9, "feet"),
  50138. default: true
  50139. },
  50140. ]
  50141. ))
  50142. characterMakers.push(() => makeCharacter(
  50143. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50144. {
  50145. front: {
  50146. height: math.unit(9, "feet"),
  50147. weight: math.unit(1000, "lb"),
  50148. name: "Front",
  50149. image: {
  50150. source: "./media/characters/hazel/front.svg",
  50151. extra: 2351/2298,
  50152. bottom: 38/2389
  50153. }
  50154. },
  50155. },
  50156. [
  50157. {
  50158. name: "Normal",
  50159. height: math.unit(9, "feet"),
  50160. default: true
  50161. },
  50162. ]
  50163. ))
  50164. characterMakers.push(() => makeCharacter(
  50165. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50166. {
  50167. front: {
  50168. height: math.unit(13, "feet"),
  50169. weight: math.unit(3200, "lb"),
  50170. name: "Front",
  50171. image: {
  50172. source: "./media/characters/emma/front.svg",
  50173. extra: 2263/2029,
  50174. bottom: 68/2331
  50175. }
  50176. },
  50177. },
  50178. [
  50179. {
  50180. name: "Normal",
  50181. height: math.unit(13, "feet"),
  50182. default: true
  50183. },
  50184. ]
  50185. ))
  50186. characterMakers.push(() => makeCharacter(
  50187. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50188. {
  50189. front: {
  50190. height: math.unit(11 + 9/12, "feet"),
  50191. weight: math.unit(2500, "lb"),
  50192. name: "Front",
  50193. image: {
  50194. source: "./media/characters/ilumina/front.svg",
  50195. extra: 2248/2209,
  50196. bottom: 164/2412
  50197. }
  50198. },
  50199. },
  50200. [
  50201. {
  50202. name: "Normal",
  50203. height: math.unit(11 + 9/12, "feet"),
  50204. default: true
  50205. },
  50206. ]
  50207. ))
  50208. characterMakers.push(() => makeCharacter(
  50209. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50210. {
  50211. front: {
  50212. height: math.unit(8 + 10/12, "feet"),
  50213. weight: math.unit(1350, "lb"),
  50214. name: "Front",
  50215. image: {
  50216. source: "./media/characters/moonshine/front.svg",
  50217. extra: 2395/2288,
  50218. bottom: 40/2435
  50219. }
  50220. },
  50221. },
  50222. [
  50223. {
  50224. name: "Normal",
  50225. height: math.unit(8 + 10/12, "feet"),
  50226. default: true
  50227. },
  50228. ]
  50229. ))
  50230. characterMakers.push(() => makeCharacter(
  50231. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50232. {
  50233. front: {
  50234. height: math.unit(14, "feet"),
  50235. weight: math.unit(3400, "lb"),
  50236. name: "Front",
  50237. image: {
  50238. source: "./media/characters/aletia/front.svg",
  50239. extra: 1185/1052,
  50240. bottom: 21/1206
  50241. }
  50242. },
  50243. },
  50244. [
  50245. {
  50246. name: "Compressed",
  50247. height: math.unit(8, "feet")
  50248. },
  50249. {
  50250. name: "Normal",
  50251. height: math.unit(14, "feet"),
  50252. default: true
  50253. },
  50254. ]
  50255. ))
  50256. characterMakers.push(() => makeCharacter(
  50257. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50258. {
  50259. front: {
  50260. height: math.unit(17, "feet"),
  50261. weight: math.unit(6500, "lb"),
  50262. name: "Front",
  50263. image: {
  50264. source: "./media/characters/deidra/front.svg",
  50265. extra: 1201/1081,
  50266. bottom: 16/1217
  50267. }
  50268. },
  50269. },
  50270. [
  50271. {
  50272. name: "Compressed",
  50273. height: math.unit(9 + 6/12, "feet")
  50274. },
  50275. {
  50276. name: "Normal",
  50277. height: math.unit(17, "feet"),
  50278. default: true
  50279. },
  50280. ]
  50281. ))
  50282. characterMakers.push(() => makeCharacter(
  50283. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50284. {
  50285. front: {
  50286. height: math.unit(7 + 4/12, "feet"),
  50287. weight: math.unit(280, "lb"),
  50288. name: "Front",
  50289. image: {
  50290. source: "./media/characters/freki-yrmori/front.svg",
  50291. extra: 1286/1182,
  50292. bottom: 29/1315
  50293. }
  50294. },
  50295. maw: {
  50296. height: math.unit(0.9, "feet"),
  50297. name: "Maw",
  50298. image: {
  50299. source: "./media/characters/freki-yrmori/maw.svg"
  50300. }
  50301. },
  50302. },
  50303. [
  50304. {
  50305. name: "Normal",
  50306. height: math.unit(7 + 4/12, "feet"),
  50307. default: true
  50308. },
  50309. {
  50310. name: "Macro",
  50311. height: math.unit(38.5, "meters")
  50312. },
  50313. ]
  50314. ))
  50315. characterMakers.push(() => makeCharacter(
  50316. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50317. {
  50318. side: {
  50319. height: math.unit(47.2, "meters"),
  50320. weight: math.unit(10000, "tons"),
  50321. name: "Side",
  50322. image: {
  50323. source: "./media/characters/aetherios/side.svg",
  50324. extra: 2363/642,
  50325. bottom: 221/2584
  50326. }
  50327. },
  50328. top: {
  50329. height: math.unit(240, "meters"),
  50330. weight: math.unit(10000, "tons"),
  50331. name: "Top",
  50332. image: {
  50333. source: "./media/characters/aetherios/top.svg"
  50334. }
  50335. },
  50336. bottom: {
  50337. height: math.unit(240, "meters"),
  50338. weight: math.unit(10000, "tons"),
  50339. name: "Bottom",
  50340. image: {
  50341. source: "./media/characters/aetherios/bottom.svg"
  50342. }
  50343. },
  50344. head: {
  50345. height: math.unit(38.6, "meters"),
  50346. name: "Head",
  50347. image: {
  50348. source: "./media/characters/aetherios/head.svg",
  50349. extra: 1335/1112,
  50350. bottom: 0/1335
  50351. }
  50352. },
  50353. front: {
  50354. height: math.unit(29, "meters"),
  50355. name: "Front",
  50356. image: {
  50357. source: "./media/characters/aetherios/front.svg",
  50358. extra: 1266/953,
  50359. bottom: 158/1424
  50360. }
  50361. },
  50362. maw: {
  50363. height: math.unit(16.37, "meters"),
  50364. name: "Maw",
  50365. image: {
  50366. source: "./media/characters/aetherios/maw.svg",
  50367. extra: 748/637,
  50368. bottom: 0/748
  50369. },
  50370. extraAttributes: {
  50371. preyCapacity: {
  50372. name: "Capacity",
  50373. power: 3,
  50374. type: "volume",
  50375. base: math.unit(1000, "people")
  50376. },
  50377. tongueSize: {
  50378. name: "Tongue Size",
  50379. power: 2,
  50380. type: "area",
  50381. base: math.unit(21, "m^2")
  50382. }
  50383. }
  50384. },
  50385. forepaw: {
  50386. height: math.unit(18, "meters"),
  50387. name: "Forepaw",
  50388. image: {
  50389. source: "./media/characters/aetherios/forepaw.svg"
  50390. }
  50391. },
  50392. hindpaw: {
  50393. height: math.unit(23, "meters"),
  50394. name: "Hindpaw",
  50395. image: {
  50396. source: "./media/characters/aetherios/hindpaw.svg"
  50397. }
  50398. },
  50399. genitals: {
  50400. height: math.unit(42, "meters"),
  50401. name: "Genitals",
  50402. image: {
  50403. source: "./media/characters/aetherios/genitals.svg"
  50404. }
  50405. },
  50406. },
  50407. [
  50408. {
  50409. name: "Normal",
  50410. height: math.unit(47.2, "meters"),
  50411. default: true
  50412. },
  50413. {
  50414. name: "Macro",
  50415. height: math.unit(160, "meters")
  50416. },
  50417. {
  50418. name: "Mega",
  50419. height: math.unit(1.87, "km")
  50420. },
  50421. {
  50422. name: "Giga",
  50423. height: math.unit(40000, "km")
  50424. },
  50425. {
  50426. name: "Stellar",
  50427. height: math.unit(158000000, "km")
  50428. },
  50429. {
  50430. name: "Cosmic",
  50431. height: math.unit(9.46e12, "km")
  50432. },
  50433. ]
  50434. ))
  50435. characterMakers.push(() => makeCharacter(
  50436. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50437. {
  50438. front: {
  50439. height: math.unit(5 + 4/12, "feet"),
  50440. weight: math.unit(80, "lb"),
  50441. name: "Front",
  50442. image: {
  50443. source: "./media/characters/mizu-gieeg/front.svg",
  50444. extra: 850/709,
  50445. bottom: 52/902
  50446. }
  50447. },
  50448. back: {
  50449. height: math.unit(5 + 4/12, "feet"),
  50450. weight: math.unit(80, "lb"),
  50451. name: "Back",
  50452. image: {
  50453. source: "./media/characters/mizu-gieeg/back.svg",
  50454. extra: 882/745,
  50455. bottom: 25/907
  50456. }
  50457. },
  50458. },
  50459. [
  50460. {
  50461. name: "Normal",
  50462. height: math.unit(5 + 4/12, "feet"),
  50463. default: true
  50464. },
  50465. ]
  50466. ))
  50467. characterMakers.push(() => makeCharacter(
  50468. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50469. {
  50470. front: {
  50471. height: math.unit(6, "feet"),
  50472. name: "Front",
  50473. image: {
  50474. source: "./media/characters/roselle-st-papier/front.svg",
  50475. extra: 1430/1280,
  50476. bottom: 37/1467
  50477. }
  50478. },
  50479. back: {
  50480. height: math.unit(6, "feet"),
  50481. name: "Back",
  50482. image: {
  50483. source: "./media/characters/roselle-st-papier/back.svg",
  50484. extra: 1491/1296,
  50485. bottom: 23/1514
  50486. }
  50487. },
  50488. ear: {
  50489. height: math.unit(1.26, "feet"),
  50490. name: "Ear",
  50491. image: {
  50492. source: "./media/characters/roselle-st-papier/ear.svg"
  50493. }
  50494. },
  50495. },
  50496. [
  50497. {
  50498. name: "Normal",
  50499. height: math.unit(150, "feet"),
  50500. default: true
  50501. },
  50502. ]
  50503. ))
  50504. characterMakers.push(() => makeCharacter(
  50505. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50506. {
  50507. front: {
  50508. height: math.unit(1, "inches"),
  50509. name: "Front",
  50510. image: {
  50511. source: "./media/characters/valargent/front.svg",
  50512. extra: 1825/1694,
  50513. bottom: 62/1887
  50514. }
  50515. },
  50516. back: {
  50517. height: math.unit(1, "inches"),
  50518. name: "Back",
  50519. image: {
  50520. source: "./media/characters/valargent/back.svg",
  50521. extra: 1775/1682,
  50522. bottom: 88/1863
  50523. }
  50524. },
  50525. },
  50526. [
  50527. {
  50528. name: "Micro",
  50529. height: math.unit(1, "inch"),
  50530. default: true
  50531. },
  50532. ]
  50533. ))
  50534. characterMakers.push(() => makeCharacter(
  50535. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50536. {
  50537. front: {
  50538. height: math.unit(3.4, "meters"),
  50539. name: "Front",
  50540. image: {
  50541. source: "./media/characters/zarina/front.svg",
  50542. extra: 1733/1425,
  50543. bottom: 93/1826
  50544. }
  50545. },
  50546. squatting: {
  50547. height: math.unit(2.14, "meters"),
  50548. name: "Squatting",
  50549. image: {
  50550. source: "./media/characters/zarina/squatting.svg",
  50551. extra: 1073/788,
  50552. bottom: 63/1136
  50553. }
  50554. },
  50555. back: {
  50556. height: math.unit(2.14, "meters"),
  50557. name: "Back",
  50558. image: {
  50559. source: "./media/characters/zarina/back.svg",
  50560. extra: 1128/885,
  50561. bottom: 0/1128
  50562. }
  50563. },
  50564. },
  50565. [
  50566. {
  50567. name: "Normal",
  50568. height: math.unit(3.4, "meters"),
  50569. default: true
  50570. },
  50571. {
  50572. name: "Big",
  50573. height: math.unit(5, "meters")
  50574. },
  50575. {
  50576. name: "Macro",
  50577. height: math.unit(110, "meters")
  50578. },
  50579. ]
  50580. ))
  50581. characterMakers.push(() => makeCharacter(
  50582. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50583. {
  50584. front: {
  50585. height: math.unit(7, "feet"),
  50586. name: "Front",
  50587. image: {
  50588. source: "./media/characters/ventus-astro-fox/front.svg",
  50589. extra: 1792/1623,
  50590. bottom: 28/1820
  50591. }
  50592. },
  50593. back: {
  50594. height: math.unit(7, "feet"),
  50595. name: "Back",
  50596. image: {
  50597. source: "./media/characters/ventus-astro-fox/back.svg",
  50598. extra: 1789/1620,
  50599. bottom: 31/1820
  50600. }
  50601. },
  50602. outfit: {
  50603. height: math.unit(7, "feet"),
  50604. name: "Outfit",
  50605. image: {
  50606. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50607. extra: 1054/925,
  50608. bottom: 15/1069
  50609. }
  50610. },
  50611. head: {
  50612. height: math.unit(1.12, "feet"),
  50613. name: "Head",
  50614. image: {
  50615. source: "./media/characters/ventus-astro-fox/head.svg",
  50616. extra: 866/504,
  50617. bottom: 0/866
  50618. }
  50619. },
  50620. hand: {
  50621. height: math.unit(1, "feet"),
  50622. name: "Hand",
  50623. image: {
  50624. source: "./media/characters/ventus-astro-fox/hand.svg"
  50625. }
  50626. },
  50627. paw: {
  50628. height: math.unit(1.5, "feet"),
  50629. name: "Paw",
  50630. image: {
  50631. source: "./media/characters/ventus-astro-fox/paw.svg"
  50632. }
  50633. },
  50634. },
  50635. [
  50636. {
  50637. name: "Normal",
  50638. height: math.unit(7, "feet"),
  50639. default: true
  50640. },
  50641. {
  50642. name: "Macro",
  50643. height: math.unit(200, "feet")
  50644. },
  50645. {
  50646. name: "Cosmic",
  50647. height: math.unit(3, "universes")
  50648. },
  50649. ]
  50650. ))
  50651. characterMakers.push(() => makeCharacter(
  50652. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50653. {
  50654. front: {
  50655. height: math.unit(3, "meters"),
  50656. weight: math.unit(7000, "lb"),
  50657. name: "Front",
  50658. image: {
  50659. source: "./media/characters/core-t/front.svg",
  50660. extra: 5729/4941,
  50661. bottom: 1129/6858
  50662. }
  50663. },
  50664. },
  50665. [
  50666. {
  50667. name: "Big",
  50668. height: math.unit(3, "meters"),
  50669. default: true
  50670. },
  50671. ]
  50672. ))
  50673. characterMakers.push(() => makeCharacter(
  50674. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50675. {
  50676. normal: {
  50677. height: math.unit(6 + 6/12, "feet"),
  50678. weight: math.unit(275, "lb"),
  50679. name: "Front",
  50680. image: {
  50681. source: "./media/characters/cadbunny/normal.svg",
  50682. extra: 1129/947,
  50683. bottom: 93/1222
  50684. },
  50685. default: true,
  50686. form: "normal"
  50687. },
  50688. gigantamax: {
  50689. height: math.unit(26, "feet"),
  50690. weight: math.unit(16000, "lb"),
  50691. name: "Front",
  50692. image: {
  50693. source: "./media/characters/cadbunny/gigantamax.svg",
  50694. extra: 1133/944,
  50695. bottom: 90/1223
  50696. },
  50697. default: true,
  50698. form: "gigantamax"
  50699. },
  50700. },
  50701. [
  50702. {
  50703. name: "Normal",
  50704. height: math.unit(6 + 6/12, "feet"),
  50705. default: true,
  50706. form: "normal"
  50707. },
  50708. {
  50709. name: "Small",
  50710. height: math.unit(26, "feet"),
  50711. default: true,
  50712. form: "gigantamax"
  50713. },
  50714. {
  50715. name: "Large",
  50716. height: math.unit(78, "feet"),
  50717. form: "gigantamax"
  50718. },
  50719. ],
  50720. {
  50721. "normal": {
  50722. name: "Normal",
  50723. default: true
  50724. },
  50725. "gigantamax": {
  50726. name: "Gigantamax"
  50727. }
  50728. }
  50729. ))
  50730. characterMakers.push(() => makeCharacter(
  50731. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50732. {
  50733. anthroFront: {
  50734. height: math.unit(8, "feet"),
  50735. weight: math.unit(300, "lb"),
  50736. name: "Front",
  50737. image: {
  50738. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50739. extra: 1272/1176,
  50740. bottom: 53/1325
  50741. },
  50742. form: "anthro",
  50743. default: true
  50744. },
  50745. feralSide: {
  50746. height: math.unit(4, "feet"),
  50747. weight: math.unit(250, "lb"),
  50748. name: "Side",
  50749. image: {
  50750. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50751. extra: 731/621,
  50752. bottom: 0/731
  50753. },
  50754. form: "feral",
  50755. default: true
  50756. },
  50757. },
  50758. [
  50759. {
  50760. name: "Regular",
  50761. height: math.unit(8, "feet"),
  50762. form: "anthro"
  50763. },
  50764. {
  50765. name: "Macro",
  50766. height: math.unit(250, "feet"),
  50767. form: "anthro",
  50768. default: true
  50769. },
  50770. {
  50771. name: "Regular",
  50772. height: math.unit(4, "feet"),
  50773. form: "feral"
  50774. },
  50775. {
  50776. name: "Macro",
  50777. height: math.unit(125, "feet"),
  50778. form: "feral",
  50779. default: true
  50780. },
  50781. ],
  50782. {
  50783. "anthro": {
  50784. name: "Anthro",
  50785. default: true
  50786. },
  50787. "feral": {
  50788. name: "Feral",
  50789. },
  50790. }
  50791. ))
  50792. characterMakers.push(() => makeCharacter(
  50793. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50794. {
  50795. front: {
  50796. height: math.unit(11 + 10/12, "feet"),
  50797. weight: math.unit(1587, "kg"),
  50798. name: "Front",
  50799. image: {
  50800. source: "./media/characters/maple-javira-dragon/front.svg",
  50801. extra: 1136/744,
  50802. bottom: 73/1209
  50803. }
  50804. },
  50805. side: {
  50806. height: math.unit(11 + 10/12, "feet"),
  50807. weight: math.unit(1587, "kg"),
  50808. name: "Side",
  50809. image: {
  50810. source: "./media/characters/maple-javira-dragon/side.svg",
  50811. extra: 712/505,
  50812. bottom: 17/729
  50813. }
  50814. },
  50815. head: {
  50816. height: math.unit(8.05, "feet"),
  50817. name: "Head",
  50818. image: {
  50819. source: "./media/characters/maple-javira-dragon/head.svg",
  50820. extra: 1420/1344,
  50821. bottom: 0/1420
  50822. }
  50823. },
  50824. },
  50825. [
  50826. {
  50827. name: "Normal",
  50828. height: math.unit(11 + 10/12, "feet"),
  50829. default: true
  50830. },
  50831. ]
  50832. ))
  50833. characterMakers.push(() => makeCharacter(
  50834. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50835. {
  50836. front: {
  50837. height: math.unit(117, "cm"),
  50838. weight: math.unit(50, "kg"),
  50839. name: "Front",
  50840. image: {
  50841. source: "./media/characters/sonia-wyverntail/front.svg",
  50842. extra: 708/592,
  50843. bottom: 25/733
  50844. }
  50845. },
  50846. },
  50847. [
  50848. {
  50849. name: "Normal",
  50850. height: math.unit(117, "cm"),
  50851. default: true
  50852. },
  50853. ]
  50854. ))
  50855. characterMakers.push(() => makeCharacter(
  50856. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50857. {
  50858. front: {
  50859. height: math.unit(6 + 5/12, "feet"),
  50860. name: "Front",
  50861. image: {
  50862. source: "./media/characters/micah/front.svg",
  50863. extra: 1758/1546,
  50864. bottom: 214/1972
  50865. }
  50866. },
  50867. },
  50868. [
  50869. {
  50870. name: "Normal",
  50871. height: math.unit(6 + 5/12, "feet"),
  50872. default: true
  50873. },
  50874. ]
  50875. ))
  50876. characterMakers.push(() => makeCharacter(
  50877. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50878. {
  50879. front: {
  50880. height: math.unit(5 + 10/12, "feet"),
  50881. weight: math.unit(220, "lb"),
  50882. name: "Front",
  50883. image: {
  50884. source: "./media/characters/zarya/front.svg",
  50885. extra: 593/572,
  50886. bottom: 50/643
  50887. }
  50888. },
  50889. back: {
  50890. height: math.unit(5 + 10/12, "feet"),
  50891. weight: math.unit(220, "lb"),
  50892. name: "Back",
  50893. image: {
  50894. source: "./media/characters/zarya/back.svg",
  50895. extra: 603/582,
  50896. bottom: 38/641
  50897. }
  50898. },
  50899. },
  50900. [
  50901. {
  50902. name: "Normal",
  50903. height: math.unit(5 + 10/12, "feet"),
  50904. default: true
  50905. },
  50906. ]
  50907. ))
  50908. characterMakers.push(() => makeCharacter(
  50909. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50910. {
  50911. front: {
  50912. height: math.unit(7.5, "feet"),
  50913. name: "Front",
  50914. image: {
  50915. source: "./media/characters/sven-hatisson/front.svg",
  50916. extra: 917/857,
  50917. bottom: 42/959
  50918. }
  50919. },
  50920. back: {
  50921. height: math.unit(7.5, "feet"),
  50922. name: "Back",
  50923. image: {
  50924. source: "./media/characters/sven-hatisson/back.svg",
  50925. extra: 903/856,
  50926. bottom: 15/918
  50927. }
  50928. },
  50929. },
  50930. [
  50931. {
  50932. name: "Base Height",
  50933. height: math.unit(7.5, "feet")
  50934. },
  50935. {
  50936. name: "Usual Height",
  50937. height: math.unit(13.5, "feet"),
  50938. default: true
  50939. },
  50940. {
  50941. name: "Smaller Macro",
  50942. height: math.unit(85, "feet")
  50943. },
  50944. {
  50945. name: "Moderate Macro",
  50946. height: math.unit(320, "feet")
  50947. },
  50948. {
  50949. name: "Large Macro",
  50950. height: math.unit(1000, "feet")
  50951. },
  50952. {
  50953. name: "Largest Size",
  50954. height: math.unit(2, "miles")
  50955. },
  50956. ]
  50957. ))
  50958. characterMakers.push(() => makeCharacter(
  50959. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50960. {
  50961. side: {
  50962. height: math.unit(1.8, "meters"),
  50963. weight: math.unit(275, "kg"),
  50964. name: "Side",
  50965. image: {
  50966. source: "./media/characters/terra/side.svg",
  50967. extra: 1273/1147,
  50968. bottom: 0/1273
  50969. }
  50970. },
  50971. },
  50972. [
  50973. {
  50974. name: "Normal",
  50975. height: math.unit(16.2, "meters"),
  50976. default: true
  50977. },
  50978. ]
  50979. ))
  50980. characterMakers.push(() => makeCharacter(
  50981. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50982. {
  50983. borzoiFront: {
  50984. height: math.unit(6 + 9/12, "feet"),
  50985. name: "Front",
  50986. image: {
  50987. source: "./media/characters/rae/borzoi-front.svg",
  50988. extra: 1161/1098,
  50989. bottom: 31/1192
  50990. },
  50991. form: "borzoi",
  50992. default: true
  50993. },
  50994. werewolfFront: {
  50995. height: math.unit(8 + 7/12, "feet"),
  50996. name: "Front",
  50997. image: {
  50998. source: "./media/characters/rae/werewolf-front.svg",
  50999. extra: 1411/1334,
  51000. bottom: 127/1538
  51001. },
  51002. form: "werewolf",
  51003. default: true
  51004. },
  51005. },
  51006. [
  51007. {
  51008. name: "Normal",
  51009. height: math.unit(6 + 9/12, "feet"),
  51010. default: true,
  51011. form: "borzoi"
  51012. },
  51013. {
  51014. name: "Normal",
  51015. height: math.unit(8 + 7/12, "feet"),
  51016. default: true,
  51017. form: "werewolf"
  51018. },
  51019. ],
  51020. {
  51021. "borzoi": {
  51022. name: "Borzoi",
  51023. default: true
  51024. },
  51025. "werewolf": {
  51026. name: "Werewolf",
  51027. },
  51028. }
  51029. ))
  51030. characterMakers.push(() => makeCharacter(
  51031. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51032. {
  51033. front: {
  51034. height: math.unit(8 + 7/12, "feet"),
  51035. weight: math.unit(482, "lb"),
  51036. name: "Front",
  51037. image: {
  51038. source: "./media/characters/kit/front.svg",
  51039. extra: 1247/1103,
  51040. bottom: 41/1288
  51041. }
  51042. },
  51043. back: {
  51044. height: math.unit(8 + 7/12, "feet"),
  51045. weight: math.unit(482, "lb"),
  51046. name: "Back",
  51047. image: {
  51048. source: "./media/characters/kit/back.svg",
  51049. extra: 1252/1123,
  51050. bottom: 21/1273
  51051. }
  51052. },
  51053. paw: {
  51054. height: math.unit(1.46, "feet"),
  51055. name: "Paw",
  51056. image: {
  51057. source: "./media/characters/kit/paw.svg"
  51058. }
  51059. },
  51060. },
  51061. [
  51062. {
  51063. name: "Normal",
  51064. height: math.unit(2.61, "meters"),
  51065. default: true
  51066. },
  51067. {
  51068. name: "\"Tall\"",
  51069. height: math.unit(8.21, "meters")
  51070. },
  51071. {
  51072. name: "Tall",
  51073. height: math.unit(19.6, "meters")
  51074. },
  51075. {
  51076. name: "Very Tall",
  51077. height: math.unit(57.91, "meters")
  51078. },
  51079. {
  51080. name: "Semi-Macro",
  51081. height: math.unit(138.64, "meters")
  51082. },
  51083. {
  51084. name: "Macro",
  51085. height: math.unit(831.99, "meters")
  51086. },
  51087. {
  51088. name: "EX-Macro",
  51089. height: math.unit(96451121, "meters")
  51090. },
  51091. {
  51092. name: "S1-Omnipotent",
  51093. height: math.unit(4.42074e+9, "meters")
  51094. },
  51095. {
  51096. name: "S2-Omnipotent",
  51097. height: math.unit(9.42074e+17, "meters")
  51098. },
  51099. {
  51100. name: "Omnipotent",
  51101. height: math.unit(4.23112e+24, "meters")
  51102. },
  51103. {
  51104. name: "Hypergod",
  51105. height: math.unit(5.05176e+27, "meters")
  51106. },
  51107. {
  51108. name: "Hypergod-EX",
  51109. height: math.unit(9.45532e+49, "meters")
  51110. },
  51111. {
  51112. name: "Hypergod-SP",
  51113. height: math.unit(9.45532e+195, "meters")
  51114. },
  51115. ]
  51116. ))
  51117. characterMakers.push(() => makeCharacter(
  51118. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51119. {
  51120. side: {
  51121. height: math.unit(0.6, "meters"),
  51122. weight: math.unit(24, "kg"),
  51123. name: "Side",
  51124. image: {
  51125. source: "./media/characters/celeste/side.svg",
  51126. extra: 810/517,
  51127. bottom: 53/863
  51128. }
  51129. },
  51130. },
  51131. [
  51132. {
  51133. name: "Velociraptor",
  51134. height: math.unit(0.6, "meters"),
  51135. default: true
  51136. },
  51137. {
  51138. name: "Utahraptor",
  51139. height: math.unit(1.8, "meters")
  51140. },
  51141. {
  51142. name: "Gallimimus",
  51143. height: math.unit(4.0, "meters")
  51144. },
  51145. {
  51146. name: "Large",
  51147. height: math.unit(20, "meters")
  51148. },
  51149. {
  51150. name: "Planetary",
  51151. height: math.unit(50, "megameters")
  51152. },
  51153. {
  51154. name: "Stellar",
  51155. height: math.unit(1.5, "gigameters")
  51156. },
  51157. {
  51158. name: "Galactic",
  51159. height: math.unit(100, "exameters")
  51160. },
  51161. ]
  51162. ))
  51163. characterMakers.push(() => makeCharacter(
  51164. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51165. {
  51166. front: {
  51167. height: math.unit(6, "feet"),
  51168. weight: math.unit(210, "lb"),
  51169. name: "Front",
  51170. image: {
  51171. source: "./media/characters/glacia/front.svg",
  51172. extra: 958/901,
  51173. bottom: 45/1003
  51174. }
  51175. },
  51176. },
  51177. [
  51178. {
  51179. name: "Macro",
  51180. height: math.unit(1000, "meters"),
  51181. default: true
  51182. },
  51183. ]
  51184. ))
  51185. characterMakers.push(() => makeCharacter(
  51186. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51187. {
  51188. front: {
  51189. height: math.unit(4, "meters"),
  51190. name: "Front",
  51191. image: {
  51192. source: "./media/characters/giri/front.svg",
  51193. extra: 966/894,
  51194. bottom: 21/987
  51195. }
  51196. },
  51197. },
  51198. [
  51199. {
  51200. name: "Normal",
  51201. height: math.unit(4, "meters"),
  51202. default: true
  51203. },
  51204. ]
  51205. ))
  51206. characterMakers.push(() => makeCharacter(
  51207. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51208. {
  51209. back: {
  51210. height: math.unit(4, "feet"),
  51211. weight: math.unit(37, "lb"),
  51212. name: "Back",
  51213. image: {
  51214. source: "./media/characters/tin/back.svg",
  51215. extra: 845/780,
  51216. bottom: 28/873
  51217. }
  51218. },
  51219. },
  51220. [
  51221. {
  51222. name: "Normal",
  51223. height: math.unit(4, "feet"),
  51224. default: true
  51225. },
  51226. ]
  51227. ))
  51228. characterMakers.push(() => makeCharacter(
  51229. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51230. {
  51231. front: {
  51232. height: math.unit(25, "feet"),
  51233. name: "Front",
  51234. image: {
  51235. source: "./media/characters/cadenza-vivace/front.svg",
  51236. extra: 1842/1578,
  51237. bottom: 30/1872
  51238. }
  51239. },
  51240. },
  51241. [
  51242. {
  51243. name: "Macro",
  51244. height: math.unit(25, "feet"),
  51245. default: true
  51246. },
  51247. ]
  51248. ))
  51249. characterMakers.push(() => makeCharacter(
  51250. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51251. {
  51252. front: {
  51253. height: math.unit(10, "feet"),
  51254. weight: math.unit(625, "kg"),
  51255. name: "Front",
  51256. image: {
  51257. source: "./media/characters/zain/front.svg",
  51258. extra: 1682/1498,
  51259. bottom: 223/1905
  51260. }
  51261. },
  51262. back: {
  51263. height: math.unit(10, "feet"),
  51264. weight: math.unit(625, "kg"),
  51265. name: "Back",
  51266. image: {
  51267. source: "./media/characters/zain/back.svg",
  51268. extra: 1814/1657,
  51269. bottom: 152/1966
  51270. }
  51271. },
  51272. head: {
  51273. height: math.unit(10, "feet"),
  51274. weight: math.unit(625, "kg"),
  51275. name: "Head",
  51276. image: {
  51277. source: "./media/characters/zain/head.svg",
  51278. extra: 1059/762,
  51279. bottom: 0/1059
  51280. }
  51281. },
  51282. },
  51283. [
  51284. {
  51285. name: "Normal",
  51286. height: math.unit(10, "feet"),
  51287. default: true
  51288. },
  51289. ]
  51290. ))
  51291. characterMakers.push(() => makeCharacter(
  51292. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51293. {
  51294. front: {
  51295. height: math.unit(6 + 5/12, "feet"),
  51296. weight: math.unit(750, "lb"),
  51297. name: "Front",
  51298. image: {
  51299. source: "./media/characters/ruchex/front.svg",
  51300. extra: 877/820,
  51301. bottom: 17/894
  51302. },
  51303. extraAttributes: {
  51304. "width": {
  51305. name: "Width",
  51306. power: 1,
  51307. type: "length",
  51308. base: math.unit(4.757, "feet")
  51309. },
  51310. }
  51311. },
  51312. },
  51313. [
  51314. {
  51315. name: "Normal",
  51316. height: math.unit(6 + 5/12, "feet"),
  51317. default: true
  51318. },
  51319. ]
  51320. ))
  51321. characterMakers.push(() => makeCharacter(
  51322. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51323. {
  51324. dressedFront: {
  51325. height: math.unit(191, "cm"),
  51326. weight: math.unit(80, "kg"),
  51327. name: "Front",
  51328. image: {
  51329. source: "./media/characters/buster/dressed-front.svg",
  51330. extra: 1022/973,
  51331. bottom: 69/1091
  51332. }
  51333. },
  51334. dressedBack: {
  51335. height: math.unit(191, "cm"),
  51336. weight: math.unit(80, "kg"),
  51337. name: "Back",
  51338. image: {
  51339. source: "./media/characters/buster/dressed-back.svg",
  51340. extra: 1018/970,
  51341. bottom: 55/1073
  51342. }
  51343. },
  51344. nudeFront: {
  51345. height: math.unit(191, "cm"),
  51346. weight: math.unit(80, "kg"),
  51347. name: "Front (Nude)",
  51348. image: {
  51349. source: "./media/characters/buster/nude-front.svg",
  51350. extra: 1022/973,
  51351. bottom: 69/1091
  51352. }
  51353. },
  51354. nudeBack: {
  51355. height: math.unit(191, "cm"),
  51356. weight: math.unit(80, "kg"),
  51357. name: "Back (Nude)",
  51358. image: {
  51359. source: "./media/characters/buster/nude-back.svg",
  51360. extra: 1018/970,
  51361. bottom: 55/1073
  51362. }
  51363. },
  51364. dick: {
  51365. height: math.unit(2.59, "feet"),
  51366. name: "Dick",
  51367. image: {
  51368. source: "./media/characters/buster/dick.svg"
  51369. }
  51370. },
  51371. ass: {
  51372. height: math.unit(1.2, "feet"),
  51373. name: "Ass",
  51374. image: {
  51375. source: "./media/characters/buster/ass.svg"
  51376. }
  51377. },
  51378. },
  51379. [
  51380. {
  51381. name: "Normal",
  51382. height: math.unit(191, "cm"),
  51383. default: true
  51384. },
  51385. ]
  51386. ))
  51387. characterMakers.push(() => makeCharacter(
  51388. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51389. {
  51390. side: {
  51391. height: math.unit(8.1, "feet"),
  51392. weight: math.unit(3500, "lb"),
  51393. name: "Side",
  51394. image: {
  51395. source: "./media/characters/sonya/side.svg",
  51396. extra: 1730/1317,
  51397. bottom: 86/1816
  51398. }
  51399. },
  51400. },
  51401. [
  51402. {
  51403. name: "Normal",
  51404. height: math.unit(8.1, "feet"),
  51405. default: true
  51406. },
  51407. ]
  51408. ))
  51409. characterMakers.push(() => makeCharacter(
  51410. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51411. {
  51412. front: {
  51413. height: math.unit(6, "feet"),
  51414. weight: math.unit(150, "lb"),
  51415. name: "Front",
  51416. image: {
  51417. source: "./media/characters/cadence-andrysiak/front.svg",
  51418. extra: 1164/1121,
  51419. bottom: 60/1224
  51420. }
  51421. },
  51422. back: {
  51423. height: math.unit(6, "feet"),
  51424. weight: math.unit(150, "lb"),
  51425. name: "Back",
  51426. image: {
  51427. source: "./media/characters/cadence-andrysiak/back.svg",
  51428. extra: 1200/1165,
  51429. bottom: 9/1209
  51430. }
  51431. },
  51432. dressed: {
  51433. height: math.unit(6, "feet"),
  51434. weight: math.unit(150, "lb"),
  51435. name: "Dressed",
  51436. image: {
  51437. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51438. extra: 1164/1121,
  51439. bottom: 60/1224
  51440. }
  51441. },
  51442. },
  51443. [
  51444. {
  51445. name: "Micro",
  51446. height: math.unit(1, "mm")
  51447. },
  51448. {
  51449. name: "Normal",
  51450. height: math.unit(6, "feet"),
  51451. default: true
  51452. },
  51453. ]
  51454. ))
  51455. characterMakers.push(() => makeCharacter(
  51456. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51457. {
  51458. front: {
  51459. height: math.unit(60, "inches"),
  51460. weight: math.unit(16, "lb"),
  51461. preyCapacity: math.unit(80, "liters"),
  51462. name: "Front",
  51463. image: {
  51464. source: "./media/characters/penny-lynx/front.svg",
  51465. extra: 1959/1769,
  51466. bottom: 49/2008
  51467. }
  51468. },
  51469. },
  51470. [
  51471. {
  51472. name: "Nokia",
  51473. height: math.unit(2, "inches")
  51474. },
  51475. {
  51476. name: "Desktop",
  51477. height: math.unit(24, "inches")
  51478. },
  51479. {
  51480. name: "TV",
  51481. height: math.unit(60, "inches")
  51482. },
  51483. {
  51484. name: "Jumbotron",
  51485. height: math.unit(12, "feet")
  51486. },
  51487. {
  51488. name: "Billboard",
  51489. height: math.unit(48, "feet"),
  51490. default: true
  51491. },
  51492. {
  51493. name: "IMAX",
  51494. height: math.unit(96, "feet")
  51495. },
  51496. {
  51497. name: "SINGULARITY",
  51498. height: math.unit(864938, "miles")
  51499. },
  51500. ]
  51501. ))
  51502. characterMakers.push(() => makeCharacter(
  51503. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51504. {
  51505. front: {
  51506. height: math.unit(5 + 4/12, "feet"),
  51507. weight: math.unit(230, "lb"),
  51508. name: "Front",
  51509. image: {
  51510. source: "./media/characters/sukebe/front.svg",
  51511. extra: 2130/2038,
  51512. bottom: 90/2220
  51513. }
  51514. },
  51515. back: {
  51516. height: math.unit(3.48, "feet"),
  51517. weight: math.unit(230, "lb"),
  51518. name: "Back",
  51519. image: {
  51520. source: "./media/characters/sukebe/back.svg",
  51521. extra: 1670/1604,
  51522. bottom: 0/1670
  51523. }
  51524. },
  51525. },
  51526. [
  51527. {
  51528. name: "Normal",
  51529. height: math.unit(5 + 4/12, "feet"),
  51530. default: true
  51531. },
  51532. ]
  51533. ))
  51534. characterMakers.push(() => makeCharacter(
  51535. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51536. {
  51537. front: {
  51538. height: math.unit(6, "feet"),
  51539. name: "Front",
  51540. image: {
  51541. source: "./media/characters/nylla/front.svg",
  51542. extra: 1868/1699,
  51543. bottom: 97/1965
  51544. }
  51545. },
  51546. back: {
  51547. height: math.unit(6, "feet"),
  51548. name: "Back",
  51549. image: {
  51550. source: "./media/characters/nylla/back.svg",
  51551. extra: 1889/1712,
  51552. bottom: 93/1982
  51553. }
  51554. },
  51555. frontNsfw: {
  51556. height: math.unit(6, "feet"),
  51557. name: "Front (NSFW)",
  51558. image: {
  51559. source: "./media/characters/nylla/front-nsfw.svg",
  51560. extra: 1868/1699,
  51561. bottom: 97/1965
  51562. },
  51563. extraAttributes: {
  51564. "dickLength": {
  51565. name: "Dick Length",
  51566. power: 1,
  51567. type: "length",
  51568. base: math.unit(1.4, "feet")
  51569. },
  51570. "cumVolume": {
  51571. name: "Cum Volume",
  51572. power: 3,
  51573. type: "volume",
  51574. base: math.unit(100, "mL")
  51575. },
  51576. }
  51577. },
  51578. backNsfw: {
  51579. height: math.unit(6, "feet"),
  51580. name: "Back (NSFW)",
  51581. image: {
  51582. source: "./media/characters/nylla/back-nsfw.svg",
  51583. extra: 1889/1712,
  51584. bottom: 93/1982
  51585. }
  51586. },
  51587. maw: {
  51588. height: math.unit(2.10, "feet"),
  51589. name: "Maw",
  51590. image: {
  51591. source: "./media/characters/nylla/maw.svg"
  51592. }
  51593. },
  51594. paws: {
  51595. height: math.unit(2.06, "feet"),
  51596. name: "Paws",
  51597. image: {
  51598. source: "./media/characters/nylla/paws.svg"
  51599. }
  51600. },
  51601. muzzle: {
  51602. height: math.unit(0.61, "feet"),
  51603. name: "Muzzle",
  51604. image: {
  51605. source: "./media/characters/nylla/muzzle.svg"
  51606. }
  51607. },
  51608. sheath: {
  51609. height: math.unit(1.305, "feet"),
  51610. name: "Sheath",
  51611. image: {
  51612. source: "./media/characters/nylla/sheath.svg"
  51613. }
  51614. },
  51615. },
  51616. [
  51617. {
  51618. name: "Micro",
  51619. height: math.unit(7.5, "inches")
  51620. },
  51621. {
  51622. name: "Normal",
  51623. height: math.unit(7, "feet"),
  51624. default: true
  51625. },
  51626. {
  51627. name: "Macro",
  51628. height: math.unit(60, "feet")
  51629. },
  51630. {
  51631. name: "Mega",
  51632. height: math.unit(200, "feet")
  51633. },
  51634. ]
  51635. ))
  51636. characterMakers.push(() => makeCharacter(
  51637. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51638. {
  51639. front: {
  51640. height: math.unit(10, "feet"),
  51641. weight: math.unit(2300, "lb"),
  51642. name: "Front",
  51643. image: {
  51644. source: "./media/characters/hunt3r/front.svg",
  51645. extra: 1909/1742,
  51646. bottom: 46/1955
  51647. }
  51648. },
  51649. },
  51650. [
  51651. {
  51652. name: "Normal",
  51653. height: math.unit(10, "feet"),
  51654. default: true
  51655. },
  51656. ]
  51657. ))
  51658. characterMakers.push(() => makeCharacter(
  51659. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51660. {
  51661. dressed: {
  51662. height: math.unit(11, "feet"),
  51663. weight: math.unit(18500, "lb"),
  51664. preyCapacity: math.unit(9, "people"),
  51665. name: "Dressed",
  51666. image: {
  51667. source: "./media/characters/cylphis/dressed.svg",
  51668. extra: 1028/1003,
  51669. bottom: 75/1103
  51670. },
  51671. },
  51672. undressed: {
  51673. height: math.unit(11, "feet"),
  51674. weight: math.unit(18500, "lb"),
  51675. preyCapacity: math.unit(9, "people"),
  51676. name: "Undressed",
  51677. image: {
  51678. source: "./media/characters/cylphis/undressed.svg",
  51679. extra: 1028/1003,
  51680. bottom: 75/1103
  51681. }
  51682. },
  51683. full: {
  51684. height: math.unit(11, "feet"),
  51685. weight: math.unit(18500 + 150*9, "lb"),
  51686. preyCapacity: math.unit(9, "people"),
  51687. name: "Full",
  51688. image: {
  51689. source: "./media/characters/cylphis/full.svg",
  51690. extra: 1028/1003,
  51691. bottom: 75/1103
  51692. }
  51693. },
  51694. },
  51695. [
  51696. {
  51697. name: "Small",
  51698. height: math.unit(8, "feet")
  51699. },
  51700. {
  51701. name: "Normal",
  51702. height: math.unit(11, "feet"),
  51703. default: true
  51704. },
  51705. ]
  51706. ))
  51707. characterMakers.push(() => makeCharacter(
  51708. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51709. {
  51710. front: {
  51711. height: math.unit(2 + 7/12, "feet"),
  51712. name: "Front",
  51713. image: {
  51714. source: "./media/characters/orishan/front.svg",
  51715. extra: 1058/1023,
  51716. bottom: 23/1081
  51717. }
  51718. },
  51719. back: {
  51720. height: math.unit(2 + 7/12, "feet"),
  51721. name: "Back",
  51722. image: {
  51723. source: "./media/characters/orishan/back.svg",
  51724. extra: 1058/1023,
  51725. bottom: 23/1081
  51726. }
  51727. },
  51728. },
  51729. [
  51730. {
  51731. name: "Micro",
  51732. height: math.unit(2, "cm")
  51733. },
  51734. {
  51735. name: "Normal",
  51736. height: math.unit(2 + 7/12, "feet"),
  51737. default: true
  51738. },
  51739. ]
  51740. ))
  51741. characterMakers.push(() => makeCharacter(
  51742. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51743. {
  51744. front: {
  51745. height: math.unit(3, "meters"),
  51746. weight: math.unit(508, "kg"),
  51747. name: "Front",
  51748. image: {
  51749. source: "./media/characters/seranis/front.svg",
  51750. extra: 1478/1454,
  51751. bottom: 41/1519
  51752. }
  51753. },
  51754. },
  51755. [
  51756. {
  51757. name: "Normal",
  51758. height: math.unit(3, "meters"),
  51759. default: true
  51760. },
  51761. {
  51762. name: "Macro",
  51763. height: math.unit(108, "meters")
  51764. },
  51765. {
  51766. name: "Megamacro",
  51767. height: math.unit(1250, "meters")
  51768. },
  51769. ]
  51770. ))
  51771. characterMakers.push(() => makeCharacter(
  51772. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51773. {
  51774. undressed: {
  51775. height: math.unit(5 + 3/12, "feet"),
  51776. name: "Undressed",
  51777. image: {
  51778. source: "./media/characters/ankou/undressed.svg",
  51779. extra: 1301/1213,
  51780. bottom: 87/1388
  51781. }
  51782. },
  51783. dressed: {
  51784. height: math.unit(5 + 3/12, "feet"),
  51785. name: "Dressed",
  51786. image: {
  51787. source: "./media/characters/ankou/dressed.svg",
  51788. extra: 1301/1213,
  51789. bottom: 87/1388
  51790. }
  51791. },
  51792. head: {
  51793. height: math.unit(1.61, "feet"),
  51794. name: "Head",
  51795. image: {
  51796. source: "./media/characters/ankou/head.svg"
  51797. }
  51798. },
  51799. },
  51800. [
  51801. {
  51802. name: "Normal",
  51803. height: math.unit(5 + 3/12, "feet"),
  51804. default: true
  51805. },
  51806. ]
  51807. ))
  51808. characterMakers.push(() => makeCharacter(
  51809. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51810. {
  51811. side: {
  51812. height: math.unit(6 + 3/12, "feet"),
  51813. weight: math.unit(200, "kg"),
  51814. name: "Side",
  51815. image: {
  51816. source: "./media/characters/juniper-skunktaur/side.svg",
  51817. extra: 1574/1229,
  51818. bottom: 38/1612
  51819. }
  51820. },
  51821. front: {
  51822. height: math.unit(6 + 3/12, "feet"),
  51823. weight: math.unit(200, "kg"),
  51824. name: "Front",
  51825. image: {
  51826. source: "./media/characters/juniper-skunktaur/front.svg",
  51827. extra: 1337/1278,
  51828. bottom: 22/1359
  51829. }
  51830. },
  51831. back: {
  51832. height: math.unit(6 + 3/12, "feet"),
  51833. weight: math.unit(200, "kg"),
  51834. name: "Back",
  51835. image: {
  51836. source: "./media/characters/juniper-skunktaur/back.svg",
  51837. extra: 1618/1273,
  51838. bottom: 13/1631
  51839. }
  51840. },
  51841. top: {
  51842. height: math.unit(2.62, "feet"),
  51843. weight: math.unit(200, "kg"),
  51844. name: "Top",
  51845. image: {
  51846. source: "./media/characters/juniper-skunktaur/top.svg"
  51847. }
  51848. },
  51849. },
  51850. [
  51851. {
  51852. name: "Normal",
  51853. height: math.unit(6 + 3/12, "feet"),
  51854. default: true
  51855. },
  51856. ]
  51857. ))
  51858. characterMakers.push(() => makeCharacter(
  51859. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  51860. {
  51861. front: {
  51862. height: math.unit(20.5, "feet"),
  51863. name: "Front",
  51864. image: {
  51865. source: "./media/characters/rei/front.svg",
  51866. extra: 1349/1195,
  51867. bottom: 31/1380
  51868. }
  51869. },
  51870. back: {
  51871. height: math.unit(20.5, "feet"),
  51872. name: "Back",
  51873. image: {
  51874. source: "./media/characters/rei/back.svg",
  51875. extra: 1358/1204,
  51876. bottom: 22/1380
  51877. }
  51878. },
  51879. pawsDigi: {
  51880. height: math.unit(3.45, "feet"),
  51881. name: "Paws (Digi)",
  51882. image: {
  51883. source: "./media/characters/rei/paws-digi.svg"
  51884. }
  51885. },
  51886. pawsPlanti: {
  51887. height: math.unit(3.45, "feet"),
  51888. name: "Paws (Planti)",
  51889. image: {
  51890. source: "./media/characters/rei/paws-planti.svg"
  51891. }
  51892. },
  51893. },
  51894. [
  51895. {
  51896. name: "Normal",
  51897. height: math.unit(20.5, "feet"),
  51898. default: true
  51899. },
  51900. ]
  51901. ))
  51902. characterMakers.push(() => makeCharacter(
  51903. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  51904. {
  51905. front: {
  51906. height: math.unit(5 + 11/12, "feet"),
  51907. name: "Front",
  51908. image: {
  51909. source: "./media/characters/carina/front.svg",
  51910. extra: 1720/1449,
  51911. bottom: 14/1734
  51912. }
  51913. },
  51914. back: {
  51915. height: math.unit(5 + 11/12, "feet"),
  51916. name: "Back",
  51917. image: {
  51918. source: "./media/characters/carina/back.svg",
  51919. extra: 1493/1445,
  51920. bottom: 17/1510
  51921. }
  51922. },
  51923. paw: {
  51924. height: math.unit(0.92, "feet"),
  51925. name: "Paw",
  51926. image: {
  51927. source: "./media/characters/carina/paw.svg"
  51928. }
  51929. },
  51930. },
  51931. [
  51932. {
  51933. name: "Normal",
  51934. height: math.unit(5 + 11/12, "feet"),
  51935. default: true
  51936. },
  51937. ]
  51938. ))
  51939. characterMakers.push(() => makeCharacter(
  51940. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  51941. {
  51942. front: {
  51943. height: math.unit(4.88, "meters"),
  51944. name: "Front",
  51945. image: {
  51946. source: "./media/characters/maya/front.svg",
  51947. extra: 1222/1145,
  51948. bottom: 57/1279
  51949. }
  51950. },
  51951. },
  51952. [
  51953. {
  51954. name: "Normal",
  51955. height: math.unit(4.88, "meters"),
  51956. default: true
  51957. },
  51958. {
  51959. name: "Macro",
  51960. height: math.unit(38.1, "meters")
  51961. },
  51962. {
  51963. name: "Macro+",
  51964. height: math.unit(152.4, "meters")
  51965. },
  51966. {
  51967. name: "Macro++",
  51968. height: math.unit(16.09, "km")
  51969. },
  51970. {
  51971. name: "Mega-macro",
  51972. height: math.unit(700, "megameters")
  51973. },
  51974. ]
  51975. ))
  51976. characterMakers.push(() => makeCharacter(
  51977. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  51978. {
  51979. front: {
  51980. height: math.unit(6 + 2/12, "feet"),
  51981. weight: math.unit(500, "lb"),
  51982. preyCapacity: math.unit(4, "people"),
  51983. name: "Front",
  51984. image: {
  51985. source: "./media/characters/yepir/front.svg"
  51986. }
  51987. },
  51988. side: {
  51989. height: math.unit(6 + 2/12, "feet"),
  51990. weight: math.unit(500, "lb"),
  51991. preyCapacity: math.unit(4, "people"),
  51992. name: "Side",
  51993. image: {
  51994. source: "./media/characters/yepir/side.svg"
  51995. }
  51996. },
  51997. paw: {
  51998. height: math.unit(1.05, "feet"),
  51999. name: "Paw",
  52000. image: {
  52001. source: "./media/characters/yepir/paw.svg"
  52002. }
  52003. },
  52004. },
  52005. [
  52006. {
  52007. name: "Normal",
  52008. height: math.unit(6 + 2/12, "feet"),
  52009. default: true
  52010. },
  52011. ]
  52012. ))
  52013. characterMakers.push(() => makeCharacter(
  52014. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52015. {
  52016. front: {
  52017. height: math.unit(5 + 4/12, "feet"),
  52018. name: "Front",
  52019. image: {
  52020. source: "./media/characters/russec/front.svg",
  52021. extra: 1926/1626,
  52022. bottom: 72/1998
  52023. }
  52024. },
  52025. back: {
  52026. height: math.unit(5 + 4/12, "feet"),
  52027. name: "Back",
  52028. image: {
  52029. source: "./media/characters/russec/back.svg",
  52030. extra: 1910/1591,
  52031. bottom: 48/1958
  52032. }
  52033. },
  52034. },
  52035. [
  52036. {
  52037. name: "Small",
  52038. height: math.unit(5 + 4/12, "feet")
  52039. },
  52040. {
  52041. name: "Normal",
  52042. height: math.unit(72, "feet"),
  52043. default: true
  52044. },
  52045. ]
  52046. ))
  52047. characterMakers.push(() => makeCharacter(
  52048. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52049. {
  52050. side: {
  52051. height: math.unit(12, "feet"),
  52052. name: "Side",
  52053. image: {
  52054. source: "./media/characters/cianus/side.svg",
  52055. extra: 808/526,
  52056. bottom: 61/869
  52057. }
  52058. },
  52059. },
  52060. [
  52061. {
  52062. name: "Normal",
  52063. height: math.unit(12, "feet"),
  52064. default: true
  52065. },
  52066. ]
  52067. ))
  52068. characterMakers.push(() => makeCharacter(
  52069. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52070. {
  52071. front: {
  52072. height: math.unit(9 + 6/12, "feet"),
  52073. weight: math.unit(300, "lb"),
  52074. name: "Front",
  52075. image: {
  52076. source: "./media/characters/ahab/front.svg",
  52077. extra: 1897/1868,
  52078. bottom: 121/2018
  52079. }
  52080. },
  52081. frontNsfw: {
  52082. height: math.unit(9 + 6/12, "feet"),
  52083. weight: math.unit(300, "lb"),
  52084. name: "Front-nsfw",
  52085. image: {
  52086. source: "./media/characters/ahab/front-nsfw.svg",
  52087. extra: 1897/1868,
  52088. bottom: 121/2018
  52089. }
  52090. },
  52091. },
  52092. [
  52093. {
  52094. name: "Normal",
  52095. height: math.unit(9 + 6/12, "feet")
  52096. },
  52097. {
  52098. name: "Macro",
  52099. height: math.unit(657, "feet"),
  52100. default: true
  52101. },
  52102. ]
  52103. ))
  52104. characterMakers.push(() => makeCharacter(
  52105. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52106. {
  52107. front: {
  52108. height: math.unit(2.69, "meters"),
  52109. weight: math.unit(132, "kg"),
  52110. name: "Front",
  52111. image: {
  52112. source: "./media/characters/aarkus/front.svg",
  52113. extra: 1400/1231,
  52114. bottom: 34/1434
  52115. }
  52116. },
  52117. back: {
  52118. height: math.unit(2.69, "meters"),
  52119. weight: math.unit(132, "kg"),
  52120. name: "Back",
  52121. image: {
  52122. source: "./media/characters/aarkus/back.svg",
  52123. extra: 1381/1218,
  52124. bottom: 30/1411
  52125. }
  52126. },
  52127. frontNsfw: {
  52128. height: math.unit(2.69, "meters"),
  52129. weight: math.unit(132, "kg"),
  52130. name: "Front (NSFW)",
  52131. image: {
  52132. source: "./media/characters/aarkus/front-nsfw.svg",
  52133. extra: 1400/1231,
  52134. bottom: 34/1434
  52135. }
  52136. },
  52137. foot: {
  52138. height: math.unit(1.45, "feet"),
  52139. name: "Foot",
  52140. image: {
  52141. source: "./media/characters/aarkus/foot.svg"
  52142. }
  52143. },
  52144. head: {
  52145. height: math.unit(2.85, "feet"),
  52146. name: "Head",
  52147. image: {
  52148. source: "./media/characters/aarkus/head.svg"
  52149. }
  52150. },
  52151. headAlt: {
  52152. height: math.unit(3.07, "feet"),
  52153. name: "Head (Alt)",
  52154. image: {
  52155. source: "./media/characters/aarkus/head-alt.svg"
  52156. }
  52157. },
  52158. mouth: {
  52159. height: math.unit(1.25, "feet"),
  52160. name: "Mouth",
  52161. image: {
  52162. source: "./media/characters/aarkus/mouth.svg"
  52163. }
  52164. },
  52165. dick: {
  52166. height: math.unit(1.77, "feet"),
  52167. name: "Dick",
  52168. image: {
  52169. source: "./media/characters/aarkus/dick.svg"
  52170. }
  52171. },
  52172. },
  52173. [
  52174. {
  52175. name: "Normal",
  52176. height: math.unit(2.69, "meters"),
  52177. default: true
  52178. },
  52179. {
  52180. name: "Macro",
  52181. height: math.unit(269, "meters")
  52182. },
  52183. {
  52184. name: "Macro+",
  52185. height: math.unit(672.5, "meters")
  52186. },
  52187. {
  52188. name: "Megamacro",
  52189. height: math.unit(2.017, "km")
  52190. },
  52191. ]
  52192. ))
  52193. characterMakers.push(() => makeCharacter(
  52194. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52195. {
  52196. front: {
  52197. height: math.unit(23.47, "cm"),
  52198. weight: math.unit(600, "grams"),
  52199. name: "Front",
  52200. image: {
  52201. source: "./media/characters/diode/front.svg",
  52202. extra: 1778/1396,
  52203. bottom: 95/1873
  52204. }
  52205. },
  52206. side: {
  52207. height: math.unit(23.47, "cm"),
  52208. weight: math.unit(600, "grams"),
  52209. name: "Side",
  52210. image: {
  52211. source: "./media/characters/diode/side.svg",
  52212. extra: 1831/1404,
  52213. bottom: 86/1917
  52214. }
  52215. },
  52216. wings: {
  52217. height: math.unit(0.683, "feet"),
  52218. name: "Wings",
  52219. image: {
  52220. source: "./media/characters/diode/wings.svg"
  52221. }
  52222. },
  52223. },
  52224. [
  52225. {
  52226. name: "Normal",
  52227. height: math.unit(23.47, "cm"),
  52228. default: true
  52229. },
  52230. ]
  52231. ))
  52232. characterMakers.push(() => makeCharacter(
  52233. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52234. {
  52235. front: {
  52236. height: math.unit(6 + 3/12, "feet"),
  52237. weight: math.unit(250, "lb"),
  52238. name: "Front",
  52239. image: {
  52240. source: "./media/characters/reika/front.svg",
  52241. extra: 1120/1078,
  52242. bottom: 86/1206
  52243. }
  52244. },
  52245. },
  52246. [
  52247. {
  52248. name: "Normal",
  52249. height: math.unit(6 + 3/12, "feet"),
  52250. default: true
  52251. },
  52252. ]
  52253. ))
  52254. characterMakers.push(() => makeCharacter(
  52255. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52256. {
  52257. front: {
  52258. height: math.unit(16 + 8/12, "feet"),
  52259. weight: math.unit(9000, "lb"),
  52260. name: "Front",
  52261. image: {
  52262. source: "./media/characters/lokuto-takama/front.svg",
  52263. extra: 1774/1632,
  52264. bottom: 147/1921
  52265. },
  52266. extraAttributes: {
  52267. "bustWidth": {
  52268. name: "Bust Width",
  52269. power: 1,
  52270. type: "length",
  52271. base: math.unit(2.4, "meters")
  52272. },
  52273. "breastWeight": {
  52274. name: "Breast Weight",
  52275. power: 3,
  52276. type: "mass",
  52277. base: math.unit(1000, "kg")
  52278. },
  52279. }
  52280. },
  52281. },
  52282. [
  52283. {
  52284. name: "Normal",
  52285. height: math.unit(16 + 8/12, "feet"),
  52286. default: true
  52287. },
  52288. ]
  52289. ))
  52290. characterMakers.push(() => makeCharacter(
  52291. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52292. {
  52293. front: {
  52294. height: math.unit(10, "cm"),
  52295. weight: math.unit(850, "grams"),
  52296. name: "Front",
  52297. image: {
  52298. source: "./media/characters/owak-bone/front.svg",
  52299. extra: 1965/1801,
  52300. bottom: 31/1996
  52301. }
  52302. },
  52303. },
  52304. [
  52305. {
  52306. name: "Normal",
  52307. height: math.unit(10, "cm"),
  52308. default: true
  52309. },
  52310. ]
  52311. ))
  52312. characterMakers.push(() => makeCharacter(
  52313. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52314. {
  52315. front: {
  52316. height: math.unit(2 + 6/12, "feet"),
  52317. weight: math.unit(9, "lb"),
  52318. name: "Front",
  52319. image: {
  52320. source: "./media/characters/muffin/front.svg",
  52321. extra: 1220/1195,
  52322. bottom: 84/1304
  52323. }
  52324. },
  52325. },
  52326. [
  52327. {
  52328. name: "Normal",
  52329. height: math.unit(2 + 6/12, "feet"),
  52330. default: true
  52331. },
  52332. ]
  52333. ))
  52334. characterMakers.push(() => makeCharacter(
  52335. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52336. {
  52337. front: {
  52338. height: math.unit(7, "feet"),
  52339. name: "Front",
  52340. image: {
  52341. source: "./media/characters/chimera/front.svg",
  52342. extra: 1752/1614,
  52343. bottom: 68/1820
  52344. }
  52345. },
  52346. },
  52347. [
  52348. {
  52349. name: "Normal",
  52350. height: math.unit(7, "feet")
  52351. },
  52352. {
  52353. name: "Gigamacro",
  52354. height: math.unit(2.9, "gigameters"),
  52355. default: true
  52356. },
  52357. {
  52358. name: "Universal",
  52359. height: math.unit(1.56e26, "yottameters")
  52360. },
  52361. ]
  52362. ))
  52363. characterMakers.push(() => makeCharacter(
  52364. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52365. {
  52366. front: {
  52367. height: math.unit(3, "feet"),
  52368. weight: math.unit(20, "lb"),
  52369. name: "Front",
  52370. image: {
  52371. source: "./media/characters/kit-fennec-fox/front.svg",
  52372. extra: 1027/932,
  52373. bottom: 16/1043
  52374. }
  52375. },
  52376. back: {
  52377. height: math.unit(3, "feet"),
  52378. weight: math.unit(20, "lb"),
  52379. name: "Back",
  52380. image: {
  52381. source: "./media/characters/kit-fennec-fox/back.svg",
  52382. extra: 1027/932,
  52383. bottom: 16/1043
  52384. }
  52385. },
  52386. },
  52387. [
  52388. {
  52389. name: "Normal",
  52390. height: math.unit(3, "feet"),
  52391. default: true
  52392. },
  52393. ]
  52394. ))
  52395. characterMakers.push(() => makeCharacter(
  52396. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52397. {
  52398. front: {
  52399. height: math.unit(167, "cm"),
  52400. name: "Front",
  52401. image: {
  52402. source: "./media/characters/blue-otter/front.svg",
  52403. extra: 1951/1920,
  52404. bottom: 31/1982
  52405. }
  52406. },
  52407. },
  52408. [
  52409. {
  52410. name: "Otter-Sized",
  52411. height: math.unit(100, "cm")
  52412. },
  52413. {
  52414. name: "Normal",
  52415. height: math.unit(167, "cm"),
  52416. default: true
  52417. },
  52418. ]
  52419. ))
  52420. characterMakers.push(() => makeCharacter(
  52421. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52422. {
  52423. front: {
  52424. height: math.unit(4 + 4/12, "feet"),
  52425. name: "Front",
  52426. image: {
  52427. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52428. extra: 1072/1067,
  52429. bottom: 117/1189
  52430. }
  52431. },
  52432. back: {
  52433. height: math.unit(4 + 4/12, "feet"),
  52434. name: "Back",
  52435. image: {
  52436. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52437. extra: 1135/1129,
  52438. bottom: 57/1192
  52439. }
  52440. },
  52441. head: {
  52442. height: math.unit(1.77, "feet"),
  52443. name: "Head",
  52444. image: {
  52445. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52446. }
  52447. },
  52448. },
  52449. [
  52450. {
  52451. name: "Normal",
  52452. height: math.unit(4 + 4/12, "feet"),
  52453. default: true
  52454. },
  52455. ]
  52456. ))
  52457. characterMakers.push(() => makeCharacter(
  52458. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52459. {
  52460. front: {
  52461. height: math.unit(2, "inches"),
  52462. name: "Front",
  52463. image: {
  52464. source: "./media/characters/carley-hartford/front.svg",
  52465. extra: 1035/988,
  52466. bottom: 23/1058
  52467. }
  52468. },
  52469. back: {
  52470. height: math.unit(2, "inches"),
  52471. name: "Back",
  52472. image: {
  52473. source: "./media/characters/carley-hartford/back.svg",
  52474. extra: 1035/988,
  52475. bottom: 23/1058
  52476. }
  52477. },
  52478. dressed: {
  52479. height: math.unit(2, "inches"),
  52480. name: "Dressed",
  52481. image: {
  52482. source: "./media/characters/carley-hartford/dressed.svg",
  52483. extra: 651/620,
  52484. bottom: 0/651
  52485. }
  52486. },
  52487. },
  52488. [
  52489. {
  52490. name: "Micro",
  52491. height: math.unit(2, "inches"),
  52492. default: true
  52493. },
  52494. {
  52495. name: "Macro",
  52496. height: math.unit(6 + 3/12, "feet")
  52497. },
  52498. ]
  52499. ))
  52500. characterMakers.push(() => makeCharacter(
  52501. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52502. {
  52503. front: {
  52504. height: math.unit(2 + 3/12, "feet"),
  52505. weight: math.unit(15 + 7/16, "lb"),
  52506. name: "Front",
  52507. image: {
  52508. source: "./media/characters/duke/front.svg",
  52509. extra: 910/815,
  52510. bottom: 30/940
  52511. }
  52512. },
  52513. },
  52514. [
  52515. {
  52516. name: "Normal",
  52517. height: math.unit(2 + 3/12, "feet"),
  52518. default: true
  52519. },
  52520. ]
  52521. ))
  52522. characterMakers.push(() => makeCharacter(
  52523. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52524. {
  52525. front: {
  52526. height: math.unit(5 + 4/12, "feet"),
  52527. weight: math.unit(156, "lb"),
  52528. name: "Front",
  52529. image: {
  52530. source: "./media/characters/dein/front.svg",
  52531. extra: 855/815,
  52532. bottom: 48/903
  52533. }
  52534. },
  52535. side: {
  52536. height: math.unit(5 + 4/12, "feet"),
  52537. weight: math.unit(156, "lb"),
  52538. name: "side",
  52539. image: {
  52540. source: "./media/characters/dein/side.svg",
  52541. extra: 846/803,
  52542. bottom: 25/871
  52543. }
  52544. },
  52545. maw: {
  52546. height: math.unit(1.45, "feet"),
  52547. name: "Maw",
  52548. image: {
  52549. source: "./media/characters/dein/maw.svg"
  52550. }
  52551. },
  52552. },
  52553. [
  52554. {
  52555. name: "Ferret Sized",
  52556. height: math.unit(2 + 5/12, "feet")
  52557. },
  52558. {
  52559. name: "Normal",
  52560. height: math.unit(5 + 4/12, "feet"),
  52561. default: true
  52562. },
  52563. ]
  52564. ))
  52565. characterMakers.push(() => makeCharacter(
  52566. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52567. {
  52568. front: {
  52569. height: math.unit(84 + 8/12, "feet"),
  52570. weight: math.unit(942180, "lb"),
  52571. name: "Front",
  52572. image: {
  52573. source: "./media/characters/daurine-arima/front.svg",
  52574. extra: 1989/1782,
  52575. bottom: 37/2026
  52576. }
  52577. },
  52578. side: {
  52579. height: math.unit(84 + 8/12, "feet"),
  52580. weight: math.unit(942180, "lb"),
  52581. name: "Side",
  52582. image: {
  52583. source: "./media/characters/daurine-arima/side.svg",
  52584. extra: 1997/1790,
  52585. bottom: 21/2018
  52586. }
  52587. },
  52588. back: {
  52589. height: math.unit(84 + 8/12, "feet"),
  52590. weight: math.unit(942180, "lb"),
  52591. name: "Back",
  52592. image: {
  52593. source: "./media/characters/daurine-arima/back.svg",
  52594. extra: 1992/1800,
  52595. bottom: 12/2004
  52596. }
  52597. },
  52598. head: {
  52599. height: math.unit(15.5, "feet"),
  52600. name: "Head",
  52601. image: {
  52602. source: "./media/characters/daurine-arima/head.svg"
  52603. }
  52604. },
  52605. headAlt: {
  52606. height: math.unit(19.19, "feet"),
  52607. name: "Head (Alt)",
  52608. image: {
  52609. source: "./media/characters/daurine-arima/head-alt.svg"
  52610. }
  52611. },
  52612. },
  52613. [
  52614. {
  52615. name: "Minimum height",
  52616. height: math.unit(8 + 10/12, "feet")
  52617. },
  52618. {
  52619. name: "Comfort height",
  52620. height: math.unit(19 + 6 /12, "feet")
  52621. },
  52622. {
  52623. name: "\"Normal\" height",
  52624. height: math.unit(28 + 10/12, "feet")
  52625. },
  52626. {
  52627. name: "Base height",
  52628. height: math.unit(84 + 8/12, "feet"),
  52629. default: true
  52630. },
  52631. {
  52632. name: "Mini-macro",
  52633. height: math.unit(2360, "feet")
  52634. },
  52635. {
  52636. name: "Macro",
  52637. height: math.unit(10, "miles")
  52638. },
  52639. {
  52640. name: "Goddess",
  52641. height: math.unit(9.99e40, "yottameters")
  52642. },
  52643. ]
  52644. ))
  52645. characterMakers.push(() => makeCharacter(
  52646. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52647. {
  52648. front: {
  52649. height: math.unit(2.3, "meters"),
  52650. name: "Front",
  52651. image: {
  52652. source: "./media/characters/cilenomon/front.svg",
  52653. extra: 1963/1778,
  52654. bottom: 54/2017
  52655. }
  52656. },
  52657. },
  52658. [
  52659. {
  52660. name: "Normal",
  52661. height: math.unit(2.3, "meters"),
  52662. default: true
  52663. },
  52664. {
  52665. name: "Big",
  52666. height: math.unit(5, "meters")
  52667. },
  52668. {
  52669. name: "Macro",
  52670. height: math.unit(30, "meters")
  52671. },
  52672. {
  52673. name: "True",
  52674. height: math.unit(1, "universe")
  52675. },
  52676. ]
  52677. ))
  52678. characterMakers.push(() => makeCharacter(
  52679. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52680. {
  52681. front: {
  52682. height: math.unit(5, "feet"),
  52683. name: "Front",
  52684. image: {
  52685. source: "./media/characters/sen-mink/front.svg",
  52686. extra: 1727/1675,
  52687. bottom: 35/1762
  52688. }
  52689. },
  52690. },
  52691. [
  52692. {
  52693. name: "Normal",
  52694. height: math.unit(5, "feet"),
  52695. default: true
  52696. },
  52697. ]
  52698. ))
  52699. characterMakers.push(() => makeCharacter(
  52700. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52701. {
  52702. front: {
  52703. height: math.unit(5.42999, "feet"),
  52704. weight: math.unit(100, "lb"),
  52705. name: "Front",
  52706. image: {
  52707. source: "./media/characters/ophois/front.svg",
  52708. extra: 1429/1286,
  52709. bottom: 60/1489
  52710. }
  52711. },
  52712. },
  52713. [
  52714. {
  52715. name: "Normal",
  52716. height: math.unit(5.42999, "feet"),
  52717. default: true
  52718. },
  52719. ]
  52720. ))
  52721. characterMakers.push(() => makeCharacter(
  52722. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  52723. {
  52724. front: {
  52725. height: math.unit(2, "meters"),
  52726. name: "Front",
  52727. image: {
  52728. source: "./media/characters/riley/front.svg",
  52729. extra: 1779/1754,
  52730. bottom: 139/1918
  52731. }
  52732. },
  52733. },
  52734. [
  52735. {
  52736. name: "Normal",
  52737. height: math.unit(2, "meters"),
  52738. default: true
  52739. },
  52740. ]
  52741. ))
  52742. characterMakers.push(() => makeCharacter(
  52743. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  52744. {
  52745. front: {
  52746. height: math.unit(6 + 2/12, "feet"),
  52747. weight: math.unit(195, "lb"),
  52748. preyCapacity: math.unit(6, "people"),
  52749. name: "Front",
  52750. image: {
  52751. source: "./media/characters/shuken-flash/front.svg",
  52752. extra: 1905/1739,
  52753. bottom: 65/1970
  52754. }
  52755. },
  52756. back: {
  52757. height: math.unit(6 + 2/12, "feet"),
  52758. weight: math.unit(195, "lb"),
  52759. preyCapacity: math.unit(6, "people"),
  52760. name: "Back",
  52761. image: {
  52762. source: "./media/characters/shuken-flash/back.svg",
  52763. extra: 1912/1751,
  52764. bottom: 13/1925
  52765. }
  52766. },
  52767. },
  52768. [
  52769. {
  52770. name: "Normal",
  52771. height: math.unit(6 + 2/12, "feet"),
  52772. default: true
  52773. },
  52774. ]
  52775. ))
  52776. characterMakers.push(() => makeCharacter(
  52777. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  52778. {
  52779. front: {
  52780. height: math.unit(5 + 9/12, "feet"),
  52781. weight: math.unit(150, "lb"),
  52782. name: "Front",
  52783. image: {
  52784. source: "./media/characters/plat/front.svg",
  52785. extra: 1816/1703,
  52786. bottom: 43/1859
  52787. }
  52788. },
  52789. side: {
  52790. height: math.unit(5 + 9/12, "feet"),
  52791. weight: math.unit(300, "lb"),
  52792. name: "Side",
  52793. image: {
  52794. source: "./media/characters/plat/side.svg",
  52795. extra: 1824/1699,
  52796. bottom: 18/1842
  52797. }
  52798. },
  52799. },
  52800. [
  52801. {
  52802. name: "Normal",
  52803. height: math.unit(5 + 9/12, "feet"),
  52804. default: true
  52805. },
  52806. ]
  52807. ))
  52808. characterMakers.push(() => makeCharacter(
  52809. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  52810. {
  52811. front: {
  52812. height: math.unit(9, "feet"),
  52813. weight: math.unit(1800, "lb"),
  52814. name: "Front",
  52815. image: {
  52816. source: "./media/characters/elaine/front.svg",
  52817. extra: 1833/1354,
  52818. bottom: 25/1858
  52819. }
  52820. },
  52821. back: {
  52822. height: math.unit(8.8, "feet"),
  52823. weight: math.unit(1800, "lb"),
  52824. name: "Back",
  52825. image: {
  52826. source: "./media/characters/elaine/back.svg",
  52827. extra: 1641/1233,
  52828. bottom: 53/1694
  52829. }
  52830. },
  52831. },
  52832. [
  52833. {
  52834. name: "Normal",
  52835. height: math.unit(9, "feet"),
  52836. default: true
  52837. },
  52838. ]
  52839. ))
  52840. characterMakers.push(() => makeCharacter(
  52841. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  52842. {
  52843. front: {
  52844. height: math.unit(17 + 9/12, "feet"),
  52845. weight: math.unit(8000, "lb"),
  52846. name: "Front",
  52847. image: {
  52848. source: "./media/characters/vera-raven/front.svg",
  52849. extra: 1457/1412,
  52850. bottom: 121/1578
  52851. }
  52852. },
  52853. side: {
  52854. height: math.unit(17 + 9/12, "feet"),
  52855. weight: math.unit(8000, "lb"),
  52856. name: "Side",
  52857. image: {
  52858. source: "./media/characters/vera-raven/side.svg",
  52859. extra: 1510/1464,
  52860. bottom: 54/1564
  52861. }
  52862. },
  52863. },
  52864. [
  52865. {
  52866. name: "Normal",
  52867. height: math.unit(17 + 9/12, "feet"),
  52868. default: true
  52869. },
  52870. ]
  52871. ))
  52872. characterMakers.push(() => makeCharacter(
  52873. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  52874. {
  52875. dressed: {
  52876. height: math.unit(6 + 9/12, "feet"),
  52877. name: "Dressed",
  52878. image: {
  52879. source: "./media/characters/nakisha/dressed.svg",
  52880. extra: 1909/1757,
  52881. bottom: 48/1957
  52882. }
  52883. },
  52884. nude: {
  52885. height: math.unit(6 + 9/12, "feet"),
  52886. name: "Nude",
  52887. image: {
  52888. source: "./media/characters/nakisha/nude.svg",
  52889. extra: 1917/1765,
  52890. bottom: 34/1951
  52891. }
  52892. },
  52893. },
  52894. [
  52895. {
  52896. name: "Normal",
  52897. height: math.unit(6 + 9/12, "feet"),
  52898. default: true
  52899. },
  52900. ]
  52901. ))
  52902. characterMakers.push(() => makeCharacter(
  52903. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  52904. {
  52905. front: {
  52906. height: math.unit(87, "meters"),
  52907. name: "Front",
  52908. image: {
  52909. source: "./media/characters/serafin/front.svg",
  52910. extra: 1919/1776,
  52911. bottom: 65/1984
  52912. }
  52913. },
  52914. },
  52915. [
  52916. {
  52917. name: "Normal",
  52918. height: math.unit(87, "meters"),
  52919. default: true
  52920. },
  52921. ]
  52922. ))
  52923. characterMakers.push(() => makeCharacter(
  52924. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  52925. {
  52926. front: {
  52927. height: math.unit(6, "feet"),
  52928. weight: math.unit(200, "lb"),
  52929. name: "Front",
  52930. image: {
  52931. source: "./media/characters/poptart/front.svg",
  52932. extra: 615/583,
  52933. bottom: 23/638
  52934. }
  52935. },
  52936. back: {
  52937. height: math.unit(6, "feet"),
  52938. weight: math.unit(200, "lb"),
  52939. name: "Back",
  52940. image: {
  52941. source: "./media/characters/poptart/back.svg",
  52942. extra: 617/584,
  52943. bottom: 22/639
  52944. }
  52945. },
  52946. frontNsfw: {
  52947. height: math.unit(6, "feet"),
  52948. weight: math.unit(200, "lb"),
  52949. name: "Front (NSFW)",
  52950. image: {
  52951. source: "./media/characters/poptart/front-nsfw.svg",
  52952. extra: 615/583,
  52953. bottom: 23/638
  52954. }
  52955. },
  52956. backNsfw: {
  52957. height: math.unit(6, "feet"),
  52958. weight: math.unit(200, "lb"),
  52959. name: "Back (NSFW)",
  52960. image: {
  52961. source: "./media/characters/poptart/back-nsfw.svg",
  52962. extra: 617/584,
  52963. bottom: 22/639
  52964. }
  52965. },
  52966. hand: {
  52967. height: math.unit(1.14, "feet"),
  52968. name: "Hand",
  52969. image: {
  52970. source: "./media/characters/poptart/hand.svg"
  52971. }
  52972. },
  52973. foot: {
  52974. height: math.unit(1.5, "feet"),
  52975. name: "Foot",
  52976. image: {
  52977. source: "./media/characters/poptart/foot.svg"
  52978. }
  52979. },
  52980. },
  52981. [
  52982. {
  52983. name: "Normal",
  52984. height: math.unit(6, "feet"),
  52985. default: true
  52986. },
  52987. {
  52988. name: "Grande",
  52989. height: math.unit(350, "feet")
  52990. },
  52991. {
  52992. name: "Massif",
  52993. height: math.unit(967, "feet")
  52994. },
  52995. ]
  52996. ))
  52997. characterMakers.push(() => makeCharacter(
  52998. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  52999. {
  53000. hyenaSide: {
  53001. height: math.unit(120, "cm"),
  53002. weight: math.unit(120, "lb"),
  53003. name: "Side",
  53004. image: {
  53005. source: "./media/characters/trance/hyena-side.svg",
  53006. extra: 998/904,
  53007. bottom: 76/1074
  53008. }
  53009. },
  53010. },
  53011. [
  53012. {
  53013. name: "Normal",
  53014. height: math.unit(120, "cm"),
  53015. default: true
  53016. },
  53017. {
  53018. name: "Dire",
  53019. height: math.unit(230, "cm")
  53020. },
  53021. {
  53022. name: "Macro",
  53023. height: math.unit(37, "feet")
  53024. },
  53025. ]
  53026. ))
  53027. characterMakers.push(() => makeCharacter(
  53028. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53029. {
  53030. front: {
  53031. height: math.unit(6 + 3/12, "feet"),
  53032. name: "Front",
  53033. image: {
  53034. source: "./media/characters/michael-berretta/front.svg",
  53035. extra: 515/494,
  53036. bottom: 20/535
  53037. }
  53038. },
  53039. back: {
  53040. height: math.unit(6 + 3/12, "feet"),
  53041. name: "Back",
  53042. image: {
  53043. source: "./media/characters/michael-berretta/back.svg",
  53044. extra: 520/497,
  53045. bottom: 21/541
  53046. }
  53047. },
  53048. frontNsfw: {
  53049. height: math.unit(6 + 3/12, "feet"),
  53050. name: "Front (NSFW)",
  53051. image: {
  53052. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53053. extra: 515/494,
  53054. bottom: 20/535
  53055. }
  53056. },
  53057. dick: {
  53058. height: math.unit(1, "feet"),
  53059. name: "Dick",
  53060. image: {
  53061. source: "./media/characters/michael-berretta/dick.svg"
  53062. }
  53063. },
  53064. },
  53065. [
  53066. {
  53067. name: "Normal",
  53068. height: math.unit(6 + 3/12, "feet"),
  53069. default: true
  53070. },
  53071. {
  53072. name: "Big",
  53073. height: math.unit(12, "feet")
  53074. },
  53075. {
  53076. name: "Macro",
  53077. height: math.unit(187.5, "feet")
  53078. },
  53079. ]
  53080. ))
  53081. characterMakers.push(() => makeCharacter(
  53082. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53083. {
  53084. front: {
  53085. height: math.unit(9 + 9/12, "feet"),
  53086. weight: math.unit(1244, "lb"),
  53087. name: "Front",
  53088. image: {
  53089. source: "./media/characters/stella-edgecomb/front.svg",
  53090. extra: 1835/1706,
  53091. bottom: 49/1884
  53092. }
  53093. },
  53094. pen: {
  53095. height: math.unit(0.95, "feet"),
  53096. name: "Pen",
  53097. image: {
  53098. source: "./media/characters/stella-edgecomb/pen.svg"
  53099. }
  53100. },
  53101. },
  53102. [
  53103. {
  53104. name: "Cozy Bear",
  53105. height: math.unit(0.5, "inches")
  53106. },
  53107. {
  53108. name: "Normal",
  53109. height: math.unit(9 + 9/12, "feet"),
  53110. default: true
  53111. },
  53112. {
  53113. name: "Giga Bear",
  53114. height: math.unit(1, "mile")
  53115. },
  53116. {
  53117. name: "Great Bear",
  53118. height: math.unit(53, "miles")
  53119. },
  53120. {
  53121. name: "Goddess Bear",
  53122. height: math.unit(40000, "miles")
  53123. },
  53124. {
  53125. name: "Sun Bear",
  53126. height: math.unit(900000, "miles")
  53127. },
  53128. ]
  53129. ))
  53130. characterMakers.push(() => makeCharacter(
  53131. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53132. {
  53133. anthroFront: {
  53134. height: math.unit(556, "cm"),
  53135. weight: math.unit(2650, "kg"),
  53136. preyCapacity: math.unit(3, "people"),
  53137. name: "Front",
  53138. image: {
  53139. source: "./media/characters/ash´iika/front.svg",
  53140. extra: 710/673,
  53141. bottom: 15/725
  53142. },
  53143. form: "anthro",
  53144. default: true
  53145. },
  53146. anthroSide: {
  53147. height: math.unit(556, "cm"),
  53148. weight: math.unit(2650, "kg"),
  53149. preyCapacity: math.unit(3, "people"),
  53150. name: "Side",
  53151. image: {
  53152. source: "./media/characters/ash´iika/side.svg",
  53153. extra: 696/676,
  53154. bottom: 13/709
  53155. },
  53156. form: "anthro"
  53157. },
  53158. anthroDressed: {
  53159. height: math.unit(556, "cm"),
  53160. weight: math.unit(2650, "kg"),
  53161. preyCapacity: math.unit(3, "people"),
  53162. name: "Dressed",
  53163. image: {
  53164. source: "./media/characters/ash´iika/dressed.svg",
  53165. extra: 710/673,
  53166. bottom: 15/725
  53167. },
  53168. form: "anthro"
  53169. },
  53170. anthroHead: {
  53171. height: math.unit(3.5, "feet"),
  53172. name: "Head",
  53173. image: {
  53174. source: "./media/characters/ash´iika/head.svg",
  53175. extra: 348/291,
  53176. bottom: 45/393
  53177. },
  53178. form: "anthro"
  53179. },
  53180. feralSide: {
  53181. height: math.unit(870, "cm"),
  53182. weight: math.unit(17500, "kg"),
  53183. preyCapacity: math.unit(15, "people"),
  53184. name: "Side",
  53185. image: {
  53186. source: "./media/characters/ash´iika/feral.svg",
  53187. extra: 595/199,
  53188. bottom: 7/602
  53189. },
  53190. form: "feral",
  53191. default: true,
  53192. },
  53193. },
  53194. [
  53195. {
  53196. name: "Normal",
  53197. height: math.unit(556, "cm"),
  53198. default: true,
  53199. form: "anthro"
  53200. },
  53201. {
  53202. name: "Macro",
  53203. height: math.unit(88, "meters"),
  53204. form: "anthro"
  53205. },
  53206. {
  53207. name: "Normal",
  53208. height: math.unit(870, "cm"),
  53209. default: true,
  53210. form: "feral"
  53211. },
  53212. {
  53213. name: "Large",
  53214. height: math.unit(25, "meters"),
  53215. form: "feral"
  53216. },
  53217. ],
  53218. {
  53219. "anthro": {
  53220. name: "Anthro",
  53221. default: true
  53222. },
  53223. "feral": {
  53224. name: "Feral",
  53225. },
  53226. }
  53227. ))
  53228. characterMakers.push(() => makeCharacter(
  53229. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53230. {
  53231. front: {
  53232. height: math.unit(10, "feet"),
  53233. weight: math.unit(800, "lb"),
  53234. name: "Front",
  53235. image: {
  53236. source: "./media/characters/yen/front.svg",
  53237. extra: 443/411,
  53238. bottom: 6/449
  53239. }
  53240. },
  53241. sleeping: {
  53242. height: math.unit(10, "feet"),
  53243. weight: math.unit(800, "lb"),
  53244. name: "Sleeping",
  53245. image: {
  53246. source: "./media/characters/yen/sleeping.svg",
  53247. extra: 470/422,
  53248. bottom: 0/470
  53249. }
  53250. },
  53251. head: {
  53252. height: math.unit(2.2, "feet"),
  53253. name: "Head",
  53254. image: {
  53255. source: "./media/characters/yen/head.svg"
  53256. }
  53257. },
  53258. headAlt: {
  53259. height: math.unit(2.1, "feet"),
  53260. name: "Head (Alt)",
  53261. image: {
  53262. source: "./media/characters/yen/head-alt.svg"
  53263. }
  53264. },
  53265. },
  53266. [
  53267. {
  53268. name: "Normal",
  53269. height: math.unit(10, "feet"),
  53270. default: true
  53271. },
  53272. ]
  53273. ))
  53274. characterMakers.push(() => makeCharacter(
  53275. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53276. {
  53277. front: {
  53278. height: math.unit(12, "feet"),
  53279. name: "Front",
  53280. image: {
  53281. source: "./media/characters/citra/front.svg",
  53282. extra: 1950/1710,
  53283. bottom: 47/1997
  53284. }
  53285. },
  53286. },
  53287. [
  53288. {
  53289. name: "Normal",
  53290. height: math.unit(12, "feet"),
  53291. default: true
  53292. },
  53293. ]
  53294. ))
  53295. characterMakers.push(() => makeCharacter(
  53296. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53297. {
  53298. side: {
  53299. height: math.unit(7 + 10/12, "feet"),
  53300. name: "Side",
  53301. image: {
  53302. source: "./media/characters/sholstim/side.svg",
  53303. extra: 786/682,
  53304. bottom: 40/826
  53305. }
  53306. },
  53307. },
  53308. [
  53309. {
  53310. name: "Normal",
  53311. height: math.unit(7 + 10/12, "feet"),
  53312. default: true
  53313. },
  53314. ]
  53315. ))
  53316. characterMakers.push(() => makeCharacter(
  53317. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53318. {
  53319. front: {
  53320. height: math.unit(3.10, "meters"),
  53321. name: "Front",
  53322. image: {
  53323. source: "./media/characters/aggyn/front.svg",
  53324. extra: 1188/963,
  53325. bottom: 24/1212
  53326. }
  53327. },
  53328. },
  53329. [
  53330. {
  53331. name: "Normal",
  53332. height: math.unit(3.10, "meters"),
  53333. default: true
  53334. },
  53335. ]
  53336. ))
  53337. characterMakers.push(() => makeCharacter(
  53338. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53339. {
  53340. front: {
  53341. height: math.unit(7 + 5/12, "feet"),
  53342. weight: math.unit(687, "lb"),
  53343. name: "Front",
  53344. image: {
  53345. source: "./media/characters/alsandair-hergenroether/front.svg",
  53346. extra: 1251/1186,
  53347. bottom: 75/1326
  53348. }
  53349. },
  53350. back: {
  53351. height: math.unit(7 + 5/12, "feet"),
  53352. weight: math.unit(687, "lb"),
  53353. name: "Back",
  53354. image: {
  53355. source: "./media/characters/alsandair-hergenroether/back.svg",
  53356. extra: 1290/1229,
  53357. bottom: 17/1307
  53358. }
  53359. },
  53360. },
  53361. [
  53362. {
  53363. name: "Max Compression",
  53364. height: math.unit(7 + 5/12, "feet"),
  53365. default: true
  53366. },
  53367. {
  53368. name: "\"Normal\"",
  53369. height: math.unit(2, "universes")
  53370. },
  53371. ]
  53372. ))
  53373. characterMakers.push(() => makeCharacter(
  53374. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53375. {
  53376. front: {
  53377. height: math.unit(4 + 1/12, "feet"),
  53378. weight: math.unit(92, "lb"),
  53379. name: "Front",
  53380. image: {
  53381. source: "./media/characters/ie/front.svg",
  53382. extra: 1585/1352,
  53383. bottom: 91/1676
  53384. }
  53385. },
  53386. },
  53387. [
  53388. {
  53389. name: "Normal",
  53390. height: math.unit(4 + 1/12, "feet"),
  53391. default: true
  53392. },
  53393. ]
  53394. ))
  53395. characterMakers.push(() => makeCharacter(
  53396. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53397. {
  53398. anthro: {
  53399. height: math.unit(6, "feet"),
  53400. weight: math.unit(150, "lb"),
  53401. name: "Front",
  53402. image: {
  53403. source: "./media/characters/willow/anthro.svg",
  53404. extra: 1073/986,
  53405. bottom: 34/1107
  53406. },
  53407. form: "anthro",
  53408. default: true
  53409. },
  53410. taur: {
  53411. height: math.unit(6, "feet"),
  53412. weight: math.unit(150, "lb"),
  53413. name: "Side",
  53414. image: {
  53415. source: "./media/characters/willow/taur.svg",
  53416. extra: 647/512,
  53417. bottom: 136/783
  53418. },
  53419. form: "taur",
  53420. default: true
  53421. },
  53422. },
  53423. [
  53424. {
  53425. name: "Humanoid",
  53426. height: math.unit(2.7, "meters"),
  53427. form: "anthro"
  53428. },
  53429. {
  53430. name: "Normal",
  53431. height: math.unit(9, "meters"),
  53432. form: "anthro",
  53433. default: true
  53434. },
  53435. {
  53436. name: "Humanoid",
  53437. height: math.unit(2.1, "meters"),
  53438. form: "taur"
  53439. },
  53440. {
  53441. name: "Normal",
  53442. height: math.unit(7, "meters"),
  53443. form: "taur",
  53444. default: true
  53445. },
  53446. ],
  53447. {
  53448. "anthro": {
  53449. name: "Anthro",
  53450. default: true
  53451. },
  53452. "taur": {
  53453. name: "Taur",
  53454. },
  53455. }
  53456. ))
  53457. characterMakers.push(() => makeCharacter(
  53458. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53459. {
  53460. front: {
  53461. height: math.unit(2 + 5/12, "feet"),
  53462. name: "Front",
  53463. image: {
  53464. source: "./media/characters/kyan/front.svg",
  53465. extra: 460/334,
  53466. bottom: 23/483
  53467. },
  53468. extraAttributes: {
  53469. "toeLength": {
  53470. name: "Toe Length",
  53471. power: 1,
  53472. type: "length",
  53473. base: math.unit(7, "cm")
  53474. },
  53475. "toeclawLength": {
  53476. name: "Toeclaw Length",
  53477. power: 1,
  53478. type: "length",
  53479. base: math.unit(4.7, "cm")
  53480. },
  53481. "earHeight": {
  53482. name: "Ear Height",
  53483. power: 1,
  53484. type: "length",
  53485. base: math.unit(14.1, "cm")
  53486. },
  53487. }
  53488. },
  53489. paws: {
  53490. height: math.unit(0.45, "feet"),
  53491. name: "Paws",
  53492. image: {
  53493. source: "./media/characters/kyan/paws.svg",
  53494. extra: 581/581,
  53495. bottom: 114/695
  53496. }
  53497. },
  53498. },
  53499. [
  53500. {
  53501. name: "Normal",
  53502. height: math.unit(2 + 5/12, "feet"),
  53503. default: true
  53504. },
  53505. ]
  53506. ))
  53507. characterMakers.push(() => makeCharacter(
  53508. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53509. {
  53510. front: {
  53511. height: math.unit(2 + 2/3, "feet"),
  53512. name: "Front",
  53513. image: {
  53514. source: "./media/characters/xazzon/front.svg",
  53515. extra: 1109/984,
  53516. bottom: 42/1151
  53517. }
  53518. },
  53519. back: {
  53520. height: math.unit(2 + 2/3, "feet"),
  53521. name: "Back",
  53522. image: {
  53523. source: "./media/characters/xazzon/back.svg",
  53524. extra: 1095/971,
  53525. bottom: 23/1118
  53526. }
  53527. },
  53528. },
  53529. [
  53530. {
  53531. name: "Normal",
  53532. height: math.unit(2 + 2/3, "feet"),
  53533. default: true
  53534. },
  53535. ]
  53536. ))
  53537. characterMakers.push(() => makeCharacter(
  53538. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53539. {
  53540. dressed: {
  53541. height: math.unit(5 + 7/12, "feet"),
  53542. weight: math.unit(173, "lb"),
  53543. name: "Dressed",
  53544. image: {
  53545. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53546. extra: 3262/2862,
  53547. bottom: 188/3450
  53548. }
  53549. },
  53550. undressed: {
  53551. height: math.unit(5 + 7/12, "feet"),
  53552. weight: math.unit(173, "lb"),
  53553. name: "Undressed",
  53554. image: {
  53555. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53556. extra: 3262/2862,
  53557. bottom: 188/3450
  53558. }
  53559. },
  53560. },
  53561. [
  53562. {
  53563. name: "The void",
  53564. height: math.unit(7.29193e-34, "angstroms")
  53565. },
  53566. {
  53567. name: "Uh-Oh.",
  53568. height: math.unit(5.734e-7, "angstroms")
  53569. },
  53570. {
  53571. name: "Pico",
  53572. height: math.unit(0.876, "angstroms")
  53573. },
  53574. {
  53575. name: "Nano",
  53576. height: math.unit(0.000134200, "mm")
  53577. },
  53578. {
  53579. name: "Micro",
  53580. height: math.unit(0.0673020, "mm")
  53581. },
  53582. {
  53583. name: "Tiny",
  53584. height: math.unit(2.4, "mm")
  53585. },
  53586. {
  53587. name: "Actual Normal",
  53588. height: math.unit(3, "inches"),
  53589. default: true
  53590. },
  53591. {
  53592. name: "Normal",
  53593. height: math.unit(5 + 8/12, "feet")
  53594. },
  53595. {
  53596. name: "Giant",
  53597. height: math.unit(12, "feet")
  53598. },
  53599. {
  53600. name: "City Ruler",
  53601. height: math.unit(270, "meters")
  53602. },
  53603. {
  53604. name: "Giga",
  53605. height: math.unit(1117.6, "km")
  53606. },
  53607. {
  53608. name: "All-Powerful Queen",
  53609. height: math.unit(70.8, "gigameters")
  53610. },
  53611. {
  53612. name: "'Goddess'",
  53613. height: math.unit(600, "yottameters")
  53614. },
  53615. {
  53616. name: "Biggest!",
  53617. height: math.unit(4.23e5, "yottameters")
  53618. },
  53619. ]
  53620. ))
  53621. characterMakers.push(() => makeCharacter(
  53622. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  53623. {
  53624. front: {
  53625. height: math.unit(8, "feet"),
  53626. weight: math.unit(300, "lb"),
  53627. name: "Front",
  53628. image: {
  53629. source: "./media/characters/khyla-shadowsong/front.svg",
  53630. extra: 861/798,
  53631. bottom: 32/893
  53632. }
  53633. },
  53634. side: {
  53635. height: math.unit(8, "feet"),
  53636. weight: math.unit(300, "lb"),
  53637. name: "Side",
  53638. image: {
  53639. source: "./media/characters/khyla-shadowsong/side.svg",
  53640. extra: 790/750,
  53641. bottom: 87/877
  53642. }
  53643. },
  53644. back: {
  53645. height: math.unit(8, "feet"),
  53646. weight: math.unit(300, "lb"),
  53647. name: "Back",
  53648. image: {
  53649. source: "./media/characters/khyla-shadowsong/back.svg",
  53650. extra: 855/808,
  53651. bottom: 14/869
  53652. }
  53653. },
  53654. head: {
  53655. height: math.unit(2.7, "feet"),
  53656. name: "Head",
  53657. image: {
  53658. source: "./media/characters/khyla-shadowsong/head.svg"
  53659. }
  53660. },
  53661. },
  53662. [
  53663. {
  53664. name: "Micro",
  53665. height: math.unit(6, "inches")
  53666. },
  53667. {
  53668. name: "Normal",
  53669. height: math.unit(8, "feet"),
  53670. default: true
  53671. },
  53672. ]
  53673. ))
  53674. characterMakers.push(() => makeCharacter(
  53675. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  53676. {
  53677. hyperFront: {
  53678. height: math.unit(9 + 4/12, "feet"),
  53679. weight: math.unit(2000, "lb"),
  53680. name: "Front",
  53681. image: {
  53682. source: "./media/characters/tiden/hyper-front.svg",
  53683. extra: 400/382,
  53684. bottom: 6/406
  53685. },
  53686. form: "hyper",
  53687. },
  53688. regularFront: {
  53689. height: math.unit(7 + 10/12, "feet"),
  53690. weight: math.unit(470, "lb"),
  53691. name: "Front",
  53692. image: {
  53693. source: "./media/characters/tiden/regular-front.svg",
  53694. extra: 468/442,
  53695. bottom: 6/474
  53696. },
  53697. form: "regular",
  53698. },
  53699. },
  53700. [
  53701. {
  53702. name: "Normal",
  53703. height: math.unit(9 + 4/12, "feet"),
  53704. default: true,
  53705. form: "hyper"
  53706. },
  53707. {
  53708. name: "Normal",
  53709. height: math.unit(7 + 10/12, "feet"),
  53710. default: true,
  53711. form: "regular"
  53712. },
  53713. ],
  53714. {
  53715. "hyper": {
  53716. name: "Hyper",
  53717. default: true
  53718. },
  53719. "regular": {
  53720. name: "Regular",
  53721. },
  53722. }
  53723. ))
  53724. characterMakers.push(() => makeCharacter(
  53725. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  53726. {
  53727. side: {
  53728. height: math.unit(6, "feet"),
  53729. weight: math.unit(150, "lb"),
  53730. name: "Side",
  53731. image: {
  53732. source: "./media/characters/jason-crowe/side.svg",
  53733. extra: 1771/766,
  53734. bottom: 219/1990
  53735. }
  53736. },
  53737. },
  53738. [
  53739. {
  53740. name: "Pocket Gryphon",
  53741. height: math.unit(6, "cm")
  53742. },
  53743. {
  53744. name: "Raven",
  53745. height: math.unit(60, "cm")
  53746. },
  53747. {
  53748. name: "Normal",
  53749. height: math.unit(1, "meter"),
  53750. default: true
  53751. },
  53752. ]
  53753. ))
  53754. characterMakers.push(() => makeCharacter(
  53755. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  53756. {
  53757. front: {
  53758. height: math.unit(9 + 6/12, "feet"),
  53759. weight: math.unit(1100, "lb"),
  53760. name: "Front",
  53761. image: {
  53762. source: "./media/characters/django/front.svg",
  53763. extra: 1231/1136,
  53764. bottom: 34/1265
  53765. }
  53766. },
  53767. side: {
  53768. height: math.unit(9 + 6/12, "feet"),
  53769. weight: math.unit(1100, "lb"),
  53770. name: "Side",
  53771. image: {
  53772. source: "./media/characters/django/side.svg",
  53773. extra: 1267/1174,
  53774. bottom: 9/1276
  53775. }
  53776. },
  53777. },
  53778. [
  53779. {
  53780. name: "Normal",
  53781. height: math.unit(9 + 6/12, "feet"),
  53782. default: true
  53783. },
  53784. {
  53785. name: "Macro 1",
  53786. height: math.unit(50, "feet")
  53787. },
  53788. {
  53789. name: "Macro 2",
  53790. height: math.unit(500, "feet")
  53791. },
  53792. {
  53793. name: "Mega Macro",
  53794. height: math.unit(5300, "feet")
  53795. },
  53796. ]
  53797. ))
  53798. characterMakers.push(() => makeCharacter(
  53799. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  53800. {
  53801. frontSfw: {
  53802. height: math.unit(120, "cm"),
  53803. weight: math.unit(15, "kg"),
  53804. name: "Front (SFW)",
  53805. image: {
  53806. source: "./media/characters/eri/front-sfw.svg",
  53807. extra: 1014/939,
  53808. bottom: 37/1051
  53809. },
  53810. form: "moth",
  53811. },
  53812. frontNsfw: {
  53813. height: math.unit(120, "cm"),
  53814. weight: math.unit(15, "kg"),
  53815. name: "Front (NSFW)",
  53816. image: {
  53817. source: "./media/characters/eri/front-nsfw.svg",
  53818. extra: 1014/939,
  53819. bottom: 37/1051
  53820. },
  53821. form: "moth",
  53822. default: true
  53823. },
  53824. egg: {
  53825. height: math.unit(10, "cm"),
  53826. name: "Egg",
  53827. image: {
  53828. source: "./media/characters/eri/egg.svg"
  53829. },
  53830. form: "egg",
  53831. default: true
  53832. },
  53833. },
  53834. [
  53835. {
  53836. name: "Normal",
  53837. height: math.unit(120, "cm"),
  53838. default: true,
  53839. form: "moth"
  53840. },
  53841. {
  53842. name: "Normal",
  53843. height: math.unit(10, "cm"),
  53844. default: true,
  53845. form: "egg"
  53846. },
  53847. ],
  53848. {
  53849. "moth": {
  53850. name: "Moth",
  53851. default: true
  53852. },
  53853. "egg": {
  53854. name: "Egg",
  53855. },
  53856. }
  53857. ))
  53858. characterMakers.push(() => makeCharacter(
  53859. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  53860. {
  53861. front: {
  53862. height: math.unit(200, "feet"),
  53863. name: "Front",
  53864. image: {
  53865. source: "./media/characters/bishop-dowser/front.svg",
  53866. extra: 933/868,
  53867. bottom: 106/1039
  53868. }
  53869. },
  53870. },
  53871. [
  53872. {
  53873. name: "Giant",
  53874. height: math.unit(200, "feet"),
  53875. default: true
  53876. },
  53877. ]
  53878. ))
  53879. characterMakers.push(() => makeCharacter(
  53880. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  53881. {
  53882. front: {
  53883. height: math.unit(2, "meters"),
  53884. preyCapacity: math.unit(3, "people"),
  53885. name: "Front",
  53886. image: {
  53887. source: "./media/characters/fryra/front.svg",
  53888. extra: 1025/948,
  53889. bottom: 30/1055
  53890. },
  53891. extraAttributes: {
  53892. "breastVolume": {
  53893. name: "Breast Volume",
  53894. power: 3,
  53895. type: "volume",
  53896. base: math.unit(8, "liters")
  53897. },
  53898. }
  53899. },
  53900. back: {
  53901. height: math.unit(2, "meters"),
  53902. preyCapacity: math.unit(3, "people"),
  53903. name: "Back",
  53904. image: {
  53905. source: "./media/characters/fryra/back.svg",
  53906. extra: 993/938,
  53907. bottom: 38/1031
  53908. },
  53909. extraAttributes: {
  53910. "breastVolume": {
  53911. name: "Breast Volume",
  53912. power: 3,
  53913. type: "volume",
  53914. base: math.unit(8, "liters")
  53915. },
  53916. }
  53917. },
  53918. head: {
  53919. height: math.unit(1.33, "feet"),
  53920. name: "Head",
  53921. image: {
  53922. source: "./media/characters/fryra/head.svg"
  53923. }
  53924. },
  53925. maw: {
  53926. height: math.unit(0.56, "feet"),
  53927. name: "Maw",
  53928. image: {
  53929. source: "./media/characters/fryra/maw.svg"
  53930. }
  53931. },
  53932. },
  53933. [
  53934. {
  53935. name: "Micro",
  53936. height: math.unit(5, "cm")
  53937. },
  53938. {
  53939. name: "Normal",
  53940. height: math.unit(2, "meters"),
  53941. default: true
  53942. },
  53943. {
  53944. name: "Small Macro",
  53945. height: math.unit(8, "meters")
  53946. },
  53947. {
  53948. name: "Macro",
  53949. height: math.unit(50, "meters")
  53950. },
  53951. {
  53952. name: "Megamacro",
  53953. height: math.unit(1, "km")
  53954. },
  53955. {
  53956. name: "Planetary",
  53957. height: math.unit(300000, "km")
  53958. },
  53959. {
  53960. name: "Universal",
  53961. height: math.unit(250, "lightyears")
  53962. },
  53963. {
  53964. name: "Fabric of Reality",
  53965. height: math.unit(1000, "multiverses")
  53966. },
  53967. ]
  53968. ))
  53969. characterMakers.push(() => makeCharacter(
  53970. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  53971. {
  53972. frontDressed: {
  53973. height: math.unit(6 + 2/12, "feet"),
  53974. name: "Front (Dressed)",
  53975. image: {
  53976. source: "./media/characters/fiera/front-dressed.svg",
  53977. extra: 1883/1793,
  53978. bottom: 70/1953
  53979. }
  53980. },
  53981. backDressed: {
  53982. height: math.unit(6 + 2/12, "feet"),
  53983. name: "Back (Dressed)",
  53984. image: {
  53985. source: "./media/characters/fiera/back-dressed.svg",
  53986. extra: 1847/1780,
  53987. bottom: 70/1917
  53988. }
  53989. },
  53990. frontNude: {
  53991. height: math.unit(6 + 2/12, "feet"),
  53992. name: "Front (Nude)",
  53993. image: {
  53994. source: "./media/characters/fiera/front-nude.svg",
  53995. extra: 1875/1785,
  53996. bottom: 66/1941
  53997. }
  53998. },
  53999. backNude: {
  54000. height: math.unit(6 + 2/12, "feet"),
  54001. name: "Back (Nude)",
  54002. image: {
  54003. source: "./media/characters/fiera/back-nude.svg",
  54004. extra: 1855/1788,
  54005. bottom: 44/1899
  54006. }
  54007. },
  54008. maw: {
  54009. height: math.unit(1.3, "feet"),
  54010. name: "Maw",
  54011. image: {
  54012. source: "./media/characters/fiera/maw.svg"
  54013. }
  54014. },
  54015. paw: {
  54016. height: math.unit(1, "feet"),
  54017. name: "Paw",
  54018. image: {
  54019. source: "./media/characters/fiera/paw.svg"
  54020. }
  54021. },
  54022. shoe: {
  54023. height: math.unit(1.05, "feet"),
  54024. name: "Shoe",
  54025. image: {
  54026. source: "./media/characters/fiera/shoe.svg"
  54027. }
  54028. },
  54029. },
  54030. [
  54031. {
  54032. name: "Normal",
  54033. height: math.unit(6 + 2/12, "feet"),
  54034. default: true
  54035. },
  54036. {
  54037. name: "Size Difference",
  54038. height: math.unit(13, "feet")
  54039. },
  54040. {
  54041. name: "Macro",
  54042. height: math.unit(60, "feet")
  54043. },
  54044. {
  54045. name: "Mega Macro",
  54046. height: math.unit(200, "feet")
  54047. },
  54048. ]
  54049. ))
  54050. characterMakers.push(() => makeCharacter(
  54051. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54052. {
  54053. back: {
  54054. height: math.unit(6, "feet"),
  54055. name: "Back",
  54056. image: {
  54057. source: "./media/characters/flare/back.svg",
  54058. extra: 1883/1765,
  54059. bottom: 32/1915
  54060. }
  54061. },
  54062. },
  54063. [
  54064. {
  54065. name: "Normal",
  54066. height: math.unit(6 + 2/12, "feet"),
  54067. default: true
  54068. },
  54069. {
  54070. name: "Size Difference",
  54071. height: math.unit(13, "feet")
  54072. },
  54073. {
  54074. name: "Macro",
  54075. height: math.unit(60, "feet")
  54076. },
  54077. {
  54078. name: "Macro 2",
  54079. height: math.unit(100, "feet")
  54080. },
  54081. {
  54082. name: "Mega Macro",
  54083. height: math.unit(200, "feet")
  54084. },
  54085. ]
  54086. ))
  54087. characterMakers.push(() => makeCharacter(
  54088. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54089. {
  54090. front: {
  54091. height: math.unit(2.2, "m"),
  54092. weight: math.unit(300, "kg"),
  54093. name: "Front",
  54094. image: {
  54095. source: "./media/characters/hanna/front.svg",
  54096. extra: 1696/1502,
  54097. bottom: 206/1902
  54098. }
  54099. },
  54100. },
  54101. [
  54102. {
  54103. name: "Humanoid",
  54104. height: math.unit(2.2, "meters")
  54105. },
  54106. {
  54107. name: "Normal",
  54108. height: math.unit(4.8, "meters"),
  54109. default: true
  54110. },
  54111. ]
  54112. ))
  54113. //characters
  54114. function makeCharacters() {
  54115. const results = [];
  54116. characterMakers.forEach(character => {
  54117. results.push(character());
  54118. });
  54119. return results;
  54120. }