less copy protection, more size visualization
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

56560 行
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. "silvally": {
  2091. name: "Silvally",
  2092. parents: ["legendary-pokemon"]
  2093. },
  2094. "legendary-pokemon": {
  2095. name: "Legendary Pokemon",
  2096. parents: ["pokemon"]
  2097. },
  2098. "great-maccao": {
  2099. name: "Great Maccao",
  2100. parents: ["monster-hunter", "raptor"]
  2101. },
  2102. "shapeshifter": {
  2103. name: "shapeshifter",
  2104. parents: []
  2105. },
  2106. "obstagoon": {
  2107. name: "Obstagoon",
  2108. parents: ["zigzagoon"]
  2109. },
  2110. "thomsons-gazelle": {
  2111. name: "Thomsons Gazelle",
  2112. parents: ["gazelle"]
  2113. },
  2114. "gazelle": {
  2115. name: "Gazelle",
  2116. parents: ["antelope"]
  2117. },
  2118. "monkey": {
  2119. name: "Monkey",
  2120. parents: ["mammal"]
  2121. },
  2122. "serval": {
  2123. name: "Serval",
  2124. parents: ["cat"]
  2125. },
  2126. "swampert": {
  2127. name: "Swampert",
  2128. parents: ["pokemon"]
  2129. },
  2130. }
  2131. //species
  2132. function getSpeciesInfo(speciesList) {
  2133. let result = new Set();
  2134. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2135. result.add(entry)
  2136. });
  2137. return Array.from(result);
  2138. };
  2139. function getSpeciesInfoHelper(species) {
  2140. if (!speciesData[species]) {
  2141. console.warn(species + " doesn't exist");
  2142. return [];
  2143. }
  2144. if (speciesData[species].parents) {
  2145. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2146. } else {
  2147. return [species];
  2148. }
  2149. }
  2150. characterMakers.push(() => makeCharacter(
  2151. {
  2152. name: "Fen",
  2153. species: ["crux"],
  2154. description: {
  2155. title: "Bio",
  2156. text: "Very furry. Sheds on everything."
  2157. },
  2158. tags: [
  2159. "anthro",
  2160. "goo"
  2161. ]
  2162. },
  2163. {
  2164. front: {
  2165. height: math.unit(12, "feet"),
  2166. weight: math.unit(2400, "lb"),
  2167. preyCapacity: math.unit(1, "people"),
  2168. name: "Front",
  2169. image: {
  2170. source: "./media/characters/fen/front.svg",
  2171. extra: 1804/1562,
  2172. bottom: 205/2009
  2173. },
  2174. extraAttributes: {
  2175. pawSize: {
  2176. name: "Paw Size",
  2177. power: 2,
  2178. type: "area",
  2179. base: math.unit(0.35, "m^2")
  2180. }
  2181. }
  2182. },
  2183. diving: {
  2184. height: math.unit(4.9, "meters"),
  2185. weight: math.unit(2400, "lb"),
  2186. name: "Diving",
  2187. image: {
  2188. source: "./media/characters/fen/diving.svg"
  2189. }
  2190. },
  2191. sleeby: {
  2192. height: math.unit(3.45, "meters"),
  2193. weight: math.unit(2400, "lb"),
  2194. name: "Sleeby",
  2195. image: {
  2196. source: "./media/characters/fen/sleeby.svg"
  2197. }
  2198. },
  2199. goo: {
  2200. height: math.unit(12, "feet"),
  2201. weight: math.unit(3600, "lb"),
  2202. volume: math.unit(1000, "liters"),
  2203. preyCapacity: math.unit(6, "people"),
  2204. name: "Goo",
  2205. image: {
  2206. source: "./media/characters/fen/goo.svg",
  2207. extra: 1307/1071,
  2208. bottom: 134/1441
  2209. }
  2210. },
  2211. gooNsfw: {
  2212. height: math.unit(12, "feet"),
  2213. weight: math.unit(3750, "lb"),
  2214. volume: math.unit(1000, "liters"),
  2215. preyCapacity: math.unit(6, "people"),
  2216. name: "Goo (NSFW)",
  2217. image: {
  2218. source: "./media/characters/fen/goo-nsfw.svg",
  2219. extra: 1875/1734,
  2220. bottom: 122/1997
  2221. }
  2222. },
  2223. maw: {
  2224. height: math.unit(5.03, "feet"),
  2225. name: "Maw",
  2226. image: {
  2227. source: "./media/characters/fen/maw.svg"
  2228. }
  2229. },
  2230. gooCeiling: {
  2231. height: math.unit(6.6, "feet"),
  2232. weight: math.unit(3000, "lb"),
  2233. volume: math.unit(1000, "liters"),
  2234. preyCapacity: math.unit(6, "people"),
  2235. name: "Goo (Ceiling)",
  2236. image: {
  2237. source: "./media/characters/fen/goo-ceiling.svg"
  2238. }
  2239. },
  2240. paw: {
  2241. height: math.unit(3.77, "feet"),
  2242. name: "Paw",
  2243. image: {
  2244. source: "./media/characters/fen/paw.svg"
  2245. },
  2246. extraAttributes: {
  2247. "toeSize": {
  2248. name: "Toe Size",
  2249. power: 2,
  2250. type: "area",
  2251. base: math.unit(0.02875, "m^2")
  2252. },
  2253. "pawSize": {
  2254. name: "Paw Size",
  2255. power: 2,
  2256. type: "area",
  2257. base: math.unit(0.378, "m^2")
  2258. },
  2259. }
  2260. },
  2261. tail: {
  2262. height: math.unit(12.1, "feet"),
  2263. name: "Tail",
  2264. image: {
  2265. source: "./media/characters/fen/tail.svg"
  2266. }
  2267. },
  2268. tailFull: {
  2269. height: math.unit(12.1, "feet"),
  2270. name: "Full Tail",
  2271. image: {
  2272. source: "./media/characters/fen/tail-full.svg"
  2273. }
  2274. },
  2275. back: {
  2276. height: math.unit(12, "feet"),
  2277. weight: math.unit(2400, "lb"),
  2278. name: "Back",
  2279. image: {
  2280. source: "./media/characters/fen/back.svg",
  2281. },
  2282. info: {
  2283. description: {
  2284. mode: "append",
  2285. text: "\n\nHe is not currently looking at you."
  2286. }
  2287. }
  2288. },
  2289. full: {
  2290. height: math.unit(1.85, "meter"),
  2291. weight: math.unit(3200, "lb"),
  2292. name: "Full",
  2293. image: {
  2294. source: "./media/characters/fen/full.svg",
  2295. extra: 1133/859,
  2296. bottom: 145/1278
  2297. },
  2298. info: {
  2299. description: {
  2300. mode: "append",
  2301. text: "\n\nMunch."
  2302. }
  2303. }
  2304. },
  2305. gooLounging: {
  2306. height: math.unit(4.53, "feet"),
  2307. weight: math.unit(3000, "lb"),
  2308. preyCapacity: math.unit(6, "people"),
  2309. name: "Goo (Lounging)",
  2310. image: {
  2311. source: "./media/characters/fen/goo-lounging.svg",
  2312. bottom: 116 / 613
  2313. }
  2314. },
  2315. lounging: {
  2316. height: math.unit(10.52, "feet"),
  2317. weight: math.unit(2400, "lb"),
  2318. name: "Lounging",
  2319. image: {
  2320. source: "./media/characters/fen/lounging.svg"
  2321. }
  2322. },
  2323. },
  2324. [
  2325. {
  2326. name: "Small",
  2327. height: math.unit(2.2428, "meter")
  2328. },
  2329. {
  2330. name: "Normal",
  2331. height: math.unit(12, "feet"),
  2332. default: true,
  2333. },
  2334. {
  2335. name: "Big",
  2336. height: math.unit(20, "feet")
  2337. },
  2338. {
  2339. name: "Minimacro",
  2340. height: math.unit(40, "feet"),
  2341. info: {
  2342. description: {
  2343. mode: "append",
  2344. text: "\n\nTOO DAMN BIG"
  2345. }
  2346. }
  2347. },
  2348. {
  2349. name: "Macro",
  2350. height: math.unit(100, "feet"),
  2351. info: {
  2352. description: {
  2353. mode: "append",
  2354. text: "\n\nTOO DAMN BIG"
  2355. }
  2356. }
  2357. },
  2358. {
  2359. name: "Megamacro",
  2360. height: math.unit(2, "miles")
  2361. },
  2362. {
  2363. name: "Gigamacro",
  2364. height: math.unit(10, "earths")
  2365. },
  2366. ]
  2367. ))
  2368. characterMakers.push(() => makeCharacter(
  2369. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2370. {
  2371. front: {
  2372. height: math.unit(183, "cm"),
  2373. weight: math.unit(80, "kg"),
  2374. name: "Front",
  2375. image: {
  2376. source: "./media/characters/sofia-fluttertail/front.svg",
  2377. bottom: 0.01,
  2378. extra: 2154 / 2081
  2379. }
  2380. },
  2381. frontAlt: {
  2382. height: math.unit(183, "cm"),
  2383. weight: math.unit(80, "kg"),
  2384. name: "Front (alt)",
  2385. image: {
  2386. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2387. }
  2388. },
  2389. back: {
  2390. height: math.unit(183, "cm"),
  2391. weight: math.unit(80, "kg"),
  2392. name: "Back",
  2393. image: {
  2394. source: "./media/characters/sofia-fluttertail/back.svg"
  2395. }
  2396. },
  2397. kneeling: {
  2398. height: math.unit(125, "cm"),
  2399. weight: math.unit(80, "kg"),
  2400. name: "Kneeling",
  2401. image: {
  2402. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2403. extra: 1033 / 977,
  2404. bottom: 23.7 / 1057
  2405. }
  2406. },
  2407. maw: {
  2408. height: math.unit(183 / 5, "cm"),
  2409. name: "Maw",
  2410. image: {
  2411. source: "./media/characters/sofia-fluttertail/maw.svg"
  2412. }
  2413. },
  2414. mawcloseup: {
  2415. height: math.unit(183 / 5 * 0.41, "cm"),
  2416. name: "Maw (Closeup)",
  2417. image: {
  2418. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2419. }
  2420. },
  2421. paws: {
  2422. height: math.unit(1.17, "feet"),
  2423. name: "Paws",
  2424. image: {
  2425. source: "./media/characters/sofia-fluttertail/paws.svg",
  2426. extra: 851 / 851,
  2427. bottom: 17 / 868
  2428. }
  2429. },
  2430. },
  2431. [
  2432. {
  2433. name: "Normal",
  2434. height: math.unit(1.83, "meter")
  2435. },
  2436. {
  2437. name: "Size Thief",
  2438. height: math.unit(18, "feet")
  2439. },
  2440. {
  2441. name: "50 Foot Collie",
  2442. height: math.unit(50, "feet")
  2443. },
  2444. {
  2445. name: "Macro",
  2446. height: math.unit(96, "feet"),
  2447. default: true
  2448. },
  2449. {
  2450. name: "Megamerger",
  2451. height: math.unit(650, "feet")
  2452. },
  2453. ]
  2454. ))
  2455. characterMakers.push(() => makeCharacter(
  2456. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2457. {
  2458. front: {
  2459. height: math.unit(7, "feet"),
  2460. weight: math.unit(100, "kg"),
  2461. name: "Front",
  2462. image: {
  2463. source: "./media/characters/march/front.svg",
  2464. extra: 1992/1851,
  2465. bottom: 39/2031
  2466. }
  2467. },
  2468. foot: {
  2469. height: math.unit(0.9, "feet"),
  2470. name: "Foot",
  2471. image: {
  2472. source: "./media/characters/march/foot.svg"
  2473. }
  2474. },
  2475. },
  2476. [
  2477. {
  2478. name: "Normal",
  2479. height: math.unit(7.9, "feet")
  2480. },
  2481. {
  2482. name: "Macro",
  2483. height: math.unit(220, "meters")
  2484. },
  2485. {
  2486. name: "Megamacro",
  2487. height: math.unit(2.98, "km"),
  2488. default: true
  2489. },
  2490. {
  2491. name: "Gigamacro",
  2492. height: math.unit(15963, "km")
  2493. },
  2494. {
  2495. name: "Teramacro",
  2496. height: math.unit(2980000000, "km")
  2497. },
  2498. {
  2499. name: "Examacro",
  2500. height: math.unit(250, "parsecs")
  2501. },
  2502. ]
  2503. ))
  2504. characterMakers.push(() => makeCharacter(
  2505. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2506. {
  2507. front: {
  2508. height: math.unit(6, "feet"),
  2509. weight: math.unit(60, "kg"),
  2510. name: "Front",
  2511. image: {
  2512. source: "./media/characters/noir/front.svg",
  2513. extra: 1,
  2514. bottom: 0.032
  2515. }
  2516. },
  2517. },
  2518. [
  2519. {
  2520. name: "Normal",
  2521. height: math.unit(6.6, "feet")
  2522. },
  2523. {
  2524. name: "Macro",
  2525. height: math.unit(500, "feet")
  2526. },
  2527. {
  2528. name: "Megamacro",
  2529. height: math.unit(2.5, "km"),
  2530. default: true
  2531. },
  2532. {
  2533. name: "Gigamacro",
  2534. height: math.unit(22500, "km")
  2535. },
  2536. {
  2537. name: "Teramacro",
  2538. height: math.unit(2500000000, "km")
  2539. },
  2540. {
  2541. name: "Examacro",
  2542. height: math.unit(200, "parsecs")
  2543. },
  2544. ]
  2545. ))
  2546. characterMakers.push(() => makeCharacter(
  2547. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2548. {
  2549. front: {
  2550. height: math.unit(7, "feet"),
  2551. weight: math.unit(100, "kg"),
  2552. name: "Front",
  2553. image: {
  2554. source: "./media/characters/okuri/front.svg",
  2555. extra: 739/665,
  2556. bottom: 39/778
  2557. }
  2558. },
  2559. back: {
  2560. height: math.unit(7, "feet"),
  2561. weight: math.unit(100, "kg"),
  2562. name: "Back",
  2563. image: {
  2564. source: "./media/characters/okuri/back.svg",
  2565. extra: 734/653,
  2566. bottom: 13/747
  2567. }
  2568. },
  2569. sitting: {
  2570. height: math.unit(2.95, "feet"),
  2571. weight: math.unit(100, "kg"),
  2572. name: "Sitting",
  2573. image: {
  2574. source: "./media/characters/okuri/sitting.svg",
  2575. extra: 370/318,
  2576. bottom: 99/469
  2577. }
  2578. },
  2579. },
  2580. [
  2581. {
  2582. name: "Smallest",
  2583. height: math.unit(5 + 2/12, "feet")
  2584. },
  2585. {
  2586. name: "Smaller",
  2587. height: math.unit(300, "feet")
  2588. },
  2589. {
  2590. name: "Small",
  2591. height: math.unit(1000, "feet")
  2592. },
  2593. {
  2594. name: "Macro",
  2595. height: math.unit(1, "mile")
  2596. },
  2597. {
  2598. name: "Mega Macro (Small)",
  2599. height: math.unit(20, "km")
  2600. },
  2601. {
  2602. name: "Mega Macro (Large)",
  2603. height: math.unit(600, "km")
  2604. },
  2605. {
  2606. name: "Giga Macro",
  2607. height: math.unit(10000, "km")
  2608. },
  2609. {
  2610. name: "Normal",
  2611. height: math.unit(577560, "km"),
  2612. default: true
  2613. },
  2614. {
  2615. name: "Large",
  2616. height: math.unit(4, "galaxies")
  2617. },
  2618. {
  2619. name: "Largest",
  2620. height: math.unit(15, "multiverses")
  2621. },
  2622. ]
  2623. ))
  2624. characterMakers.push(() => makeCharacter(
  2625. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2626. {
  2627. front: {
  2628. height: math.unit(7, "feet"),
  2629. weight: math.unit(100, "kg"),
  2630. name: "Front",
  2631. image: {
  2632. source: "./media/characters/manny/front.svg",
  2633. extra: 1,
  2634. bottom: 0.06
  2635. }
  2636. },
  2637. back: {
  2638. height: math.unit(7, "feet"),
  2639. weight: math.unit(100, "kg"),
  2640. name: "Back",
  2641. image: {
  2642. source: "./media/characters/manny/back.svg",
  2643. extra: 1,
  2644. bottom: 0.014
  2645. }
  2646. },
  2647. },
  2648. [
  2649. {
  2650. name: "Normal",
  2651. height: math.unit(7, "feet"),
  2652. },
  2653. {
  2654. name: "Macro",
  2655. height: math.unit(78, "feet"),
  2656. default: true
  2657. },
  2658. {
  2659. name: "Macro+",
  2660. height: math.unit(300, "meters")
  2661. },
  2662. {
  2663. name: "Macro++",
  2664. height: math.unit(2400, "meters")
  2665. },
  2666. {
  2667. name: "Megamacro",
  2668. height: math.unit(5167, "meters")
  2669. },
  2670. {
  2671. name: "Gigamacro",
  2672. height: math.unit(41769, "miles")
  2673. },
  2674. ]
  2675. ))
  2676. characterMakers.push(() => makeCharacter(
  2677. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2678. {
  2679. front: {
  2680. height: math.unit(7, "feet"),
  2681. weight: math.unit(100, "kg"),
  2682. name: "Front",
  2683. image: {
  2684. source: "./media/characters/adake/front-1.svg"
  2685. }
  2686. },
  2687. frontAlt: {
  2688. height: math.unit(7, "feet"),
  2689. weight: math.unit(100, "kg"),
  2690. name: "Front (Alt)",
  2691. image: {
  2692. source: "./media/characters/adake/front-2.svg",
  2693. extra: 1,
  2694. bottom: 0.01
  2695. }
  2696. },
  2697. back: {
  2698. height: math.unit(7, "feet"),
  2699. weight: math.unit(100, "kg"),
  2700. name: "Back",
  2701. image: {
  2702. source: "./media/characters/adake/back.svg",
  2703. }
  2704. },
  2705. kneel: {
  2706. height: math.unit(5.385, "feet"),
  2707. weight: math.unit(100, "kg"),
  2708. name: "Kneeling",
  2709. image: {
  2710. source: "./media/characters/adake/kneel.svg",
  2711. bottom: 0.052
  2712. }
  2713. },
  2714. },
  2715. [
  2716. {
  2717. name: "Normal",
  2718. height: math.unit(7, "feet"),
  2719. },
  2720. {
  2721. name: "Macro",
  2722. height: math.unit(78, "feet"),
  2723. default: true
  2724. },
  2725. {
  2726. name: "Macro+",
  2727. height: math.unit(300, "meters")
  2728. },
  2729. {
  2730. name: "Macro++",
  2731. height: math.unit(2400, "meters")
  2732. },
  2733. {
  2734. name: "Megamacro",
  2735. height: math.unit(5167, "meters")
  2736. },
  2737. {
  2738. name: "Gigamacro",
  2739. height: math.unit(41769, "miles")
  2740. },
  2741. ]
  2742. ))
  2743. characterMakers.push(() => makeCharacter(
  2744. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2745. {
  2746. front: {
  2747. height: math.unit(1.65, "meters"),
  2748. weight: math.unit(50, "kg"),
  2749. name: "Front",
  2750. image: {
  2751. source: "./media/characters/elijah/front.svg",
  2752. extra: 858 / 830,
  2753. bottom: 95.5 / 953.8559
  2754. }
  2755. },
  2756. back: {
  2757. height: math.unit(1.65, "meters"),
  2758. weight: math.unit(50, "kg"),
  2759. name: "Back",
  2760. image: {
  2761. source: "./media/characters/elijah/back.svg",
  2762. extra: 895 / 850,
  2763. bottom: 5.3 / 897.956
  2764. }
  2765. },
  2766. frontNsfw: {
  2767. height: math.unit(1.65, "meters"),
  2768. weight: math.unit(50, "kg"),
  2769. name: "Front (NSFW)",
  2770. image: {
  2771. source: "./media/characters/elijah/front-nsfw.svg",
  2772. extra: 858 / 830,
  2773. bottom: 95.5 / 953.8559
  2774. }
  2775. },
  2776. backNsfw: {
  2777. height: math.unit(1.65, "meters"),
  2778. weight: math.unit(50, "kg"),
  2779. name: "Back (NSFW)",
  2780. image: {
  2781. source: "./media/characters/elijah/back-nsfw.svg",
  2782. extra: 895 / 850,
  2783. bottom: 5.3 / 897.956
  2784. }
  2785. },
  2786. dick: {
  2787. height: math.unit(1, "feet"),
  2788. name: "Dick",
  2789. image: {
  2790. source: "./media/characters/elijah/dick.svg"
  2791. }
  2792. },
  2793. beakOpen: {
  2794. height: math.unit(1.25, "feet"),
  2795. name: "Beak (Open)",
  2796. image: {
  2797. source: "./media/characters/elijah/beak-open.svg"
  2798. }
  2799. },
  2800. beakShut: {
  2801. height: math.unit(1.25, "feet"),
  2802. name: "Beak (Shut)",
  2803. image: {
  2804. source: "./media/characters/elijah/beak-shut.svg"
  2805. }
  2806. },
  2807. footFlexing: {
  2808. height: math.unit(1.61, "feet"),
  2809. name: "Foot (Flexing)",
  2810. image: {
  2811. source: "./media/characters/elijah/foot-flexing.svg"
  2812. }
  2813. },
  2814. footStepping: {
  2815. height: math.unit(1.44, "feet"),
  2816. name: "Foot (Stepping)",
  2817. image: {
  2818. source: "./media/characters/elijah/foot-stepping.svg"
  2819. }
  2820. },
  2821. plantigradeLeg: {
  2822. height: math.unit(2.34, "feet"),
  2823. name: "Plantigrade Leg",
  2824. image: {
  2825. source: "./media/characters/elijah/plantigrade-leg.svg"
  2826. }
  2827. },
  2828. plantigradeFootLeft: {
  2829. height: math.unit(0.9, "feet"),
  2830. name: "Plantigrade Foot (Left)",
  2831. image: {
  2832. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2833. }
  2834. },
  2835. plantigradeFootRight: {
  2836. height: math.unit(0.9, "feet"),
  2837. name: "Plantigrade Foot (Right)",
  2838. image: {
  2839. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2840. }
  2841. },
  2842. },
  2843. [
  2844. {
  2845. name: "Normal",
  2846. height: math.unit(1.65, "meters")
  2847. },
  2848. {
  2849. name: "Macro",
  2850. height: math.unit(55, "meters"),
  2851. default: true
  2852. },
  2853. {
  2854. name: "Macro+",
  2855. height: math.unit(105, "meters")
  2856. },
  2857. ]
  2858. ))
  2859. characterMakers.push(() => makeCharacter(
  2860. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2861. {
  2862. front: {
  2863. height: math.unit(7 + 2/12, "feet"),
  2864. weight: math.unit(320, "kg"),
  2865. preyCapacity: math.unit(0.276549935, "people"),
  2866. name: "Front",
  2867. image: {
  2868. source: "./media/characters/rai/front.svg",
  2869. extra: 1802/1696,
  2870. bottom: 68/1870
  2871. },
  2872. form: "anthro",
  2873. default: true
  2874. },
  2875. frontDressed: {
  2876. height: math.unit(7 + 2/12, "feet"),
  2877. weight: math.unit(320, "kg"),
  2878. preyCapacity: math.unit(0.276549935, "people"),
  2879. name: "Front (Dressed)",
  2880. image: {
  2881. source: "./media/characters/rai/front-dressed.svg",
  2882. extra: 1802/1696,
  2883. bottom: 68/1870
  2884. },
  2885. form: "anthro"
  2886. },
  2887. side: {
  2888. height: math.unit(7 + 2/12, "feet"),
  2889. weight: math.unit(320, "kg"),
  2890. preyCapacity: math.unit(0.276549935, "people"),
  2891. name: "Side",
  2892. image: {
  2893. source: "./media/characters/rai/side.svg",
  2894. extra: 1789/1710,
  2895. bottom: 115/1904
  2896. },
  2897. form: "anthro"
  2898. },
  2899. back: {
  2900. height: math.unit(7 + 2/12, "feet"),
  2901. weight: math.unit(320, "kg"),
  2902. preyCapacity: math.unit(0.276549935, "people"),
  2903. name: "Back",
  2904. image: {
  2905. source: "./media/characters/rai/back.svg",
  2906. extra: 1770/1707,
  2907. bottom: 28/1798
  2908. },
  2909. form: "anthro"
  2910. },
  2911. feral: {
  2912. height: math.unit(9.5, "feet"),
  2913. weight: math.unit(640, "kg"),
  2914. preyCapacity: math.unit(4, "people"),
  2915. name: "Feral",
  2916. image: {
  2917. source: "./media/characters/rai/feral.svg",
  2918. extra: 945/553,
  2919. bottom: 176/1121
  2920. },
  2921. form: "feral",
  2922. default: true
  2923. },
  2924. dragon: {
  2925. height: math.unit(23, "feet"),
  2926. weight: math.unit(50000, "lb"),
  2927. name: "Dragon",
  2928. image: {
  2929. source: "./media/characters/rai/dragon.svg",
  2930. extra: 2498 / 2030,
  2931. bottom: 85.2 / 2584
  2932. },
  2933. form: "dragon",
  2934. default: true
  2935. },
  2936. maw: {
  2937. height: math.unit(1.69, "feet"),
  2938. name: "Maw",
  2939. image: {
  2940. source: "./media/characters/rai/maw.svg"
  2941. },
  2942. form: "anthro"
  2943. },
  2944. },
  2945. [
  2946. {
  2947. name: "Normal",
  2948. height: math.unit(7 + 2/12, "feet"),
  2949. form: "anthro"
  2950. },
  2951. {
  2952. name: "Big",
  2953. height: math.unit(11, "feet"),
  2954. form: "anthro"
  2955. },
  2956. {
  2957. name: "Minimacro",
  2958. height: math.unit(77, "feet"),
  2959. form: "anthro"
  2960. },
  2961. {
  2962. name: "Macro",
  2963. height: math.unit(302, "feet"),
  2964. default: true,
  2965. form: "anthro"
  2966. },
  2967. {
  2968. name: "Normal",
  2969. height: math.unit(9.5, "feet"),
  2970. form: "feral",
  2971. default: true
  2972. },
  2973. {
  2974. name: "Normal",
  2975. height: math.unit(23, "feet"),
  2976. form: "dragon",
  2977. default: true
  2978. }
  2979. ],
  2980. {
  2981. "anthro": {
  2982. name: "Anthro",
  2983. default: true
  2984. },
  2985. "feral": {
  2986. name: "Feral",
  2987. },
  2988. "dragon": {
  2989. name: "Dragon",
  2990. },
  2991. }
  2992. ))
  2993. characterMakers.push(() => makeCharacter(
  2994. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2995. {
  2996. frontDressed: {
  2997. height: math.unit(216, "feet"),
  2998. weight: math.unit(7000000, "lb"),
  2999. preyCapacity: math.unit(1321, "people"),
  3000. name: "Front (Dressed)",
  3001. image: {
  3002. source: "./media/characters/jazzy/front-dressed.svg",
  3003. extra: 2738 / 2651,
  3004. bottom: 41.8 / 2786
  3005. }
  3006. },
  3007. backDressed: {
  3008. height: math.unit(216, "feet"),
  3009. weight: math.unit(7000000, "lb"),
  3010. preyCapacity: math.unit(1321, "people"),
  3011. name: "Back (Dressed)",
  3012. image: {
  3013. source: "./media/characters/jazzy/back-dressed.svg",
  3014. extra: 2775 / 2673,
  3015. bottom: 36.8 / 2817
  3016. }
  3017. },
  3018. front: {
  3019. height: math.unit(216, "feet"),
  3020. weight: math.unit(7000000, "lb"),
  3021. preyCapacity: math.unit(1321, "people"),
  3022. name: "Front",
  3023. image: {
  3024. source: "./media/characters/jazzy/front.svg",
  3025. extra: 2738 / 2651,
  3026. bottom: 41.8 / 2786
  3027. }
  3028. },
  3029. back: {
  3030. height: math.unit(216, "feet"),
  3031. weight: math.unit(7000000, "lb"),
  3032. preyCapacity: math.unit(1321, "people"),
  3033. name: "Back",
  3034. image: {
  3035. source: "./media/characters/jazzy/back.svg",
  3036. extra: 2775 / 2673,
  3037. bottom: 36.8 / 2817
  3038. }
  3039. },
  3040. maw: {
  3041. height: math.unit(20, "feet"),
  3042. name: "Maw",
  3043. image: {
  3044. source: "./media/characters/jazzy/maw.svg"
  3045. }
  3046. },
  3047. paws: {
  3048. height: math.unit(27.5, "feet"),
  3049. name: "Paws",
  3050. image: {
  3051. source: "./media/characters/jazzy/paws.svg"
  3052. }
  3053. },
  3054. eye: {
  3055. height: math.unit(4.4, "feet"),
  3056. name: "Eye",
  3057. image: {
  3058. source: "./media/characters/jazzy/eye.svg"
  3059. }
  3060. },
  3061. droneOffense: {
  3062. height: math.unit(9.5, "inches"),
  3063. name: "Drone (Offense)",
  3064. image: {
  3065. source: "./media/characters/jazzy/drone-offense.svg"
  3066. }
  3067. },
  3068. droneRecon: {
  3069. height: math.unit(9.5, "inches"),
  3070. name: "Drone (Recon)",
  3071. image: {
  3072. source: "./media/characters/jazzy/drone-recon.svg"
  3073. }
  3074. },
  3075. droneDefense: {
  3076. height: math.unit(9.5, "inches"),
  3077. name: "Drone (Defense)",
  3078. image: {
  3079. source: "./media/characters/jazzy/drone-defense.svg"
  3080. }
  3081. },
  3082. },
  3083. [
  3084. {
  3085. name: "Macro",
  3086. height: math.unit(216, "feet"),
  3087. default: true
  3088. },
  3089. ]
  3090. ))
  3091. characterMakers.push(() => makeCharacter(
  3092. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3093. {
  3094. front: {
  3095. height: math.unit(9 + 6/12, "feet"),
  3096. weight: math.unit(700, "lb"),
  3097. name: "Front",
  3098. image: {
  3099. source: "./media/characters/flamm/front.svg",
  3100. extra: 1751/1632,
  3101. bottom: 46/1797
  3102. }
  3103. },
  3104. buff: {
  3105. height: math.unit(9 + 6/12, "feet"),
  3106. weight: math.unit(950, "lb"),
  3107. name: "Buff",
  3108. image: {
  3109. source: "./media/characters/flamm/buff.svg",
  3110. extra: 3018/2874,
  3111. bottom: 221/3239
  3112. }
  3113. },
  3114. },
  3115. [
  3116. {
  3117. name: "Normal",
  3118. height: math.unit(9.5, "feet")
  3119. },
  3120. {
  3121. name: "Macro",
  3122. height: math.unit(200, "feet"),
  3123. default: true
  3124. },
  3125. ]
  3126. ))
  3127. characterMakers.push(() => makeCharacter(
  3128. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3129. {
  3130. front: {
  3131. height: math.unit(5 + 3/12, "feet"),
  3132. weight: math.unit(60, "kg"),
  3133. name: "Front",
  3134. image: {
  3135. source: "./media/characters/zephiro/front.svg",
  3136. extra: 1873/1761,
  3137. bottom: 147/2020
  3138. }
  3139. },
  3140. side: {
  3141. height: math.unit(5 + 3/12, "feet"),
  3142. weight: math.unit(60, "kg"),
  3143. name: "Side",
  3144. image: {
  3145. source: "./media/characters/zephiro/side.svg",
  3146. extra: 1929/1827,
  3147. bottom: 65/1994
  3148. }
  3149. },
  3150. back: {
  3151. height: math.unit(5 + 3/12, "feet"),
  3152. weight: math.unit(60, "kg"),
  3153. name: "Back",
  3154. image: {
  3155. source: "./media/characters/zephiro/back.svg",
  3156. extra: 1926/1816,
  3157. bottom: 41/1967
  3158. }
  3159. },
  3160. hand: {
  3161. height: math.unit(0.68, "feet"),
  3162. name: "Hand",
  3163. image: {
  3164. source: "./media/characters/zephiro/hand.svg"
  3165. }
  3166. },
  3167. paw: {
  3168. height: math.unit(1, "feet"),
  3169. name: "Paw",
  3170. image: {
  3171. source: "./media/characters/zephiro/paw.svg"
  3172. }
  3173. },
  3174. beans: {
  3175. height: math.unit(0.93, "feet"),
  3176. name: "Beans",
  3177. image: {
  3178. source: "./media/characters/zephiro/beans.svg"
  3179. }
  3180. },
  3181. },
  3182. [
  3183. {
  3184. name: "Micro",
  3185. height: math.unit(3, "inches")
  3186. },
  3187. {
  3188. name: "Normal",
  3189. height: math.unit(5 + 3 / 12, "feet"),
  3190. default: true
  3191. },
  3192. {
  3193. name: "Macro",
  3194. height: math.unit(118, "feet")
  3195. },
  3196. ]
  3197. ))
  3198. characterMakers.push(() => makeCharacter(
  3199. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3200. {
  3201. front: {
  3202. height: math.unit(5, "feet"),
  3203. weight: math.unit(90, "kg"),
  3204. preyCapacity: math.unit(14, "people"),
  3205. name: "Front",
  3206. image: {
  3207. source: "./media/characters/fory/front.svg",
  3208. extra: 2862 / 2674,
  3209. bottom: 180 / 3043.8
  3210. },
  3211. form: "weaselbun",
  3212. default: true,
  3213. extraAttributes: {
  3214. "pawSize": {
  3215. name: "Paw Size",
  3216. power: 2,
  3217. type: "area",
  3218. base: math.unit(0.1596, "m^2")
  3219. },
  3220. "pawLength": {
  3221. name: "Paw Length",
  3222. power: 1,
  3223. type: "length",
  3224. base: math.unit(0.7, "m")
  3225. }
  3226. }
  3227. },
  3228. back: {
  3229. height: math.unit(5, "feet"),
  3230. weight: math.unit(90, "kg"),
  3231. preyCapacity: math.unit(14, "people"),
  3232. name: "Back",
  3233. image: {
  3234. source: "./media/characters/fory/back.svg",
  3235. extra: 1790/1672,
  3236. bottom: 84/1874
  3237. },
  3238. form: "weaselbun",
  3239. extraAttributes: {
  3240. "pawSize": {
  3241. name: "Paw Size",
  3242. power: 2,
  3243. type: "area",
  3244. base: math.unit(0.1596, "m^2")
  3245. },
  3246. "pawLength": {
  3247. name: "Paw Length",
  3248. power: 1,
  3249. type: "length",
  3250. base: math.unit(0.7, "m")
  3251. }
  3252. }
  3253. },
  3254. paw: {
  3255. height: math.unit(2.14, "feet"),
  3256. name: "Paw",
  3257. image: {
  3258. source: "./media/characters/fory/paw.svg"
  3259. },
  3260. form: "weaselbun",
  3261. extraAttributes: {
  3262. "pawSize": {
  3263. name: "Paw Size",
  3264. power: 2,
  3265. type: "area",
  3266. base: math.unit(0.1596, "m^2")
  3267. },
  3268. "pawLength": {
  3269. name: "Paw Length",
  3270. power: 1,
  3271. type: "length",
  3272. base: math.unit(0.48, "m")
  3273. }
  3274. }
  3275. },
  3276. bunBack: {
  3277. height: math.unit(3, "feet"),
  3278. weight: math.unit(20, "kg"),
  3279. preyCapacity: math.unit(3, "people"),
  3280. name: "Back",
  3281. image: {
  3282. source: "./media/characters/fory/bun-back.svg",
  3283. extra: 1749/1564,
  3284. bottom: 246/1995
  3285. },
  3286. form: "bun",
  3287. default: true,
  3288. extraAttributes: {
  3289. "pawSize": {
  3290. name: "Paw Size",
  3291. power: 2,
  3292. type: "area",
  3293. base: math.unit(0.072, "m^2")
  3294. },
  3295. "pawLength": {
  3296. name: "Paw Length",
  3297. power: 1,
  3298. type: "length",
  3299. base: math.unit(0.45, "m")
  3300. }
  3301. }
  3302. },
  3303. },
  3304. [
  3305. {
  3306. name: "Normal",
  3307. height: math.unit(5, "feet"),
  3308. form: "weaselbun"
  3309. },
  3310. {
  3311. name: "Macro",
  3312. height: math.unit(50, "feet"),
  3313. default: true,
  3314. form: "weaselbun"
  3315. },
  3316. {
  3317. name: "Megamacro",
  3318. height: math.unit(10, "miles"),
  3319. form: "weaselbun"
  3320. },
  3321. {
  3322. name: "Gigamacro",
  3323. height: math.unit(5, "earths"),
  3324. form: "weaselbun"
  3325. },
  3326. {
  3327. name: "Normal",
  3328. height: math.unit(3, "feet"),
  3329. default: true,
  3330. form: "bun"
  3331. },
  3332. {
  3333. name: "Fun-Size",
  3334. height: math.unit(12, "feet"),
  3335. form: "bun"
  3336. },
  3337. {
  3338. name: "Macro",
  3339. height: math.unit(100, "feet"),
  3340. form: "bun"
  3341. },
  3342. {
  3343. name: "Planetary",
  3344. height: math.unit(3, "earths"),
  3345. form: "bun"
  3346. },
  3347. ],
  3348. {
  3349. "weaselbun": {
  3350. name: "Weaselbun",
  3351. default: true
  3352. },
  3353. "bun": {
  3354. name: "Bun",
  3355. },
  3356. }
  3357. ))
  3358. characterMakers.push(() => makeCharacter(
  3359. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3360. {
  3361. front: {
  3362. height: math.unit(7, "feet"),
  3363. weight: math.unit(90, "kg"),
  3364. name: "Front",
  3365. image: {
  3366. source: "./media/characters/kurrikage/front.svg",
  3367. extra: 1845/1733,
  3368. bottom: 119/1964
  3369. }
  3370. },
  3371. back: {
  3372. height: math.unit(7, "feet"),
  3373. weight: math.unit(90, "kg"),
  3374. name: "Back",
  3375. image: {
  3376. source: "./media/characters/kurrikage/back.svg",
  3377. extra: 1790/1677,
  3378. bottom: 61/1851
  3379. }
  3380. },
  3381. dressed: {
  3382. height: math.unit(7, "feet"),
  3383. weight: math.unit(90, "kg"),
  3384. name: "Dressed",
  3385. image: {
  3386. source: "./media/characters/kurrikage/dressed.svg",
  3387. extra: 1845/1733,
  3388. bottom: 119/1964
  3389. }
  3390. },
  3391. foot: {
  3392. height: math.unit(1.5, "feet"),
  3393. name: "Foot",
  3394. image: {
  3395. source: "./media/characters/kurrikage/foot.svg"
  3396. }
  3397. },
  3398. staff: {
  3399. height: math.unit(6.7, "feet"),
  3400. name: "Staff",
  3401. image: {
  3402. source: "./media/characters/kurrikage/staff.svg"
  3403. }
  3404. },
  3405. peek: {
  3406. height: math.unit(1.05, "feet"),
  3407. name: "Peeking",
  3408. image: {
  3409. source: "./media/characters/kurrikage/peek.svg",
  3410. bottom: 0.08
  3411. }
  3412. },
  3413. },
  3414. [
  3415. {
  3416. name: "Normal",
  3417. height: math.unit(12, "feet"),
  3418. default: true
  3419. },
  3420. {
  3421. name: "Big",
  3422. height: math.unit(20, "feet")
  3423. },
  3424. {
  3425. name: "Macro",
  3426. height: math.unit(500, "feet")
  3427. },
  3428. {
  3429. name: "Megamacro",
  3430. height: math.unit(20, "miles")
  3431. },
  3432. ]
  3433. ))
  3434. characterMakers.push(() => makeCharacter(
  3435. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3436. {
  3437. front: {
  3438. height: math.unit(6, "feet"),
  3439. weight: math.unit(75, "kg"),
  3440. name: "Front",
  3441. image: {
  3442. source: "./media/characters/shingo/front.svg",
  3443. extra: 1900/1825,
  3444. bottom: 82/1982
  3445. }
  3446. },
  3447. side: {
  3448. height: math.unit(6, "feet"),
  3449. weight: math.unit(75, "kg"),
  3450. name: "Side",
  3451. image: {
  3452. source: "./media/characters/shingo/side.svg",
  3453. extra: 1930/1865,
  3454. bottom: 16/1946
  3455. }
  3456. },
  3457. back: {
  3458. height: math.unit(6, "feet"),
  3459. weight: math.unit(75, "kg"),
  3460. name: "Back",
  3461. image: {
  3462. source: "./media/characters/shingo/back.svg",
  3463. extra: 1922/1852,
  3464. bottom: 16/1938
  3465. }
  3466. },
  3467. frontDressed: {
  3468. height: math.unit(6, "feet"),
  3469. weight: math.unit(150, "lb"),
  3470. name: "Front-dressed",
  3471. image: {
  3472. source: "./media/characters/shingo/front-dressed.svg",
  3473. extra: 1900/1825,
  3474. bottom: 82/1982
  3475. }
  3476. },
  3477. paw: {
  3478. height: math.unit(1.29, "feet"),
  3479. name: "Paw",
  3480. image: {
  3481. source: "./media/characters/shingo/paw.svg"
  3482. }
  3483. },
  3484. hand: {
  3485. height: math.unit(1.07, "feet"),
  3486. name: "Hand",
  3487. image: {
  3488. source: "./media/characters/shingo/hand.svg"
  3489. }
  3490. },
  3491. frontAlt: {
  3492. height: math.unit(6, "feet"),
  3493. weight: math.unit(75, "kg"),
  3494. name: "Front (Alt)",
  3495. image: {
  3496. source: "./media/characters/shingo/front-alt.svg",
  3497. extra: 3511 / 3338,
  3498. bottom: 0.005
  3499. }
  3500. },
  3501. frontAlt2: {
  3502. height: math.unit(6, "feet"),
  3503. weight: math.unit(75, "kg"),
  3504. name: "Front (Alt 2)",
  3505. image: {
  3506. source: "./media/characters/shingo/front-alt-2.svg",
  3507. extra: 706/681,
  3508. bottom: 11/717
  3509. }
  3510. },
  3511. pawAlt: {
  3512. height: math.unit(1, "feet"),
  3513. name: "Paw (Alt)",
  3514. image: {
  3515. source: "./media/characters/shingo/paw-alt.svg"
  3516. }
  3517. },
  3518. },
  3519. [
  3520. {
  3521. name: "Micro",
  3522. height: math.unit(4, "inches")
  3523. },
  3524. {
  3525. name: "Normal",
  3526. height: math.unit(6, "feet"),
  3527. default: true
  3528. },
  3529. {
  3530. name: "Macro",
  3531. height: math.unit(108, "feet")
  3532. },
  3533. {
  3534. name: "Macro+",
  3535. height: math.unit(1500, "feet")
  3536. },
  3537. ]
  3538. ))
  3539. characterMakers.push(() => makeCharacter(
  3540. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3541. {
  3542. side: {
  3543. height: math.unit(6, "feet"),
  3544. weight: math.unit(75, "kg"),
  3545. name: "Side",
  3546. image: {
  3547. source: "./media/characters/aigey/side.svg"
  3548. }
  3549. },
  3550. },
  3551. [
  3552. {
  3553. name: "Macro",
  3554. height: math.unit(200, "feet"),
  3555. default: true
  3556. },
  3557. {
  3558. name: "Megamacro",
  3559. height: math.unit(100, "miles")
  3560. },
  3561. ]
  3562. )
  3563. )
  3564. characterMakers.push(() => makeCharacter(
  3565. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3566. {
  3567. front: {
  3568. height: math.unit(5 + 5 / 12, "feet"),
  3569. weight: math.unit(75, "kg"),
  3570. name: "Front",
  3571. image: {
  3572. source: "./media/characters/natasha/front.svg",
  3573. extra: 859 / 824,
  3574. bottom: 23 / 879.6
  3575. }
  3576. },
  3577. frontNsfw: {
  3578. height: math.unit(5 + 5 / 12, "feet"),
  3579. weight: math.unit(75, "kg"),
  3580. name: "Front (NSFW)",
  3581. image: {
  3582. source: "./media/characters/natasha/front-nsfw.svg",
  3583. extra: 859 / 824,
  3584. bottom: 23 / 879.6
  3585. }
  3586. },
  3587. frontErect: {
  3588. height: math.unit(5 + 5 / 12, "feet"),
  3589. weight: math.unit(75, "kg"),
  3590. name: "Front (Erect)",
  3591. image: {
  3592. source: "./media/characters/natasha/front-erect.svg",
  3593. extra: 859 / 824,
  3594. bottom: 23 / 879.6
  3595. }
  3596. },
  3597. back: {
  3598. height: math.unit(5 + 5 / 12, "feet"),
  3599. weight: math.unit(75, "kg"),
  3600. name: "Back",
  3601. image: {
  3602. source: "./media/characters/natasha/back.svg",
  3603. extra: 887.9 / 852.6,
  3604. bottom: 9.7 / 896.4
  3605. }
  3606. },
  3607. backAlt: {
  3608. height: math.unit(5 + 5 / 12, "feet"),
  3609. weight: math.unit(75, "kg"),
  3610. name: "Back (Alt)",
  3611. image: {
  3612. source: "./media/characters/natasha/back-alt.svg",
  3613. extra: 1236.7 / 1192,
  3614. bottom: 22.3 / 1258.2
  3615. }
  3616. },
  3617. dick: {
  3618. height: math.unit(1.772, "feet"),
  3619. name: "Dick",
  3620. image: {
  3621. source: "./media/characters/natasha/dick.svg"
  3622. }
  3623. },
  3624. paw: {
  3625. height: math.unit(0.250, "meters"),
  3626. name: "Paw",
  3627. image: {
  3628. source: "./media/characters/natasha/paw.svg"
  3629. },
  3630. extraAttributes: {
  3631. "toeSize": {
  3632. name: "Toe Size",
  3633. power: 2,
  3634. type: "area",
  3635. base: math.unit(0.0024, "m^2")
  3636. },
  3637. "padSize": {
  3638. name: "Pad Size",
  3639. power: 2,
  3640. type: "area",
  3641. base: math.unit(0.00889, "m^2")
  3642. },
  3643. "pawSize": {
  3644. name: "Paw Size",
  3645. power: 2,
  3646. type: "area",
  3647. base: math.unit(0.023667, "m^2")
  3648. },
  3649. }
  3650. },
  3651. },
  3652. [
  3653. {
  3654. name: "Shortstack",
  3655. height: math.unit(3, "feet"),
  3656. default: true
  3657. },
  3658. {
  3659. name: "Normal",
  3660. height: math.unit(5 + 5 / 12, "feet")
  3661. },
  3662. {
  3663. name: "Large",
  3664. height: math.unit(12, "feet")
  3665. },
  3666. {
  3667. name: "Macro",
  3668. height: math.unit(100, "feet")
  3669. },
  3670. {
  3671. name: "Macro+",
  3672. height: math.unit(260, "feet")
  3673. },
  3674. {
  3675. name: "Macro++",
  3676. height: math.unit(1, "mile")
  3677. },
  3678. ]
  3679. ))
  3680. characterMakers.push(() => makeCharacter(
  3681. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3682. {
  3683. front: {
  3684. height: math.unit(6, "feet"),
  3685. weight: math.unit(75, "kg"),
  3686. name: "Front",
  3687. image: {
  3688. source: "./media/characters/malik/front.svg",
  3689. extra: 1750/1561,
  3690. bottom: 80/1830
  3691. },
  3692. extraAttributes: {
  3693. "toeSize": {
  3694. name: "Toe Size",
  3695. power: 2,
  3696. type: "area",
  3697. base: math.unit(0.0159, "m^2")
  3698. },
  3699. "pawSize": {
  3700. name: "Paw Size",
  3701. power: 2,
  3702. type: "area",
  3703. base: math.unit(0.09834, "m^2")
  3704. },
  3705. }
  3706. },
  3707. side: {
  3708. height: math.unit(6, "feet"),
  3709. weight: math.unit(75, "kg"),
  3710. name: "Side",
  3711. image: {
  3712. source: "./media/characters/malik/side.svg",
  3713. extra: 1802/1685,
  3714. bottom: 42/1844
  3715. },
  3716. extraAttributes: {
  3717. "toeSize": {
  3718. name: "Toe Size",
  3719. power: 2,
  3720. type: "area",
  3721. base: math.unit(0.0159, "m^2")
  3722. },
  3723. "pawSize": {
  3724. name: "Paw Size",
  3725. power: 2,
  3726. type: "area",
  3727. base: math.unit(0.09834, "m^2")
  3728. },
  3729. }
  3730. },
  3731. back: {
  3732. height: math.unit(6, "feet"),
  3733. weight: math.unit(75, "kg"),
  3734. name: "Back",
  3735. image: {
  3736. source: "./media/characters/malik/back.svg",
  3737. extra: 1803/1607,
  3738. bottom: 33/1836
  3739. },
  3740. extraAttributes: {
  3741. "toeSize": {
  3742. name: "Toe Size",
  3743. power: 2,
  3744. type: "area",
  3745. base: math.unit(0.0159, "m^2")
  3746. },
  3747. "pawSize": {
  3748. name: "Paw Size",
  3749. power: 2,
  3750. type: "area",
  3751. base: math.unit(0.09834, "m^2")
  3752. },
  3753. }
  3754. },
  3755. },
  3756. [
  3757. {
  3758. name: "Macro",
  3759. height: math.unit(156, "feet"),
  3760. default: true
  3761. },
  3762. {
  3763. name: "Macro+",
  3764. height: math.unit(1188, "feet")
  3765. },
  3766. ]
  3767. ))
  3768. characterMakers.push(() => makeCharacter(
  3769. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3770. {
  3771. front: {
  3772. height: math.unit(6, "feet"),
  3773. weight: math.unit(75, "kg"),
  3774. name: "Front",
  3775. image: {
  3776. source: "./media/characters/sefer/front.svg",
  3777. extra: 848 / 659,
  3778. bottom: 28.3 / 876.442
  3779. }
  3780. },
  3781. back: {
  3782. height: math.unit(6, "feet"),
  3783. weight: math.unit(75, "kg"),
  3784. name: "Back",
  3785. image: {
  3786. source: "./media/characters/sefer/back.svg",
  3787. extra: 864 / 695,
  3788. bottom: 10 / 871
  3789. }
  3790. },
  3791. frontDressed: {
  3792. height: math.unit(6, "feet"),
  3793. weight: math.unit(75, "kg"),
  3794. name: "Dressed",
  3795. image: {
  3796. source: "./media/characters/sefer/dressed.svg",
  3797. extra: 839 / 653,
  3798. bottom: 37.6 / 878
  3799. }
  3800. },
  3801. },
  3802. [
  3803. {
  3804. name: "Normal",
  3805. height: math.unit(6, "feet"),
  3806. default: true
  3807. },
  3808. {
  3809. name: "Big",
  3810. height: math.unit(8, "meters")
  3811. },
  3812. ]
  3813. ))
  3814. characterMakers.push(() => makeCharacter(
  3815. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3816. {
  3817. body: {
  3818. height: math.unit(2.2428, "meter"),
  3819. weight: math.unit(124.738, "kg"),
  3820. name: "Body",
  3821. image: {
  3822. extra: 1225 / 1050,
  3823. source: "./media/characters/north/front.svg"
  3824. }
  3825. }
  3826. },
  3827. [
  3828. {
  3829. name: "Micro",
  3830. height: math.unit(4, "inches")
  3831. },
  3832. {
  3833. name: "Macro",
  3834. height: math.unit(63, "meters")
  3835. },
  3836. {
  3837. name: "Megamacro",
  3838. height: math.unit(101, "miles"),
  3839. default: true
  3840. }
  3841. ]
  3842. ))
  3843. characterMakers.push(() => makeCharacter(
  3844. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3845. {
  3846. angled: {
  3847. height: math.unit(4, "meter"),
  3848. weight: math.unit(150, "kg"),
  3849. name: "Angled",
  3850. image: {
  3851. source: "./media/characters/talan/angled-sfw.svg",
  3852. bottom: 29 / 3734
  3853. }
  3854. },
  3855. angledNsfw: {
  3856. height: math.unit(4, "meter"),
  3857. weight: math.unit(150, "kg"),
  3858. name: "Angled (NSFW)",
  3859. image: {
  3860. source: "./media/characters/talan/angled-nsfw.svg",
  3861. bottom: 29 / 3734
  3862. }
  3863. },
  3864. frontNsfw: {
  3865. height: math.unit(4, "meter"),
  3866. weight: math.unit(150, "kg"),
  3867. name: "Front (NSFW)",
  3868. image: {
  3869. source: "./media/characters/talan/front-nsfw.svg",
  3870. bottom: 29 / 3734
  3871. }
  3872. },
  3873. sideNsfw: {
  3874. height: math.unit(4, "meter"),
  3875. weight: math.unit(150, "kg"),
  3876. name: "Side (NSFW)",
  3877. image: {
  3878. source: "./media/characters/talan/side-nsfw.svg",
  3879. bottom: 29 / 3734
  3880. }
  3881. },
  3882. back: {
  3883. height: math.unit(4, "meter"),
  3884. weight: math.unit(150, "kg"),
  3885. name: "Back",
  3886. image: {
  3887. source: "./media/characters/talan/back.svg"
  3888. }
  3889. },
  3890. dickBottom: {
  3891. height: math.unit(0.621, "meter"),
  3892. name: "Dick (Bottom)",
  3893. image: {
  3894. source: "./media/characters/talan/dick-bottom.svg"
  3895. }
  3896. },
  3897. dickTop: {
  3898. height: math.unit(0.621, "meter"),
  3899. name: "Dick (Top)",
  3900. image: {
  3901. source: "./media/characters/talan/dick-top.svg"
  3902. }
  3903. },
  3904. dickSide: {
  3905. height: math.unit(0.305, "meter"),
  3906. name: "Dick (Side)",
  3907. image: {
  3908. source: "./media/characters/talan/dick-side.svg"
  3909. }
  3910. },
  3911. dickFront: {
  3912. height: math.unit(0.305, "meter"),
  3913. name: "Dick (Front)",
  3914. image: {
  3915. source: "./media/characters/talan/dick-front.svg"
  3916. }
  3917. },
  3918. },
  3919. [
  3920. {
  3921. name: "Normal",
  3922. height: math.unit(4, "meters")
  3923. },
  3924. {
  3925. name: "Macro",
  3926. height: math.unit(100, "meters")
  3927. },
  3928. {
  3929. name: "Megamacro",
  3930. height: math.unit(2, "miles"),
  3931. default: true
  3932. },
  3933. {
  3934. name: "Gigamacro",
  3935. height: math.unit(5000, "miles")
  3936. },
  3937. {
  3938. name: "Teramacro",
  3939. height: math.unit(100, "parsecs")
  3940. }
  3941. ]
  3942. ))
  3943. characterMakers.push(() => makeCharacter(
  3944. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3945. {
  3946. front: {
  3947. height: math.unit(2, "meter"),
  3948. weight: math.unit(90, "kg"),
  3949. name: "Front",
  3950. image: {
  3951. source: "./media/characters/gael'rathus/front.svg"
  3952. }
  3953. },
  3954. frontAlt: {
  3955. height: math.unit(2, "meter"),
  3956. weight: math.unit(90, "kg"),
  3957. name: "Front (alt)",
  3958. image: {
  3959. source: "./media/characters/gael'rathus/front-alt.svg"
  3960. }
  3961. },
  3962. frontAlt2: {
  3963. height: math.unit(2, "meter"),
  3964. weight: math.unit(90, "kg"),
  3965. name: "Front (alt 2)",
  3966. image: {
  3967. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3968. }
  3969. }
  3970. },
  3971. [
  3972. {
  3973. name: "Normal",
  3974. height: math.unit(9, "feet"),
  3975. default: true
  3976. },
  3977. {
  3978. name: "Large",
  3979. height: math.unit(25, "feet")
  3980. },
  3981. {
  3982. name: "Macro",
  3983. height: math.unit(0.25, "miles")
  3984. },
  3985. {
  3986. name: "Megamacro",
  3987. height: math.unit(10, "miles")
  3988. }
  3989. ]
  3990. ))
  3991. characterMakers.push(() => makeCharacter(
  3992. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3993. {
  3994. side: {
  3995. height: math.unit(2, "meter"),
  3996. weight: math.unit(140, "kg"),
  3997. name: "Side",
  3998. image: {
  3999. source: "./media/characters/sosha/side.svg",
  4000. extra: 1170/1006,
  4001. bottom: 94/1264
  4002. }
  4003. },
  4004. maw: {
  4005. height: math.unit(2.87, "feet"),
  4006. name: "Maw",
  4007. image: {
  4008. source: "./media/characters/sosha/maw.svg",
  4009. extra: 966/865,
  4010. bottom: 0/966
  4011. }
  4012. },
  4013. cooch: {
  4014. height: math.unit(5.6, "feet"),
  4015. name: "Cooch",
  4016. image: {
  4017. source: "./media/characters/sosha/cooch.svg"
  4018. }
  4019. },
  4020. },
  4021. [
  4022. {
  4023. name: "Normal",
  4024. height: math.unit(12, "feet"),
  4025. default: true
  4026. }
  4027. ]
  4028. ))
  4029. characterMakers.push(() => makeCharacter(
  4030. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4031. {
  4032. side: {
  4033. height: math.unit(5 + 5 / 12, "feet"),
  4034. weight: math.unit(170, "kg"),
  4035. name: "Side",
  4036. image: {
  4037. source: "./media/characters/runnola/side.svg",
  4038. extra: 741 / 448,
  4039. bottom: 0.05
  4040. }
  4041. },
  4042. },
  4043. [
  4044. {
  4045. name: "Small",
  4046. height: math.unit(3, "feet")
  4047. },
  4048. {
  4049. name: "Normal",
  4050. height: math.unit(5 + 5 / 12, "feet"),
  4051. default: true
  4052. },
  4053. {
  4054. name: "Big",
  4055. height: math.unit(10, "feet")
  4056. },
  4057. ]
  4058. ))
  4059. characterMakers.push(() => makeCharacter(
  4060. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4061. {
  4062. front: {
  4063. height: math.unit(2, "meter"),
  4064. weight: math.unit(50, "kg"),
  4065. name: "Front",
  4066. image: {
  4067. source: "./media/characters/kurribird/front.svg",
  4068. bottom: 0.015
  4069. }
  4070. },
  4071. frontAlt: {
  4072. height: math.unit(1.5, "meter"),
  4073. weight: math.unit(50, "kg"),
  4074. name: "Front (Alt)",
  4075. image: {
  4076. source: "./media/characters/kurribird/front-alt.svg",
  4077. extra: 1.45
  4078. }
  4079. },
  4080. },
  4081. [
  4082. {
  4083. name: "Normal",
  4084. height: math.unit(7, "feet")
  4085. },
  4086. {
  4087. name: "Big",
  4088. height: math.unit(12, "feet"),
  4089. default: true
  4090. },
  4091. {
  4092. name: "Macro",
  4093. height: math.unit(1500, "feet")
  4094. },
  4095. {
  4096. name: "Megamacro",
  4097. height: math.unit(2, "miles")
  4098. }
  4099. ]
  4100. ))
  4101. characterMakers.push(() => makeCharacter(
  4102. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4103. {
  4104. front: {
  4105. height: math.unit(2, "meter"),
  4106. weight: math.unit(80, "kg"),
  4107. name: "Front",
  4108. image: {
  4109. source: "./media/characters/elbial/front.svg",
  4110. extra: 1643 / 1556,
  4111. bottom: 60.2 / 1696
  4112. }
  4113. },
  4114. side: {
  4115. height: math.unit(2, "meter"),
  4116. weight: math.unit(80, "kg"),
  4117. name: "Side",
  4118. image: {
  4119. source: "./media/characters/elbial/side.svg",
  4120. extra: 1601/1528,
  4121. bottom: 97/1698
  4122. }
  4123. },
  4124. back: {
  4125. height: math.unit(2, "meter"),
  4126. weight: math.unit(80, "kg"),
  4127. name: "Back",
  4128. image: {
  4129. source: "./media/characters/elbial/back.svg",
  4130. extra: 1653/1569,
  4131. bottom: 20/1673
  4132. }
  4133. },
  4134. frontDressed: {
  4135. height: math.unit(2, "meter"),
  4136. weight: math.unit(80, "kg"),
  4137. name: "Front (Dressed)",
  4138. image: {
  4139. source: "./media/characters/elbial/front-dressed.svg",
  4140. extra: 1638/1569,
  4141. bottom: 70/1708
  4142. }
  4143. },
  4144. genitals: {
  4145. height: math.unit(2 / 3.367, "meter"),
  4146. name: "Genitals",
  4147. image: {
  4148. source: "./media/characters/elbial/genitals.svg"
  4149. }
  4150. },
  4151. },
  4152. [
  4153. {
  4154. name: "Large",
  4155. height: math.unit(100, "feet")
  4156. },
  4157. {
  4158. name: "Macro",
  4159. height: math.unit(500, "feet"),
  4160. default: true
  4161. },
  4162. {
  4163. name: "Megamacro",
  4164. height: math.unit(10, "miles")
  4165. },
  4166. {
  4167. name: "Gigamacro",
  4168. height: math.unit(25000, "miles")
  4169. },
  4170. {
  4171. name: "Full-Size",
  4172. height: math.unit(8000000, "gigaparsecs")
  4173. }
  4174. ]
  4175. ))
  4176. characterMakers.push(() => makeCharacter(
  4177. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4178. {
  4179. front: {
  4180. height: math.unit(2, "meter"),
  4181. weight: math.unit(60, "kg"),
  4182. name: "Front",
  4183. image: {
  4184. source: "./media/characters/noah/front.svg"
  4185. }
  4186. },
  4187. talons: {
  4188. height: math.unit(0.315, "meter"),
  4189. name: "Talons",
  4190. image: {
  4191. source: "./media/characters/noah/talons.svg"
  4192. }
  4193. }
  4194. },
  4195. [
  4196. {
  4197. name: "Large",
  4198. height: math.unit(50, "feet")
  4199. },
  4200. {
  4201. name: "Macro",
  4202. height: math.unit(750, "feet"),
  4203. default: true
  4204. },
  4205. {
  4206. name: "Megamacro",
  4207. height: math.unit(50, "miles")
  4208. },
  4209. {
  4210. name: "Gigamacro",
  4211. height: math.unit(100000, "miles")
  4212. },
  4213. {
  4214. name: "Full-Size",
  4215. height: math.unit(3000000000, "miles")
  4216. }
  4217. ]
  4218. ))
  4219. characterMakers.push(() => makeCharacter(
  4220. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4221. {
  4222. front: {
  4223. height: math.unit(2, "meter"),
  4224. weight: math.unit(80, "kg"),
  4225. name: "Front",
  4226. image: {
  4227. source: "./media/characters/natalya/front.svg"
  4228. }
  4229. },
  4230. back: {
  4231. height: math.unit(2, "meter"),
  4232. weight: math.unit(80, "kg"),
  4233. name: "Back",
  4234. image: {
  4235. source: "./media/characters/natalya/back.svg"
  4236. }
  4237. }
  4238. },
  4239. [
  4240. {
  4241. name: "Normal",
  4242. height: math.unit(150, "feet"),
  4243. default: true
  4244. },
  4245. {
  4246. name: "Megamacro",
  4247. height: math.unit(5, "miles")
  4248. },
  4249. {
  4250. name: "Full-Size",
  4251. height: math.unit(600, "kiloparsecs")
  4252. }
  4253. ]
  4254. ))
  4255. characterMakers.push(() => makeCharacter(
  4256. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4257. {
  4258. front: {
  4259. height: math.unit(2, "meter"),
  4260. weight: math.unit(50, "kg"),
  4261. name: "Front",
  4262. image: {
  4263. source: "./media/characters/erestrebah/front.svg",
  4264. extra: 1262/1162,
  4265. bottom: 96/1358
  4266. }
  4267. },
  4268. back: {
  4269. height: math.unit(2, "meter"),
  4270. weight: math.unit(50, "kg"),
  4271. name: "Back",
  4272. image: {
  4273. source: "./media/characters/erestrebah/back.svg",
  4274. extra: 1257/1139,
  4275. bottom: 13/1270
  4276. }
  4277. },
  4278. wing: {
  4279. height: math.unit(2, "meter"),
  4280. weight: math.unit(50, "kg"),
  4281. name: "Wing",
  4282. image: {
  4283. source: "./media/characters/erestrebah/wing.svg",
  4284. extra: 1262/1162,
  4285. bottom: 96/1358
  4286. }
  4287. },
  4288. mouth: {
  4289. height: math.unit(0.39, "feet"),
  4290. name: "Mouth",
  4291. image: {
  4292. source: "./media/characters/erestrebah/mouth.svg"
  4293. }
  4294. }
  4295. },
  4296. [
  4297. {
  4298. name: "Normal",
  4299. height: math.unit(10, "feet")
  4300. },
  4301. {
  4302. name: "Large",
  4303. height: math.unit(50, "feet"),
  4304. default: true
  4305. },
  4306. {
  4307. name: "Macro",
  4308. height: math.unit(300, "feet")
  4309. },
  4310. {
  4311. name: "Macro+",
  4312. height: math.unit(750, "feet")
  4313. },
  4314. {
  4315. name: "Megamacro",
  4316. height: math.unit(3, "miles")
  4317. }
  4318. ]
  4319. ))
  4320. characterMakers.push(() => makeCharacter(
  4321. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4322. {
  4323. front: {
  4324. height: math.unit(2, "meter"),
  4325. weight: math.unit(80, "kg"),
  4326. name: "Front",
  4327. image: {
  4328. source: "./media/characters/jennifer/front.svg",
  4329. bottom: 0.11,
  4330. extra: 1.16
  4331. }
  4332. },
  4333. frontAlt: {
  4334. height: math.unit(2, "meter"),
  4335. weight: math.unit(80, "kg"),
  4336. name: "Front (Alt)",
  4337. image: {
  4338. source: "./media/characters/jennifer/front-alt.svg"
  4339. }
  4340. }
  4341. },
  4342. [
  4343. {
  4344. name: "Canon Height",
  4345. height: math.unit(120, "feet"),
  4346. default: true
  4347. },
  4348. {
  4349. name: "Macro+",
  4350. height: math.unit(300, "feet")
  4351. },
  4352. {
  4353. name: "Megamacro",
  4354. height: math.unit(20000, "feet")
  4355. }
  4356. ]
  4357. ))
  4358. characterMakers.push(() => makeCharacter(
  4359. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4360. {
  4361. front: {
  4362. height: math.unit(2, "meter"),
  4363. weight: math.unit(50, "kg"),
  4364. name: "Front",
  4365. image: {
  4366. source: "./media/characters/kalista/front.svg",
  4367. extra: 1314/1145,
  4368. bottom: 101/1415
  4369. }
  4370. },
  4371. back: {
  4372. height: math.unit(2, "meter"),
  4373. weight: math.unit(50, "kg"),
  4374. name: "Back",
  4375. image: {
  4376. source: "./media/characters/kalista/back.svg",
  4377. extra: 1366 / 1156,
  4378. bottom: 33.9 / 1362.78
  4379. }
  4380. }
  4381. },
  4382. [
  4383. {
  4384. name: "Uncomfortably Small",
  4385. height: math.unit(10, "feet")
  4386. },
  4387. {
  4388. name: "Small",
  4389. height: math.unit(30, "feet")
  4390. },
  4391. {
  4392. name: "Macro",
  4393. height: math.unit(100, "feet"),
  4394. default: true
  4395. },
  4396. {
  4397. name: "Macro+",
  4398. height: math.unit(2000, "feet")
  4399. },
  4400. {
  4401. name: "True Form",
  4402. height: math.unit(8924, "miles")
  4403. }
  4404. ]
  4405. ))
  4406. characterMakers.push(() => makeCharacter(
  4407. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4408. {
  4409. front: {
  4410. height: math.unit(2, "meter"),
  4411. weight: math.unit(120, "kg"),
  4412. name: "Front",
  4413. image: {
  4414. source: "./media/characters/ggv/front.svg"
  4415. }
  4416. },
  4417. side: {
  4418. height: math.unit(2, "meter"),
  4419. weight: math.unit(120, "kg"),
  4420. name: "Side",
  4421. image: {
  4422. source: "./media/characters/ggv/side.svg"
  4423. }
  4424. }
  4425. },
  4426. [
  4427. {
  4428. name: "Extremely Puny",
  4429. height: math.unit(9 + 5 / 12, "feet")
  4430. },
  4431. {
  4432. name: "Horribly Small",
  4433. height: math.unit(47.7, "miles"),
  4434. default: true
  4435. },
  4436. {
  4437. name: "Reasonably Sized",
  4438. height: math.unit(25000, "parsecs")
  4439. },
  4440. {
  4441. name: "Slightly Uncompressed",
  4442. height: math.unit(7.77e31, "parsecs")
  4443. },
  4444. {
  4445. name: "Omniversal",
  4446. height: math.unit(1e300, "meters")
  4447. },
  4448. ]
  4449. ))
  4450. characterMakers.push(() => makeCharacter(
  4451. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4452. {
  4453. front: {
  4454. height: math.unit(2, "meter"),
  4455. weight: math.unit(75, "lb"),
  4456. name: "Front",
  4457. image: {
  4458. source: "./media/characters/napalm/front.svg"
  4459. }
  4460. },
  4461. back: {
  4462. height: math.unit(2, "meter"),
  4463. weight: math.unit(75, "lb"),
  4464. name: "Back",
  4465. image: {
  4466. source: "./media/characters/napalm/back.svg"
  4467. }
  4468. }
  4469. },
  4470. [
  4471. {
  4472. name: "Standard",
  4473. height: math.unit(55, "feet"),
  4474. default: true
  4475. }
  4476. ]
  4477. ))
  4478. characterMakers.push(() => makeCharacter(
  4479. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4480. {
  4481. front: {
  4482. height: math.unit(7 + 5 / 6, "feet"),
  4483. weight: math.unit(325, "lb"),
  4484. name: "Front",
  4485. image: {
  4486. source: "./media/characters/asana/front.svg",
  4487. extra: 1133 / 1060,
  4488. bottom: 15.2 / 1148.6
  4489. }
  4490. },
  4491. back: {
  4492. height: math.unit(7 + 5 / 6, "feet"),
  4493. weight: math.unit(325, "lb"),
  4494. name: "Back",
  4495. image: {
  4496. source: "./media/characters/asana/back.svg",
  4497. extra: 1114 / 1043,
  4498. bottom: 5 / 1120
  4499. }
  4500. },
  4501. dressedDark: {
  4502. height: math.unit(7 + 5 / 6, "feet"),
  4503. weight: math.unit(325, "lb"),
  4504. name: "Dressed (Dark)",
  4505. image: {
  4506. source: "./media/characters/asana/dressed-dark.svg",
  4507. extra: 1133 / 1060,
  4508. bottom: 15.2 / 1148.6
  4509. }
  4510. },
  4511. dressedLight: {
  4512. height: math.unit(7 + 5 / 6, "feet"),
  4513. weight: math.unit(325, "lb"),
  4514. name: "Dressed (Light)",
  4515. image: {
  4516. source: "./media/characters/asana/dressed-light.svg",
  4517. extra: 1133 / 1060,
  4518. bottom: 15.2 / 1148.6
  4519. }
  4520. },
  4521. },
  4522. [
  4523. {
  4524. name: "Standard",
  4525. height: math.unit(7 + 5 / 6, "feet"),
  4526. default: true
  4527. },
  4528. {
  4529. name: "Large",
  4530. height: math.unit(10, "meters")
  4531. },
  4532. {
  4533. name: "Macro",
  4534. height: math.unit(2500, "meters")
  4535. },
  4536. {
  4537. name: "Megamacro",
  4538. height: math.unit(5e6, "meters")
  4539. },
  4540. {
  4541. name: "Examacro",
  4542. height: math.unit(5e12, "lightyears")
  4543. },
  4544. {
  4545. name: "Max Size",
  4546. height: math.unit(1e31, "lightyears")
  4547. }
  4548. ]
  4549. ))
  4550. characterMakers.push(() => makeCharacter(
  4551. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4552. {
  4553. front: {
  4554. height: math.unit(2, "meter"),
  4555. weight: math.unit(60, "kg"),
  4556. name: "Front",
  4557. image: {
  4558. source: "./media/characters/ebony/front.svg",
  4559. bottom: 0.03,
  4560. extra: 1045 / 810 + 0.03
  4561. }
  4562. },
  4563. side: {
  4564. height: math.unit(2, "meter"),
  4565. weight: math.unit(60, "kg"),
  4566. name: "Side",
  4567. image: {
  4568. source: "./media/characters/ebony/side.svg",
  4569. bottom: 0.03,
  4570. extra: 1045 / 810 + 0.03
  4571. }
  4572. },
  4573. back: {
  4574. height: math.unit(2, "meter"),
  4575. weight: math.unit(60, "kg"),
  4576. name: "Back",
  4577. image: {
  4578. source: "./media/characters/ebony/back.svg",
  4579. bottom: 0.01,
  4580. extra: 1045 / 810 + 0.01
  4581. }
  4582. },
  4583. },
  4584. [
  4585. // TODO check why I did this lol
  4586. {
  4587. name: "Standard",
  4588. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4589. default: true
  4590. },
  4591. {
  4592. name: "Macro",
  4593. height: math.unit(200, "feet")
  4594. },
  4595. {
  4596. name: "Gigamacro",
  4597. height: math.unit(13000, "km")
  4598. }
  4599. ]
  4600. ))
  4601. characterMakers.push(() => makeCharacter(
  4602. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4603. {
  4604. front: {
  4605. height: math.unit(6, "feet"),
  4606. weight: math.unit(175, "lb"),
  4607. name: "Front",
  4608. image: {
  4609. source: "./media/characters/mountain/front.svg",
  4610. extra: 972 / 955,
  4611. bottom: 64 / 1036.6
  4612. }
  4613. },
  4614. back: {
  4615. height: math.unit(6, "feet"),
  4616. weight: math.unit(175, "lb"),
  4617. name: "Back",
  4618. image: {
  4619. source: "./media/characters/mountain/back.svg",
  4620. extra: 970 / 950,
  4621. bottom: 28.25 / 999
  4622. }
  4623. },
  4624. },
  4625. [
  4626. {
  4627. name: "Large",
  4628. height: math.unit(20, "meters")
  4629. },
  4630. {
  4631. name: "Macro",
  4632. height: math.unit(300, "meters")
  4633. },
  4634. {
  4635. name: "Gigamacro",
  4636. height: math.unit(10000, "km"),
  4637. default: true
  4638. },
  4639. {
  4640. name: "Examacro",
  4641. height: math.unit(10e9, "lightyears")
  4642. }
  4643. ]
  4644. ))
  4645. characterMakers.push(() => makeCharacter(
  4646. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4647. {
  4648. front: {
  4649. height: math.unit(8, "feet"),
  4650. weight: math.unit(500, "lb"),
  4651. name: "Front",
  4652. image: {
  4653. source: "./media/characters/rick/front.svg"
  4654. }
  4655. }
  4656. },
  4657. [
  4658. {
  4659. name: "Normal",
  4660. height: math.unit(8, "feet"),
  4661. default: true
  4662. },
  4663. {
  4664. name: "Macro",
  4665. height: math.unit(5, "km")
  4666. }
  4667. ]
  4668. ))
  4669. characterMakers.push(() => makeCharacter(
  4670. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4671. {
  4672. front: {
  4673. height: math.unit(8, "feet"),
  4674. weight: math.unit(120, "lb"),
  4675. name: "Front",
  4676. image: {
  4677. source: "./media/characters/ona/front.svg"
  4678. }
  4679. },
  4680. frontAlt: {
  4681. height: math.unit(8, "feet"),
  4682. weight: math.unit(120, "lb"),
  4683. name: "Front (Alt)",
  4684. image: {
  4685. source: "./media/characters/ona/front-alt.svg"
  4686. }
  4687. },
  4688. back: {
  4689. height: math.unit(8, "feet"),
  4690. weight: math.unit(120, "lb"),
  4691. name: "Back",
  4692. image: {
  4693. source: "./media/characters/ona/back.svg"
  4694. }
  4695. },
  4696. foot: {
  4697. height: math.unit(1.1, "feet"),
  4698. name: "Foot",
  4699. image: {
  4700. source: "./media/characters/ona/foot.svg"
  4701. }
  4702. }
  4703. },
  4704. [
  4705. {
  4706. name: "Megamacro",
  4707. height: math.unit(70, "km"),
  4708. default: true
  4709. },
  4710. {
  4711. name: "Gigamacro",
  4712. height: math.unit(681818, "miles")
  4713. },
  4714. {
  4715. name: "Examacro",
  4716. height: math.unit(3800000, "lightyears")
  4717. },
  4718. ]
  4719. ))
  4720. characterMakers.push(() => makeCharacter(
  4721. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4722. {
  4723. front: {
  4724. height: math.unit(12, "feet"),
  4725. weight: math.unit(3000, "lb"),
  4726. name: "Front",
  4727. image: {
  4728. source: "./media/characters/mech/front.svg",
  4729. extra: 2900 / 2770,
  4730. bottom: 110 / 3010
  4731. }
  4732. },
  4733. back: {
  4734. height: math.unit(12, "feet"),
  4735. weight: math.unit(3000, "lb"),
  4736. name: "Back",
  4737. image: {
  4738. source: "./media/characters/mech/back.svg",
  4739. extra: 3011 / 2890,
  4740. bottom: 94 / 3105
  4741. }
  4742. },
  4743. maw: {
  4744. height: math.unit(3.07, "feet"),
  4745. name: "Maw",
  4746. image: {
  4747. source: "./media/characters/mech/maw.svg"
  4748. }
  4749. },
  4750. head: {
  4751. height: math.unit(3.07, "feet"),
  4752. name: "Head",
  4753. image: {
  4754. source: "./media/characters/mech/head.svg"
  4755. }
  4756. },
  4757. dick: {
  4758. height: math.unit(1.43, "feet"),
  4759. name: "Dick",
  4760. image: {
  4761. source: "./media/characters/mech/dick.svg"
  4762. }
  4763. },
  4764. },
  4765. [
  4766. {
  4767. name: "Normal",
  4768. height: math.unit(12, "feet")
  4769. },
  4770. {
  4771. name: "Macro",
  4772. height: math.unit(300, "feet"),
  4773. default: true
  4774. },
  4775. {
  4776. name: "Macro+",
  4777. height: math.unit(1500, "feet")
  4778. },
  4779. ]
  4780. ))
  4781. characterMakers.push(() => makeCharacter(
  4782. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4783. {
  4784. front: {
  4785. height: math.unit(1.3, "meter"),
  4786. weight: math.unit(30, "kg"),
  4787. name: "Front",
  4788. image: {
  4789. source: "./media/characters/gregory/front.svg",
  4790. }
  4791. }
  4792. },
  4793. [
  4794. {
  4795. name: "Normal",
  4796. height: math.unit(1.3, "meter"),
  4797. default: true
  4798. },
  4799. {
  4800. name: "Macro",
  4801. height: math.unit(20, "meter")
  4802. }
  4803. ]
  4804. ))
  4805. characterMakers.push(() => makeCharacter(
  4806. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4807. {
  4808. front: {
  4809. height: math.unit(2.8, "meter"),
  4810. weight: math.unit(200, "kg"),
  4811. name: "Front",
  4812. image: {
  4813. source: "./media/characters/elory/front.svg",
  4814. }
  4815. }
  4816. },
  4817. [
  4818. {
  4819. name: "Normal",
  4820. height: math.unit(2.8, "meter"),
  4821. default: true
  4822. },
  4823. {
  4824. name: "Macro",
  4825. height: math.unit(38, "meter")
  4826. }
  4827. ]
  4828. ))
  4829. characterMakers.push(() => makeCharacter(
  4830. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4831. {
  4832. front: {
  4833. height: math.unit(470, "feet"),
  4834. weight: math.unit(924, "tons"),
  4835. name: "Front",
  4836. image: {
  4837. source: "./media/characters/angelpatamon/front.svg",
  4838. }
  4839. }
  4840. },
  4841. [
  4842. {
  4843. name: "Normal",
  4844. height: math.unit(470, "feet"),
  4845. default: true
  4846. },
  4847. {
  4848. name: "Deity Size I",
  4849. height: math.unit(28651.2, "km")
  4850. },
  4851. {
  4852. name: "Deity Size II",
  4853. height: math.unit(171907.2, "km")
  4854. }
  4855. ]
  4856. ))
  4857. characterMakers.push(() => makeCharacter(
  4858. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4859. {
  4860. side: {
  4861. height: math.unit(7.2, "meter"),
  4862. weight: math.unit(8.2, "tons"),
  4863. name: "Side",
  4864. image: {
  4865. source: "./media/characters/cryae/side.svg",
  4866. extra: 3500 / 1500
  4867. }
  4868. }
  4869. },
  4870. [
  4871. {
  4872. name: "Normal",
  4873. height: math.unit(7.2, "meter"),
  4874. default: true
  4875. }
  4876. ]
  4877. ))
  4878. characterMakers.push(() => makeCharacter(
  4879. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4880. {
  4881. front: {
  4882. height: math.unit(6, "feet"),
  4883. weight: math.unit(175, "lb"),
  4884. name: "Front",
  4885. image: {
  4886. source: "./media/characters/xera/front.svg",
  4887. extra: 2377 / 1972,
  4888. bottom: 75.5 / 2452
  4889. }
  4890. },
  4891. side: {
  4892. height: math.unit(6, "feet"),
  4893. weight: math.unit(175, "lb"),
  4894. name: "Side",
  4895. image: {
  4896. source: "./media/characters/xera/side.svg",
  4897. extra: 2345 / 2019,
  4898. bottom: 39.7 / 2384
  4899. }
  4900. },
  4901. back: {
  4902. height: math.unit(6, "feet"),
  4903. weight: math.unit(175, "lb"),
  4904. name: "Back",
  4905. image: {
  4906. source: "./media/characters/xera/back.svg",
  4907. extra: 2095 / 1984,
  4908. bottom: 67 / 2166
  4909. }
  4910. },
  4911. },
  4912. [
  4913. {
  4914. name: "Small",
  4915. height: math.unit(10, "feet")
  4916. },
  4917. {
  4918. name: "Macro",
  4919. height: math.unit(500, "meters"),
  4920. default: true
  4921. },
  4922. {
  4923. name: "Macro+",
  4924. height: math.unit(10, "km")
  4925. },
  4926. {
  4927. name: "Gigamacro",
  4928. height: math.unit(25000, "km")
  4929. },
  4930. {
  4931. name: "Teramacro",
  4932. height: math.unit(3e6, "km")
  4933. }
  4934. ]
  4935. ))
  4936. characterMakers.push(() => makeCharacter(
  4937. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4938. {
  4939. front: {
  4940. height: math.unit(6, "feet"),
  4941. weight: math.unit(175, "lb"),
  4942. name: "Front",
  4943. image: {
  4944. source: "./media/characters/nebula/front.svg",
  4945. extra: 2566 / 2362,
  4946. bottom: 81 / 2644
  4947. }
  4948. }
  4949. },
  4950. [
  4951. {
  4952. name: "Small",
  4953. height: math.unit(4.5, "meters")
  4954. },
  4955. {
  4956. name: "Macro",
  4957. height: math.unit(1500, "meters"),
  4958. default: true
  4959. },
  4960. {
  4961. name: "Megamacro",
  4962. height: math.unit(150, "km")
  4963. },
  4964. {
  4965. name: "Gigamacro",
  4966. height: math.unit(27000, "km")
  4967. }
  4968. ]
  4969. ))
  4970. characterMakers.push(() => makeCharacter(
  4971. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4972. {
  4973. front: {
  4974. height: math.unit(6, "feet"),
  4975. weight: math.unit(225, "lb"),
  4976. name: "Front",
  4977. image: {
  4978. source: "./media/characters/abysgar/front.svg",
  4979. extra: 1739/1614,
  4980. bottom: 71/1810
  4981. }
  4982. },
  4983. frontNsfw: {
  4984. height: math.unit(6, "feet"),
  4985. weight: math.unit(225, "lb"),
  4986. name: "Front (NSFW)",
  4987. image: {
  4988. source: "./media/characters/abysgar/front-nsfw.svg",
  4989. extra: 1739/1614,
  4990. bottom: 71/1810
  4991. }
  4992. },
  4993. back: {
  4994. height: math.unit(4.6, "feet"),
  4995. weight: math.unit(225, "lb"),
  4996. name: "Back",
  4997. image: {
  4998. source: "./media/characters/abysgar/back.svg",
  4999. extra: 1384/1327,
  5000. bottom: 0/1384
  5001. }
  5002. },
  5003. head: {
  5004. height: math.unit(1.25, "feet"),
  5005. name: "Head",
  5006. image: {
  5007. source: "./media/characters/abysgar/head.svg",
  5008. extra: 669/569,
  5009. bottom: 0/669
  5010. }
  5011. },
  5012. },
  5013. [
  5014. {
  5015. name: "Small",
  5016. height: math.unit(4.5, "meters")
  5017. },
  5018. {
  5019. name: "Macro",
  5020. height: math.unit(1250, "meters"),
  5021. default: true
  5022. },
  5023. {
  5024. name: "Megamacro",
  5025. height: math.unit(125, "km")
  5026. },
  5027. {
  5028. name: "Gigamacro",
  5029. height: math.unit(26000, "km")
  5030. }
  5031. ]
  5032. ))
  5033. characterMakers.push(() => makeCharacter(
  5034. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5035. {
  5036. front: {
  5037. height: math.unit(6, "feet"),
  5038. weight: math.unit(180, "lb"),
  5039. name: "Front",
  5040. image: {
  5041. source: "./media/characters/yakuz/front.svg"
  5042. }
  5043. }
  5044. },
  5045. [
  5046. {
  5047. name: "Small",
  5048. height: math.unit(5, "meters")
  5049. },
  5050. {
  5051. name: "Macro",
  5052. height: math.unit(1500, "meters"),
  5053. default: true
  5054. },
  5055. {
  5056. name: "Megamacro",
  5057. height: math.unit(200, "km")
  5058. },
  5059. {
  5060. name: "Gigamacro",
  5061. height: math.unit(100000, "km")
  5062. }
  5063. ]
  5064. ))
  5065. characterMakers.push(() => makeCharacter(
  5066. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5067. {
  5068. front: {
  5069. height: math.unit(6, "feet"),
  5070. weight: math.unit(175, "lb"),
  5071. name: "Front",
  5072. image: {
  5073. source: "./media/characters/mirova/front.svg",
  5074. extra: 3334 / 3071,
  5075. bottom: 42 / 3375.6
  5076. }
  5077. }
  5078. },
  5079. [
  5080. {
  5081. name: "Small",
  5082. height: math.unit(5, "meters")
  5083. },
  5084. {
  5085. name: "Macro",
  5086. height: math.unit(900, "meters"),
  5087. default: true
  5088. },
  5089. {
  5090. name: "Megamacro",
  5091. height: math.unit(135, "km")
  5092. },
  5093. {
  5094. name: "Gigamacro",
  5095. height: math.unit(20000, "km")
  5096. }
  5097. ]
  5098. ))
  5099. characterMakers.push(() => makeCharacter(
  5100. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5101. {
  5102. side: {
  5103. height: math.unit(28.35, "feet"),
  5104. weight: math.unit(99.75, "tons"),
  5105. name: "Side",
  5106. image: {
  5107. source: "./media/characters/asana-mech/side.svg",
  5108. extra: 923 / 699,
  5109. bottom: 50 / 975
  5110. }
  5111. },
  5112. chaingun: {
  5113. height: math.unit(7, "feet"),
  5114. weight: math.unit(2400, "lb"),
  5115. name: "Chaingun",
  5116. image: {
  5117. source: "./media/characters/asana-mech/chaingun.svg"
  5118. }
  5119. },
  5120. laser: {
  5121. height: math.unit(7.12, "feet"),
  5122. weight: math.unit(2000, "lb"),
  5123. name: "Laser",
  5124. image: {
  5125. source: "./media/characters/asana-mech/laser.svg"
  5126. }
  5127. },
  5128. },
  5129. [
  5130. {
  5131. name: "Normal",
  5132. height: math.unit(28.35, "feet"),
  5133. default: true
  5134. },
  5135. {
  5136. name: "Macro",
  5137. height: math.unit(2500, "feet")
  5138. },
  5139. {
  5140. name: "Megamacro",
  5141. height: math.unit(25, "miles")
  5142. },
  5143. {
  5144. name: "Examacro",
  5145. height: math.unit(6e8, "lightyears")
  5146. },
  5147. ]
  5148. ))
  5149. characterMakers.push(() => makeCharacter(
  5150. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5151. {
  5152. front: {
  5153. height: math.unit(5, "meters"),
  5154. weight: math.unit(1000, "kg"),
  5155. name: "Front",
  5156. image: {
  5157. source: "./media/characters/asche/front.svg",
  5158. extra: 1258 / 1190,
  5159. bottom: 47 / 1305
  5160. }
  5161. },
  5162. frontUnderwear: {
  5163. height: math.unit(5, "meters"),
  5164. weight: math.unit(1000, "kg"),
  5165. name: "Front (Underwear)",
  5166. image: {
  5167. source: "./media/characters/asche/front-underwear.svg",
  5168. extra: 1258 / 1190,
  5169. bottom: 47 / 1305
  5170. }
  5171. },
  5172. frontDressed: {
  5173. height: math.unit(5, "meters"),
  5174. weight: math.unit(1000, "kg"),
  5175. name: "Front (Dressed)",
  5176. image: {
  5177. source: "./media/characters/asche/front-dressed.svg",
  5178. extra: 1258 / 1190,
  5179. bottom: 47 / 1305
  5180. }
  5181. },
  5182. frontArmor: {
  5183. height: math.unit(5, "meters"),
  5184. weight: math.unit(1000, "kg"),
  5185. name: "Front (Armored)",
  5186. image: {
  5187. source: "./media/characters/asche/front-armored.svg",
  5188. extra: 1374 / 1308,
  5189. bottom: 23 / 1397
  5190. }
  5191. },
  5192. mp724: {
  5193. height: math.unit(0.96, "meters"),
  5194. weight: math.unit(38, "kg"),
  5195. name: "H&K MP724",
  5196. image: {
  5197. source: "./media/characters/asche/h&k-mp724.svg"
  5198. }
  5199. },
  5200. side: {
  5201. height: math.unit(5, "meters"),
  5202. weight: math.unit(1000, "kg"),
  5203. name: "Side",
  5204. image: {
  5205. source: "./media/characters/asche/side.svg",
  5206. extra: 1717 / 1609,
  5207. bottom: 0.005
  5208. }
  5209. },
  5210. back: {
  5211. height: math.unit(5, "meters"),
  5212. weight: math.unit(1000, "kg"),
  5213. name: "Back",
  5214. image: {
  5215. source: "./media/characters/asche/back.svg",
  5216. extra: 1570 / 1501
  5217. }
  5218. },
  5219. },
  5220. [
  5221. {
  5222. name: "DEFCON 5",
  5223. height: math.unit(5, "meters")
  5224. },
  5225. {
  5226. name: "DEFCON 4",
  5227. height: math.unit(500, "meters"),
  5228. default: true
  5229. },
  5230. {
  5231. name: "DEFCON 3",
  5232. height: math.unit(5, "km")
  5233. },
  5234. {
  5235. name: "DEFCON 2",
  5236. height: math.unit(500, "km")
  5237. },
  5238. {
  5239. name: "DEFCON 1",
  5240. height: math.unit(500000, "km")
  5241. },
  5242. {
  5243. name: "DEFCON 0",
  5244. height: math.unit(3, "gigaparsecs")
  5245. },
  5246. ]
  5247. ))
  5248. characterMakers.push(() => makeCharacter(
  5249. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5250. {
  5251. front: {
  5252. height: math.unit(2, "meters"),
  5253. weight: math.unit(76, "kg"),
  5254. name: "Front",
  5255. image: {
  5256. source: "./media/characters/gale/front.svg"
  5257. }
  5258. },
  5259. frontAlt1: {
  5260. height: math.unit(2, "meters"),
  5261. weight: math.unit(76, "kg"),
  5262. name: "Front (Alt 1)",
  5263. image: {
  5264. source: "./media/characters/gale/front-alt-1.svg"
  5265. }
  5266. },
  5267. frontAlt2: {
  5268. height: math.unit(2, "meters"),
  5269. weight: math.unit(76, "kg"),
  5270. name: "Front (Alt 2)",
  5271. image: {
  5272. source: "./media/characters/gale/front-alt-2.svg"
  5273. }
  5274. },
  5275. },
  5276. [
  5277. {
  5278. name: "Normal",
  5279. height: math.unit(7, "feet")
  5280. },
  5281. {
  5282. name: "Macro",
  5283. height: math.unit(150, "feet"),
  5284. default: true
  5285. },
  5286. {
  5287. name: "Macro+",
  5288. height: math.unit(300, "feet")
  5289. },
  5290. ]
  5291. ))
  5292. characterMakers.push(() => makeCharacter(
  5293. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5294. {
  5295. front: {
  5296. height: math.unit(5 + 10/12, "feet"),
  5297. weight: math.unit(67, "kg"),
  5298. name: "Front",
  5299. image: {
  5300. source: "./media/characters/draylen/front.svg",
  5301. extra: 832/777,
  5302. bottom: 85/917
  5303. }
  5304. }
  5305. },
  5306. [
  5307. {
  5308. name: "Normal",
  5309. height: math.unit(5 + 10/12, "feet")
  5310. },
  5311. {
  5312. name: "Macro",
  5313. height: math.unit(150, "feet"),
  5314. default: true
  5315. }
  5316. ]
  5317. ))
  5318. characterMakers.push(() => makeCharacter(
  5319. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5320. {
  5321. front: {
  5322. height: math.unit(7 + 9 / 12, "feet"),
  5323. weight: math.unit(379, "lbs"),
  5324. name: "Front",
  5325. image: {
  5326. source: "./media/characters/chez/front.svg"
  5327. }
  5328. },
  5329. side: {
  5330. height: math.unit(7 + 9 / 12, "feet"),
  5331. weight: math.unit(379, "lbs"),
  5332. name: "Side",
  5333. image: {
  5334. source: "./media/characters/chez/side.svg"
  5335. }
  5336. }
  5337. },
  5338. [
  5339. {
  5340. name: "Normal",
  5341. height: math.unit(7 + 9 / 12, "feet"),
  5342. default: true
  5343. },
  5344. {
  5345. name: "God King",
  5346. height: math.unit(9750000, "meters")
  5347. }
  5348. ]
  5349. ))
  5350. characterMakers.push(() => makeCharacter(
  5351. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5352. {
  5353. front: {
  5354. height: math.unit(6, "feet"),
  5355. weight: math.unit(275, "lbs"),
  5356. name: "Front",
  5357. image: {
  5358. source: "./media/characters/kaylum/front.svg",
  5359. bottom: 0.01,
  5360. extra: 1166 / 1031
  5361. }
  5362. },
  5363. frontWingless: {
  5364. height: math.unit(6, "feet"),
  5365. weight: math.unit(275, "lbs"),
  5366. name: "Front (Wingless)",
  5367. image: {
  5368. source: "./media/characters/kaylum/front-wingless.svg",
  5369. bottom: 0.01,
  5370. extra: 1117 / 1031
  5371. }
  5372. }
  5373. },
  5374. [
  5375. {
  5376. name: "Normal",
  5377. height: math.unit(3.05, "meters")
  5378. },
  5379. {
  5380. name: "Master",
  5381. height: math.unit(5.5, "meters")
  5382. },
  5383. {
  5384. name: "Rampage",
  5385. height: math.unit(19, "meters")
  5386. },
  5387. {
  5388. name: "Macro Lite",
  5389. height: math.unit(37, "meters")
  5390. },
  5391. {
  5392. name: "Hyper Predator",
  5393. height: math.unit(61, "meters")
  5394. },
  5395. {
  5396. name: "Macro",
  5397. height: math.unit(138, "meters"),
  5398. default: true
  5399. }
  5400. ]
  5401. ))
  5402. characterMakers.push(() => makeCharacter(
  5403. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5404. {
  5405. front: {
  5406. height: math.unit(5 + 5 / 12, "feet"),
  5407. weight: math.unit(120, "lbs"),
  5408. name: "Front",
  5409. image: {
  5410. source: "./media/characters/geta/front.svg",
  5411. extra: 1003/933,
  5412. bottom: 21/1024
  5413. }
  5414. },
  5415. paw: {
  5416. height: math.unit(0.35, "feet"),
  5417. name: "Paw",
  5418. image: {
  5419. source: "./media/characters/geta/paw.svg"
  5420. }
  5421. },
  5422. },
  5423. [
  5424. {
  5425. name: "Micro",
  5426. height: math.unit(3, "inches"),
  5427. default: true
  5428. },
  5429. {
  5430. name: "Normal",
  5431. height: math.unit(5 + 5 / 12, "feet")
  5432. }
  5433. ]
  5434. ))
  5435. characterMakers.push(() => makeCharacter(
  5436. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5437. {
  5438. front: {
  5439. height: math.unit(6, "feet"),
  5440. weight: math.unit(300, "lbs"),
  5441. name: "Front",
  5442. image: {
  5443. source: "./media/characters/tyrnn/front.svg"
  5444. }
  5445. }
  5446. },
  5447. [
  5448. {
  5449. name: "Main Height",
  5450. height: math.unit(355, "feet"),
  5451. default: true
  5452. },
  5453. {
  5454. name: "Fave. Height",
  5455. height: math.unit(2400, "feet")
  5456. }
  5457. ]
  5458. ))
  5459. characterMakers.push(() => makeCharacter(
  5460. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5461. {
  5462. front: {
  5463. height: math.unit(6, "feet"),
  5464. weight: math.unit(300, "lbs"),
  5465. name: "Front",
  5466. image: {
  5467. source: "./media/characters/appledectomy/front.svg"
  5468. }
  5469. }
  5470. },
  5471. [
  5472. {
  5473. name: "Macro",
  5474. height: math.unit(2500, "feet")
  5475. },
  5476. {
  5477. name: "Megamacro",
  5478. height: math.unit(50, "miles"),
  5479. default: true
  5480. },
  5481. {
  5482. name: "Gigamacro",
  5483. height: math.unit(5000, "miles")
  5484. },
  5485. {
  5486. name: "Teramacro",
  5487. height: math.unit(250000, "miles")
  5488. },
  5489. ]
  5490. ))
  5491. characterMakers.push(() => makeCharacter(
  5492. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5493. {
  5494. front: {
  5495. height: math.unit(6, "feet"),
  5496. weight: math.unit(200, "lbs"),
  5497. name: "Front",
  5498. image: {
  5499. source: "./media/characters/vulpes/front.svg",
  5500. extra: 573 / 543,
  5501. bottom: 0.033
  5502. }
  5503. },
  5504. side: {
  5505. height: math.unit(6, "feet"),
  5506. weight: math.unit(200, "lbs"),
  5507. name: "Side",
  5508. image: {
  5509. source: "./media/characters/vulpes/side.svg",
  5510. extra: 577 / 549,
  5511. bottom: 11 / 588
  5512. }
  5513. },
  5514. back: {
  5515. height: math.unit(6, "feet"),
  5516. weight: math.unit(200, "lbs"),
  5517. name: "Back",
  5518. image: {
  5519. source: "./media/characters/vulpes/back.svg",
  5520. extra: 573 / 549,
  5521. bottom: 20 / 593
  5522. }
  5523. },
  5524. feet: {
  5525. height: math.unit(1.276, "feet"),
  5526. name: "Feet",
  5527. image: {
  5528. source: "./media/characters/vulpes/feet.svg"
  5529. }
  5530. },
  5531. maw: {
  5532. height: math.unit(1.18, "feet"),
  5533. name: "Maw",
  5534. image: {
  5535. source: "./media/characters/vulpes/maw.svg"
  5536. }
  5537. },
  5538. },
  5539. [
  5540. {
  5541. name: "Micro",
  5542. height: math.unit(2, "inches")
  5543. },
  5544. {
  5545. name: "Normal",
  5546. height: math.unit(6.3, "feet")
  5547. },
  5548. {
  5549. name: "Macro",
  5550. height: math.unit(850, "feet")
  5551. },
  5552. {
  5553. name: "Megamacro",
  5554. height: math.unit(7500, "feet"),
  5555. default: true
  5556. },
  5557. {
  5558. name: "Gigamacro",
  5559. height: math.unit(570000, "miles")
  5560. }
  5561. ]
  5562. ))
  5563. characterMakers.push(() => makeCharacter(
  5564. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5565. {
  5566. front: {
  5567. height: math.unit(6, "feet"),
  5568. weight: math.unit(210, "lbs"),
  5569. name: "Front",
  5570. image: {
  5571. source: "./media/characters/rain-fallen/front.svg"
  5572. }
  5573. },
  5574. side: {
  5575. height: math.unit(6, "feet"),
  5576. weight: math.unit(210, "lbs"),
  5577. name: "Side",
  5578. image: {
  5579. source: "./media/characters/rain-fallen/side.svg"
  5580. }
  5581. },
  5582. back: {
  5583. height: math.unit(6, "feet"),
  5584. weight: math.unit(210, "lbs"),
  5585. name: "Back",
  5586. image: {
  5587. source: "./media/characters/rain-fallen/back.svg"
  5588. }
  5589. },
  5590. feral: {
  5591. height: math.unit(9, "feet"),
  5592. weight: math.unit(700, "lbs"),
  5593. name: "Feral",
  5594. image: {
  5595. source: "./media/characters/rain-fallen/feral.svg"
  5596. }
  5597. },
  5598. },
  5599. [
  5600. {
  5601. name: "Meddling with Mortals",
  5602. height: math.unit(8 + 8/12, "feet")
  5603. },
  5604. {
  5605. name: "Normal",
  5606. height: math.unit(5, "meter")
  5607. },
  5608. {
  5609. name: "Macro",
  5610. height: math.unit(150, "meter"),
  5611. default: true
  5612. },
  5613. {
  5614. name: "Megamacro",
  5615. height: math.unit(278e6, "meter")
  5616. },
  5617. {
  5618. name: "Gigamacro",
  5619. height: math.unit(2e9, "meter")
  5620. },
  5621. {
  5622. name: "Teramacro",
  5623. height: math.unit(8e12, "meter")
  5624. },
  5625. {
  5626. name: "Devourer",
  5627. height: math.unit(14, "zettameters")
  5628. },
  5629. {
  5630. name: "Scarlet King",
  5631. height: math.unit(18, "yottameters")
  5632. },
  5633. {
  5634. name: "Void",
  5635. height: math.unit(1e88, "yottameters")
  5636. }
  5637. ]
  5638. ))
  5639. characterMakers.push(() => makeCharacter(
  5640. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5641. {
  5642. standing: {
  5643. height: math.unit(6, "feet"),
  5644. weight: math.unit(180, "lbs"),
  5645. name: "Standing",
  5646. image: {
  5647. source: "./media/characters/zaakira/standing.svg",
  5648. extra: 1599/1504,
  5649. bottom: 39/1638
  5650. }
  5651. },
  5652. laying: {
  5653. height: math.unit(3.3, "feet"),
  5654. weight: math.unit(180, "lbs"),
  5655. name: "Laying",
  5656. image: {
  5657. source: "./media/characters/zaakira/laying.svg"
  5658. }
  5659. },
  5660. },
  5661. [
  5662. {
  5663. name: "Normal",
  5664. height: math.unit(12, "feet")
  5665. },
  5666. {
  5667. name: "Macro",
  5668. height: math.unit(279, "feet"),
  5669. default: true
  5670. }
  5671. ]
  5672. ))
  5673. characterMakers.push(() => makeCharacter(
  5674. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5675. {
  5676. femSfw: {
  5677. height: math.unit(8, "feet"),
  5678. weight: math.unit(350, "lb"),
  5679. name: "Fem",
  5680. image: {
  5681. source: "./media/characters/sigvald/fem-sfw.svg",
  5682. extra: 182 / 164,
  5683. bottom: 8.7 / 190.5
  5684. }
  5685. },
  5686. femNsfw: {
  5687. height: math.unit(8, "feet"),
  5688. weight: math.unit(350, "lb"),
  5689. name: "Fem (NSFW)",
  5690. image: {
  5691. source: "./media/characters/sigvald/fem-nsfw.svg",
  5692. extra: 182 / 164,
  5693. bottom: 8.7 / 190.5
  5694. }
  5695. },
  5696. maleNsfw: {
  5697. height: math.unit(8, "feet"),
  5698. weight: math.unit(350, "lb"),
  5699. name: "Male (NSFW)",
  5700. image: {
  5701. source: "./media/characters/sigvald/male-nsfw.svg",
  5702. extra: 182 / 164,
  5703. bottom: 8.7 / 190.5
  5704. }
  5705. },
  5706. hermNsfw: {
  5707. height: math.unit(8, "feet"),
  5708. weight: math.unit(350, "lb"),
  5709. name: "Herm (NSFW)",
  5710. image: {
  5711. source: "./media/characters/sigvald/herm-nsfw.svg",
  5712. extra: 182 / 164,
  5713. bottom: 8.7 / 190.5
  5714. }
  5715. },
  5716. dick: {
  5717. height: math.unit(2.36, "feet"),
  5718. name: "Dick",
  5719. image: {
  5720. source: "./media/characters/sigvald/dick.svg"
  5721. }
  5722. },
  5723. eye: {
  5724. height: math.unit(0.31, "feet"),
  5725. name: "Eye",
  5726. image: {
  5727. source: "./media/characters/sigvald/eye.svg"
  5728. }
  5729. },
  5730. mouth: {
  5731. height: math.unit(0.92, "feet"),
  5732. name: "Mouth",
  5733. image: {
  5734. source: "./media/characters/sigvald/mouth.svg"
  5735. }
  5736. },
  5737. paws: {
  5738. height: math.unit(2.2, "feet"),
  5739. name: "Paws",
  5740. image: {
  5741. source: "./media/characters/sigvald/paws.svg"
  5742. }
  5743. }
  5744. },
  5745. [
  5746. {
  5747. name: "Normal",
  5748. height: math.unit(8, "feet")
  5749. },
  5750. {
  5751. name: "Large",
  5752. height: math.unit(12, "feet")
  5753. },
  5754. {
  5755. name: "Larger",
  5756. height: math.unit(20, "feet")
  5757. },
  5758. {
  5759. name: "Macro",
  5760. height: math.unit(150, "feet")
  5761. },
  5762. {
  5763. name: "Macro+",
  5764. height: math.unit(200, "feet"),
  5765. default: true
  5766. },
  5767. ]
  5768. ))
  5769. characterMakers.push(() => makeCharacter(
  5770. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5771. {
  5772. side: {
  5773. height: math.unit(12, "feet"),
  5774. weight: math.unit(2000, "kg"),
  5775. name: "Side",
  5776. image: {
  5777. source: "./media/characters/scott/side.svg",
  5778. extra: 754 / 724,
  5779. bottom: 0.069
  5780. }
  5781. },
  5782. upright: {
  5783. height: math.unit(12, "feet"),
  5784. weight: math.unit(2000, "kg"),
  5785. name: "Upright",
  5786. image: {
  5787. source: "./media/characters/scott/upright.svg",
  5788. extra: 3881 / 3722,
  5789. bottom: 0.05
  5790. }
  5791. },
  5792. },
  5793. [
  5794. {
  5795. name: "Normal",
  5796. height: math.unit(12, "feet"),
  5797. default: true
  5798. },
  5799. ]
  5800. ))
  5801. characterMakers.push(() => makeCharacter(
  5802. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5803. {
  5804. side: {
  5805. height: math.unit(8, "meters"),
  5806. weight: math.unit(84755, "lbs"),
  5807. name: "Side",
  5808. image: {
  5809. source: "./media/characters/tobias/side.svg",
  5810. extra: 1474 / 1096,
  5811. bottom: 38.9 / 1513.1235
  5812. }
  5813. },
  5814. },
  5815. [
  5816. {
  5817. name: "Normal",
  5818. height: math.unit(8, "meters"),
  5819. default: true
  5820. },
  5821. ]
  5822. ))
  5823. characterMakers.push(() => makeCharacter(
  5824. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5825. {
  5826. front: {
  5827. height: math.unit(5.5, "feet"),
  5828. weight: math.unit(400, "lbs"),
  5829. name: "Front",
  5830. image: {
  5831. source: "./media/characters/kieran/front.svg",
  5832. extra: 2694 / 2364,
  5833. bottom: 217 / 2908
  5834. }
  5835. },
  5836. side: {
  5837. height: math.unit(5.5, "feet"),
  5838. weight: math.unit(400, "lbs"),
  5839. name: "Side",
  5840. image: {
  5841. source: "./media/characters/kieran/side.svg",
  5842. extra: 875 / 777,
  5843. bottom: 84.6 / 959
  5844. }
  5845. },
  5846. },
  5847. [
  5848. {
  5849. name: "Normal",
  5850. height: math.unit(5.5, "feet"),
  5851. default: true
  5852. },
  5853. ]
  5854. ))
  5855. characterMakers.push(() => makeCharacter(
  5856. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5857. {
  5858. side: {
  5859. height: math.unit(2, "meters"),
  5860. weight: math.unit(70, "kg"),
  5861. name: "Side",
  5862. image: {
  5863. source: "./media/characters/sanya/side.svg",
  5864. bottom: 0.02,
  5865. extra: 1.02
  5866. }
  5867. },
  5868. },
  5869. [
  5870. {
  5871. name: "Small",
  5872. height: math.unit(2, "meters")
  5873. },
  5874. {
  5875. name: "Normal",
  5876. height: math.unit(3, "meters")
  5877. },
  5878. {
  5879. name: "Macro",
  5880. height: math.unit(16, "meters"),
  5881. default: true
  5882. },
  5883. ]
  5884. ))
  5885. characterMakers.push(() => makeCharacter(
  5886. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5887. {
  5888. front: {
  5889. height: math.unit(2, "meters"),
  5890. weight: math.unit(120, "kg"),
  5891. name: "Front",
  5892. image: {
  5893. source: "./media/characters/miranda/front.svg",
  5894. extra: 195 / 185,
  5895. bottom: 10.9 / 206.5
  5896. }
  5897. },
  5898. back: {
  5899. height: math.unit(2, "meters"),
  5900. weight: math.unit(120, "kg"),
  5901. name: "Back",
  5902. image: {
  5903. source: "./media/characters/miranda/back.svg",
  5904. extra: 201 / 193,
  5905. bottom: 2.3 / 203.7
  5906. }
  5907. },
  5908. },
  5909. [
  5910. {
  5911. name: "Normal",
  5912. height: math.unit(10, "feet"),
  5913. default: true
  5914. }
  5915. ]
  5916. ))
  5917. characterMakers.push(() => makeCharacter(
  5918. { name: "James", species: ["deer"], tags: ["anthro"] },
  5919. {
  5920. side: {
  5921. height: math.unit(2, "meters"),
  5922. weight: math.unit(100, "kg"),
  5923. name: "Front",
  5924. image: {
  5925. source: "./media/characters/james/front.svg",
  5926. extra: 10 / 8.5
  5927. }
  5928. },
  5929. },
  5930. [
  5931. {
  5932. name: "Normal",
  5933. height: math.unit(8.5, "feet"),
  5934. default: true
  5935. }
  5936. ]
  5937. ))
  5938. characterMakers.push(() => makeCharacter(
  5939. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5940. {
  5941. side: {
  5942. height: math.unit(9.5, "feet"),
  5943. weight: math.unit(2500, "lbs"),
  5944. name: "Side",
  5945. image: {
  5946. source: "./media/characters/heather/side.svg"
  5947. }
  5948. },
  5949. },
  5950. [
  5951. {
  5952. name: "Normal",
  5953. height: math.unit(9.5, "feet"),
  5954. default: true
  5955. }
  5956. ]
  5957. ))
  5958. characterMakers.push(() => makeCharacter(
  5959. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5960. {
  5961. side: {
  5962. height: math.unit(6.5, "feet"),
  5963. weight: math.unit(400, "lbs"),
  5964. name: "Side",
  5965. image: {
  5966. source: "./media/characters/lukas/side.svg",
  5967. extra: 7.25 / 6.5
  5968. }
  5969. },
  5970. },
  5971. [
  5972. {
  5973. name: "Normal",
  5974. height: math.unit(6.5, "feet"),
  5975. default: true
  5976. }
  5977. ]
  5978. ))
  5979. characterMakers.push(() => makeCharacter(
  5980. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5981. {
  5982. side: {
  5983. height: math.unit(5, "feet"),
  5984. weight: math.unit(3000, "lbs"),
  5985. name: "Side",
  5986. image: {
  5987. source: "./media/characters/louise/side.svg"
  5988. }
  5989. },
  5990. },
  5991. [
  5992. {
  5993. name: "Normal",
  5994. height: math.unit(5, "feet"),
  5995. default: true
  5996. }
  5997. ]
  5998. ))
  5999. characterMakers.push(() => makeCharacter(
  6000. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6001. {
  6002. side: {
  6003. height: math.unit(6, "feet"),
  6004. weight: math.unit(150, "lbs"),
  6005. name: "Side",
  6006. image: {
  6007. source: "./media/characters/ramona/side.svg",
  6008. extra: 871/854,
  6009. bottom: 41/912
  6010. }
  6011. },
  6012. },
  6013. [
  6014. {
  6015. name: "Normal",
  6016. height: math.unit(6 + 4/12, "feet")
  6017. },
  6018. {
  6019. name: "Minimacro",
  6020. height: math.unit(5.3, "meters"),
  6021. default: true
  6022. },
  6023. {
  6024. name: "Macro",
  6025. height: math.unit(20, "stories")
  6026. },
  6027. {
  6028. name: "Macro+",
  6029. height: math.unit(50, "stories")
  6030. },
  6031. ]
  6032. ))
  6033. characterMakers.push(() => makeCharacter(
  6034. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6035. {
  6036. standing: {
  6037. height: math.unit(5.75, "feet"),
  6038. weight: math.unit(160, "lbs"),
  6039. name: "Standing",
  6040. image: {
  6041. source: "./media/characters/deerpuff/standing.svg",
  6042. extra: 682 / 624
  6043. }
  6044. },
  6045. sitting: {
  6046. height: math.unit(5.75 / 1.79, "feet"),
  6047. weight: math.unit(160, "lbs"),
  6048. name: "Sitting",
  6049. image: {
  6050. source: "./media/characters/deerpuff/sitting.svg",
  6051. bottom: 44 / 400,
  6052. extra: 1
  6053. }
  6054. },
  6055. taurLaying: {
  6056. height: math.unit(6, "feet"),
  6057. weight: math.unit(400, "lbs"),
  6058. name: "Taur (Laying)",
  6059. image: {
  6060. source: "./media/characters/deerpuff/taur-laying.svg"
  6061. }
  6062. },
  6063. },
  6064. [
  6065. {
  6066. name: "Puffball",
  6067. height: math.unit(6, "inches")
  6068. },
  6069. {
  6070. name: "Normalpuff",
  6071. height: math.unit(5.75, "feet")
  6072. },
  6073. {
  6074. name: "Macropuff",
  6075. height: math.unit(1500, "feet"),
  6076. default: true
  6077. },
  6078. {
  6079. name: "Megapuff",
  6080. height: math.unit(500, "miles")
  6081. },
  6082. {
  6083. name: "Gigapuff",
  6084. height: math.unit(250000, "miles")
  6085. },
  6086. {
  6087. name: "Omegapuff",
  6088. height: math.unit(1000, "lightyears")
  6089. },
  6090. ]
  6091. ))
  6092. characterMakers.push(() => makeCharacter(
  6093. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6094. {
  6095. stomping: {
  6096. height: math.unit(6, "feet"),
  6097. weight: math.unit(170, "lbs"),
  6098. name: "Stomping",
  6099. image: {
  6100. source: "./media/characters/vivian/stomping.svg"
  6101. }
  6102. },
  6103. sitting: {
  6104. height: math.unit(6 / 1.75, "feet"),
  6105. weight: math.unit(170, "lbs"),
  6106. name: "Sitting",
  6107. image: {
  6108. source: "./media/characters/vivian/sitting.svg",
  6109. bottom: 1 / 6.4,
  6110. extra: 1,
  6111. }
  6112. },
  6113. },
  6114. [
  6115. {
  6116. name: "Normal",
  6117. height: math.unit(7, "feet"),
  6118. default: true
  6119. },
  6120. {
  6121. name: "Macro",
  6122. height: math.unit(10, "stories")
  6123. },
  6124. {
  6125. name: "Macro+",
  6126. height: math.unit(30, "stories")
  6127. },
  6128. {
  6129. name: "Megamacro",
  6130. height: math.unit(10, "miles")
  6131. },
  6132. {
  6133. name: "Megamacro+",
  6134. height: math.unit(2750000, "meters")
  6135. },
  6136. ]
  6137. ))
  6138. characterMakers.push(() => makeCharacter(
  6139. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6140. {
  6141. front: {
  6142. height: math.unit(6, "feet"),
  6143. weight: math.unit(160, "lbs"),
  6144. name: "Front",
  6145. image: {
  6146. source: "./media/characters/prince/front.svg",
  6147. extra: 1938/1682,
  6148. bottom: 45/1983
  6149. }
  6150. },
  6151. back: {
  6152. height: math.unit(6, "feet"),
  6153. weight: math.unit(160, "lbs"),
  6154. name: "Back",
  6155. image: {
  6156. source: "./media/characters/prince/back.svg",
  6157. extra: 1955/1726,
  6158. bottom: 6/1961
  6159. }
  6160. },
  6161. },
  6162. [
  6163. {
  6164. name: "Normal",
  6165. height: math.unit(7.75, "feet"),
  6166. default: true
  6167. },
  6168. {
  6169. name: "Not cute",
  6170. height: math.unit(17, "feet")
  6171. },
  6172. {
  6173. name: "I said NOT",
  6174. height: math.unit(91, "feet")
  6175. },
  6176. {
  6177. name: "Please stop",
  6178. height: math.unit(560, "feet")
  6179. },
  6180. {
  6181. name: "What have you done",
  6182. height: math.unit(2200, "feet")
  6183. },
  6184. {
  6185. name: "Deer God",
  6186. height: math.unit(3.6, "miles")
  6187. },
  6188. ]
  6189. ))
  6190. characterMakers.push(() => makeCharacter(
  6191. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6192. {
  6193. standing: {
  6194. height: math.unit(6, "feet"),
  6195. weight: math.unit(300, "lbs"),
  6196. name: "Standing",
  6197. image: {
  6198. source: "./media/characters/psymon/standing.svg",
  6199. extra: 1888 / 1810,
  6200. bottom: 0.05
  6201. }
  6202. },
  6203. slithering: {
  6204. height: math.unit(6, "feet"),
  6205. weight: math.unit(300, "lbs"),
  6206. name: "Slithering",
  6207. image: {
  6208. source: "./media/characters/psymon/slithering.svg",
  6209. extra: 1330 / 1224
  6210. }
  6211. },
  6212. slitheringAlt: {
  6213. height: math.unit(6, "feet"),
  6214. weight: math.unit(300, "lbs"),
  6215. name: "Slithering (Alt)",
  6216. image: {
  6217. source: "./media/characters/psymon/slithering-alt.svg",
  6218. extra: 1330 / 1224
  6219. }
  6220. },
  6221. },
  6222. [
  6223. {
  6224. name: "Normal",
  6225. height: math.unit(11.25, "feet"),
  6226. default: true
  6227. },
  6228. {
  6229. name: "Large",
  6230. height: math.unit(27, "feet")
  6231. },
  6232. {
  6233. name: "Giant",
  6234. height: math.unit(87, "feet")
  6235. },
  6236. {
  6237. name: "Macro",
  6238. height: math.unit(365, "feet")
  6239. },
  6240. {
  6241. name: "Megamacro",
  6242. height: math.unit(3, "miles")
  6243. },
  6244. {
  6245. name: "World Serpent",
  6246. height: math.unit(8000, "miles")
  6247. },
  6248. ]
  6249. ))
  6250. characterMakers.push(() => makeCharacter(
  6251. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6252. {
  6253. front: {
  6254. height: math.unit(6, "feet"),
  6255. weight: math.unit(180, "lbs"),
  6256. name: "Front",
  6257. image: {
  6258. source: "./media/characters/daimos/front.svg",
  6259. extra: 4160 / 3897,
  6260. bottom: 0.021
  6261. }
  6262. }
  6263. },
  6264. [
  6265. {
  6266. name: "Normal",
  6267. height: math.unit(8, "feet"),
  6268. default: true
  6269. },
  6270. {
  6271. name: "Big Dog",
  6272. height: math.unit(22, "feet")
  6273. },
  6274. {
  6275. name: "Macro",
  6276. height: math.unit(127, "feet")
  6277. },
  6278. {
  6279. name: "Megamacro",
  6280. height: math.unit(3600, "feet")
  6281. },
  6282. ]
  6283. ))
  6284. characterMakers.push(() => makeCharacter(
  6285. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6286. {
  6287. side: {
  6288. height: math.unit(6, "feet"),
  6289. weight: math.unit(180, "lbs"),
  6290. name: "Side",
  6291. image: {
  6292. source: "./media/characters/blake/side.svg",
  6293. extra: 1212 / 1120,
  6294. bottom: 0.05
  6295. }
  6296. },
  6297. crouched: {
  6298. height: math.unit(6 * 0.57, "feet"),
  6299. weight: math.unit(180, "lbs"),
  6300. name: "Crouched",
  6301. image: {
  6302. source: "./media/characters/blake/crouched.svg",
  6303. extra: 840 / 587,
  6304. bottom: 0.04
  6305. }
  6306. },
  6307. bent: {
  6308. height: math.unit(6 * 0.75, "feet"),
  6309. weight: math.unit(180, "lbs"),
  6310. name: "Bent",
  6311. image: {
  6312. source: "./media/characters/blake/bent.svg",
  6313. extra: 592 / 544,
  6314. bottom: 0.035
  6315. }
  6316. },
  6317. },
  6318. [
  6319. {
  6320. name: "Normal",
  6321. height: math.unit(8 + 1 / 6, "feet"),
  6322. default: true
  6323. },
  6324. {
  6325. name: "Big Backside",
  6326. height: math.unit(37, "feet")
  6327. },
  6328. {
  6329. name: "Subway Shredder",
  6330. height: math.unit(72, "feet")
  6331. },
  6332. {
  6333. name: "City Carver",
  6334. height: math.unit(1675, "feet")
  6335. },
  6336. {
  6337. name: "Tectonic Tweaker",
  6338. height: math.unit(2300, "miles")
  6339. },
  6340. ]
  6341. ))
  6342. characterMakers.push(() => makeCharacter(
  6343. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6344. {
  6345. front: {
  6346. height: math.unit(6, "feet"),
  6347. weight: math.unit(180, "lbs"),
  6348. name: "Front",
  6349. image: {
  6350. source: "./media/characters/guisetto/front.svg",
  6351. extra: 856 / 817,
  6352. bottom: 0.06
  6353. }
  6354. },
  6355. airborne: {
  6356. height: math.unit(6, "feet"),
  6357. weight: math.unit(180, "lbs"),
  6358. name: "Airborne",
  6359. image: {
  6360. source: "./media/characters/guisetto/airborne.svg",
  6361. extra: 584 / 525
  6362. }
  6363. },
  6364. },
  6365. [
  6366. {
  6367. name: "Normal",
  6368. height: math.unit(10 + 11 / 12, "feet"),
  6369. default: true
  6370. },
  6371. {
  6372. name: "Large",
  6373. height: math.unit(35, "feet")
  6374. },
  6375. {
  6376. name: "Macro",
  6377. height: math.unit(475, "feet")
  6378. },
  6379. ]
  6380. ))
  6381. characterMakers.push(() => makeCharacter(
  6382. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6383. {
  6384. front: {
  6385. height: math.unit(6, "feet"),
  6386. weight: math.unit(180, "lbs"),
  6387. name: "Front",
  6388. image: {
  6389. source: "./media/characters/luxor/front.svg",
  6390. extra: 2940 / 2152
  6391. }
  6392. },
  6393. back: {
  6394. height: math.unit(6, "feet"),
  6395. weight: math.unit(180, "lbs"),
  6396. name: "Back",
  6397. image: {
  6398. source: "./media/characters/luxor/back.svg",
  6399. extra: 1083 / 960
  6400. }
  6401. },
  6402. },
  6403. [
  6404. {
  6405. name: "Normal",
  6406. height: math.unit(5 + 5 / 6, "feet"),
  6407. default: true
  6408. },
  6409. {
  6410. name: "Lamp",
  6411. height: math.unit(50, "feet")
  6412. },
  6413. {
  6414. name: "Lämp",
  6415. height: math.unit(300, "feet")
  6416. },
  6417. {
  6418. name: "The sun is a lamp",
  6419. height: math.unit(250000, "miles")
  6420. },
  6421. ]
  6422. ))
  6423. characterMakers.push(() => makeCharacter(
  6424. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6425. {
  6426. front: {
  6427. height: math.unit(6, "feet"),
  6428. weight: math.unit(50, "lbs"),
  6429. name: "Front",
  6430. image: {
  6431. source: "./media/characters/huoyan/front.svg"
  6432. }
  6433. },
  6434. side: {
  6435. height: math.unit(6, "feet"),
  6436. weight: math.unit(180, "lbs"),
  6437. name: "Side",
  6438. image: {
  6439. source: "./media/characters/huoyan/side.svg"
  6440. }
  6441. },
  6442. },
  6443. [
  6444. {
  6445. name: "Chef",
  6446. height: math.unit(9, "feet")
  6447. },
  6448. {
  6449. name: "Normal",
  6450. height: math.unit(65, "feet"),
  6451. default: true
  6452. },
  6453. {
  6454. name: "Macro",
  6455. height: math.unit(780, "feet")
  6456. },
  6457. {
  6458. name: "Flaming Mountain",
  6459. height: math.unit(4.8, "miles")
  6460. },
  6461. {
  6462. name: "Celestial",
  6463. height: math.unit(765000, "miles")
  6464. },
  6465. ]
  6466. ))
  6467. characterMakers.push(() => makeCharacter(
  6468. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6469. {
  6470. front: {
  6471. height: math.unit(5 + 3 / 4, "feet"),
  6472. weight: math.unit(120, "lbs"),
  6473. name: "Front",
  6474. image: {
  6475. source: "./media/characters/tails/front.svg"
  6476. }
  6477. }
  6478. },
  6479. [
  6480. {
  6481. name: "Normal",
  6482. height: math.unit(5 + 3 / 4, "feet"),
  6483. default: true
  6484. }
  6485. ]
  6486. ))
  6487. characterMakers.push(() => makeCharacter(
  6488. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6489. {
  6490. front: {
  6491. height: math.unit(4, "feet"),
  6492. weight: math.unit(50, "lbs"),
  6493. name: "Front",
  6494. image: {
  6495. source: "./media/characters/rainy/front.svg"
  6496. }
  6497. }
  6498. },
  6499. [
  6500. {
  6501. name: "Macro",
  6502. height: math.unit(800, "feet"),
  6503. default: true
  6504. }
  6505. ]
  6506. ))
  6507. characterMakers.push(() => makeCharacter(
  6508. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6509. {
  6510. front: {
  6511. height: math.unit(6, "feet"),
  6512. weight: math.unit(150, "lbs"),
  6513. name: "Front",
  6514. image: {
  6515. source: "./media/characters/rainier/front.svg"
  6516. }
  6517. }
  6518. },
  6519. [
  6520. {
  6521. name: "Micro",
  6522. height: math.unit(2, "mm"),
  6523. default: true
  6524. }
  6525. ]
  6526. ))
  6527. characterMakers.push(() => makeCharacter(
  6528. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6529. {
  6530. front: {
  6531. height: math.unit(8 + 4/12, "feet"),
  6532. weight: math.unit(450, "kilograms"),
  6533. volume: math.unit(5, "cups"),
  6534. name: "Front",
  6535. image: {
  6536. source: "./media/characters/andy-renard/front.svg",
  6537. extra: 1839/1726,
  6538. bottom: 134/1973
  6539. }
  6540. },
  6541. back: {
  6542. height: math.unit(8 + 4/12, "feet"),
  6543. weight: math.unit(450, "kilograms"),
  6544. volume: math.unit(5, "cups"),
  6545. name: "Back",
  6546. image: {
  6547. source: "./media/characters/andy-renard/back.svg",
  6548. extra: 1838/1710,
  6549. bottom: 105/1943
  6550. }
  6551. },
  6552. },
  6553. [
  6554. {
  6555. name: "Tall",
  6556. height: math.unit(8 + 4/12, "feet")
  6557. },
  6558. {
  6559. name: "Mini Macro",
  6560. height: math.unit(15, "feet"),
  6561. default: true
  6562. },
  6563. {
  6564. name: "Macro",
  6565. height: math.unit(100, "feet")
  6566. },
  6567. {
  6568. name: "Mega Macro",
  6569. height: math.unit(1000, "feet")
  6570. },
  6571. {
  6572. name: "Giga Macro",
  6573. height: math.unit(10, "miles")
  6574. },
  6575. {
  6576. name: "God Macro",
  6577. height: math.unit(1, "multiverse")
  6578. },
  6579. ]
  6580. ))
  6581. characterMakers.push(() => makeCharacter(
  6582. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6583. {
  6584. front: {
  6585. height: math.unit(6, "feet"),
  6586. weight: math.unit(210, "lbs"),
  6587. name: "Front",
  6588. image: {
  6589. source: "./media/characters/cimmaron/front-sfw.svg",
  6590. extra: 701 / 676,
  6591. bottom: 0.046
  6592. }
  6593. },
  6594. back: {
  6595. height: math.unit(6, "feet"),
  6596. weight: math.unit(210, "lbs"),
  6597. name: "Back",
  6598. image: {
  6599. source: "./media/characters/cimmaron/back-sfw.svg",
  6600. extra: 701 / 676,
  6601. bottom: 0.046
  6602. }
  6603. },
  6604. frontNsfw: {
  6605. height: math.unit(6, "feet"),
  6606. weight: math.unit(210, "lbs"),
  6607. name: "Front (NSFW)",
  6608. image: {
  6609. source: "./media/characters/cimmaron/front-nsfw.svg",
  6610. extra: 701 / 676,
  6611. bottom: 0.046
  6612. }
  6613. },
  6614. backNsfw: {
  6615. height: math.unit(6, "feet"),
  6616. weight: math.unit(210, "lbs"),
  6617. name: "Back (NSFW)",
  6618. image: {
  6619. source: "./media/characters/cimmaron/back-nsfw.svg",
  6620. extra: 701 / 676,
  6621. bottom: 0.046
  6622. }
  6623. },
  6624. dick: {
  6625. height: math.unit(1.714, "feet"),
  6626. name: "Dick",
  6627. image: {
  6628. source: "./media/characters/cimmaron/dick.svg"
  6629. }
  6630. },
  6631. },
  6632. [
  6633. {
  6634. name: "Normal",
  6635. height: math.unit(6, "feet"),
  6636. default: true
  6637. },
  6638. {
  6639. name: "Macro Mayor",
  6640. height: math.unit(350, "meters")
  6641. },
  6642. ]
  6643. ))
  6644. characterMakers.push(() => makeCharacter(
  6645. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6646. {
  6647. front: {
  6648. height: math.unit(6, "feet"),
  6649. weight: math.unit(200, "lbs"),
  6650. name: "Front",
  6651. image: {
  6652. source: "./media/characters/akari/front.svg",
  6653. extra: 962 / 901,
  6654. bottom: 0.04
  6655. }
  6656. }
  6657. },
  6658. [
  6659. {
  6660. name: "Micro",
  6661. height: math.unit(5, "inches"),
  6662. default: true
  6663. },
  6664. {
  6665. name: "Normal",
  6666. height: math.unit(7, "feet")
  6667. },
  6668. ]
  6669. ))
  6670. characterMakers.push(() => makeCharacter(
  6671. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6672. {
  6673. front: {
  6674. height: math.unit(6, "feet"),
  6675. weight: math.unit(140, "lbs"),
  6676. name: "Front",
  6677. image: {
  6678. source: "./media/characters/cynosura/front.svg",
  6679. extra: 437/410,
  6680. bottom: 9/446
  6681. }
  6682. },
  6683. back: {
  6684. height: math.unit(6, "feet"),
  6685. weight: math.unit(140, "lbs"),
  6686. name: "Back",
  6687. image: {
  6688. source: "./media/characters/cynosura/back.svg",
  6689. extra: 1304/1160,
  6690. bottom: 71/1375
  6691. }
  6692. },
  6693. },
  6694. [
  6695. {
  6696. name: "Micro",
  6697. height: math.unit(4, "inches")
  6698. },
  6699. {
  6700. name: "Normal",
  6701. height: math.unit(5.75, "feet"),
  6702. default: true
  6703. },
  6704. {
  6705. name: "Tall",
  6706. height: math.unit(10, "feet")
  6707. },
  6708. {
  6709. name: "Big",
  6710. height: math.unit(20, "feet")
  6711. },
  6712. {
  6713. name: "Macro",
  6714. height: math.unit(50, "feet")
  6715. },
  6716. ]
  6717. ))
  6718. characterMakers.push(() => makeCharacter(
  6719. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6720. {
  6721. front: {
  6722. height: math.unit(13 + 2/12, "feet"),
  6723. weight: math.unit(800, "kg"),
  6724. name: "Front",
  6725. image: {
  6726. source: "./media/characters/gin/front.svg",
  6727. extra: 1312/1191,
  6728. bottom: 45/1357
  6729. }
  6730. },
  6731. mouth: {
  6732. height: math.unit(2.39 * 1.8, "feet"),
  6733. name: "Mouth",
  6734. image: {
  6735. source: "./media/characters/gin/mouth.svg"
  6736. }
  6737. },
  6738. hand: {
  6739. height: math.unit(1.57 * 2.19, "feet"),
  6740. name: "Hand",
  6741. image: {
  6742. source: "./media/characters/gin/hand.svg"
  6743. }
  6744. },
  6745. foot: {
  6746. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6747. name: "Foot",
  6748. image: {
  6749. source: "./media/characters/gin/foot.svg"
  6750. }
  6751. },
  6752. sole: {
  6753. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6754. name: "Sole",
  6755. image: {
  6756. source: "./media/characters/gin/sole.svg"
  6757. }
  6758. },
  6759. },
  6760. [
  6761. {
  6762. name: "Very Small",
  6763. height: math.unit(13 + 2 / 12, "feet")
  6764. },
  6765. {
  6766. name: "Micro",
  6767. height: math.unit(600, "miles")
  6768. },
  6769. {
  6770. name: "Regular",
  6771. height: math.unit(20, "earths"),
  6772. default: true
  6773. },
  6774. {
  6775. name: "Macro",
  6776. height: math.unit(2.2, "solarradii")
  6777. },
  6778. {
  6779. name: "Teramacro",
  6780. height: math.unit(1.2, "galaxies")
  6781. },
  6782. {
  6783. name: "Omegamacro",
  6784. height: math.unit(200, "universes")
  6785. },
  6786. ]
  6787. ))
  6788. characterMakers.push(() => makeCharacter(
  6789. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6790. {
  6791. front: {
  6792. height: math.unit(6 + 1 / 6, "feet"),
  6793. weight: math.unit(178, "lbs"),
  6794. name: "Front",
  6795. image: {
  6796. source: "./media/characters/guy/front.svg"
  6797. }
  6798. }
  6799. },
  6800. [
  6801. {
  6802. name: "Normal",
  6803. height: math.unit(6 + 1 / 6, "feet"),
  6804. default: true
  6805. },
  6806. {
  6807. name: "Large",
  6808. height: math.unit(25 + 7 / 12, "feet")
  6809. },
  6810. {
  6811. name: "Macro",
  6812. height: math.unit(60 + 9 / 12, "feet")
  6813. },
  6814. {
  6815. name: "Macro+",
  6816. height: math.unit(246, "feet")
  6817. },
  6818. {
  6819. name: "Macro++",
  6820. height: math.unit(878, "feet")
  6821. }
  6822. ]
  6823. ))
  6824. characterMakers.push(() => makeCharacter(
  6825. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6826. {
  6827. front: {
  6828. height: math.unit(9, "feet"),
  6829. weight: math.unit(800, "lbs"),
  6830. name: "Front",
  6831. image: {
  6832. source: "./media/characters/tiberius/front.svg",
  6833. extra: 2295 / 2071
  6834. }
  6835. },
  6836. back: {
  6837. height: math.unit(9, "feet"),
  6838. weight: math.unit(800, "lbs"),
  6839. name: "Back",
  6840. image: {
  6841. source: "./media/characters/tiberius/back.svg",
  6842. extra: 2373 / 2160
  6843. }
  6844. },
  6845. },
  6846. [
  6847. {
  6848. name: "Normal",
  6849. height: math.unit(9, "feet"),
  6850. default: true
  6851. }
  6852. ]
  6853. ))
  6854. characterMakers.push(() => makeCharacter(
  6855. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6856. {
  6857. front: {
  6858. height: math.unit(6, "feet"),
  6859. weight: math.unit(600, "lbs"),
  6860. name: "Front",
  6861. image: {
  6862. source: "./media/characters/surgo/front.svg",
  6863. extra: 3591 / 2227
  6864. }
  6865. },
  6866. back: {
  6867. height: math.unit(6, "feet"),
  6868. weight: math.unit(600, "lbs"),
  6869. name: "Back",
  6870. image: {
  6871. source: "./media/characters/surgo/back.svg",
  6872. extra: 3557 / 2228
  6873. }
  6874. },
  6875. laying: {
  6876. height: math.unit(6 * 0.85, "feet"),
  6877. weight: math.unit(600, "lbs"),
  6878. name: "Laying",
  6879. image: {
  6880. source: "./media/characters/surgo/laying.svg"
  6881. }
  6882. },
  6883. },
  6884. [
  6885. {
  6886. name: "Normal",
  6887. height: math.unit(6, "feet"),
  6888. default: true
  6889. }
  6890. ]
  6891. ))
  6892. characterMakers.push(() => makeCharacter(
  6893. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6894. {
  6895. side: {
  6896. height: math.unit(6, "feet"),
  6897. weight: math.unit(150, "lbs"),
  6898. name: "Side",
  6899. image: {
  6900. source: "./media/characters/cibus/side.svg",
  6901. extra: 800 / 400
  6902. }
  6903. },
  6904. },
  6905. [
  6906. {
  6907. name: "Normal",
  6908. height: math.unit(6, "feet"),
  6909. default: true
  6910. }
  6911. ]
  6912. ))
  6913. characterMakers.push(() => makeCharacter(
  6914. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6915. {
  6916. front: {
  6917. height: math.unit(6, "feet"),
  6918. weight: math.unit(240, "lbs"),
  6919. name: "Front",
  6920. image: {
  6921. source: "./media/characters/nibbles/front.svg"
  6922. }
  6923. },
  6924. side: {
  6925. height: math.unit(6, "feet"),
  6926. weight: math.unit(240, "lbs"),
  6927. name: "Side",
  6928. image: {
  6929. source: "./media/characters/nibbles/side.svg"
  6930. }
  6931. },
  6932. },
  6933. [
  6934. {
  6935. name: "Normal",
  6936. height: math.unit(9, "feet"),
  6937. default: true
  6938. }
  6939. ]
  6940. ))
  6941. characterMakers.push(() => makeCharacter(
  6942. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6943. {
  6944. side: {
  6945. height: math.unit(5 + 1 / 6, "feet"),
  6946. weight: math.unit(130, "lbs"),
  6947. name: "Side",
  6948. image: {
  6949. source: "./media/characters/rikky/side.svg",
  6950. extra: 851 / 801
  6951. }
  6952. },
  6953. },
  6954. [
  6955. {
  6956. name: "Normal",
  6957. height: math.unit(5 + 1 / 6, "feet")
  6958. },
  6959. {
  6960. name: "Macro",
  6961. height: math.unit(152, "feet"),
  6962. default: true
  6963. },
  6964. {
  6965. name: "Megamacro",
  6966. height: math.unit(7, "miles")
  6967. }
  6968. ]
  6969. ))
  6970. characterMakers.push(() => makeCharacter(
  6971. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6972. {
  6973. side: {
  6974. height: math.unit(370, "cm"),
  6975. weight: math.unit(350, "lbs"),
  6976. name: "Side",
  6977. image: {
  6978. source: "./media/characters/malfressa/side.svg"
  6979. }
  6980. },
  6981. walking: {
  6982. height: math.unit(370, "cm"),
  6983. weight: math.unit(350, "lbs"),
  6984. name: "Walking",
  6985. image: {
  6986. source: "./media/characters/malfressa/walking.svg"
  6987. }
  6988. },
  6989. feral: {
  6990. height: math.unit(2500, "cm"),
  6991. weight: math.unit(100000, "lbs"),
  6992. name: "Feral",
  6993. image: {
  6994. source: "./media/characters/malfressa/feral.svg",
  6995. extra: 2108 / 837,
  6996. bottom: 0.02
  6997. }
  6998. },
  6999. },
  7000. [
  7001. {
  7002. name: "Normal",
  7003. height: math.unit(370, "cm")
  7004. },
  7005. {
  7006. name: "Macro",
  7007. height: math.unit(300, "meters"),
  7008. default: true
  7009. }
  7010. ]
  7011. ))
  7012. characterMakers.push(() => makeCharacter(
  7013. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7014. {
  7015. front: {
  7016. height: math.unit(6, "feet"),
  7017. weight: math.unit(60, "kg"),
  7018. name: "Front",
  7019. image: {
  7020. source: "./media/characters/jaro/front.svg",
  7021. extra: 845/817,
  7022. bottom: 45/890
  7023. }
  7024. },
  7025. back: {
  7026. height: math.unit(6, "feet"),
  7027. weight: math.unit(60, "kg"),
  7028. name: "Back",
  7029. image: {
  7030. source: "./media/characters/jaro/back.svg",
  7031. extra: 847/817,
  7032. bottom: 34/881
  7033. }
  7034. },
  7035. },
  7036. [
  7037. {
  7038. name: "Micro",
  7039. height: math.unit(7, "inches")
  7040. },
  7041. {
  7042. name: "Normal",
  7043. height: math.unit(5.5, "feet"),
  7044. default: true
  7045. },
  7046. {
  7047. name: "Minimacro",
  7048. height: math.unit(20, "feet")
  7049. },
  7050. {
  7051. name: "Macro",
  7052. height: math.unit(200, "meters")
  7053. }
  7054. ]
  7055. ))
  7056. characterMakers.push(() => makeCharacter(
  7057. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7058. {
  7059. front: {
  7060. height: math.unit(6, "feet"),
  7061. weight: math.unit(195, "lb"),
  7062. name: "Front",
  7063. image: {
  7064. source: "./media/characters/rogue/front.svg"
  7065. }
  7066. },
  7067. },
  7068. [
  7069. {
  7070. name: "Macro",
  7071. height: math.unit(90, "feet"),
  7072. default: true
  7073. },
  7074. ]
  7075. ))
  7076. characterMakers.push(() => makeCharacter(
  7077. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7078. {
  7079. standing: {
  7080. height: math.unit(5 + 8 / 12, "feet"),
  7081. weight: math.unit(140, "lb"),
  7082. name: "Standing",
  7083. image: {
  7084. source: "./media/characters/piper/standing.svg",
  7085. extra: 1440/1284,
  7086. bottom: 66/1506
  7087. }
  7088. },
  7089. running: {
  7090. height: math.unit(5 + 8 / 12, "feet"),
  7091. weight: math.unit(140, "lb"),
  7092. name: "Running",
  7093. image: {
  7094. source: "./media/characters/piper/running.svg",
  7095. extra: 3948/3655,
  7096. bottom: 0/3948
  7097. }
  7098. },
  7099. sole: {
  7100. height: math.unit(0.81, "feet"),
  7101. weight: math.unit(2, "kg"),
  7102. name: "Sole",
  7103. image: {
  7104. source: "./media/characters/piper/sole.svg"
  7105. }
  7106. },
  7107. nipple: {
  7108. height: math.unit(0.25, "feet"),
  7109. weight: math.unit(1.5, "lb"),
  7110. name: "Nipple",
  7111. image: {
  7112. source: "./media/characters/piper/nipple.svg"
  7113. }
  7114. },
  7115. head: {
  7116. height: math.unit(1.1, "feet"),
  7117. name: "Head",
  7118. image: {
  7119. source: "./media/characters/piper/head.svg"
  7120. }
  7121. },
  7122. },
  7123. [
  7124. {
  7125. name: "Micro",
  7126. height: math.unit(2, "inches")
  7127. },
  7128. {
  7129. name: "Normal",
  7130. height: math.unit(5 + 8 / 12, "feet")
  7131. },
  7132. {
  7133. name: "Macro",
  7134. height: math.unit(250, "feet"),
  7135. default: true
  7136. },
  7137. {
  7138. name: "Megamacro",
  7139. height: math.unit(7, "miles")
  7140. },
  7141. ]
  7142. ))
  7143. characterMakers.push(() => makeCharacter(
  7144. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7145. {
  7146. front: {
  7147. height: math.unit(6, "feet"),
  7148. weight: math.unit(220, "lb"),
  7149. name: "Front",
  7150. image: {
  7151. source: "./media/characters/gemini/front.svg"
  7152. }
  7153. },
  7154. back: {
  7155. height: math.unit(6, "feet"),
  7156. weight: math.unit(220, "lb"),
  7157. name: "Back",
  7158. image: {
  7159. source: "./media/characters/gemini/back.svg"
  7160. }
  7161. },
  7162. kneeling: {
  7163. height: math.unit(6 / 1.5, "feet"),
  7164. weight: math.unit(220, "lb"),
  7165. name: "Kneeling",
  7166. image: {
  7167. source: "./media/characters/gemini/kneeling.svg",
  7168. bottom: 0.02
  7169. }
  7170. },
  7171. },
  7172. [
  7173. {
  7174. name: "Macro",
  7175. height: math.unit(300, "meters"),
  7176. default: true
  7177. },
  7178. {
  7179. name: "Megamacro",
  7180. height: math.unit(6900, "meters")
  7181. },
  7182. ]
  7183. ))
  7184. characterMakers.push(() => makeCharacter(
  7185. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7186. {
  7187. anthro: {
  7188. height: math.unit(2.35, "meters"),
  7189. weight: math.unit(73, "kg"),
  7190. name: "Anthro",
  7191. image: {
  7192. source: "./media/characters/alicia/anthro.svg",
  7193. extra: 2571 / 2385,
  7194. bottom: 75 / 2648
  7195. }
  7196. },
  7197. paw: {
  7198. height: math.unit(1.32, "feet"),
  7199. name: "Paw",
  7200. image: {
  7201. source: "./media/characters/alicia/paw.svg"
  7202. }
  7203. },
  7204. feral: {
  7205. height: math.unit(1.69, "meters"),
  7206. weight: math.unit(73, "kg"),
  7207. name: "Feral",
  7208. image: {
  7209. source: "./media/characters/alicia/feral.svg",
  7210. extra: 2123 / 1715,
  7211. bottom: 222 / 2349
  7212. }
  7213. },
  7214. },
  7215. [
  7216. {
  7217. name: "Normal",
  7218. height: math.unit(2.35, "meters")
  7219. },
  7220. {
  7221. name: "Macro",
  7222. height: math.unit(60, "meters"),
  7223. default: true
  7224. },
  7225. {
  7226. name: "Megamacro",
  7227. height: math.unit(10000, "kilometers")
  7228. },
  7229. ]
  7230. ))
  7231. characterMakers.push(() => makeCharacter(
  7232. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7233. {
  7234. front: {
  7235. height: math.unit(7, "feet"),
  7236. weight: math.unit(250, "lbs"),
  7237. name: "Front",
  7238. image: {
  7239. source: "./media/characters/archy/front.svg"
  7240. }
  7241. }
  7242. },
  7243. [
  7244. {
  7245. name: "Micro",
  7246. height: math.unit(1, "inch")
  7247. },
  7248. {
  7249. name: "Shorty",
  7250. height: math.unit(5, "feet")
  7251. },
  7252. {
  7253. name: "Normal",
  7254. height: math.unit(7, "feet")
  7255. },
  7256. {
  7257. name: "Macro",
  7258. height: math.unit(600, "meters"),
  7259. default: true
  7260. },
  7261. {
  7262. name: "Megamacro",
  7263. height: math.unit(1, "mile")
  7264. },
  7265. ]
  7266. ))
  7267. characterMakers.push(() => makeCharacter(
  7268. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7269. {
  7270. front: {
  7271. height: math.unit(1.65, "meters"),
  7272. weight: math.unit(74, "kg"),
  7273. name: "Front",
  7274. image: {
  7275. source: "./media/characters/berri/front.svg",
  7276. extra: 857 / 837,
  7277. bottom: 18 / 877
  7278. }
  7279. },
  7280. bum: {
  7281. height: math.unit(1.46, "feet"),
  7282. name: "Bum",
  7283. image: {
  7284. source: "./media/characters/berri/bum.svg"
  7285. }
  7286. },
  7287. mouth: {
  7288. height: math.unit(0.44, "feet"),
  7289. name: "Mouth",
  7290. image: {
  7291. source: "./media/characters/berri/mouth.svg"
  7292. }
  7293. },
  7294. paw: {
  7295. height: math.unit(0.826, "feet"),
  7296. name: "Paw",
  7297. image: {
  7298. source: "./media/characters/berri/paw.svg"
  7299. }
  7300. },
  7301. },
  7302. [
  7303. {
  7304. name: "Normal",
  7305. height: math.unit(1.65, "meters")
  7306. },
  7307. {
  7308. name: "Macro",
  7309. height: math.unit(60, "m"),
  7310. default: true
  7311. },
  7312. {
  7313. name: "Megamacro",
  7314. height: math.unit(9.213, "km")
  7315. },
  7316. {
  7317. name: "Planet Eater",
  7318. height: math.unit(489, "megameters")
  7319. },
  7320. {
  7321. name: "Teramacro",
  7322. height: math.unit(2471635000000, "meters")
  7323. },
  7324. {
  7325. name: "Examacro",
  7326. height: math.unit(8.0624e+26, "meters")
  7327. }
  7328. ]
  7329. ))
  7330. characterMakers.push(() => makeCharacter(
  7331. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7332. {
  7333. front: {
  7334. height: math.unit(1.72, "meters"),
  7335. weight: math.unit(68, "kg"),
  7336. name: "Front",
  7337. image: {
  7338. source: "./media/characters/lexi/front.svg"
  7339. }
  7340. }
  7341. },
  7342. [
  7343. {
  7344. name: "Very Smol",
  7345. height: math.unit(10, "mm")
  7346. },
  7347. {
  7348. name: "Micro",
  7349. height: math.unit(6.8, "cm"),
  7350. default: true
  7351. },
  7352. {
  7353. name: "Normal",
  7354. height: math.unit(1.72, "m")
  7355. }
  7356. ]
  7357. ))
  7358. characterMakers.push(() => makeCharacter(
  7359. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7360. {
  7361. front: {
  7362. height: math.unit(1.69, "meters"),
  7363. weight: math.unit(68, "kg"),
  7364. name: "Front",
  7365. image: {
  7366. source: "./media/characters/martin/front.svg",
  7367. extra: 596 / 581
  7368. }
  7369. }
  7370. },
  7371. [
  7372. {
  7373. name: "Micro",
  7374. height: math.unit(6.85, "cm"),
  7375. default: true
  7376. },
  7377. {
  7378. name: "Normal",
  7379. height: math.unit(1.69, "m")
  7380. }
  7381. ]
  7382. ))
  7383. characterMakers.push(() => makeCharacter(
  7384. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7385. {
  7386. front: {
  7387. height: math.unit(1.69, "meters"),
  7388. weight: math.unit(68, "kg"),
  7389. name: "Front",
  7390. image: {
  7391. source: "./media/characters/juno/front.svg"
  7392. }
  7393. }
  7394. },
  7395. [
  7396. {
  7397. name: "Micro",
  7398. height: math.unit(7, "cm")
  7399. },
  7400. {
  7401. name: "Normal",
  7402. height: math.unit(1.89, "m")
  7403. },
  7404. {
  7405. name: "Macro",
  7406. height: math.unit(353, "meters"),
  7407. default: true
  7408. }
  7409. ]
  7410. ))
  7411. characterMakers.push(() => makeCharacter(
  7412. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7413. {
  7414. front: {
  7415. height: math.unit(1.93, "meters"),
  7416. weight: math.unit(83, "kg"),
  7417. name: "Front",
  7418. image: {
  7419. source: "./media/characters/samantha/front.svg"
  7420. }
  7421. },
  7422. frontClothed: {
  7423. height: math.unit(1.93, "meters"),
  7424. weight: math.unit(83, "kg"),
  7425. name: "Front (Clothed)",
  7426. image: {
  7427. source: "./media/characters/samantha/front-clothed.svg"
  7428. }
  7429. },
  7430. back: {
  7431. height: math.unit(1.93, "meters"),
  7432. weight: math.unit(83, "kg"),
  7433. name: "Back",
  7434. image: {
  7435. source: "./media/characters/samantha/back.svg"
  7436. }
  7437. },
  7438. },
  7439. [
  7440. {
  7441. name: "Normal",
  7442. height: math.unit(1.93, "m")
  7443. },
  7444. {
  7445. name: "Macro",
  7446. height: math.unit(74, "meters"),
  7447. default: true
  7448. },
  7449. {
  7450. name: "Macro+",
  7451. height: math.unit(223, "meters"),
  7452. },
  7453. {
  7454. name: "Megamacro",
  7455. height: math.unit(8381, "meters"),
  7456. },
  7457. {
  7458. name: "Megamacro+",
  7459. height: math.unit(12000, "kilometers")
  7460. },
  7461. ]
  7462. ))
  7463. characterMakers.push(() => makeCharacter(
  7464. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7465. {
  7466. front: {
  7467. height: math.unit(1.92, "meters"),
  7468. weight: math.unit(80, "kg"),
  7469. name: "Front",
  7470. image: {
  7471. source: "./media/characters/dr-clay/front.svg"
  7472. }
  7473. },
  7474. frontClothed: {
  7475. height: math.unit(1.92, "meters"),
  7476. weight: math.unit(80, "kg"),
  7477. name: "Front (Clothed)",
  7478. image: {
  7479. source: "./media/characters/dr-clay/front-clothed.svg"
  7480. }
  7481. }
  7482. },
  7483. [
  7484. {
  7485. name: "Normal",
  7486. height: math.unit(1.92, "m")
  7487. },
  7488. {
  7489. name: "Macro",
  7490. height: math.unit(214, "meters"),
  7491. default: true
  7492. },
  7493. {
  7494. name: "Macro+",
  7495. height: math.unit(12.237, "meters"),
  7496. },
  7497. {
  7498. name: "Megamacro",
  7499. height: math.unit(557, "megameters"),
  7500. },
  7501. {
  7502. name: "Unimaginable",
  7503. height: math.unit(120e9, "lightyears")
  7504. },
  7505. ]
  7506. ))
  7507. characterMakers.push(() => makeCharacter(
  7508. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7509. {
  7510. front: {
  7511. height: math.unit(2, "meters"),
  7512. weight: math.unit(80, "kg"),
  7513. name: "Front",
  7514. image: {
  7515. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7516. }
  7517. }
  7518. },
  7519. [
  7520. {
  7521. name: "Teramacro",
  7522. height: math.unit(500000, "lightyears"),
  7523. default: true
  7524. },
  7525. ]
  7526. ))
  7527. characterMakers.push(() => makeCharacter(
  7528. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7529. {
  7530. crux: {
  7531. height: math.unit(2, "meters"),
  7532. weight: math.unit(150, "kg"),
  7533. name: "Crux",
  7534. image: {
  7535. source: "./media/characters/vemus/crux.svg",
  7536. extra: 1074/936,
  7537. bottom: 23/1097
  7538. }
  7539. },
  7540. skunkTanuki: {
  7541. height: math.unit(2, "meters"),
  7542. weight: math.unit(150, "kg"),
  7543. name: "Skunk-Tanuki",
  7544. image: {
  7545. source: "./media/characters/vemus/skunk-tanuki.svg",
  7546. extra: 926/893,
  7547. bottom: 20/946
  7548. }
  7549. },
  7550. },
  7551. [
  7552. {
  7553. name: "Normal",
  7554. height: math.unit(4, "meters"),
  7555. default: true
  7556. },
  7557. {
  7558. name: "Big",
  7559. height: math.unit(8, "meters")
  7560. },
  7561. {
  7562. name: "Macro",
  7563. height: math.unit(100, "meters")
  7564. },
  7565. {
  7566. name: "Macro+",
  7567. height: math.unit(1500, "meters")
  7568. },
  7569. {
  7570. name: "Stellar",
  7571. height: math.unit(14e8, "meters")
  7572. },
  7573. ]
  7574. ))
  7575. characterMakers.push(() => makeCharacter(
  7576. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7577. {
  7578. front: {
  7579. height: math.unit(2, "meters"),
  7580. weight: math.unit(70, "kg"),
  7581. name: "Front",
  7582. image: {
  7583. source: "./media/characters/beherit/front.svg",
  7584. extra: 1234/1109,
  7585. bottom: 55/1289
  7586. }
  7587. }
  7588. },
  7589. [
  7590. {
  7591. name: "Normal",
  7592. height: math.unit(6, "feet")
  7593. },
  7594. {
  7595. name: "Lorg",
  7596. height: math.unit(25, "feet"),
  7597. default: true
  7598. },
  7599. {
  7600. name: "Lorger",
  7601. height: math.unit(75, "feet")
  7602. },
  7603. {
  7604. name: "Macro",
  7605. height: math.unit(200, "meters")
  7606. },
  7607. ]
  7608. ))
  7609. characterMakers.push(() => makeCharacter(
  7610. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7611. {
  7612. front: {
  7613. height: math.unit(2, "meters"),
  7614. weight: math.unit(150, "kg"),
  7615. name: "Front",
  7616. image: {
  7617. source: "./media/characters/everett/front.svg",
  7618. extra: 1017/866,
  7619. bottom: 86/1103
  7620. }
  7621. },
  7622. paw: {
  7623. height: math.unit(2 / 3.6, "meters"),
  7624. name: "Paw",
  7625. image: {
  7626. source: "./media/characters/everett/paw.svg"
  7627. }
  7628. },
  7629. },
  7630. [
  7631. {
  7632. name: "Normal",
  7633. height: math.unit(15, "feet"),
  7634. default: true
  7635. },
  7636. {
  7637. name: "Lorg",
  7638. height: math.unit(70, "feet"),
  7639. default: true
  7640. },
  7641. {
  7642. name: "Lorger",
  7643. height: math.unit(250, "feet")
  7644. },
  7645. {
  7646. name: "Macro",
  7647. height: math.unit(500, "meters")
  7648. },
  7649. ]
  7650. ))
  7651. characterMakers.push(() => makeCharacter(
  7652. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7653. {
  7654. front: {
  7655. height: math.unit(2, "meters"),
  7656. weight: math.unit(86, "kg"),
  7657. name: "Front",
  7658. image: {
  7659. source: "./media/characters/rose/front.svg",
  7660. extra: 1785/1636,
  7661. bottom: 30/1815
  7662. },
  7663. form: "liom",
  7664. default: true
  7665. },
  7666. frontSporty: {
  7667. height: math.unit(2, "meters"),
  7668. weight: math.unit(86, "kg"),
  7669. name: "Front (Sporty)",
  7670. image: {
  7671. source: "./media/characters/rose/front-sporty.svg",
  7672. extra: 350/335,
  7673. bottom: 10/360
  7674. },
  7675. form: "liom"
  7676. },
  7677. frontAlt: {
  7678. height: math.unit(1.6, "meters"),
  7679. weight: math.unit(86, "kg"),
  7680. name: "Front (Alt)",
  7681. image: {
  7682. source: "./media/characters/rose/front-alt.svg",
  7683. extra: 299/283,
  7684. bottom: 3/302
  7685. },
  7686. form: "liom"
  7687. },
  7688. plush: {
  7689. height: math.unit(2, "meters"),
  7690. weight: math.unit(86/3, "kg"),
  7691. name: "Plush",
  7692. image: {
  7693. source: "./media/characters/rose/plush.svg",
  7694. extra: 361/337,
  7695. bottom: 11/372
  7696. },
  7697. form: "plush",
  7698. default: true
  7699. },
  7700. faeStanding: {
  7701. height: math.unit(10, "cm"),
  7702. weight: math.unit(10, "grams"),
  7703. name: "Standing",
  7704. image: {
  7705. source: "./media/characters/rose/fae-standing.svg",
  7706. extra: 1189/1060,
  7707. bottom: 27/1216
  7708. },
  7709. form: "fae",
  7710. default: true
  7711. },
  7712. faeSitting: {
  7713. height: math.unit(5, "cm"),
  7714. weight: math.unit(10, "grams"),
  7715. name: "Sitting",
  7716. image: {
  7717. source: "./media/characters/rose/fae-sitting.svg",
  7718. extra: 737/577,
  7719. bottom: 356/1093
  7720. },
  7721. form: "fae"
  7722. },
  7723. faePaw: {
  7724. height: math.unit(1.35, "cm"),
  7725. name: "Paw",
  7726. image: {
  7727. source: "./media/characters/rose/fae-paw.svg"
  7728. },
  7729. form: "fae"
  7730. },
  7731. },
  7732. [
  7733. {
  7734. name: "True Micro",
  7735. height: math.unit(9, "cm"),
  7736. form: "liom"
  7737. },
  7738. {
  7739. name: "Micro",
  7740. height: math.unit(16, "cm"),
  7741. form: "liom"
  7742. },
  7743. {
  7744. name: "Normal",
  7745. height: math.unit(1.85, "meters"),
  7746. default: true,
  7747. form: "liom"
  7748. },
  7749. {
  7750. name: "Mini-Macro",
  7751. height: math.unit(5, "meters"),
  7752. form: "liom"
  7753. },
  7754. {
  7755. name: "Macro",
  7756. height: math.unit(15, "meters"),
  7757. form: "liom"
  7758. },
  7759. {
  7760. name: "True Macro",
  7761. height: math.unit(40, "meters"),
  7762. form: "liom"
  7763. },
  7764. {
  7765. name: "City Scale",
  7766. height: math.unit(1, "km"),
  7767. form: "liom"
  7768. },
  7769. {
  7770. name: "Plushie",
  7771. height: math.unit(9, "cm"),
  7772. form: "plush",
  7773. default: true
  7774. },
  7775. {
  7776. name: "Fae",
  7777. height: math.unit(10, "cm"),
  7778. form: "fae",
  7779. default: true
  7780. },
  7781. ],
  7782. {
  7783. "liom": {
  7784. name: "Liom"
  7785. },
  7786. "plush": {
  7787. name: "Plush"
  7788. },
  7789. "fae": {
  7790. name: "Fae Fox",
  7791. default: true
  7792. }
  7793. }
  7794. ))
  7795. characterMakers.push(() => makeCharacter(
  7796. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7797. {
  7798. front: {
  7799. height: math.unit(2, "meters"),
  7800. weight: math.unit(350, "lbs"),
  7801. name: "Front",
  7802. image: {
  7803. source: "./media/characters/regal/front.svg"
  7804. }
  7805. },
  7806. back: {
  7807. height: math.unit(2, "meters"),
  7808. weight: math.unit(350, "lbs"),
  7809. name: "Back",
  7810. image: {
  7811. source: "./media/characters/regal/back.svg"
  7812. }
  7813. },
  7814. },
  7815. [
  7816. {
  7817. name: "Macro",
  7818. height: math.unit(350, "feet"),
  7819. default: true
  7820. }
  7821. ]
  7822. ))
  7823. characterMakers.push(() => makeCharacter(
  7824. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7825. {
  7826. front: {
  7827. height: math.unit(4 + 11 / 12, "feet"),
  7828. weight: math.unit(100, "lbs"),
  7829. name: "Front",
  7830. image: {
  7831. source: "./media/characters/opal/front.svg"
  7832. }
  7833. },
  7834. frontAlt: {
  7835. height: math.unit(4 + 11 / 12, "feet"),
  7836. weight: math.unit(100, "lbs"),
  7837. name: "Front (Alt)",
  7838. image: {
  7839. source: "./media/characters/opal/front-alt.svg"
  7840. }
  7841. },
  7842. },
  7843. [
  7844. {
  7845. name: "Small",
  7846. height: math.unit(4 + 11 / 12, "feet")
  7847. },
  7848. {
  7849. name: "Normal",
  7850. height: math.unit(20, "feet"),
  7851. default: true
  7852. },
  7853. {
  7854. name: "Macro",
  7855. height: math.unit(120, "feet")
  7856. },
  7857. {
  7858. name: "Megamacro",
  7859. height: math.unit(80, "miles")
  7860. },
  7861. {
  7862. name: "True Size",
  7863. height: math.unit(100000, "lightyears")
  7864. },
  7865. ]
  7866. ))
  7867. characterMakers.push(() => makeCharacter(
  7868. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7869. {
  7870. front: {
  7871. height: math.unit(6, "feet"),
  7872. weight: math.unit(200, "lbs"),
  7873. name: "Front",
  7874. image: {
  7875. source: "./media/characters/vector-wuff/front.svg"
  7876. }
  7877. }
  7878. },
  7879. [
  7880. {
  7881. name: "Normal",
  7882. height: math.unit(2.8, "meters")
  7883. },
  7884. {
  7885. name: "Macro",
  7886. height: math.unit(450, "meters"),
  7887. default: true
  7888. },
  7889. {
  7890. name: "Megamacro",
  7891. height: math.unit(15, "kilometers")
  7892. }
  7893. ]
  7894. ))
  7895. characterMakers.push(() => makeCharacter(
  7896. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7897. {
  7898. front: {
  7899. height: math.unit(6, "feet"),
  7900. weight: math.unit(256, "lbs"),
  7901. name: "Front",
  7902. image: {
  7903. source: "./media/characters/dannik/front.svg"
  7904. }
  7905. }
  7906. },
  7907. [
  7908. {
  7909. name: "Macro",
  7910. height: math.unit(69.57, "meters"),
  7911. default: true
  7912. },
  7913. ]
  7914. ))
  7915. characterMakers.push(() => makeCharacter(
  7916. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7917. {
  7918. front: {
  7919. height: math.unit(6, "feet"),
  7920. weight: math.unit(120, "lbs"),
  7921. name: "Front",
  7922. image: {
  7923. source: "./media/characters/azura-saharah/front.svg"
  7924. }
  7925. },
  7926. back: {
  7927. height: math.unit(6, "feet"),
  7928. weight: math.unit(120, "lbs"),
  7929. name: "Back",
  7930. image: {
  7931. source: "./media/characters/azura-saharah/back.svg"
  7932. }
  7933. },
  7934. },
  7935. [
  7936. {
  7937. name: "Macro",
  7938. height: math.unit(100, "feet"),
  7939. default: true
  7940. },
  7941. ]
  7942. ))
  7943. characterMakers.push(() => makeCharacter(
  7944. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7945. {
  7946. side: {
  7947. height: math.unit(5 + 4 / 12, "feet"),
  7948. weight: math.unit(163, "lbs"),
  7949. name: "Side",
  7950. image: {
  7951. source: "./media/characters/kennedy/side.svg"
  7952. }
  7953. }
  7954. },
  7955. [
  7956. {
  7957. name: "Standard Doggo",
  7958. height: math.unit(5 + 4 / 12, "feet")
  7959. },
  7960. {
  7961. name: "Big Doggo",
  7962. height: math.unit(25 + 3 / 12, "feet"),
  7963. default: true
  7964. },
  7965. ]
  7966. ))
  7967. characterMakers.push(() => makeCharacter(
  7968. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7969. {
  7970. front: {
  7971. height: math.unit(5 + 5/12, "feet"),
  7972. weight: math.unit(100, "lbs"),
  7973. name: "Front",
  7974. image: {
  7975. source: "./media/characters/odios-de-lunar/front.svg",
  7976. extra: 1468/1323,
  7977. bottom: 22/1490
  7978. }
  7979. }
  7980. },
  7981. [
  7982. {
  7983. name: "Micro",
  7984. height: math.unit(3, "inches")
  7985. },
  7986. {
  7987. name: "Normal",
  7988. height: math.unit(5.5, "feet"),
  7989. default: true
  7990. },
  7991. {
  7992. name: "Macro",
  7993. height: math.unit(100, "feet")
  7994. },
  7995. ]
  7996. ))
  7997. characterMakers.push(() => makeCharacter(
  7998. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7999. {
  8000. back: {
  8001. height: math.unit(6, "feet"),
  8002. weight: math.unit(220, "lbs"),
  8003. name: "Back",
  8004. image: {
  8005. source: "./media/characters/mandake/back.svg"
  8006. }
  8007. }
  8008. },
  8009. [
  8010. {
  8011. name: "Normal",
  8012. height: math.unit(7, "feet"),
  8013. default: true
  8014. },
  8015. {
  8016. name: "Macro",
  8017. height: math.unit(78, "feet")
  8018. },
  8019. {
  8020. name: "Macro+",
  8021. height: math.unit(300, "meters")
  8022. },
  8023. {
  8024. name: "Macro++",
  8025. height: math.unit(2400, "feet")
  8026. },
  8027. {
  8028. name: "Megamacro",
  8029. height: math.unit(5167, "meters")
  8030. },
  8031. {
  8032. name: "Gigamacro",
  8033. height: math.unit(41769, "miles")
  8034. },
  8035. ]
  8036. ))
  8037. characterMakers.push(() => makeCharacter(
  8038. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8039. {
  8040. front: {
  8041. height: math.unit(6, "feet"),
  8042. weight: math.unit(120, "lbs"),
  8043. name: "Front",
  8044. image: {
  8045. source: "./media/characters/yozey/front.svg"
  8046. }
  8047. },
  8048. frontAlt: {
  8049. height: math.unit(6, "feet"),
  8050. weight: math.unit(120, "lbs"),
  8051. name: "Front (Alt)",
  8052. image: {
  8053. source: "./media/characters/yozey/front-alt.svg"
  8054. }
  8055. },
  8056. side: {
  8057. height: math.unit(6, "feet"),
  8058. weight: math.unit(120, "lbs"),
  8059. name: "Side",
  8060. image: {
  8061. source: "./media/characters/yozey/side.svg"
  8062. }
  8063. },
  8064. },
  8065. [
  8066. {
  8067. name: "Micro",
  8068. height: math.unit(3, "inches"),
  8069. default: true
  8070. },
  8071. {
  8072. name: "Normal",
  8073. height: math.unit(6, "feet")
  8074. }
  8075. ]
  8076. ))
  8077. characterMakers.push(() => makeCharacter(
  8078. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8079. {
  8080. front: {
  8081. height: math.unit(6, "feet"),
  8082. weight: math.unit(103, "lbs"),
  8083. name: "Front",
  8084. image: {
  8085. source: "./media/characters/valeska-voss/front.svg"
  8086. }
  8087. }
  8088. },
  8089. [
  8090. {
  8091. name: "Mini-Sized Sub",
  8092. height: math.unit(3.1, "inches")
  8093. },
  8094. {
  8095. name: "Mid-Sized Sub",
  8096. height: math.unit(6.2, "inches")
  8097. },
  8098. {
  8099. name: "Full-Sized Sub",
  8100. height: math.unit(9.3, "inches")
  8101. },
  8102. {
  8103. name: "Normal",
  8104. height: math.unit(5 + 2 / 12, "foot"),
  8105. default: true
  8106. },
  8107. ]
  8108. ))
  8109. characterMakers.push(() => makeCharacter(
  8110. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8111. {
  8112. front: {
  8113. height: math.unit(6, "feet"),
  8114. weight: math.unit(160, "lbs"),
  8115. name: "Front",
  8116. image: {
  8117. source: "./media/characters/gene-zeta/front.svg",
  8118. extra: 3006 / 2826,
  8119. bottom: 182 / 3188
  8120. }
  8121. }
  8122. },
  8123. [
  8124. {
  8125. name: "Micro",
  8126. height: math.unit(6, "inches")
  8127. },
  8128. {
  8129. name: "Normal",
  8130. height: math.unit(5 + 11 / 12, "foot"),
  8131. default: true
  8132. },
  8133. {
  8134. name: "Macro",
  8135. height: math.unit(140, "feet")
  8136. },
  8137. {
  8138. name: "Supercharged",
  8139. height: math.unit(2500, "feet")
  8140. },
  8141. ]
  8142. ))
  8143. characterMakers.push(() => makeCharacter(
  8144. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8145. {
  8146. front: {
  8147. height: math.unit(6, "feet"),
  8148. weight: math.unit(350, "lbs"),
  8149. name: "Front",
  8150. image: {
  8151. source: "./media/characters/razinox/front.svg",
  8152. extra: 1686 / 1548,
  8153. bottom: 28.2 / 1868
  8154. }
  8155. },
  8156. back: {
  8157. height: math.unit(6, "feet"),
  8158. weight: math.unit(350, "lbs"),
  8159. name: "Back",
  8160. image: {
  8161. source: "./media/characters/razinox/back.svg",
  8162. extra: 1660 / 1590,
  8163. bottom: 15 / 1665
  8164. }
  8165. },
  8166. },
  8167. [
  8168. {
  8169. name: "Normal",
  8170. height: math.unit(10 + 8 / 12, "foot")
  8171. },
  8172. {
  8173. name: "Minimacro",
  8174. height: math.unit(15, "foot")
  8175. },
  8176. {
  8177. name: "Macro",
  8178. height: math.unit(60, "foot"),
  8179. default: true
  8180. },
  8181. {
  8182. name: "Megamacro",
  8183. height: math.unit(5, "miles")
  8184. },
  8185. {
  8186. name: "Gigamacro",
  8187. height: math.unit(6000, "miles")
  8188. },
  8189. ]
  8190. ))
  8191. characterMakers.push(() => makeCharacter(
  8192. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8193. {
  8194. front: {
  8195. height: math.unit(6, "feet"),
  8196. weight: math.unit(150, "lbs"),
  8197. name: "Front",
  8198. image: {
  8199. source: "./media/characters/cobalt/front.svg"
  8200. }
  8201. }
  8202. },
  8203. [
  8204. {
  8205. name: "Normal",
  8206. height: math.unit(8 + 1 / 12, "foot")
  8207. },
  8208. {
  8209. name: "Macro",
  8210. height: math.unit(111, "foot"),
  8211. default: true
  8212. },
  8213. {
  8214. name: "Supracosmic",
  8215. height: math.unit(1e42, "feet")
  8216. },
  8217. ]
  8218. ))
  8219. characterMakers.push(() => makeCharacter(
  8220. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8221. {
  8222. front: {
  8223. height: math.unit(5, "inches"),
  8224. name: "Front",
  8225. image: {
  8226. source: "./media/characters/amanda/front.svg",
  8227. extra: 926/791,
  8228. bottom: 38/964
  8229. }
  8230. },
  8231. back: {
  8232. height: math.unit(5, "inches"),
  8233. name: "Back",
  8234. image: {
  8235. source: "./media/characters/amanda/back.svg",
  8236. extra: 909/805,
  8237. bottom: 43/952
  8238. }
  8239. },
  8240. },
  8241. [
  8242. {
  8243. name: "Micro",
  8244. height: math.unit(5, "inches"),
  8245. default: true
  8246. },
  8247. ]
  8248. ))
  8249. characterMakers.push(() => makeCharacter(
  8250. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8251. {
  8252. front: {
  8253. height: math.unit(2.75, "meters"),
  8254. weight: math.unit(1200, "lb"),
  8255. name: "Front",
  8256. image: {
  8257. source: "./media/characters/teal/front.svg",
  8258. extra: 2463 / 2320,
  8259. bottom: 166 / 2629
  8260. }
  8261. },
  8262. back: {
  8263. height: math.unit(2.75, "meters"),
  8264. weight: math.unit(1200, "lb"),
  8265. name: "Back",
  8266. image: {
  8267. source: "./media/characters/teal/back.svg",
  8268. extra: 2580 / 2489,
  8269. bottom: 151 / 2731
  8270. }
  8271. },
  8272. sitting: {
  8273. height: math.unit(1.9, "meters"),
  8274. weight: math.unit(1200, "lb"),
  8275. name: "Sitting",
  8276. image: {
  8277. source: "./media/characters/teal/sitting.svg",
  8278. extra: 623 / 590,
  8279. bottom: 121 / 744
  8280. }
  8281. },
  8282. standing: {
  8283. height: math.unit(2.75, "meters"),
  8284. weight: math.unit(1200, "lb"),
  8285. name: "Standing",
  8286. image: {
  8287. source: "./media/characters/teal/standing.svg",
  8288. extra: 923 / 893,
  8289. bottom: 60 / 983
  8290. }
  8291. },
  8292. stretching: {
  8293. height: math.unit(3.65, "meters"),
  8294. weight: math.unit(1200, "lb"),
  8295. name: "Stretching",
  8296. image: {
  8297. source: "./media/characters/teal/stretching.svg",
  8298. extra: 1276 / 1244,
  8299. bottom: 0 / 1276
  8300. }
  8301. },
  8302. legged: {
  8303. height: math.unit(1.3, "meters"),
  8304. weight: math.unit(100, "lb"),
  8305. name: "Legged",
  8306. image: {
  8307. source: "./media/characters/teal/legged.svg",
  8308. extra: 462 / 437,
  8309. bottom: 24 / 486
  8310. }
  8311. },
  8312. naga: {
  8313. height: math.unit(5.4, "meters"),
  8314. weight: math.unit(4000, "lb"),
  8315. name: "Naga",
  8316. image: {
  8317. source: "./media/characters/teal/naga.svg",
  8318. extra: 1902 / 1858,
  8319. bottom: 0 / 1902
  8320. }
  8321. },
  8322. hand: {
  8323. height: math.unit(0.52, "meters"),
  8324. name: "Hand",
  8325. image: {
  8326. source: "./media/characters/teal/hand.svg"
  8327. }
  8328. },
  8329. maw: {
  8330. height: math.unit(0.43, "meters"),
  8331. name: "Maw",
  8332. image: {
  8333. source: "./media/characters/teal/maw.svg"
  8334. }
  8335. },
  8336. slit: {
  8337. height: math.unit(0.25, "meters"),
  8338. name: "Slit",
  8339. image: {
  8340. source: "./media/characters/teal/slit.svg"
  8341. }
  8342. },
  8343. },
  8344. [
  8345. {
  8346. name: "Normal",
  8347. height: math.unit(2.75, "meters"),
  8348. default: true
  8349. },
  8350. {
  8351. name: "Macro",
  8352. height: math.unit(300, "feet")
  8353. },
  8354. {
  8355. name: "Macro+",
  8356. height: math.unit(2000, "feet")
  8357. },
  8358. ]
  8359. ))
  8360. characterMakers.push(() => makeCharacter(
  8361. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8362. {
  8363. frontCat: {
  8364. height: math.unit(6, "feet"),
  8365. weight: math.unit(180, "lbs"),
  8366. name: "Front (Cat)",
  8367. image: {
  8368. source: "./media/characters/ravin-amulet/front-cat.svg"
  8369. }
  8370. },
  8371. frontCatAlt: {
  8372. height: math.unit(6, "feet"),
  8373. weight: math.unit(180, "lbs"),
  8374. name: "Front (Alt, Cat)",
  8375. image: {
  8376. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8377. }
  8378. },
  8379. frontWerewolf: {
  8380. height: math.unit(6 * 1.2, "feet"),
  8381. weight: math.unit(225, "lbs"),
  8382. name: "Front (Werewolf)",
  8383. image: {
  8384. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8385. }
  8386. },
  8387. backWerewolf: {
  8388. height: math.unit(6 * 1.2, "feet"),
  8389. weight: math.unit(225, "lbs"),
  8390. name: "Back (Werewolf)",
  8391. image: {
  8392. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8393. }
  8394. },
  8395. },
  8396. [
  8397. {
  8398. name: "Nano",
  8399. height: math.unit(1, "micrometer")
  8400. },
  8401. {
  8402. name: "Micro",
  8403. height: math.unit(1, "inch")
  8404. },
  8405. {
  8406. name: "Normal",
  8407. height: math.unit(6, "feet"),
  8408. default: true
  8409. },
  8410. {
  8411. name: "Macro",
  8412. height: math.unit(60, "feet")
  8413. }
  8414. ]
  8415. ))
  8416. characterMakers.push(() => makeCharacter(
  8417. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8418. {
  8419. front: {
  8420. height: math.unit(6, "feet"),
  8421. weight: math.unit(165, "lbs"),
  8422. name: "Front",
  8423. image: {
  8424. source: "./media/characters/fluoresce/front.svg"
  8425. }
  8426. }
  8427. },
  8428. [
  8429. {
  8430. name: "Micro",
  8431. height: math.unit(6, "cm")
  8432. },
  8433. {
  8434. name: "Normal",
  8435. height: math.unit(5 + 7 / 12, "feet"),
  8436. default: true
  8437. },
  8438. {
  8439. name: "Macro",
  8440. height: math.unit(56, "feet")
  8441. },
  8442. {
  8443. name: "Megamacro",
  8444. height: math.unit(1.9, "miles")
  8445. },
  8446. ]
  8447. ))
  8448. characterMakers.push(() => makeCharacter(
  8449. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8450. {
  8451. front: {
  8452. height: math.unit(9 + 6 / 12, "feet"),
  8453. weight: math.unit(523, "lbs"),
  8454. name: "Side",
  8455. image: {
  8456. source: "./media/characters/aurora/side.svg",
  8457. extra: 474/393,
  8458. bottom: 5/479
  8459. }
  8460. }
  8461. },
  8462. [
  8463. {
  8464. name: "Normal",
  8465. height: math.unit(9 + 6 / 12, "feet")
  8466. },
  8467. {
  8468. name: "Macro",
  8469. height: math.unit(96, "feet"),
  8470. default: true
  8471. },
  8472. {
  8473. name: "Macro+",
  8474. height: math.unit(243, "feet")
  8475. },
  8476. ]
  8477. ))
  8478. characterMakers.push(() => makeCharacter(
  8479. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8480. {
  8481. front: {
  8482. height: math.unit(194, "cm"),
  8483. weight: math.unit(90, "kg"),
  8484. name: "Front",
  8485. image: {
  8486. source: "./media/characters/ranek/front.svg",
  8487. extra: 1862/1791,
  8488. bottom: 80/1942
  8489. }
  8490. },
  8491. back: {
  8492. height: math.unit(194, "cm"),
  8493. weight: math.unit(90, "kg"),
  8494. name: "Back",
  8495. image: {
  8496. source: "./media/characters/ranek/back.svg",
  8497. extra: 1853/1787,
  8498. bottom: 74/1927
  8499. }
  8500. },
  8501. feral: {
  8502. height: math.unit(30, "cm"),
  8503. weight: math.unit(1.6, "lbs"),
  8504. name: "Feral",
  8505. image: {
  8506. source: "./media/characters/ranek/feral.svg",
  8507. extra: 990/631,
  8508. bottom: 29/1019
  8509. }
  8510. },
  8511. },
  8512. [
  8513. {
  8514. name: "Normal",
  8515. height: math.unit(194, "cm"),
  8516. default: true
  8517. },
  8518. {
  8519. name: "Macro",
  8520. height: math.unit(100, "meters")
  8521. },
  8522. ]
  8523. ))
  8524. characterMakers.push(() => makeCharacter(
  8525. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8526. {
  8527. front: {
  8528. height: math.unit(5 + 6 / 12, "feet"),
  8529. weight: math.unit(153, "lbs"),
  8530. name: "Front",
  8531. image: {
  8532. source: "./media/characters/andrew-cooper/front.svg"
  8533. }
  8534. },
  8535. },
  8536. [
  8537. {
  8538. name: "Nano",
  8539. height: math.unit(1, "mm")
  8540. },
  8541. {
  8542. name: "Micro",
  8543. height: math.unit(2, "inches")
  8544. },
  8545. {
  8546. name: "Normal",
  8547. height: math.unit(5 + 6 / 12, "feet"),
  8548. default: true
  8549. }
  8550. ]
  8551. ))
  8552. characterMakers.push(() => makeCharacter(
  8553. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8554. {
  8555. front: {
  8556. height: math.unit(6, "feet"),
  8557. weight: math.unit(180, "lbs"),
  8558. name: "Front",
  8559. image: {
  8560. source: "./media/characters/akane-sato/front.svg",
  8561. extra: 1219 / 1140
  8562. }
  8563. },
  8564. back: {
  8565. height: math.unit(6, "feet"),
  8566. weight: math.unit(180, "lbs"),
  8567. name: "Back",
  8568. image: {
  8569. source: "./media/characters/akane-sato/back.svg",
  8570. extra: 1219 / 1170
  8571. }
  8572. },
  8573. },
  8574. [
  8575. {
  8576. name: "Normal",
  8577. height: math.unit(2.5, "meters")
  8578. },
  8579. {
  8580. name: "Macro",
  8581. height: math.unit(250, "meters"),
  8582. default: true
  8583. },
  8584. {
  8585. name: "Megamacro",
  8586. height: math.unit(25, "km")
  8587. },
  8588. ]
  8589. ))
  8590. characterMakers.push(() => makeCharacter(
  8591. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8592. {
  8593. front: {
  8594. height: math.unit(6, "feet"),
  8595. weight: math.unit(65, "kg"),
  8596. name: "Front",
  8597. image: {
  8598. source: "./media/characters/rook/front.svg",
  8599. extra: 960 / 950
  8600. }
  8601. }
  8602. },
  8603. [
  8604. {
  8605. name: "Normal",
  8606. height: math.unit(8.8, "feet")
  8607. },
  8608. {
  8609. name: "Macro",
  8610. height: math.unit(88, "feet"),
  8611. default: true
  8612. },
  8613. {
  8614. name: "Megamacro",
  8615. height: math.unit(8, "miles")
  8616. },
  8617. ]
  8618. ))
  8619. characterMakers.push(() => makeCharacter(
  8620. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8621. {
  8622. front: {
  8623. height: math.unit(12 + 2 / 12, "feet"),
  8624. weight: math.unit(808, "lbs"),
  8625. name: "Front",
  8626. image: {
  8627. source: "./media/characters/prodigy/front.svg"
  8628. }
  8629. }
  8630. },
  8631. [
  8632. {
  8633. name: "Normal",
  8634. height: math.unit(12 + 2 / 12, "feet"),
  8635. default: true
  8636. },
  8637. {
  8638. name: "Macro",
  8639. height: math.unit(143, "feet")
  8640. },
  8641. {
  8642. name: "Macro+",
  8643. height: math.unit(400, "feet")
  8644. },
  8645. ]
  8646. ))
  8647. characterMakers.push(() => makeCharacter(
  8648. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8649. {
  8650. front: {
  8651. height: math.unit(6, "feet"),
  8652. weight: math.unit(225, "lbs"),
  8653. name: "Front",
  8654. image: {
  8655. source: "./media/characters/daniel/front.svg"
  8656. }
  8657. },
  8658. leaning: {
  8659. height: math.unit(6, "feet"),
  8660. weight: math.unit(225, "lbs"),
  8661. name: "Leaning",
  8662. image: {
  8663. source: "./media/characters/daniel/leaning.svg"
  8664. }
  8665. },
  8666. },
  8667. [
  8668. {
  8669. name: "Macro",
  8670. height: math.unit(1000, "feet"),
  8671. default: true
  8672. },
  8673. ]
  8674. ))
  8675. characterMakers.push(() => makeCharacter(
  8676. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8677. {
  8678. front: {
  8679. height: math.unit(6, "feet"),
  8680. weight: math.unit(88, "lbs"),
  8681. name: "Front",
  8682. image: {
  8683. source: "./media/characters/chiros/front.svg",
  8684. extra: 306 / 226
  8685. }
  8686. },
  8687. side: {
  8688. height: math.unit(6, "feet"),
  8689. weight: math.unit(88, "lbs"),
  8690. name: "Side",
  8691. image: {
  8692. source: "./media/characters/chiros/side.svg",
  8693. extra: 306 / 226
  8694. }
  8695. },
  8696. },
  8697. [
  8698. {
  8699. name: "Normal",
  8700. height: math.unit(6, "cm"),
  8701. default: true
  8702. },
  8703. ]
  8704. ))
  8705. characterMakers.push(() => makeCharacter(
  8706. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8707. {
  8708. front: {
  8709. height: math.unit(6, "feet"),
  8710. weight: math.unit(100, "lbs"),
  8711. name: "Front",
  8712. image: {
  8713. source: "./media/characters/selka/front.svg",
  8714. extra: 947 / 887
  8715. }
  8716. }
  8717. },
  8718. [
  8719. {
  8720. name: "Normal",
  8721. height: math.unit(5, "cm"),
  8722. default: true
  8723. },
  8724. ]
  8725. ))
  8726. characterMakers.push(() => makeCharacter(
  8727. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8728. {
  8729. front: {
  8730. height: math.unit(8 + 3 / 12, "feet"),
  8731. weight: math.unit(424, "lbs"),
  8732. name: "Front",
  8733. image: {
  8734. source: "./media/characters/verin/front.svg",
  8735. extra: 1845 / 1550
  8736. }
  8737. },
  8738. frontArmored: {
  8739. height: math.unit(8 + 3 / 12, "feet"),
  8740. weight: math.unit(424, "lbs"),
  8741. name: "Front (Armored)",
  8742. image: {
  8743. source: "./media/characters/verin/front-armor.svg",
  8744. extra: 1845 / 1550,
  8745. bottom: 0.01
  8746. }
  8747. },
  8748. back: {
  8749. height: math.unit(8 + 3 / 12, "feet"),
  8750. weight: math.unit(424, "lbs"),
  8751. name: "Back",
  8752. image: {
  8753. source: "./media/characters/verin/back.svg",
  8754. bottom: 0.1,
  8755. extra: 1
  8756. }
  8757. },
  8758. foot: {
  8759. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8760. name: "Foot",
  8761. image: {
  8762. source: "./media/characters/verin/foot.svg"
  8763. }
  8764. },
  8765. },
  8766. [
  8767. {
  8768. name: "Normal",
  8769. height: math.unit(8 + 3 / 12, "feet")
  8770. },
  8771. {
  8772. name: "Minimacro",
  8773. height: math.unit(21, "feet"),
  8774. default: true
  8775. },
  8776. {
  8777. name: "Macro",
  8778. height: math.unit(626, "feet")
  8779. },
  8780. ]
  8781. ))
  8782. characterMakers.push(() => makeCharacter(
  8783. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8784. {
  8785. front: {
  8786. height: math.unit(2.718, "meters"),
  8787. weight: math.unit(150, "lbs"),
  8788. name: "Front",
  8789. image: {
  8790. source: "./media/characters/sovrim-terraquian/front.svg",
  8791. extra: 1752/1689,
  8792. bottom: 36/1788
  8793. }
  8794. },
  8795. back: {
  8796. height: math.unit(2.718, "meters"),
  8797. weight: math.unit(150, "lbs"),
  8798. name: "Back",
  8799. image: {
  8800. source: "./media/characters/sovrim-terraquian/back.svg",
  8801. extra: 1698/1657,
  8802. bottom: 58/1756
  8803. }
  8804. },
  8805. tongue: {
  8806. height: math.unit(2.865, "feet"),
  8807. name: "Tongue",
  8808. image: {
  8809. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8810. }
  8811. },
  8812. hand: {
  8813. height: math.unit(1.61, "feet"),
  8814. name: "Hand",
  8815. image: {
  8816. source: "./media/characters/sovrim-terraquian/hand.svg"
  8817. }
  8818. },
  8819. foot: {
  8820. height: math.unit(1.05, "feet"),
  8821. name: "Foot",
  8822. image: {
  8823. source: "./media/characters/sovrim-terraquian/foot.svg"
  8824. }
  8825. },
  8826. footAlt: {
  8827. height: math.unit(0.88, "feet"),
  8828. name: "Foot (Alt)",
  8829. image: {
  8830. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8831. }
  8832. },
  8833. },
  8834. [
  8835. {
  8836. name: "Micro",
  8837. height: math.unit(2, "inches")
  8838. },
  8839. {
  8840. name: "Small",
  8841. height: math.unit(1, "meter")
  8842. },
  8843. {
  8844. name: "Normal",
  8845. height: math.unit(Math.E, "meters"),
  8846. default: true
  8847. },
  8848. {
  8849. name: "Macro",
  8850. height: math.unit(20, "meters")
  8851. },
  8852. {
  8853. name: "Macro+",
  8854. height: math.unit(400, "meters")
  8855. },
  8856. ]
  8857. ))
  8858. characterMakers.push(() => makeCharacter(
  8859. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8860. {
  8861. front: {
  8862. height: math.unit(7, "feet"),
  8863. weight: math.unit(489, "lbs"),
  8864. name: "Front",
  8865. image: {
  8866. source: "./media/characters/reece-silvermane/front.svg",
  8867. bottom: 0.02,
  8868. extra: 1
  8869. }
  8870. },
  8871. },
  8872. [
  8873. {
  8874. name: "Macro",
  8875. height: math.unit(1.5, "miles"),
  8876. default: true
  8877. },
  8878. ]
  8879. ))
  8880. characterMakers.push(() => makeCharacter(
  8881. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8882. {
  8883. front: {
  8884. height: math.unit(6, "feet"),
  8885. weight: math.unit(78, "kg"),
  8886. name: "Front",
  8887. image: {
  8888. source: "./media/characters/kane/front.svg",
  8889. extra: 978 / 899
  8890. }
  8891. },
  8892. },
  8893. [
  8894. {
  8895. name: "Normal",
  8896. height: math.unit(2.1, "m"),
  8897. },
  8898. {
  8899. name: "Macro",
  8900. height: math.unit(1, "km"),
  8901. default: true
  8902. },
  8903. ]
  8904. ))
  8905. characterMakers.push(() => makeCharacter(
  8906. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8907. {
  8908. front: {
  8909. height: math.unit(6, "feet"),
  8910. weight: math.unit(200, "kg"),
  8911. name: "Front",
  8912. image: {
  8913. source: "./media/characters/tegon/front.svg",
  8914. bottom: 0.01,
  8915. extra: 1
  8916. }
  8917. },
  8918. },
  8919. [
  8920. {
  8921. name: "Micro",
  8922. height: math.unit(1, "inch")
  8923. },
  8924. {
  8925. name: "Normal",
  8926. height: math.unit(6 + 3 / 12, "feet"),
  8927. default: true
  8928. },
  8929. {
  8930. name: "Macro",
  8931. height: math.unit(300, "feet")
  8932. },
  8933. {
  8934. name: "Megamacro",
  8935. height: math.unit(69, "miles")
  8936. },
  8937. ]
  8938. ))
  8939. characterMakers.push(() => makeCharacter(
  8940. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8941. {
  8942. side: {
  8943. height: math.unit(6, "feet"),
  8944. weight: math.unit(2304, "lbs"),
  8945. name: "Side",
  8946. image: {
  8947. source: "./media/characters/arcturax/side.svg",
  8948. extra: 790 / 376,
  8949. bottom: 0.01
  8950. }
  8951. },
  8952. },
  8953. [
  8954. {
  8955. name: "Micro",
  8956. height: math.unit(2, "inch")
  8957. },
  8958. {
  8959. name: "Normal",
  8960. height: math.unit(6, "feet")
  8961. },
  8962. {
  8963. name: "Macro",
  8964. height: math.unit(39, "feet"),
  8965. default: true
  8966. },
  8967. {
  8968. name: "Megamacro",
  8969. height: math.unit(7, "miles")
  8970. },
  8971. ]
  8972. ))
  8973. characterMakers.push(() => makeCharacter(
  8974. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8975. {
  8976. front: {
  8977. height: math.unit(6, "feet"),
  8978. weight: math.unit(50, "lbs"),
  8979. name: "Front",
  8980. image: {
  8981. source: "./media/characters/sentri/front.svg",
  8982. extra: 1750 / 1570,
  8983. bottom: 0.025
  8984. }
  8985. },
  8986. frontAlt: {
  8987. height: math.unit(6, "feet"),
  8988. weight: math.unit(50, "lbs"),
  8989. name: "Front (Alt)",
  8990. image: {
  8991. source: "./media/characters/sentri/front-alt.svg",
  8992. extra: 1750 / 1570,
  8993. bottom: 0.025
  8994. }
  8995. },
  8996. },
  8997. [
  8998. {
  8999. name: "Normal",
  9000. height: math.unit(15, "feet"),
  9001. default: true
  9002. },
  9003. {
  9004. name: "Macro",
  9005. height: math.unit(2500, "feet")
  9006. }
  9007. ]
  9008. ))
  9009. characterMakers.push(() => makeCharacter(
  9010. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9011. {
  9012. front: {
  9013. height: math.unit(5 + 8 / 12, "feet"),
  9014. weight: math.unit(130, "lbs"),
  9015. name: "Front",
  9016. image: {
  9017. source: "./media/characters/corvin/front.svg",
  9018. extra: 1803 / 1629
  9019. }
  9020. },
  9021. frontShirt: {
  9022. height: math.unit(5 + 8 / 12, "feet"),
  9023. weight: math.unit(130, "lbs"),
  9024. name: "Front (Shirt)",
  9025. image: {
  9026. source: "./media/characters/corvin/front-shirt.svg",
  9027. extra: 1803 / 1629
  9028. }
  9029. },
  9030. frontPoncho: {
  9031. height: math.unit(5 + 8 / 12, "feet"),
  9032. weight: math.unit(130, "lbs"),
  9033. name: "Front (Poncho)",
  9034. image: {
  9035. source: "./media/characters/corvin/front-poncho.svg",
  9036. extra: 1803 / 1629
  9037. }
  9038. },
  9039. side: {
  9040. height: math.unit(5 + 8 / 12, "feet"),
  9041. weight: math.unit(130, "lbs"),
  9042. name: "Side",
  9043. image: {
  9044. source: "./media/characters/corvin/side.svg",
  9045. extra: 1012 / 945
  9046. }
  9047. },
  9048. back: {
  9049. height: math.unit(5 + 8 / 12, "feet"),
  9050. weight: math.unit(130, "lbs"),
  9051. name: "Back",
  9052. image: {
  9053. source: "./media/characters/corvin/back.svg",
  9054. extra: 1803 / 1629
  9055. }
  9056. },
  9057. },
  9058. [
  9059. {
  9060. name: "Micro",
  9061. height: math.unit(3, "inches")
  9062. },
  9063. {
  9064. name: "Normal",
  9065. height: math.unit(5 + 8 / 12, "feet")
  9066. },
  9067. {
  9068. name: "Macro",
  9069. height: math.unit(300, "feet"),
  9070. default: true
  9071. },
  9072. {
  9073. name: "Megamacro",
  9074. height: math.unit(500, "miles")
  9075. }
  9076. ]
  9077. ))
  9078. characterMakers.push(() => makeCharacter(
  9079. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9080. {
  9081. front: {
  9082. height: math.unit(6, "feet"),
  9083. weight: math.unit(135, "lbs"),
  9084. name: "Front",
  9085. image: {
  9086. source: "./media/characters/q/front.svg",
  9087. extra: 854 / 752,
  9088. bottom: 0.005
  9089. }
  9090. },
  9091. back: {
  9092. height: math.unit(6, "feet"),
  9093. weight: math.unit(130, "lbs"),
  9094. name: "Back",
  9095. image: {
  9096. source: "./media/characters/q/back.svg",
  9097. extra: 854 / 752
  9098. }
  9099. },
  9100. },
  9101. [
  9102. {
  9103. name: "Macro",
  9104. height: math.unit(90, "feet"),
  9105. default: true
  9106. },
  9107. {
  9108. name: "Extra Macro",
  9109. height: math.unit(300, "feet"),
  9110. },
  9111. {
  9112. name: "BIG WALF",
  9113. height: math.unit(750, "feet"),
  9114. },
  9115. ]
  9116. ))
  9117. characterMakers.push(() => makeCharacter(
  9118. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9119. {
  9120. front: {
  9121. height: math.unit(3, "feet"),
  9122. weight: math.unit(28, "lbs"),
  9123. name: "Front",
  9124. image: {
  9125. source: "./media/characters/citrine/front.svg"
  9126. }
  9127. }
  9128. },
  9129. [
  9130. {
  9131. name: "Normal",
  9132. height: math.unit(3, "feet"),
  9133. default: true
  9134. }
  9135. ]
  9136. ))
  9137. characterMakers.push(() => makeCharacter(
  9138. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9139. {
  9140. front: {
  9141. height: math.unit(14, "feet"),
  9142. weight: math.unit(1450, "kg"),
  9143. preyCapacity: math.unit(15, "people"),
  9144. name: "Front",
  9145. image: {
  9146. source: "./media/characters/aura-starwind/front.svg",
  9147. extra: 1440/1327,
  9148. bottom: 11/1451
  9149. }
  9150. },
  9151. side: {
  9152. height: math.unit(14, "feet"),
  9153. weight: math.unit(1450, "kg"),
  9154. preyCapacity: math.unit(15, "people"),
  9155. name: "Side",
  9156. image: {
  9157. source: "./media/characters/aura-starwind/side.svg",
  9158. extra: 1654 / 1497
  9159. }
  9160. },
  9161. taur: {
  9162. height: math.unit(18, "feet"),
  9163. weight: math.unit(5500, "kg"),
  9164. preyCapacity: math.unit(50, "people"),
  9165. name: "Taur",
  9166. image: {
  9167. source: "./media/characters/aura-starwind/taur.svg",
  9168. extra: 1760 / 1650
  9169. }
  9170. },
  9171. feral: {
  9172. height: math.unit(46, "feet"),
  9173. weight: math.unit(25000, "kg"),
  9174. preyCapacity: math.unit(120, "people"),
  9175. name: "Feral",
  9176. image: {
  9177. source: "./media/characters/aura-starwind/feral.svg"
  9178. }
  9179. },
  9180. },
  9181. [
  9182. {
  9183. name: "Normal",
  9184. height: math.unit(14, "feet"),
  9185. default: true
  9186. },
  9187. {
  9188. name: "Macro",
  9189. height: math.unit(50, "meters")
  9190. },
  9191. {
  9192. name: "Megamacro",
  9193. height: math.unit(5000, "meters")
  9194. },
  9195. {
  9196. name: "Gigamacro",
  9197. height: math.unit(100000, "kilometers")
  9198. },
  9199. ]
  9200. ))
  9201. characterMakers.push(() => makeCharacter(
  9202. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9203. {
  9204. front: {
  9205. height: math.unit(2 + 7 / 12, "feet"),
  9206. weight: math.unit(32, "lbs"),
  9207. name: "Front",
  9208. image: {
  9209. source: "./media/characters/rivet/front.svg",
  9210. extra: 1716 / 1658,
  9211. bottom: 0.03
  9212. }
  9213. },
  9214. foot: {
  9215. height: math.unit(0.551, "feet"),
  9216. name: "Rivet's Foot",
  9217. image: {
  9218. source: "./media/characters/rivet/foot.svg"
  9219. },
  9220. rename: true
  9221. }
  9222. },
  9223. [
  9224. {
  9225. name: "Micro",
  9226. height: math.unit(1.5, "inches"),
  9227. },
  9228. {
  9229. name: "Normal",
  9230. height: math.unit(2 + 7 / 12, "feet"),
  9231. default: true
  9232. },
  9233. {
  9234. name: "Macro",
  9235. height: math.unit(85, "feet")
  9236. },
  9237. {
  9238. name: "Megamacro",
  9239. height: math.unit(2.2, "km")
  9240. }
  9241. ]
  9242. ))
  9243. characterMakers.push(() => makeCharacter(
  9244. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9245. {
  9246. front: {
  9247. height: math.unit(5 + 9 / 12, "feet"),
  9248. weight: math.unit(150, "lbs"),
  9249. name: "Front",
  9250. image: {
  9251. source: "./media/characters/coffee/front.svg",
  9252. extra: 946/880,
  9253. bottom: 66/1012
  9254. }
  9255. },
  9256. foot: {
  9257. height: math.unit(1.29, "feet"),
  9258. name: "Foot",
  9259. image: {
  9260. source: "./media/characters/coffee/foot.svg"
  9261. }
  9262. },
  9263. },
  9264. [
  9265. {
  9266. name: "Micro",
  9267. height: math.unit(2, "inches"),
  9268. },
  9269. {
  9270. name: "Normal",
  9271. height: math.unit(5 + 9 / 12, "feet"),
  9272. default: true
  9273. },
  9274. {
  9275. name: "Macro",
  9276. height: math.unit(800, "feet")
  9277. },
  9278. {
  9279. name: "Megamacro",
  9280. height: math.unit(25, "miles")
  9281. }
  9282. ]
  9283. ))
  9284. characterMakers.push(() => makeCharacter(
  9285. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9286. {
  9287. front: {
  9288. height: math.unit(6, "feet"),
  9289. weight: math.unit(200, "lbs"),
  9290. name: "Front",
  9291. image: {
  9292. source: "./media/characters/chari-gal/front.svg",
  9293. extra: 1568 / 1385,
  9294. bottom: 0.047
  9295. }
  9296. },
  9297. gigantamax: {
  9298. height: math.unit(6 * 16, "feet"),
  9299. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9300. name: "Gigantamax",
  9301. image: {
  9302. source: "./media/characters/chari-gal/gigantamax.svg",
  9303. extra: 1124 / 888,
  9304. bottom: 0.03
  9305. }
  9306. },
  9307. },
  9308. [
  9309. {
  9310. name: "Normal",
  9311. height: math.unit(5 + 7 / 12, "feet")
  9312. },
  9313. {
  9314. name: "Macro",
  9315. height: math.unit(200, "feet"),
  9316. default: true
  9317. }
  9318. ]
  9319. ))
  9320. characterMakers.push(() => makeCharacter(
  9321. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9322. {
  9323. front: {
  9324. height: math.unit(6, "feet"),
  9325. weight: math.unit(150, "lbs"),
  9326. name: "Front",
  9327. image: {
  9328. source: "./media/characters/nova/front.svg",
  9329. extra: 5000 / 4722,
  9330. bottom: 0.02
  9331. }
  9332. }
  9333. },
  9334. [
  9335. {
  9336. name: "Micro-",
  9337. height: math.unit(0.8, "inches")
  9338. },
  9339. {
  9340. name: "Micro",
  9341. height: math.unit(2, "inches"),
  9342. default: true
  9343. },
  9344. ]
  9345. ))
  9346. characterMakers.push(() => makeCharacter(
  9347. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9348. {
  9349. koboldFront: {
  9350. height: math.unit(3 + 1 / 12, "feet"),
  9351. weight: math.unit(21.7, "lbs"),
  9352. name: "Front",
  9353. image: {
  9354. source: "./media/characters/argent/kobold-front.svg",
  9355. extra: 1471 / 1331,
  9356. bottom: 100.8 / 1575.5
  9357. },
  9358. form: "kobold",
  9359. default: true
  9360. },
  9361. dragonFront: {
  9362. height: math.unit(75, "inches"),
  9363. name: "Front",
  9364. image: {
  9365. source: "./media/characters/argent/dragon-front.svg",
  9366. extra: 1389/1248,
  9367. bottom: 54/1443
  9368. },
  9369. form: "dragon",
  9370. },
  9371. dragonBack: {
  9372. height: math.unit(75, "inches"),
  9373. name: "Back",
  9374. image: {
  9375. source: "./media/characters/argent/dragon-back.svg",
  9376. extra: 1399/1271,
  9377. bottom: 23/1422
  9378. },
  9379. form: "dragon",
  9380. },
  9381. dragonDressed: {
  9382. height: math.unit(75, "inches"),
  9383. name: "Dressed",
  9384. image: {
  9385. source: "./media/characters/argent/dragon-dressed.svg",
  9386. extra: 1350/1215,
  9387. bottom: 26/1376
  9388. },
  9389. form: "dragon"
  9390. },
  9391. dragonHead: {
  9392. height: math.unit(23.5, "inches"),
  9393. name: "Head",
  9394. image: {
  9395. source: "./media/characters/argent/dragon-head.svg"
  9396. },
  9397. form: "dragon",
  9398. },
  9399. },
  9400. [
  9401. {
  9402. name: "Micro",
  9403. height: math.unit(2, "inches"),
  9404. form: "kobold",
  9405. },
  9406. {
  9407. name: "Normal",
  9408. height: math.unit(3 + 1 / 12, "feet"),
  9409. form: "kobold",
  9410. default: true
  9411. },
  9412. {
  9413. name: "Macro",
  9414. height: math.unit(120, "feet"),
  9415. form: "kobold",
  9416. },
  9417. {
  9418. name: "Speck",
  9419. height: math.unit(1, "mm"),
  9420. form: "dragon",
  9421. },
  9422. {
  9423. name: "Tiny",
  9424. height: math.unit(1, "cm"),
  9425. form: "dragon",
  9426. },
  9427. {
  9428. name: "Micro",
  9429. height: math.unit(5, "cm"),
  9430. form: "dragon",
  9431. },
  9432. {
  9433. name: "Normal",
  9434. height: math.unit(75, "inches"),
  9435. form: "dragon",
  9436. default: true
  9437. },
  9438. {
  9439. name: "Extra Tall",
  9440. height: math.unit(9, "feet"),
  9441. form: "dragon",
  9442. },
  9443. {
  9444. name: "Inconvenient",
  9445. height: math.unit(5, "meters"),
  9446. form: "dragon",
  9447. },
  9448. {
  9449. name: "Macro",
  9450. height: math.unit(70, "meters"),
  9451. form: "dragon",
  9452. },
  9453. {
  9454. name: "Macro+",
  9455. height: math.unit(250, "meters"),
  9456. form: "dragon",
  9457. },
  9458. {
  9459. name: "Megamacro",
  9460. height: math.unit(20, "km"),
  9461. form: "dragon",
  9462. },
  9463. {
  9464. name: "Mountainous",
  9465. height: math.unit(100, "km"),
  9466. form: "dragon",
  9467. },
  9468. {
  9469. name: "Continental",
  9470. height: math.unit(2, "megameters"),
  9471. form: "dragon",
  9472. },
  9473. {
  9474. name: "Too Big",
  9475. height: math.unit(900, "megameters"),
  9476. form: "dragon",
  9477. },
  9478. ],
  9479. {
  9480. "kobold": {
  9481. name: "Kobold",
  9482. default: true
  9483. },
  9484. "dragon": {
  9485. name: "Dragon",
  9486. },
  9487. }
  9488. ))
  9489. characterMakers.push(() => makeCharacter(
  9490. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9491. {
  9492. lamp: {
  9493. height: math.unit(7 * 1559 / 989, "feet"),
  9494. name: "Magic Lamp",
  9495. image: {
  9496. source: "./media/characters/mira-al-cul/lamp.svg",
  9497. extra: 1617 / 1559
  9498. }
  9499. },
  9500. front: {
  9501. height: math.unit(7, "feet"),
  9502. name: "Front",
  9503. image: {
  9504. source: "./media/characters/mira-al-cul/front.svg",
  9505. extra: 1044 / 990
  9506. }
  9507. },
  9508. },
  9509. [
  9510. {
  9511. name: "Heavily Restricted",
  9512. height: math.unit(7 * 1559 / 989, "feet")
  9513. },
  9514. {
  9515. name: "Freshly Freed",
  9516. height: math.unit(50 * 1559 / 989, "feet")
  9517. },
  9518. {
  9519. name: "World Encompassing",
  9520. height: math.unit(10000 * 1559 / 989, "miles")
  9521. },
  9522. {
  9523. name: "Galactic",
  9524. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9525. },
  9526. {
  9527. name: "Palmed Universe",
  9528. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9529. default: true
  9530. },
  9531. {
  9532. name: "Multiversal Matriarch",
  9533. height: math.unit(8.87e10, "yottameters")
  9534. },
  9535. {
  9536. name: "Void Mother",
  9537. height: math.unit(3.14e110, "yottaparsecs")
  9538. },
  9539. {
  9540. name: "Toying with Transcendence",
  9541. height: math.unit(1e307, "meters")
  9542. },
  9543. ]
  9544. ))
  9545. characterMakers.push(() => makeCharacter(
  9546. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9547. {
  9548. front: {
  9549. height: math.unit(17 + 1 / 12, "feet"),
  9550. weight: math.unit(476.2 * 5, "lbs"),
  9551. name: "Front",
  9552. image: {
  9553. source: "./media/characters/kuro-shi-uchū/front.svg",
  9554. extra: 2329 / 1835,
  9555. bottom: 0.02
  9556. }
  9557. },
  9558. },
  9559. [
  9560. {
  9561. name: "Micro",
  9562. height: math.unit(2, "inches")
  9563. },
  9564. {
  9565. name: "Normal",
  9566. height: math.unit(12, "meters")
  9567. },
  9568. {
  9569. name: "Planetary",
  9570. height: math.unit(0.00929, "AU"),
  9571. default: true
  9572. },
  9573. {
  9574. name: "Universal",
  9575. height: math.unit(20, "gigaparsecs")
  9576. },
  9577. ]
  9578. ))
  9579. characterMakers.push(() => makeCharacter(
  9580. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9581. {
  9582. front: {
  9583. height: math.unit(5 + 2 / 12, "feet"),
  9584. weight: math.unit(120, "lbs"),
  9585. name: "Front",
  9586. image: {
  9587. source: "./media/characters/katherine/front.svg",
  9588. extra: 2075 / 1969
  9589. }
  9590. },
  9591. dress: {
  9592. height: math.unit(5 + 2 / 12, "feet"),
  9593. weight: math.unit(120, "lbs"),
  9594. name: "Dress",
  9595. image: {
  9596. source: "./media/characters/katherine/dress.svg",
  9597. extra: 2258 / 2064
  9598. }
  9599. },
  9600. },
  9601. [
  9602. {
  9603. name: "Micro",
  9604. height: math.unit(1, "inches"),
  9605. default: true
  9606. },
  9607. {
  9608. name: "Normal",
  9609. height: math.unit(5 + 2 / 12, "feet")
  9610. },
  9611. {
  9612. name: "Macro",
  9613. height: math.unit(100, "meters")
  9614. },
  9615. {
  9616. name: "Megamacro",
  9617. height: math.unit(80, "miles")
  9618. },
  9619. ]
  9620. ))
  9621. characterMakers.push(() => makeCharacter(
  9622. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9623. {
  9624. front: {
  9625. height: math.unit(7 + 8 / 12, "feet"),
  9626. weight: math.unit(250, "lbs"),
  9627. name: "Front",
  9628. image: {
  9629. source: "./media/characters/yevis/front.svg",
  9630. extra: 1938 / 1755
  9631. }
  9632. }
  9633. },
  9634. [
  9635. {
  9636. name: "Mortal",
  9637. height: math.unit(7 + 8 / 12, "feet")
  9638. },
  9639. {
  9640. name: "Battle",
  9641. height: math.unit(25 + 11 / 12, "feet")
  9642. },
  9643. {
  9644. name: "Wrath",
  9645. height: math.unit(1654 + 11 / 12, "feet")
  9646. },
  9647. {
  9648. name: "Planet Destroyer",
  9649. height: math.unit(12000, "miles")
  9650. },
  9651. {
  9652. name: "Galaxy Conqueror",
  9653. height: math.unit(1.45, "zettameters"),
  9654. default: true
  9655. },
  9656. {
  9657. name: "Universal War",
  9658. height: math.unit(184, "gigaparsecs")
  9659. },
  9660. {
  9661. name: "Eternity War",
  9662. height: math.unit(1.98e55, "yottaparsecs")
  9663. },
  9664. ]
  9665. ))
  9666. characterMakers.push(() => makeCharacter(
  9667. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9668. {
  9669. front: {
  9670. height: math.unit(5 + 8 / 12, "feet"),
  9671. weight: math.unit(63, "kg"),
  9672. name: "Front",
  9673. image: {
  9674. source: "./media/characters/xavier/front.svg",
  9675. extra: 944 / 883
  9676. }
  9677. },
  9678. frontStretch: {
  9679. height: math.unit(5 + 8 / 12, "feet"),
  9680. weight: math.unit(63, "kg"),
  9681. name: "Stretching",
  9682. image: {
  9683. source: "./media/characters/xavier/front-stretch.svg",
  9684. extra: 962 / 820
  9685. }
  9686. },
  9687. },
  9688. [
  9689. {
  9690. name: "Normal",
  9691. height: math.unit(5 + 8 / 12, "feet")
  9692. },
  9693. {
  9694. name: "Macro",
  9695. height: math.unit(100, "meters"),
  9696. default: true
  9697. },
  9698. {
  9699. name: "McLargeHuge",
  9700. height: math.unit(10, "miles")
  9701. },
  9702. ]
  9703. ))
  9704. characterMakers.push(() => makeCharacter(
  9705. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9706. {
  9707. front: {
  9708. height: math.unit(5 + 5 / 12, "feet"),
  9709. weight: math.unit(150, "lb"),
  9710. name: "Front",
  9711. image: {
  9712. source: "./media/characters/joshii/front.svg",
  9713. extra: 765 / 653,
  9714. bottom: 51 / 816
  9715. }
  9716. },
  9717. foot: {
  9718. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9719. name: "Foot",
  9720. image: {
  9721. source: "./media/characters/joshii/foot.svg"
  9722. }
  9723. },
  9724. },
  9725. [
  9726. {
  9727. name: "Micro",
  9728. height: math.unit(2, "inches")
  9729. },
  9730. {
  9731. name: "Normal",
  9732. height: math.unit(5 + 5 / 12, "feet")
  9733. },
  9734. {
  9735. name: "Macro",
  9736. height: math.unit(785, "feet"),
  9737. default: true
  9738. },
  9739. {
  9740. name: "Megamacro",
  9741. height: math.unit(24.5, "miles")
  9742. },
  9743. ]
  9744. ))
  9745. characterMakers.push(() => makeCharacter(
  9746. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9747. {
  9748. front: {
  9749. height: math.unit(6, "feet"),
  9750. weight: math.unit(150, "lb"),
  9751. name: "Front",
  9752. image: {
  9753. source: "./media/characters/goddess-elizabeth/front.svg",
  9754. extra: 1800 / 1525,
  9755. bottom: 0.005
  9756. }
  9757. },
  9758. foot: {
  9759. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9760. name: "Foot",
  9761. image: {
  9762. source: "./media/characters/goddess-elizabeth/foot.svg"
  9763. }
  9764. },
  9765. mouth: {
  9766. height: math.unit(6, "feet"),
  9767. name: "Mouth",
  9768. image: {
  9769. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9770. }
  9771. },
  9772. },
  9773. [
  9774. {
  9775. name: "Micro",
  9776. height: math.unit(12, "feet")
  9777. },
  9778. {
  9779. name: "Normal",
  9780. height: math.unit(80, "miles"),
  9781. default: true
  9782. },
  9783. {
  9784. name: "Macro",
  9785. height: math.unit(15000, "parsecs")
  9786. },
  9787. ]
  9788. ))
  9789. characterMakers.push(() => makeCharacter(
  9790. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9791. {
  9792. front: {
  9793. height: math.unit(5 + 9 / 12, "feet"),
  9794. weight: math.unit(144, "lb"),
  9795. name: "Front",
  9796. image: {
  9797. source: "./media/characters/kara/front.svg"
  9798. }
  9799. },
  9800. feet: {
  9801. height: math.unit(6 / 6.765, "feet"),
  9802. name: "Kara's Feet",
  9803. rename: true,
  9804. image: {
  9805. source: "./media/characters/kara/feet.svg"
  9806. }
  9807. },
  9808. },
  9809. [
  9810. {
  9811. name: "Normal",
  9812. height: math.unit(5 + 9 / 12, "feet")
  9813. },
  9814. {
  9815. name: "Macro",
  9816. height: math.unit(174, "feet"),
  9817. default: true
  9818. },
  9819. ]
  9820. ))
  9821. characterMakers.push(() => makeCharacter(
  9822. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9823. {
  9824. front: {
  9825. height: math.unit(18, "feet"),
  9826. weight: math.unit(4050, "lb"),
  9827. name: "Front",
  9828. image: {
  9829. source: "./media/characters/tyrone/front.svg",
  9830. extra: 2405 / 2270,
  9831. bottom: 182 / 2587
  9832. }
  9833. },
  9834. },
  9835. [
  9836. {
  9837. name: "Normal",
  9838. height: math.unit(18, "feet"),
  9839. default: true
  9840. },
  9841. {
  9842. name: "Macro",
  9843. height: math.unit(300, "feet")
  9844. },
  9845. {
  9846. name: "Megamacro",
  9847. height: math.unit(15, "km")
  9848. },
  9849. {
  9850. name: "Gigamacro",
  9851. height: math.unit(500, "km")
  9852. },
  9853. {
  9854. name: "Teramacro",
  9855. height: math.unit(0.5, "gigameters")
  9856. },
  9857. {
  9858. name: "Omnimacro",
  9859. height: math.unit(1e252, "yottauniverse")
  9860. },
  9861. ]
  9862. ))
  9863. characterMakers.push(() => makeCharacter(
  9864. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9865. {
  9866. front: {
  9867. height: math.unit(7 + 8 / 12, "feet"),
  9868. weight: math.unit(120, "lb"),
  9869. name: "Front",
  9870. image: {
  9871. source: "./media/characters/danny/front.svg",
  9872. extra: 1490 / 1350
  9873. }
  9874. },
  9875. back: {
  9876. height: math.unit(7 + 8 / 12, "feet"),
  9877. weight: math.unit(120, "lb"),
  9878. name: "Back",
  9879. image: {
  9880. source: "./media/characters/danny/back.svg",
  9881. extra: 1490 / 1350
  9882. }
  9883. },
  9884. },
  9885. [
  9886. {
  9887. name: "Normal",
  9888. height: math.unit(7 + 8 / 12, "feet"),
  9889. default: true
  9890. },
  9891. ]
  9892. ))
  9893. characterMakers.push(() => makeCharacter(
  9894. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9895. {
  9896. front: {
  9897. height: math.unit(3.5, "inches"),
  9898. weight: math.unit(19, "grams"),
  9899. name: "Front",
  9900. image: {
  9901. source: "./media/characters/mallow/front.svg",
  9902. extra: 471 / 431
  9903. }
  9904. },
  9905. back: {
  9906. height: math.unit(3.5, "inches"),
  9907. weight: math.unit(19, "grams"),
  9908. name: "Back",
  9909. image: {
  9910. source: "./media/characters/mallow/back.svg",
  9911. extra: 471 / 431
  9912. }
  9913. },
  9914. },
  9915. [
  9916. {
  9917. name: "Normal",
  9918. height: math.unit(3.5, "inches"),
  9919. default: true
  9920. },
  9921. ]
  9922. ))
  9923. characterMakers.push(() => makeCharacter(
  9924. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9925. {
  9926. front: {
  9927. height: math.unit(9, "feet"),
  9928. weight: math.unit(230, "kg"),
  9929. name: "Front",
  9930. image: {
  9931. source: "./media/characters/starry-aqua/front.svg"
  9932. }
  9933. },
  9934. back: {
  9935. height: math.unit(9, "feet"),
  9936. weight: math.unit(230, "kg"),
  9937. name: "Back",
  9938. image: {
  9939. source: "./media/characters/starry-aqua/back.svg"
  9940. }
  9941. },
  9942. hand: {
  9943. height: math.unit(9 * 0.1168, "feet"),
  9944. name: "Hand",
  9945. image: {
  9946. source: "./media/characters/starry-aqua/hand.svg"
  9947. }
  9948. },
  9949. foot: {
  9950. height: math.unit(9 * 0.18, "feet"),
  9951. name: "Foot",
  9952. image: {
  9953. source: "./media/characters/starry-aqua/foot.svg"
  9954. }
  9955. }
  9956. },
  9957. [
  9958. {
  9959. name: "Micro",
  9960. height: math.unit(3, "inches")
  9961. },
  9962. {
  9963. name: "Normal",
  9964. height: math.unit(9, "feet")
  9965. },
  9966. {
  9967. name: "Macro",
  9968. height: math.unit(300, "feet"),
  9969. default: true
  9970. },
  9971. {
  9972. name: "Megamacro",
  9973. height: math.unit(3200, "feet")
  9974. }
  9975. ]
  9976. ))
  9977. characterMakers.push(() => makeCharacter(
  9978. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9979. {
  9980. front: {
  9981. height: math.unit(15, "feet"),
  9982. weight: math.unit(5026, "lb"),
  9983. name: "Front",
  9984. image: {
  9985. source: "./media/characters/luka-towers/front.svg",
  9986. extra: 1269/1133,
  9987. bottom: 51/1320
  9988. }
  9989. },
  9990. },
  9991. [
  9992. {
  9993. name: "Normal",
  9994. height: math.unit(15, "feet"),
  9995. default: true
  9996. },
  9997. {
  9998. name: "Minimacro",
  9999. height: math.unit(25, "feet")
  10000. },
  10001. {
  10002. name: "Macro",
  10003. height: math.unit(320, "feet")
  10004. },
  10005. {
  10006. name: "Megamacro",
  10007. height: math.unit(35000, "feet")
  10008. },
  10009. {
  10010. name: "Gigamacro",
  10011. height: math.unit(4000, "miles")
  10012. },
  10013. {
  10014. name: "Teramacro",
  10015. height: math.unit(15000, "miles")
  10016. },
  10017. ]
  10018. ))
  10019. characterMakers.push(() => makeCharacter(
  10020. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10021. {
  10022. front: {
  10023. height: math.unit(6, "feet"),
  10024. weight: math.unit(150, "lb"),
  10025. name: "Front",
  10026. image: {
  10027. source: "./media/characters/natalie-nightring/front.svg",
  10028. extra: 1,
  10029. bottom: 0.06
  10030. }
  10031. },
  10032. },
  10033. [
  10034. {
  10035. name: "Uh Oh",
  10036. height: math.unit(0.1, "mm")
  10037. },
  10038. {
  10039. name: "Small",
  10040. height: math.unit(3, "inches")
  10041. },
  10042. {
  10043. name: "Human Scale",
  10044. height: math.unit(6, "feet")
  10045. },
  10046. {
  10047. name: "Librarian",
  10048. height: math.unit(50, "feet"),
  10049. default: true
  10050. },
  10051. {
  10052. name: "Immense",
  10053. height: math.unit(200, "miles")
  10054. },
  10055. ]
  10056. ))
  10057. characterMakers.push(() => makeCharacter(
  10058. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10059. {
  10060. front: {
  10061. height: math.unit(6, "feet"),
  10062. weight: math.unit(180, "lbs"),
  10063. name: "Front",
  10064. image: {
  10065. source: "./media/characters/danni-rosie/front.svg",
  10066. extra: 1260 / 1128,
  10067. bottom: 0.022
  10068. }
  10069. },
  10070. },
  10071. [
  10072. {
  10073. name: "Micro",
  10074. height: math.unit(2, "inches"),
  10075. default: true
  10076. },
  10077. ]
  10078. ))
  10079. characterMakers.push(() => makeCharacter(
  10080. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10081. {
  10082. front: {
  10083. height: math.unit(5 + 9 / 12, "feet"),
  10084. weight: math.unit(220, "lb"),
  10085. name: "Front",
  10086. image: {
  10087. source: "./media/characters/samantha-kruse/front.svg",
  10088. extra: (985 / 935),
  10089. bottom: 0.03
  10090. }
  10091. },
  10092. frontUndressed: {
  10093. height: math.unit(5 + 9 / 12, "feet"),
  10094. weight: math.unit(220, "lb"),
  10095. name: "Front (Undressed)",
  10096. image: {
  10097. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10098. extra: (973 / 923),
  10099. bottom: 0.025
  10100. }
  10101. },
  10102. fat: {
  10103. height: math.unit(5 + 9 / 12, "feet"),
  10104. weight: math.unit(900, "lb"),
  10105. name: "Front (Fat)",
  10106. image: {
  10107. source: "./media/characters/samantha-kruse/fat.svg",
  10108. extra: 2688 / 2561
  10109. }
  10110. },
  10111. },
  10112. [
  10113. {
  10114. name: "Normal",
  10115. height: math.unit(5 + 9 / 12, "feet"),
  10116. default: true
  10117. }
  10118. ]
  10119. ))
  10120. characterMakers.push(() => makeCharacter(
  10121. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10122. {
  10123. back: {
  10124. height: math.unit(5 + 4 / 12, "feet"),
  10125. weight: math.unit(4963, "lb"),
  10126. name: "Back",
  10127. image: {
  10128. source: "./media/characters/amelia-rosie/back.svg",
  10129. extra: 1113 / 963,
  10130. bottom: 0.01
  10131. }
  10132. },
  10133. },
  10134. [
  10135. {
  10136. name: "Level 0",
  10137. height: math.unit(5 + 4 / 12, "feet")
  10138. },
  10139. {
  10140. name: "Level 1",
  10141. height: math.unit(164597, "feet"),
  10142. default: true
  10143. },
  10144. {
  10145. name: "Level 2",
  10146. height: math.unit(956243, "miles")
  10147. },
  10148. {
  10149. name: "Level 3",
  10150. height: math.unit(29421709423, "miles")
  10151. },
  10152. {
  10153. name: "Level 4",
  10154. height: math.unit(154, "lightyears")
  10155. },
  10156. {
  10157. name: "Level 5",
  10158. height: math.unit(4738272, "lightyears")
  10159. },
  10160. {
  10161. name: "Level 6",
  10162. height: math.unit(145787152896, "lightyears")
  10163. },
  10164. ]
  10165. ))
  10166. characterMakers.push(() => makeCharacter(
  10167. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10168. {
  10169. front: {
  10170. height: math.unit(5 + 11 / 12, "feet"),
  10171. weight: math.unit(65, "kg"),
  10172. name: "Front",
  10173. image: {
  10174. source: "./media/characters/rook-kitara/front.svg",
  10175. extra: 1347 / 1274,
  10176. bottom: 0.005
  10177. }
  10178. },
  10179. },
  10180. [
  10181. {
  10182. name: "Totally Unfair",
  10183. height: math.unit(1.8, "mm")
  10184. },
  10185. {
  10186. name: "Lap Rookie",
  10187. height: math.unit(1.4, "feet")
  10188. },
  10189. {
  10190. name: "Normal",
  10191. height: math.unit(5 + 11 / 12, "feet"),
  10192. default: true
  10193. },
  10194. {
  10195. name: "How Did This Happen",
  10196. height: math.unit(80, "miles")
  10197. }
  10198. ]
  10199. ))
  10200. characterMakers.push(() => makeCharacter(
  10201. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10202. {
  10203. front: {
  10204. height: math.unit(7, "feet"),
  10205. weight: math.unit(300, "lb"),
  10206. name: "Front",
  10207. image: {
  10208. source: "./media/characters/pisces/front.svg",
  10209. extra: 2255 / 2115,
  10210. bottom: 0.03
  10211. }
  10212. },
  10213. back: {
  10214. height: math.unit(7, "feet"),
  10215. weight: math.unit(300, "lb"),
  10216. name: "Back",
  10217. image: {
  10218. source: "./media/characters/pisces/back.svg",
  10219. extra: 2146 / 2055,
  10220. bottom: 0.04
  10221. }
  10222. },
  10223. },
  10224. [
  10225. {
  10226. name: "Normal",
  10227. height: math.unit(7, "feet"),
  10228. default: true
  10229. },
  10230. {
  10231. name: "Swimming Pool",
  10232. height: math.unit(12.2, "meters")
  10233. },
  10234. {
  10235. name: "Olympic Swimming Pool",
  10236. height: math.unit(56.3, "meters")
  10237. },
  10238. {
  10239. name: "Lake Superior",
  10240. height: math.unit(93900, "meters")
  10241. },
  10242. {
  10243. name: "Mediterranean Sea",
  10244. height: math.unit(644457, "meters")
  10245. },
  10246. {
  10247. name: "World's Oceans",
  10248. height: math.unit(4567491, "meters")
  10249. },
  10250. ]
  10251. ))
  10252. characterMakers.push(() => makeCharacter(
  10253. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10254. {
  10255. front: {
  10256. height: math.unit(2.3, "meters"),
  10257. weight: math.unit(120, "kg"),
  10258. name: "Front",
  10259. image: {
  10260. source: "./media/characters/zelas/front.svg"
  10261. }
  10262. },
  10263. side: {
  10264. height: math.unit(2.3, "meters"),
  10265. weight: math.unit(120, "kg"),
  10266. name: "Side",
  10267. image: {
  10268. source: "./media/characters/zelas/side.svg"
  10269. }
  10270. },
  10271. back: {
  10272. height: math.unit(2.3, "meters"),
  10273. weight: math.unit(120, "kg"),
  10274. name: "Back",
  10275. image: {
  10276. source: "./media/characters/zelas/back.svg"
  10277. }
  10278. },
  10279. foot: {
  10280. height: math.unit(1.116, "feet"),
  10281. name: "Foot",
  10282. image: {
  10283. source: "./media/characters/zelas/foot.svg"
  10284. }
  10285. },
  10286. },
  10287. [
  10288. {
  10289. name: "Normal",
  10290. height: math.unit(2.3, "meters")
  10291. },
  10292. {
  10293. name: "Macro",
  10294. height: math.unit(30, "meters"),
  10295. default: true
  10296. },
  10297. ]
  10298. ))
  10299. characterMakers.push(() => makeCharacter(
  10300. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10301. {
  10302. front: {
  10303. height: math.unit(1, "inch"),
  10304. weight: math.unit(0.21, "grams"),
  10305. name: "Front",
  10306. image: {
  10307. source: "./media/characters/talbot/front.svg",
  10308. extra: 594 / 544
  10309. }
  10310. },
  10311. },
  10312. [
  10313. {
  10314. name: "Micro",
  10315. height: math.unit(1, "inch"),
  10316. default: true
  10317. },
  10318. ]
  10319. ))
  10320. characterMakers.push(() => makeCharacter(
  10321. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10322. {
  10323. front: {
  10324. height: math.unit(3 + 3 / 12, "feet"),
  10325. weight: math.unit(51.8, "lb"),
  10326. name: "Front",
  10327. image: {
  10328. source: "./media/characters/fliss/front.svg",
  10329. extra: 840 / 640
  10330. }
  10331. },
  10332. },
  10333. [
  10334. {
  10335. name: "Teeny Tiny",
  10336. height: math.unit(1, "mm")
  10337. },
  10338. {
  10339. name: "Small",
  10340. height: math.unit(1, "inch"),
  10341. default: true
  10342. },
  10343. {
  10344. name: "Standard Sylveon",
  10345. height: math.unit(3 + 3 / 12, "feet")
  10346. },
  10347. {
  10348. name: "Large Nuisance",
  10349. height: math.unit(33, "feet")
  10350. },
  10351. {
  10352. name: "City Filler",
  10353. height: math.unit(3000, "feet")
  10354. },
  10355. {
  10356. name: "New Horizon",
  10357. height: math.unit(6000, "miles")
  10358. },
  10359. ]
  10360. ))
  10361. characterMakers.push(() => makeCharacter(
  10362. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10363. {
  10364. front: {
  10365. height: math.unit(5, "cm"),
  10366. weight: math.unit(1.94, "g"),
  10367. name: "Front",
  10368. image: {
  10369. source: "./media/characters/fleta/front.svg",
  10370. extra: 835 / 803
  10371. }
  10372. },
  10373. back: {
  10374. height: math.unit(5, "cm"),
  10375. weight: math.unit(1.94, "g"),
  10376. name: "Back",
  10377. image: {
  10378. source: "./media/characters/fleta/back.svg",
  10379. extra: 835 / 803
  10380. }
  10381. },
  10382. },
  10383. [
  10384. {
  10385. name: "Micro",
  10386. height: math.unit(5, "cm"),
  10387. default: true
  10388. },
  10389. ]
  10390. ))
  10391. characterMakers.push(() => makeCharacter(
  10392. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10393. {
  10394. front: {
  10395. height: math.unit(6, "feet"),
  10396. weight: math.unit(225, "lb"),
  10397. name: "Front",
  10398. image: {
  10399. source: "./media/characters/dominic/front.svg",
  10400. extra: 1770 / 1620,
  10401. bottom: 0.025
  10402. }
  10403. },
  10404. back: {
  10405. height: math.unit(6, "feet"),
  10406. weight: math.unit(225, "lb"),
  10407. name: "Back",
  10408. image: {
  10409. source: "./media/characters/dominic/back.svg",
  10410. extra: 1745 / 1620,
  10411. bottom: 0.065
  10412. }
  10413. },
  10414. },
  10415. [
  10416. {
  10417. name: "Nano",
  10418. height: math.unit(0.1, "mm")
  10419. },
  10420. {
  10421. name: "Micro-",
  10422. height: math.unit(1, "mm")
  10423. },
  10424. {
  10425. name: "Micro",
  10426. height: math.unit(4, "inches")
  10427. },
  10428. {
  10429. name: "Normal",
  10430. height: math.unit(6 + 4 / 12, "feet"),
  10431. default: true
  10432. },
  10433. {
  10434. name: "Macro",
  10435. height: math.unit(115, "feet")
  10436. },
  10437. {
  10438. name: "Macro+",
  10439. height: math.unit(955, "feet")
  10440. },
  10441. {
  10442. name: "Megamacro",
  10443. height: math.unit(8990, "feet")
  10444. },
  10445. {
  10446. name: "Gigmacro",
  10447. height: math.unit(9310, "miles")
  10448. },
  10449. {
  10450. name: "Teramacro",
  10451. height: math.unit(1567005010, "miles")
  10452. },
  10453. {
  10454. name: "Examacro",
  10455. height: math.unit(1425, "parsecs")
  10456. },
  10457. ]
  10458. ))
  10459. characterMakers.push(() => makeCharacter(
  10460. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10461. {
  10462. front: {
  10463. height: math.unit(400, "feet"),
  10464. weight: math.unit(44444444, "lb"),
  10465. name: "Front",
  10466. image: {
  10467. source: "./media/characters/major-colonel/front.svg"
  10468. }
  10469. },
  10470. back: {
  10471. height: math.unit(400, "feet"),
  10472. weight: math.unit(44444444, "lb"),
  10473. name: "Back",
  10474. image: {
  10475. source: "./media/characters/major-colonel/back.svg"
  10476. }
  10477. },
  10478. },
  10479. [
  10480. {
  10481. name: "Macro",
  10482. height: math.unit(400, "feet"),
  10483. default: true
  10484. },
  10485. ]
  10486. ))
  10487. characterMakers.push(() => makeCharacter(
  10488. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10489. {
  10490. catFront: {
  10491. height: math.unit(6, "feet"),
  10492. weight: math.unit(120, "lb"),
  10493. name: "Front (Cat Side)",
  10494. image: {
  10495. source: "./media/characters/axel-lycan/cat-front.svg",
  10496. extra: 430 / 402,
  10497. bottom: 43 / 472.35
  10498. }
  10499. },
  10500. catBack: {
  10501. height: math.unit(6, "feet"),
  10502. weight: math.unit(120, "lb"),
  10503. name: "Back (Cat Side)",
  10504. image: {
  10505. source: "./media/characters/axel-lycan/cat-back.svg",
  10506. extra: 447 / 419,
  10507. bottom: 23.3 / 469
  10508. }
  10509. },
  10510. wolfFront: {
  10511. height: math.unit(6, "feet"),
  10512. weight: math.unit(120, "lb"),
  10513. name: "Front (Wolf Side)",
  10514. image: {
  10515. source: "./media/characters/axel-lycan/wolf-front.svg",
  10516. extra: 485 / 456,
  10517. bottom: 19 / 504
  10518. }
  10519. },
  10520. wolfBack: {
  10521. height: math.unit(6, "feet"),
  10522. weight: math.unit(120, "lb"),
  10523. name: "Back (Wolf Side)",
  10524. image: {
  10525. source: "./media/characters/axel-lycan/wolf-back.svg",
  10526. extra: 475 / 438,
  10527. bottom: 39.2 / 514
  10528. }
  10529. },
  10530. },
  10531. [
  10532. {
  10533. name: "Macro",
  10534. height: math.unit(1, "km"),
  10535. default: true
  10536. },
  10537. ]
  10538. ))
  10539. characterMakers.push(() => makeCharacter(
  10540. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10541. {
  10542. front: {
  10543. height: math.unit(5 + 9 / 12, "feet"),
  10544. weight: math.unit(175, "lb"),
  10545. name: "Front",
  10546. image: {
  10547. source: "./media/characters/vanrel-hyena/front.svg",
  10548. extra: 1086 / 1010,
  10549. bottom: 0.04
  10550. }
  10551. },
  10552. },
  10553. [
  10554. {
  10555. name: "Normal",
  10556. height: math.unit(5 + 9 / 12, "feet"),
  10557. default: true
  10558. },
  10559. ]
  10560. ))
  10561. characterMakers.push(() => makeCharacter(
  10562. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10563. {
  10564. front: {
  10565. height: math.unit(6, "feet"),
  10566. weight: math.unit(103, "lb"),
  10567. name: "Front",
  10568. image: {
  10569. source: "./media/characters/abbott-absol/front.svg",
  10570. extra: 2010 / 1842
  10571. }
  10572. },
  10573. },
  10574. [
  10575. {
  10576. name: "Megamicro",
  10577. height: math.unit(0.1, "mm")
  10578. },
  10579. {
  10580. name: "Micro",
  10581. height: math.unit(1, "inch")
  10582. },
  10583. {
  10584. name: "Normal",
  10585. height: math.unit(6, "feet"),
  10586. default: true
  10587. },
  10588. ]
  10589. ))
  10590. characterMakers.push(() => makeCharacter(
  10591. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10592. {
  10593. front: {
  10594. height: math.unit(6, "feet"),
  10595. weight: math.unit(264, "lb"),
  10596. name: "Front",
  10597. image: {
  10598. source: "./media/characters/hector/front.svg",
  10599. extra: 2280 / 2130,
  10600. bottom: 0.07
  10601. }
  10602. },
  10603. },
  10604. [
  10605. {
  10606. name: "Normal",
  10607. height: math.unit(12.25, "foot"),
  10608. default: true
  10609. },
  10610. {
  10611. name: "Macro",
  10612. height: math.unit(160, "feet")
  10613. },
  10614. ]
  10615. ))
  10616. characterMakers.push(() => makeCharacter(
  10617. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10618. {
  10619. front: {
  10620. height: math.unit(6, "feet"),
  10621. weight: math.unit(150, "lb"),
  10622. name: "Front",
  10623. image: {
  10624. source: "./media/characters/sal/front.svg",
  10625. extra: 1846 / 1699,
  10626. bottom: 0.04
  10627. }
  10628. },
  10629. },
  10630. [
  10631. {
  10632. name: "Megamacro",
  10633. height: math.unit(10, "miles"),
  10634. default: true
  10635. },
  10636. ]
  10637. ))
  10638. characterMakers.push(() => makeCharacter(
  10639. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10640. {
  10641. front: {
  10642. height: math.unit(3, "meters"),
  10643. weight: math.unit(450, "kg"),
  10644. name: "front",
  10645. image: {
  10646. source: "./media/characters/ranger/front.svg",
  10647. extra: 2401 / 2243,
  10648. bottom: 0.05
  10649. }
  10650. },
  10651. },
  10652. [
  10653. {
  10654. name: "Normal",
  10655. height: math.unit(3, "meters"),
  10656. default: true
  10657. },
  10658. ]
  10659. ))
  10660. characterMakers.push(() => makeCharacter(
  10661. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10662. {
  10663. front: {
  10664. height: math.unit(14, "feet"),
  10665. weight: math.unit(800, "kg"),
  10666. name: "Front",
  10667. image: {
  10668. source: "./media/characters/theresa/front.svg",
  10669. extra: 3575 / 3346,
  10670. bottom: 0.03
  10671. }
  10672. },
  10673. },
  10674. [
  10675. {
  10676. name: "Normal",
  10677. height: math.unit(14, "feet"),
  10678. default: true
  10679. },
  10680. ]
  10681. ))
  10682. characterMakers.push(() => makeCharacter(
  10683. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10684. {
  10685. front: {
  10686. height: math.unit(6, "feet"),
  10687. weight: math.unit(3, "kg"),
  10688. name: "Front",
  10689. image: {
  10690. source: "./media/characters/ine/front.svg",
  10691. extra: 678 / 539,
  10692. bottom: 0.023
  10693. }
  10694. },
  10695. },
  10696. [
  10697. {
  10698. name: "Normal",
  10699. height: math.unit(2.265, "feet"),
  10700. default: true
  10701. },
  10702. ]
  10703. ))
  10704. characterMakers.push(() => makeCharacter(
  10705. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10706. {
  10707. front: {
  10708. height: math.unit(5, "feet"),
  10709. weight: math.unit(30, "kg"),
  10710. name: "Front",
  10711. image: {
  10712. source: "./media/characters/vial/front.svg",
  10713. extra: 1365 / 1277,
  10714. bottom: 0.04
  10715. }
  10716. },
  10717. },
  10718. [
  10719. {
  10720. name: "Normal",
  10721. height: math.unit(5, "feet"),
  10722. default: true
  10723. },
  10724. ]
  10725. ))
  10726. characterMakers.push(() => makeCharacter(
  10727. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10728. {
  10729. side: {
  10730. height: math.unit(3.4, "meters"),
  10731. weight: math.unit(1000, "lb"),
  10732. name: "Side",
  10733. image: {
  10734. source: "./media/characters/rovoska/side.svg",
  10735. extra: 4403 / 1515
  10736. }
  10737. },
  10738. },
  10739. [
  10740. {
  10741. name: "Normal",
  10742. height: math.unit(3.4, "meters"),
  10743. default: true
  10744. },
  10745. ]
  10746. ))
  10747. characterMakers.push(() => makeCharacter(
  10748. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10749. {
  10750. front: {
  10751. height: math.unit(8, "feet"),
  10752. weight: math.unit(315, "lb"),
  10753. name: "Front",
  10754. image: {
  10755. source: "./media/characters/gunner-rotthbauer/front.svg"
  10756. }
  10757. },
  10758. back: {
  10759. height: math.unit(8, "feet"),
  10760. weight: math.unit(315, "lb"),
  10761. name: "Back",
  10762. image: {
  10763. source: "./media/characters/gunner-rotthbauer/back.svg"
  10764. }
  10765. },
  10766. },
  10767. [
  10768. {
  10769. name: "Micro",
  10770. height: math.unit(3.5, "inches")
  10771. },
  10772. {
  10773. name: "Normal",
  10774. height: math.unit(8, "feet"),
  10775. default: true
  10776. },
  10777. {
  10778. name: "Macro",
  10779. height: math.unit(250, "feet")
  10780. },
  10781. {
  10782. name: "Megamacro",
  10783. height: math.unit(1, "AU")
  10784. },
  10785. ]
  10786. ))
  10787. characterMakers.push(() => makeCharacter(
  10788. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10789. {
  10790. front: {
  10791. height: math.unit(5 + 5 / 12, "feet"),
  10792. weight: math.unit(140, "lb"),
  10793. name: "Front",
  10794. image: {
  10795. source: "./media/characters/allatia/front.svg",
  10796. extra: 1227 / 1180,
  10797. bottom: 0.027
  10798. }
  10799. },
  10800. },
  10801. [
  10802. {
  10803. name: "Normal",
  10804. height: math.unit(5 + 5 / 12, "feet")
  10805. },
  10806. {
  10807. name: "Macro",
  10808. height: math.unit(250, "feet"),
  10809. default: true
  10810. },
  10811. {
  10812. name: "Megamacro",
  10813. height: math.unit(8, "miles")
  10814. }
  10815. ]
  10816. ))
  10817. characterMakers.push(() => makeCharacter(
  10818. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10819. {
  10820. front: {
  10821. height: math.unit(6, "feet"),
  10822. weight: math.unit(120, "lb"),
  10823. name: "Front",
  10824. image: {
  10825. source: "./media/characters/tene/front.svg",
  10826. extra: 814/750,
  10827. bottom: 36/850
  10828. }
  10829. },
  10830. stomping: {
  10831. height: math.unit(2.025, "meters"),
  10832. weight: math.unit(120, "lb"),
  10833. name: "Stomping",
  10834. image: {
  10835. source: "./media/characters/tene/stomping.svg",
  10836. extra: 885/821,
  10837. bottom: 15/900
  10838. }
  10839. },
  10840. sitting: {
  10841. height: math.unit(1, "meter"),
  10842. weight: math.unit(120, "lb"),
  10843. name: "Sitting",
  10844. image: {
  10845. source: "./media/characters/tene/sitting.svg",
  10846. extra: 396/366,
  10847. bottom: 79/475
  10848. }
  10849. },
  10850. smiling: {
  10851. height: math.unit(1.2, "feet"),
  10852. name: "Smiling",
  10853. image: {
  10854. source: "./media/characters/tene/smiling.svg",
  10855. extra: 1364/1071,
  10856. bottom: 0/1364
  10857. }
  10858. },
  10859. smug: {
  10860. height: math.unit(1.3, "feet"),
  10861. name: "Smug",
  10862. image: {
  10863. source: "./media/characters/tene/smug.svg",
  10864. extra: 1323/1082,
  10865. bottom: 0/1323
  10866. }
  10867. },
  10868. feral: {
  10869. height: math.unit(3.9, "feet"),
  10870. weight: math.unit(250, "lb"),
  10871. name: "Feral",
  10872. image: {
  10873. source: "./media/characters/tene/feral.svg",
  10874. extra: 717 / 458,
  10875. bottom: 0.179
  10876. }
  10877. },
  10878. },
  10879. [
  10880. {
  10881. name: "Normal",
  10882. height: math.unit(6, "feet")
  10883. },
  10884. {
  10885. name: "Macro",
  10886. height: math.unit(300, "feet"),
  10887. default: true
  10888. },
  10889. {
  10890. name: "Megamacro",
  10891. height: math.unit(5, "miles")
  10892. },
  10893. ]
  10894. ))
  10895. characterMakers.push(() => makeCharacter(
  10896. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10897. {
  10898. side: {
  10899. height: math.unit(6, "feet"),
  10900. name: "Side",
  10901. image: {
  10902. source: "./media/characters/evander/side.svg",
  10903. extra: 877 / 477
  10904. }
  10905. },
  10906. },
  10907. [
  10908. {
  10909. name: "Normal",
  10910. height: math.unit(0.83, "meters"),
  10911. default: true
  10912. },
  10913. ]
  10914. ))
  10915. characterMakers.push(() => makeCharacter(
  10916. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10917. {
  10918. front: {
  10919. height: math.unit(12, "feet"),
  10920. weight: math.unit(1000, "lb"),
  10921. name: "Front",
  10922. image: {
  10923. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10924. extra: 1762 / 1611
  10925. }
  10926. },
  10927. back: {
  10928. height: math.unit(12, "feet"),
  10929. weight: math.unit(1000, "lb"),
  10930. name: "Back",
  10931. image: {
  10932. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10933. extra: 1762 / 1611
  10934. }
  10935. },
  10936. },
  10937. [
  10938. {
  10939. name: "Normal",
  10940. height: math.unit(12, "feet"),
  10941. default: true
  10942. },
  10943. {
  10944. name: "Kaiju",
  10945. height: math.unit(150, "feet")
  10946. },
  10947. ]
  10948. ))
  10949. characterMakers.push(() => makeCharacter(
  10950. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10951. {
  10952. front: {
  10953. height: math.unit(6, "feet"),
  10954. weight: math.unit(150, "lb"),
  10955. name: "Front",
  10956. image: {
  10957. source: "./media/characters/zero-alurus/front.svg"
  10958. }
  10959. },
  10960. back: {
  10961. height: math.unit(6, "feet"),
  10962. weight: math.unit(150, "lb"),
  10963. name: "Back",
  10964. image: {
  10965. source: "./media/characters/zero-alurus/back.svg"
  10966. }
  10967. },
  10968. },
  10969. [
  10970. {
  10971. name: "Normal",
  10972. height: math.unit(5 + 10 / 12, "feet")
  10973. },
  10974. {
  10975. name: "Macro",
  10976. height: math.unit(60, "feet"),
  10977. default: true
  10978. },
  10979. {
  10980. name: "Macro+",
  10981. height: math.unit(450, "feet")
  10982. },
  10983. ]
  10984. ))
  10985. characterMakers.push(() => makeCharacter(
  10986. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10987. {
  10988. front: {
  10989. height: math.unit(6, "feet"),
  10990. weight: math.unit(200, "lb"),
  10991. name: "Front",
  10992. image: {
  10993. source: "./media/characters/mega-shi/front.svg",
  10994. extra: 1279 / 1250,
  10995. bottom: 0.02
  10996. }
  10997. },
  10998. back: {
  10999. height: math.unit(6, "feet"),
  11000. weight: math.unit(200, "lb"),
  11001. name: "Back",
  11002. image: {
  11003. source: "./media/characters/mega-shi/back.svg",
  11004. extra: 1279 / 1250,
  11005. bottom: 0.02
  11006. }
  11007. },
  11008. },
  11009. [
  11010. {
  11011. name: "Micro",
  11012. height: math.unit(16 + 6 / 12, "feet")
  11013. },
  11014. {
  11015. name: "Third Dimension",
  11016. height: math.unit(40, "meters")
  11017. },
  11018. {
  11019. name: "Normal",
  11020. height: math.unit(660, "feet"),
  11021. default: true
  11022. },
  11023. {
  11024. name: "Megamacro",
  11025. height: math.unit(10, "miles")
  11026. },
  11027. {
  11028. name: "Planetary Launch",
  11029. height: math.unit(500, "miles")
  11030. },
  11031. {
  11032. name: "Interstellar",
  11033. height: math.unit(1e9, "miles")
  11034. },
  11035. {
  11036. name: "Leaving the Universe",
  11037. height: math.unit(1, "gigaparsec")
  11038. },
  11039. {
  11040. name: "Travelling Universes",
  11041. height: math.unit(30e15, "parsecs")
  11042. },
  11043. ]
  11044. ))
  11045. characterMakers.push(() => makeCharacter(
  11046. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11047. {
  11048. front: {
  11049. height: math.unit(5 + 4/12, "feet"),
  11050. weight: math.unit(120, "lb"),
  11051. name: "Front",
  11052. image: {
  11053. source: "./media/characters/odyssey/front.svg",
  11054. extra: 1747/1571,
  11055. bottom: 47/1794
  11056. }
  11057. },
  11058. side: {
  11059. height: math.unit(5.1, "feet"),
  11060. weight: math.unit(120, "lb"),
  11061. name: "Side",
  11062. image: {
  11063. source: "./media/characters/odyssey/side.svg",
  11064. extra: 1847/1619,
  11065. bottom: 47/1894
  11066. }
  11067. },
  11068. lounging: {
  11069. height: math.unit(1.464, "feet"),
  11070. weight: math.unit(120, "lb"),
  11071. name: "Lounging",
  11072. image: {
  11073. source: "./media/characters/odyssey/lounging.svg",
  11074. extra: 1235/837,
  11075. bottom: 551/1786
  11076. }
  11077. },
  11078. },
  11079. [
  11080. {
  11081. name: "Normal",
  11082. height: math.unit(5 + 4 / 12, "feet")
  11083. },
  11084. {
  11085. name: "Macro",
  11086. height: math.unit(1, "km")
  11087. },
  11088. {
  11089. name: "Megamacro",
  11090. height: math.unit(3000, "km")
  11091. },
  11092. {
  11093. name: "Gigamacro",
  11094. height: math.unit(1, "AU"),
  11095. default: true
  11096. },
  11097. {
  11098. name: "Omniversal",
  11099. height: math.unit(100e14, "lightyears")
  11100. },
  11101. ]
  11102. ))
  11103. characterMakers.push(() => makeCharacter(
  11104. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11105. {
  11106. front: {
  11107. height: math.unit(6, "feet"),
  11108. weight: math.unit(300, "lb"),
  11109. name: "Front",
  11110. image: {
  11111. source: "./media/characters/mekuto/front.svg",
  11112. extra: 921 / 832,
  11113. bottom: 0.03
  11114. }
  11115. },
  11116. hand: {
  11117. height: math.unit(6 / 10.24, "feet"),
  11118. name: "Hand",
  11119. image: {
  11120. source: "./media/characters/mekuto/hand.svg"
  11121. }
  11122. },
  11123. foot: {
  11124. height: math.unit(6 / 5.05, "feet"),
  11125. name: "Foot",
  11126. image: {
  11127. source: "./media/characters/mekuto/foot.svg"
  11128. }
  11129. },
  11130. },
  11131. [
  11132. {
  11133. name: "Minimicro",
  11134. height: math.unit(0.2, "inches")
  11135. },
  11136. {
  11137. name: "Micro",
  11138. height: math.unit(1.5, "inches")
  11139. },
  11140. {
  11141. name: "Normal",
  11142. height: math.unit(5 + 11 / 12, "feet"),
  11143. default: true
  11144. },
  11145. {
  11146. name: "Minimacro",
  11147. height: math.unit(17 + 9 / 12, "feet")
  11148. },
  11149. {
  11150. name: "Macro",
  11151. height: math.unit(177.5, "feet")
  11152. },
  11153. {
  11154. name: "Megamacro",
  11155. height: math.unit(152, "miles")
  11156. },
  11157. ]
  11158. ))
  11159. characterMakers.push(() => makeCharacter(
  11160. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11161. {
  11162. front: {
  11163. height: math.unit(6.5, "inches"),
  11164. weight: math.unit(13, "oz"),
  11165. name: "Front",
  11166. image: {
  11167. source: "./media/characters/dafydd-tomos/front.svg",
  11168. extra: 2990 / 2603,
  11169. bottom: 0.03
  11170. }
  11171. },
  11172. },
  11173. [
  11174. {
  11175. name: "Micro",
  11176. height: math.unit(6.5, "inches"),
  11177. default: true
  11178. },
  11179. ]
  11180. ))
  11181. characterMakers.push(() => makeCharacter(
  11182. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11183. {
  11184. front: {
  11185. height: math.unit(6, "feet"),
  11186. weight: math.unit(150, "lb"),
  11187. name: "Front",
  11188. image: {
  11189. source: "./media/characters/splinter/front.svg",
  11190. extra: 2990 / 2882,
  11191. bottom: 0.04
  11192. }
  11193. },
  11194. back: {
  11195. height: math.unit(6, "feet"),
  11196. weight: math.unit(150, "lb"),
  11197. name: "Back",
  11198. image: {
  11199. source: "./media/characters/splinter/back.svg",
  11200. extra: 2990 / 2882,
  11201. bottom: 0.04
  11202. }
  11203. },
  11204. },
  11205. [
  11206. {
  11207. name: "Normal",
  11208. height: math.unit(6, "feet")
  11209. },
  11210. {
  11211. name: "Macro",
  11212. height: math.unit(230, "meters"),
  11213. default: true
  11214. },
  11215. ]
  11216. ))
  11217. characterMakers.push(() => makeCharacter(
  11218. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11219. {
  11220. front: {
  11221. height: math.unit(4 + 10 / 12, "feet"),
  11222. weight: math.unit(480, "lb"),
  11223. name: "Front",
  11224. image: {
  11225. source: "./media/characters/snow-gabumon/front.svg",
  11226. extra: 1140 / 963,
  11227. bottom: 0.058
  11228. }
  11229. },
  11230. back: {
  11231. height: math.unit(4 + 10 / 12, "feet"),
  11232. weight: math.unit(480, "lb"),
  11233. name: "Back",
  11234. image: {
  11235. source: "./media/characters/snow-gabumon/back.svg",
  11236. extra: 1115 / 962,
  11237. bottom: 0.041
  11238. }
  11239. },
  11240. frontUndresed: {
  11241. height: math.unit(4 + 10 / 12, "feet"),
  11242. weight: math.unit(480, "lb"),
  11243. name: "Front (Undressed)",
  11244. image: {
  11245. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11246. extra: 1061 / 960,
  11247. bottom: 0.045
  11248. }
  11249. },
  11250. },
  11251. [
  11252. {
  11253. name: "Micro",
  11254. height: math.unit(1, "inch")
  11255. },
  11256. {
  11257. name: "Normal",
  11258. height: math.unit(4 + 10 / 12, "feet"),
  11259. default: true
  11260. },
  11261. {
  11262. name: "Macro",
  11263. height: math.unit(200, "feet")
  11264. },
  11265. {
  11266. name: "Megamacro",
  11267. height: math.unit(120, "miles")
  11268. },
  11269. {
  11270. name: "Gigamacro",
  11271. height: math.unit(9800, "miles")
  11272. },
  11273. ]
  11274. ))
  11275. characterMakers.push(() => makeCharacter(
  11276. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11277. {
  11278. front: {
  11279. height: math.unit(1.7, "meters"),
  11280. weight: math.unit(140, "lb"),
  11281. name: "Front",
  11282. image: {
  11283. source: "./media/characters/moody/front.svg",
  11284. extra: 3226 / 3007,
  11285. bottom: 0.087
  11286. }
  11287. },
  11288. },
  11289. [
  11290. {
  11291. name: "Micro",
  11292. height: math.unit(1, "mm")
  11293. },
  11294. {
  11295. name: "Normal",
  11296. height: math.unit(1.7, "meters"),
  11297. default: true
  11298. },
  11299. {
  11300. name: "Macro",
  11301. height: math.unit(80, "meters")
  11302. },
  11303. {
  11304. name: "Macro+",
  11305. height: math.unit(500, "meters")
  11306. },
  11307. ]
  11308. ))
  11309. characterMakers.push(() => makeCharacter(
  11310. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11311. {
  11312. front: {
  11313. height: math.unit(6, "feet"),
  11314. weight: math.unit(150, "lb"),
  11315. name: "Front",
  11316. image: {
  11317. source: "./media/characters/zyas/front.svg",
  11318. extra: 1180 / 1120,
  11319. bottom: 0.045
  11320. }
  11321. },
  11322. },
  11323. [
  11324. {
  11325. name: "Normal",
  11326. height: math.unit(10, "feet"),
  11327. default: true
  11328. },
  11329. {
  11330. name: "Macro",
  11331. height: math.unit(500, "feet")
  11332. },
  11333. {
  11334. name: "Megamacro",
  11335. height: math.unit(5, "miles")
  11336. },
  11337. {
  11338. name: "Teramacro",
  11339. height: math.unit(150000, "miles")
  11340. },
  11341. ]
  11342. ))
  11343. characterMakers.push(() => makeCharacter(
  11344. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11345. {
  11346. front: {
  11347. height: math.unit(6, "feet"),
  11348. weight: math.unit(150, "lb"),
  11349. name: "Front",
  11350. image: {
  11351. source: "./media/characters/cuon/front.svg",
  11352. extra: 1390 / 1320,
  11353. bottom: 0.008
  11354. }
  11355. },
  11356. },
  11357. [
  11358. {
  11359. name: "Micro",
  11360. height: math.unit(3, "inches")
  11361. },
  11362. {
  11363. name: "Normal",
  11364. height: math.unit(18 + 9 / 12, "feet"),
  11365. default: true
  11366. },
  11367. {
  11368. name: "Macro",
  11369. height: math.unit(360, "feet")
  11370. },
  11371. {
  11372. name: "Megamacro",
  11373. height: math.unit(360, "miles")
  11374. },
  11375. ]
  11376. ))
  11377. characterMakers.push(() => makeCharacter(
  11378. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11379. {
  11380. front: {
  11381. height: math.unit(2.4, "meters"),
  11382. weight: math.unit(70, "kg"),
  11383. name: "Front",
  11384. image: {
  11385. source: "./media/characters/nyanuxk/front.svg",
  11386. extra: 1172 / 1084,
  11387. bottom: 0.065
  11388. }
  11389. },
  11390. side: {
  11391. height: math.unit(2.4, "meters"),
  11392. weight: math.unit(70, "kg"),
  11393. name: "Side",
  11394. image: {
  11395. source: "./media/characters/nyanuxk/side.svg",
  11396. extra: 1190 / 1132,
  11397. bottom: 0.007
  11398. }
  11399. },
  11400. back: {
  11401. height: math.unit(2.4, "meters"),
  11402. weight: math.unit(70, "kg"),
  11403. name: "Back",
  11404. image: {
  11405. source: "./media/characters/nyanuxk/back.svg",
  11406. extra: 1200 / 1141,
  11407. bottom: 0.015
  11408. }
  11409. },
  11410. foot: {
  11411. height: math.unit(0.52, "meters"),
  11412. name: "Foot",
  11413. image: {
  11414. source: "./media/characters/nyanuxk/foot.svg"
  11415. }
  11416. },
  11417. },
  11418. [
  11419. {
  11420. name: "Micro",
  11421. height: math.unit(2, "cm")
  11422. },
  11423. {
  11424. name: "Normal",
  11425. height: math.unit(2.4, "meters"),
  11426. default: true
  11427. },
  11428. {
  11429. name: "Smaller Macro",
  11430. height: math.unit(120, "meters")
  11431. },
  11432. {
  11433. name: "Bigger Macro",
  11434. height: math.unit(1.2, "km")
  11435. },
  11436. {
  11437. name: "Megamacro",
  11438. height: math.unit(15, "kilometers")
  11439. },
  11440. {
  11441. name: "Gigamacro",
  11442. height: math.unit(2000, "km")
  11443. },
  11444. {
  11445. name: "Teramacro",
  11446. height: math.unit(500000, "km")
  11447. },
  11448. ]
  11449. ))
  11450. characterMakers.push(() => makeCharacter(
  11451. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11452. {
  11453. side: {
  11454. height: math.unit(6, "feet"),
  11455. name: "Side",
  11456. image: {
  11457. source: "./media/characters/ailbhe/side.svg",
  11458. extra: 757 / 464,
  11459. bottom: 0.041
  11460. }
  11461. },
  11462. },
  11463. [
  11464. {
  11465. name: "Normal",
  11466. height: math.unit(1.07, "meters"),
  11467. default: true
  11468. },
  11469. ]
  11470. ))
  11471. characterMakers.push(() => makeCharacter(
  11472. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11473. {
  11474. front: {
  11475. height: math.unit(6, "feet"),
  11476. weight: math.unit(120, "kg"),
  11477. name: "Front",
  11478. image: {
  11479. source: "./media/characters/zevulfius/front.svg",
  11480. extra: 965 / 903
  11481. }
  11482. },
  11483. side: {
  11484. height: math.unit(6, "feet"),
  11485. weight: math.unit(120, "kg"),
  11486. name: "Side",
  11487. image: {
  11488. source: "./media/characters/zevulfius/side.svg",
  11489. extra: 939 / 900
  11490. }
  11491. },
  11492. back: {
  11493. height: math.unit(6, "feet"),
  11494. weight: math.unit(120, "kg"),
  11495. name: "Back",
  11496. image: {
  11497. source: "./media/characters/zevulfius/back.svg",
  11498. extra: 918 / 854,
  11499. bottom: 0.005
  11500. }
  11501. },
  11502. foot: {
  11503. height: math.unit(6 / 3.72, "feet"),
  11504. name: "Foot",
  11505. image: {
  11506. source: "./media/characters/zevulfius/foot.svg"
  11507. }
  11508. },
  11509. },
  11510. [
  11511. {
  11512. name: "Macro",
  11513. height: math.unit(750, "meters")
  11514. },
  11515. {
  11516. name: "Megamacro",
  11517. height: math.unit(20, "km"),
  11518. default: true
  11519. },
  11520. {
  11521. name: "Gigamacro",
  11522. height: math.unit(2000, "km")
  11523. },
  11524. {
  11525. name: "Teramacro",
  11526. height: math.unit(250000, "km")
  11527. },
  11528. ]
  11529. ))
  11530. characterMakers.push(() => makeCharacter(
  11531. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11532. {
  11533. front: {
  11534. height: math.unit(100, "feet"),
  11535. weight: math.unit(350, "kg"),
  11536. name: "Front",
  11537. image: {
  11538. source: "./media/characters/rikes/front.svg",
  11539. extra: 1565 / 1483,
  11540. bottom: 0.017
  11541. }
  11542. },
  11543. },
  11544. [
  11545. {
  11546. name: "Macro",
  11547. height: math.unit(100, "feet"),
  11548. default: true
  11549. },
  11550. ]
  11551. ))
  11552. characterMakers.push(() => makeCharacter(
  11553. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11554. {
  11555. front: {
  11556. height: math.unit(8, "feet"),
  11557. weight: math.unit(356, "lb"),
  11558. name: "Front",
  11559. image: {
  11560. source: "./media/characters/adam-silver-mane/front.svg",
  11561. extra: 1036/937,
  11562. bottom: 63/1099
  11563. }
  11564. },
  11565. side: {
  11566. height: math.unit(8, "feet"),
  11567. weight: math.unit(356, "lb"),
  11568. name: "Side",
  11569. image: {
  11570. source: "./media/characters/adam-silver-mane/side.svg",
  11571. extra: 997/901,
  11572. bottom: 59/1056
  11573. }
  11574. },
  11575. frontNsfw: {
  11576. height: math.unit(8, "feet"),
  11577. weight: math.unit(356, "lb"),
  11578. name: "Front (NSFW)",
  11579. image: {
  11580. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11581. extra: 1036/937,
  11582. bottom: 63/1099
  11583. }
  11584. },
  11585. sideNsfw: {
  11586. height: math.unit(8, "feet"),
  11587. weight: math.unit(356, "lb"),
  11588. name: "Side (NSFW)",
  11589. image: {
  11590. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11591. extra: 997/901,
  11592. bottom: 59/1056
  11593. }
  11594. },
  11595. dick: {
  11596. height: math.unit(2.1, "feet"),
  11597. name: "Dick",
  11598. image: {
  11599. source: "./media/characters/adam-silver-mane/dick.svg"
  11600. }
  11601. },
  11602. taur: {
  11603. height: math.unit(16, "feet"),
  11604. weight: math.unit(1500, "kg"),
  11605. name: "Taur",
  11606. image: {
  11607. source: "./media/characters/adam-silver-mane/taur.svg",
  11608. extra: 1713 / 1571,
  11609. bottom: 0.01
  11610. }
  11611. },
  11612. },
  11613. [
  11614. {
  11615. name: "Normal",
  11616. height: math.unit(8, "feet")
  11617. },
  11618. {
  11619. name: "Minimacro",
  11620. height: math.unit(80, "feet")
  11621. },
  11622. {
  11623. name: "MDA",
  11624. height: math.unit(80, "meters")
  11625. },
  11626. {
  11627. name: "Macro",
  11628. height: math.unit(800, "feet"),
  11629. default: true
  11630. },
  11631. {
  11632. name: "Megamacro",
  11633. height: math.unit(8000, "feet")
  11634. },
  11635. {
  11636. name: "Gigamacro",
  11637. height: math.unit(800, "miles")
  11638. },
  11639. {
  11640. name: "Teramacro",
  11641. height: math.unit(80000, "miles")
  11642. },
  11643. {
  11644. name: "Celestial",
  11645. height: math.unit(8e6, "miles")
  11646. },
  11647. {
  11648. name: "Star Dragon",
  11649. height: math.unit(800000, "parsecs")
  11650. },
  11651. {
  11652. name: "Godly",
  11653. height: math.unit(800, "teraparsecs")
  11654. },
  11655. ]
  11656. ))
  11657. characterMakers.push(() => makeCharacter(
  11658. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11659. {
  11660. front: {
  11661. height: math.unit(6, "feet"),
  11662. weight: math.unit(150, "lb"),
  11663. name: "Front",
  11664. image: {
  11665. source: "./media/characters/ky'owin/front.svg",
  11666. extra: 3862/3053,
  11667. bottom: 74/3936
  11668. }
  11669. },
  11670. },
  11671. [
  11672. {
  11673. name: "Normal",
  11674. height: math.unit(6 + 8 / 12, "feet")
  11675. },
  11676. {
  11677. name: "Large",
  11678. height: math.unit(68, "feet")
  11679. },
  11680. {
  11681. name: "Macro",
  11682. height: math.unit(132, "feet")
  11683. },
  11684. {
  11685. name: "Macro+",
  11686. height: math.unit(340, "feet")
  11687. },
  11688. {
  11689. name: "Macro++",
  11690. height: math.unit(680, "feet"),
  11691. default: true
  11692. },
  11693. {
  11694. name: "Megamacro",
  11695. height: math.unit(1, "mile")
  11696. },
  11697. {
  11698. name: "Megamacro+",
  11699. height: math.unit(10, "miles")
  11700. },
  11701. ]
  11702. ))
  11703. characterMakers.push(() => makeCharacter(
  11704. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11705. {
  11706. front: {
  11707. height: math.unit(4, "feet"),
  11708. weight: math.unit(50, "lb"),
  11709. name: "Front",
  11710. image: {
  11711. source: "./media/characters/mal/front.svg",
  11712. extra: 785 / 724,
  11713. bottom: 0.07
  11714. }
  11715. },
  11716. },
  11717. [
  11718. {
  11719. name: "Micro",
  11720. height: math.unit(4, "inches")
  11721. },
  11722. {
  11723. name: "Normal",
  11724. height: math.unit(4, "feet"),
  11725. default: true
  11726. },
  11727. {
  11728. name: "Macro",
  11729. height: math.unit(200, "feet")
  11730. },
  11731. ]
  11732. ))
  11733. characterMakers.push(() => makeCharacter(
  11734. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11735. {
  11736. front: {
  11737. height: math.unit(6, "feet"),
  11738. weight: math.unit(150, "lb"),
  11739. name: "Front",
  11740. image: {
  11741. source: "./media/characters/jordan-deware/front.svg",
  11742. extra: 1191 / 1012
  11743. }
  11744. },
  11745. },
  11746. [
  11747. {
  11748. name: "Nano",
  11749. height: math.unit(0.01, "mm")
  11750. },
  11751. {
  11752. name: "Minimicro",
  11753. height: math.unit(1, "mm")
  11754. },
  11755. {
  11756. name: "Micro",
  11757. height: math.unit(0.5, "inches")
  11758. },
  11759. {
  11760. name: "Normal",
  11761. height: math.unit(4, "feet"),
  11762. default: true
  11763. },
  11764. {
  11765. name: "Minimacro",
  11766. height: math.unit(40, "meters")
  11767. },
  11768. {
  11769. name: "Small Macro",
  11770. height: math.unit(400, "meters")
  11771. },
  11772. {
  11773. name: "Macro",
  11774. height: math.unit(4, "miles")
  11775. },
  11776. {
  11777. name: "Megamacro",
  11778. height: math.unit(40, "miles")
  11779. },
  11780. {
  11781. name: "Megamacro+",
  11782. height: math.unit(400, "miles")
  11783. },
  11784. {
  11785. name: "Gigamacro",
  11786. height: math.unit(400000, "miles")
  11787. },
  11788. ]
  11789. ))
  11790. characterMakers.push(() => makeCharacter(
  11791. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11792. {
  11793. side: {
  11794. height: math.unit(6, "feet"),
  11795. weight: math.unit(150, "lb"),
  11796. name: "Side",
  11797. image: {
  11798. source: "./media/characters/kimiko/side.svg",
  11799. extra: 600 / 358
  11800. }
  11801. },
  11802. },
  11803. [
  11804. {
  11805. name: "Normal",
  11806. height: math.unit(15, "feet"),
  11807. default: true
  11808. },
  11809. {
  11810. name: "Macro",
  11811. height: math.unit(220, "feet")
  11812. },
  11813. {
  11814. name: "Macro+",
  11815. height: math.unit(1450, "feet")
  11816. },
  11817. {
  11818. name: "Megamacro",
  11819. height: math.unit(11500, "feet")
  11820. },
  11821. {
  11822. name: "Gigamacro",
  11823. height: math.unit(9500, "miles")
  11824. },
  11825. {
  11826. name: "Teramacro",
  11827. height: math.unit(2208005005, "miles")
  11828. },
  11829. {
  11830. name: "Examacro",
  11831. height: math.unit(2750, "parsecs")
  11832. },
  11833. {
  11834. name: "Zettamacro",
  11835. height: math.unit(101500, "parsecs")
  11836. },
  11837. ]
  11838. ))
  11839. characterMakers.push(() => makeCharacter(
  11840. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11841. {
  11842. front: {
  11843. height: math.unit(6, "feet"),
  11844. weight: math.unit(70, "kg"),
  11845. name: "Front",
  11846. image: {
  11847. source: "./media/characters/andrew-sleepy/front.svg"
  11848. }
  11849. },
  11850. side: {
  11851. height: math.unit(6, "feet"),
  11852. weight: math.unit(70, "kg"),
  11853. name: "Side",
  11854. image: {
  11855. source: "./media/characters/andrew-sleepy/side.svg"
  11856. }
  11857. },
  11858. },
  11859. [
  11860. {
  11861. name: "Micro",
  11862. height: math.unit(1, "mm"),
  11863. default: true
  11864. },
  11865. ]
  11866. ))
  11867. characterMakers.push(() => makeCharacter(
  11868. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11869. {
  11870. front: {
  11871. height: math.unit(6, "feet"),
  11872. weight: math.unit(150, "lb"),
  11873. name: "Front",
  11874. image: {
  11875. source: "./media/characters/judio/front.svg",
  11876. extra: 1258 / 1110
  11877. }
  11878. },
  11879. },
  11880. [
  11881. {
  11882. name: "Normal",
  11883. height: math.unit(5 + 6 / 12, "feet")
  11884. },
  11885. {
  11886. name: "Macro",
  11887. height: math.unit(1000, "feet"),
  11888. default: true
  11889. },
  11890. {
  11891. name: "Megamacro",
  11892. height: math.unit(10, "miles")
  11893. },
  11894. ]
  11895. ))
  11896. characterMakers.push(() => makeCharacter(
  11897. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11898. {
  11899. frontDressed: {
  11900. height: math.unit(6, "feet"),
  11901. weight: math.unit(68, "kg"),
  11902. name: "Front (Dressed)",
  11903. image: {
  11904. source: "./media/characters/nomaxice/front-dressed.svg",
  11905. extra: 1137/824,
  11906. bottom: 74/1211
  11907. }
  11908. },
  11909. frontShorts: {
  11910. height: math.unit(6, "feet"),
  11911. weight: math.unit(68, "kg"),
  11912. name: "Front (Shorts)",
  11913. image: {
  11914. source: "./media/characters/nomaxice/front-shorts.svg",
  11915. extra: 1137/824,
  11916. bottom: 74/1211
  11917. }
  11918. },
  11919. back: {
  11920. height: math.unit(6, "feet"),
  11921. weight: math.unit(68, "kg"),
  11922. name: "Back",
  11923. image: {
  11924. source: "./media/characters/nomaxice/back.svg",
  11925. extra: 822/786,
  11926. bottom: 39/861
  11927. }
  11928. },
  11929. hand: {
  11930. height: math.unit(0.565, "feet"),
  11931. name: "Hand",
  11932. image: {
  11933. source: "./media/characters/nomaxice/hand.svg"
  11934. }
  11935. },
  11936. foot: {
  11937. height: math.unit(1, "feet"),
  11938. name: "Foot",
  11939. image: {
  11940. source: "./media/characters/nomaxice/foot.svg"
  11941. }
  11942. },
  11943. },
  11944. [
  11945. {
  11946. name: "Micro",
  11947. height: math.unit(8, "cm")
  11948. },
  11949. {
  11950. name: "Norm",
  11951. height: math.unit(1.82, "m")
  11952. },
  11953. {
  11954. name: "Norm+",
  11955. height: math.unit(8.8, "feet"),
  11956. default: true
  11957. },
  11958. {
  11959. name: "Big",
  11960. height: math.unit(8, "meters")
  11961. },
  11962. {
  11963. name: "Macro",
  11964. height: math.unit(18, "meters")
  11965. },
  11966. {
  11967. name: "Macro+",
  11968. height: math.unit(88, "meters")
  11969. },
  11970. ]
  11971. ))
  11972. characterMakers.push(() => makeCharacter(
  11973. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11974. {
  11975. front: {
  11976. height: math.unit(12, "feet"),
  11977. weight: math.unit(1.5, "tons"),
  11978. name: "Front",
  11979. image: {
  11980. source: "./media/characters/dydros/front.svg",
  11981. extra: 863 / 800,
  11982. bottom: 0.015
  11983. }
  11984. },
  11985. back: {
  11986. height: math.unit(12, "feet"),
  11987. weight: math.unit(1.5, "tons"),
  11988. name: "Back",
  11989. image: {
  11990. source: "./media/characters/dydros/back.svg",
  11991. extra: 900 / 843,
  11992. bottom: 0.005
  11993. }
  11994. },
  11995. },
  11996. [
  11997. {
  11998. name: "Normal",
  11999. height: math.unit(12, "feet"),
  12000. default: true
  12001. },
  12002. ]
  12003. ))
  12004. characterMakers.push(() => makeCharacter(
  12005. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12006. {
  12007. front: {
  12008. height: math.unit(6, "feet"),
  12009. weight: math.unit(100, "kg"),
  12010. name: "Front",
  12011. image: {
  12012. source: "./media/characters/riggi/front.svg",
  12013. extra: 5787 / 5303
  12014. }
  12015. },
  12016. hyper: {
  12017. height: math.unit(6 * 5 / 3, "feet"),
  12018. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12019. name: "Hyper",
  12020. image: {
  12021. source: "./media/characters/riggi/hyper.svg",
  12022. extra: 3595 / 3485
  12023. }
  12024. },
  12025. },
  12026. [
  12027. {
  12028. name: "Small Macro",
  12029. height: math.unit(50, "feet")
  12030. },
  12031. {
  12032. name: "Default",
  12033. height: math.unit(200, "feet"),
  12034. default: true
  12035. },
  12036. {
  12037. name: "Loom",
  12038. height: math.unit(10000, "feet")
  12039. },
  12040. {
  12041. name: "Cruising Altitude",
  12042. height: math.unit(30000, "feet")
  12043. },
  12044. {
  12045. name: "Megamacro",
  12046. height: math.unit(100, "miles")
  12047. },
  12048. {
  12049. name: "Continent Sized",
  12050. height: math.unit(2800, "miles")
  12051. },
  12052. {
  12053. name: "Earth Sized",
  12054. height: math.unit(8000, "miles")
  12055. },
  12056. ]
  12057. ))
  12058. characterMakers.push(() => makeCharacter(
  12059. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12060. {
  12061. front: {
  12062. height: math.unit(6, "feet"),
  12063. weight: math.unit(250, "lb"),
  12064. name: "Front",
  12065. image: {
  12066. source: "./media/characters/alexi/front.svg",
  12067. extra: 3483 / 3291,
  12068. bottom: 0.04
  12069. }
  12070. },
  12071. back: {
  12072. height: math.unit(6, "feet"),
  12073. weight: math.unit(250, "lb"),
  12074. name: "Back",
  12075. image: {
  12076. source: "./media/characters/alexi/back.svg",
  12077. extra: 3533 / 3356,
  12078. bottom: 0.021
  12079. }
  12080. },
  12081. frontTransforming: {
  12082. height: math.unit(8.58, "feet"),
  12083. weight: math.unit(1300, "lb"),
  12084. name: "Transforming",
  12085. image: {
  12086. source: "./media/characters/alexi/front-transforming.svg",
  12087. extra: 437 / 409,
  12088. bottom: 19 / 458.66
  12089. }
  12090. },
  12091. frontTransformed: {
  12092. height: math.unit(12.5, "feet"),
  12093. weight: math.unit(4000, "lb"),
  12094. name: "Transformed",
  12095. image: {
  12096. source: "./media/characters/alexi/front-transformed.svg",
  12097. extra: 639 / 614,
  12098. bottom: 30.55 / 671
  12099. }
  12100. },
  12101. },
  12102. [
  12103. {
  12104. name: "Normal",
  12105. height: math.unit(14, "feet"),
  12106. default: true
  12107. },
  12108. {
  12109. name: "Minimacro",
  12110. height: math.unit(30, "meters")
  12111. },
  12112. {
  12113. name: "Macro",
  12114. height: math.unit(500, "meters")
  12115. },
  12116. {
  12117. name: "Megamacro",
  12118. height: math.unit(9000, "km")
  12119. },
  12120. {
  12121. name: "Teramacro",
  12122. height: math.unit(384000, "km")
  12123. },
  12124. ]
  12125. ))
  12126. characterMakers.push(() => makeCharacter(
  12127. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12128. {
  12129. front: {
  12130. height: math.unit(6, "feet"),
  12131. weight: math.unit(150, "lb"),
  12132. name: "Front",
  12133. image: {
  12134. source: "./media/characters/kayroo/front.svg",
  12135. extra: 1153 / 1038,
  12136. bottom: 0.06
  12137. }
  12138. },
  12139. foot: {
  12140. height: math.unit(6, "feet"),
  12141. weight: math.unit(150, "lb"),
  12142. name: "Foot",
  12143. image: {
  12144. source: "./media/characters/kayroo/foot.svg"
  12145. }
  12146. },
  12147. },
  12148. [
  12149. {
  12150. name: "Normal",
  12151. height: math.unit(8, "feet"),
  12152. default: true
  12153. },
  12154. {
  12155. name: "Minimacro",
  12156. height: math.unit(250, "feet")
  12157. },
  12158. {
  12159. name: "Macro",
  12160. height: math.unit(2800, "feet")
  12161. },
  12162. {
  12163. name: "Megamacro",
  12164. height: math.unit(5200, "feet")
  12165. },
  12166. {
  12167. name: "Gigamacro",
  12168. height: math.unit(27000, "feet")
  12169. },
  12170. {
  12171. name: "Omega",
  12172. height: math.unit(45000, "feet")
  12173. },
  12174. ]
  12175. ))
  12176. characterMakers.push(() => makeCharacter(
  12177. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12178. {
  12179. front: {
  12180. height: math.unit(18, "feet"),
  12181. weight: math.unit(5800, "lb"),
  12182. name: "Front",
  12183. image: {
  12184. source: "./media/characters/rhys/front.svg",
  12185. extra: 3386 / 3090,
  12186. bottom: 0.07
  12187. }
  12188. },
  12189. },
  12190. [
  12191. {
  12192. name: "Normal",
  12193. height: math.unit(18, "feet"),
  12194. default: true
  12195. },
  12196. {
  12197. name: "Working Size",
  12198. height: math.unit(200, "feet")
  12199. },
  12200. {
  12201. name: "Demolition Size",
  12202. height: math.unit(2000, "feet")
  12203. },
  12204. {
  12205. name: "Maximum Licensed Size",
  12206. height: math.unit(5, "miles")
  12207. },
  12208. {
  12209. name: "Maximum Observed Size",
  12210. height: math.unit(10, "yottameters")
  12211. },
  12212. ]
  12213. ))
  12214. characterMakers.push(() => makeCharacter(
  12215. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12216. {
  12217. front: {
  12218. height: math.unit(6, "feet"),
  12219. weight: math.unit(250, "lb"),
  12220. name: "Front",
  12221. image: {
  12222. source: "./media/characters/toto/front.svg",
  12223. extra: 527 / 479,
  12224. bottom: 0.05
  12225. }
  12226. },
  12227. },
  12228. [
  12229. {
  12230. name: "Micro",
  12231. height: math.unit(3, "feet")
  12232. },
  12233. {
  12234. name: "Normal",
  12235. height: math.unit(10, "feet")
  12236. },
  12237. {
  12238. name: "Macro",
  12239. height: math.unit(150, "feet"),
  12240. default: true
  12241. },
  12242. {
  12243. name: "Megamacro",
  12244. height: math.unit(1200, "feet")
  12245. },
  12246. ]
  12247. ))
  12248. characterMakers.push(() => makeCharacter(
  12249. { name: "King", species: ["lion"], tags: ["anthro"] },
  12250. {
  12251. back: {
  12252. height: math.unit(6, "feet"),
  12253. weight: math.unit(150, "lb"),
  12254. name: "Back",
  12255. image: {
  12256. source: "./media/characters/king/back.svg"
  12257. }
  12258. },
  12259. },
  12260. [
  12261. {
  12262. name: "Micro",
  12263. height: math.unit(2, "inches")
  12264. },
  12265. {
  12266. name: "Normal",
  12267. height: math.unit(8, "feet")
  12268. },
  12269. {
  12270. name: "Macro",
  12271. height: math.unit(200, "feet"),
  12272. default: true
  12273. },
  12274. {
  12275. name: "Megamacro",
  12276. height: math.unit(50, "miles")
  12277. },
  12278. ]
  12279. ))
  12280. characterMakers.push(() => makeCharacter(
  12281. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12282. {
  12283. front: {
  12284. height: math.unit(11, "feet"),
  12285. weight: math.unit(1400, "lb"),
  12286. name: "Front",
  12287. image: {
  12288. source: "./media/characters/cordite/front.svg",
  12289. extra: 1919/1827,
  12290. bottom: 40/1959
  12291. }
  12292. },
  12293. side: {
  12294. height: math.unit(11, "feet"),
  12295. weight: math.unit(1400, "lb"),
  12296. name: "Side",
  12297. image: {
  12298. source: "./media/characters/cordite/side.svg",
  12299. extra: 1908/1793,
  12300. bottom: 38/1946
  12301. }
  12302. },
  12303. back: {
  12304. height: math.unit(11, "feet"),
  12305. weight: math.unit(1400, "lb"),
  12306. name: "Back",
  12307. image: {
  12308. source: "./media/characters/cordite/back.svg",
  12309. extra: 1938/1837,
  12310. bottom: 10/1948
  12311. }
  12312. },
  12313. feral: {
  12314. height: math.unit(2, "feet"),
  12315. weight: math.unit(90, "lb"),
  12316. name: "Feral",
  12317. image: {
  12318. source: "./media/characters/cordite/feral.svg",
  12319. extra: 1260 / 755,
  12320. bottom: 0.05
  12321. }
  12322. },
  12323. },
  12324. [
  12325. {
  12326. name: "Normal",
  12327. height: math.unit(11, "feet"),
  12328. default: true
  12329. },
  12330. ]
  12331. ))
  12332. characterMakers.push(() => makeCharacter(
  12333. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12334. {
  12335. front: {
  12336. height: math.unit(6, "feet"),
  12337. weight: math.unit(150, "lb"),
  12338. name: "Front",
  12339. image: {
  12340. source: "./media/characters/pianostrong/front.svg",
  12341. extra: 6577 / 6254,
  12342. bottom: 0.02
  12343. }
  12344. },
  12345. side: {
  12346. height: math.unit(6, "feet"),
  12347. weight: math.unit(150, "lb"),
  12348. name: "Side",
  12349. image: {
  12350. source: "./media/characters/pianostrong/side.svg",
  12351. extra: 6106 / 5730
  12352. }
  12353. },
  12354. back: {
  12355. height: math.unit(6, "feet"),
  12356. weight: math.unit(150, "lb"),
  12357. name: "Back",
  12358. image: {
  12359. source: "./media/characters/pianostrong/back.svg",
  12360. extra: 6085 / 5733,
  12361. bottom: 0.01
  12362. }
  12363. },
  12364. },
  12365. [
  12366. {
  12367. name: "Macro",
  12368. height: math.unit(100, "feet")
  12369. },
  12370. {
  12371. name: "Macro+",
  12372. height: math.unit(300, "feet"),
  12373. default: true
  12374. },
  12375. {
  12376. name: "Macro++",
  12377. height: math.unit(1000, "feet")
  12378. },
  12379. ]
  12380. ))
  12381. characterMakers.push(() => makeCharacter(
  12382. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12383. {
  12384. front: {
  12385. height: math.unit(6, "feet"),
  12386. weight: math.unit(150, "lb"),
  12387. name: "Front",
  12388. image: {
  12389. source: "./media/characters/kona/front.svg",
  12390. extra: 2960 / 2629,
  12391. bottom: 0.005
  12392. }
  12393. },
  12394. },
  12395. [
  12396. {
  12397. name: "Normal",
  12398. height: math.unit(11 + 8 / 12, "feet")
  12399. },
  12400. {
  12401. name: "Macro",
  12402. height: math.unit(850, "feet"),
  12403. default: true
  12404. },
  12405. {
  12406. name: "Macro+",
  12407. height: math.unit(1.5, "km"),
  12408. default: true
  12409. },
  12410. {
  12411. name: "Megamacro",
  12412. height: math.unit(80, "miles")
  12413. },
  12414. {
  12415. name: "Gigamacro",
  12416. height: math.unit(3500, "miles")
  12417. },
  12418. ]
  12419. ))
  12420. characterMakers.push(() => makeCharacter(
  12421. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12422. {
  12423. side: {
  12424. height: math.unit(1.9, "meters"),
  12425. weight: math.unit(326, "kg"),
  12426. name: "Side",
  12427. image: {
  12428. source: "./media/characters/levi/side.svg",
  12429. extra: 1704 / 1334,
  12430. bottom: 0.02
  12431. }
  12432. },
  12433. },
  12434. [
  12435. {
  12436. name: "Normal",
  12437. height: math.unit(1.9, "meters"),
  12438. default: true
  12439. },
  12440. {
  12441. name: "Macro",
  12442. height: math.unit(20, "meters")
  12443. },
  12444. {
  12445. name: "Macro+",
  12446. height: math.unit(200, "meters")
  12447. },
  12448. {
  12449. name: "Megamacro",
  12450. height: math.unit(2, "km")
  12451. },
  12452. {
  12453. name: "Megamacro+",
  12454. height: math.unit(20, "km")
  12455. },
  12456. {
  12457. name: "Gigamacro",
  12458. height: math.unit(2500, "km")
  12459. },
  12460. {
  12461. name: "Gigamacro+",
  12462. height: math.unit(120000, "km")
  12463. },
  12464. {
  12465. name: "Teramacro",
  12466. height: math.unit(7.77e6, "km")
  12467. },
  12468. ]
  12469. ))
  12470. characterMakers.push(() => makeCharacter(
  12471. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12472. {
  12473. front: {
  12474. height: math.unit(6 + 4/12, "feet"),
  12475. weight: math.unit(190, "lb"),
  12476. name: "Front",
  12477. image: {
  12478. source: "./media/characters/bmc/front.svg",
  12479. extra: 1626/1472,
  12480. bottom: 79/1705
  12481. }
  12482. },
  12483. back: {
  12484. height: math.unit(6 + 4/12, "feet"),
  12485. weight: math.unit(190, "lb"),
  12486. name: "Back",
  12487. image: {
  12488. source: "./media/characters/bmc/back.svg",
  12489. extra: 1640/1479,
  12490. bottom: 45/1685
  12491. }
  12492. },
  12493. frontArmor: {
  12494. height: math.unit(6 + 4/12, "feet"),
  12495. weight: math.unit(190, "lb"),
  12496. name: "Front-armor",
  12497. image: {
  12498. source: "./media/characters/bmc/front-armor.svg",
  12499. extra: 1538/1468,
  12500. bottom: 79/1617
  12501. }
  12502. },
  12503. },
  12504. [
  12505. {
  12506. name: "Human-sized",
  12507. height: math.unit(6 + 4 / 12, "feet")
  12508. },
  12509. {
  12510. name: "Interactive Size",
  12511. height: math.unit(25, "feet")
  12512. },
  12513. {
  12514. name: "Small",
  12515. height: math.unit(250, "feet")
  12516. },
  12517. {
  12518. name: "Normal",
  12519. height: math.unit(1250, "feet"),
  12520. default: true
  12521. },
  12522. {
  12523. name: "Good Day",
  12524. height: math.unit(88, "miles")
  12525. },
  12526. {
  12527. name: "Largest Measured Size",
  12528. height: math.unit(105.960, "galaxies")
  12529. },
  12530. ]
  12531. ))
  12532. characterMakers.push(() => makeCharacter(
  12533. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12534. {
  12535. front: {
  12536. height: math.unit(20, "feet"),
  12537. weight: math.unit(2016, "kg"),
  12538. name: "Front",
  12539. image: {
  12540. source: "./media/characters/sven-the-kaiju/front.svg",
  12541. extra: 1277/1250,
  12542. bottom: 35/1312
  12543. }
  12544. },
  12545. mouth: {
  12546. height: math.unit(1.85, "feet"),
  12547. name: "Mouth",
  12548. image: {
  12549. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12550. }
  12551. },
  12552. },
  12553. [
  12554. {
  12555. name: "Fairy",
  12556. height: math.unit(6, "inches")
  12557. },
  12558. {
  12559. name: "Normal",
  12560. height: math.unit(20, "feet"),
  12561. default: true
  12562. },
  12563. {
  12564. name: "Rampage",
  12565. height: math.unit(200, "feet")
  12566. },
  12567. {
  12568. name: "Archfey Forest Guardian",
  12569. height: math.unit(1, "mile")
  12570. },
  12571. ]
  12572. ))
  12573. characterMakers.push(() => makeCharacter(
  12574. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12575. {
  12576. front: {
  12577. height: math.unit(4, "meters"),
  12578. weight: math.unit(2, "tons"),
  12579. name: "Front",
  12580. image: {
  12581. source: "./media/characters/marik/front.svg",
  12582. extra: 1057 / 1003,
  12583. bottom: 0.08
  12584. }
  12585. },
  12586. },
  12587. [
  12588. {
  12589. name: "Normal",
  12590. height: math.unit(4, "meters"),
  12591. default: true
  12592. },
  12593. {
  12594. name: "Macro",
  12595. height: math.unit(20, "meters")
  12596. },
  12597. {
  12598. name: "Megamacro",
  12599. height: math.unit(50, "km")
  12600. },
  12601. {
  12602. name: "Gigamacro",
  12603. height: math.unit(100, "km")
  12604. },
  12605. {
  12606. name: "Alpha Macro",
  12607. height: math.unit(7.88e7, "yottameters")
  12608. },
  12609. ]
  12610. ))
  12611. characterMakers.push(() => makeCharacter(
  12612. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12613. {
  12614. front: {
  12615. height: math.unit(6, "feet"),
  12616. weight: math.unit(110, "lb"),
  12617. name: "Front",
  12618. image: {
  12619. source: "./media/characters/mel/front.svg",
  12620. extra: 736 / 617,
  12621. bottom: 0.017
  12622. }
  12623. },
  12624. },
  12625. [
  12626. {
  12627. name: "Pico",
  12628. height: math.unit(3, "pm")
  12629. },
  12630. {
  12631. name: "Nano",
  12632. height: math.unit(3, "nm")
  12633. },
  12634. {
  12635. name: "Micro",
  12636. height: math.unit(0.3, "mm"),
  12637. default: true
  12638. },
  12639. {
  12640. name: "Micro+",
  12641. height: math.unit(3, "mm")
  12642. },
  12643. {
  12644. name: "Normal",
  12645. height: math.unit(5 + 10.5 / 12, "feet")
  12646. },
  12647. ]
  12648. ))
  12649. characterMakers.push(() => makeCharacter(
  12650. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12651. {
  12652. kaiju: {
  12653. height: math.unit(1.75, "meters"),
  12654. weight: math.unit(55, "kg"),
  12655. name: "Kaiju",
  12656. image: {
  12657. source: "./media/characters/lykonous/kaiju.svg",
  12658. extra: 1055 / 946,
  12659. bottom: 0.135
  12660. }
  12661. },
  12662. },
  12663. [
  12664. {
  12665. name: "Normal",
  12666. height: math.unit(2.5, "meters"),
  12667. default: true
  12668. },
  12669. {
  12670. name: "Kaiju Dragon",
  12671. height: math.unit(60, "meters")
  12672. },
  12673. {
  12674. name: "Mega Kaiju",
  12675. height: math.unit(120, "km")
  12676. },
  12677. {
  12678. name: "Giga Kaiju",
  12679. height: math.unit(200, "megameters")
  12680. },
  12681. {
  12682. name: "Terra Kaiju",
  12683. height: math.unit(400, "gigameters")
  12684. },
  12685. {
  12686. name: "Kaiju Dragon God",
  12687. height: math.unit(13000, "exaparsecs")
  12688. },
  12689. ]
  12690. ))
  12691. characterMakers.push(() => makeCharacter(
  12692. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12693. {
  12694. front: {
  12695. height: math.unit(6, "feet"),
  12696. weight: math.unit(150, "lb"),
  12697. name: "Front",
  12698. image: {
  12699. source: "./media/characters/blü/front.svg",
  12700. extra: 1883 / 1564,
  12701. bottom: 0.031
  12702. }
  12703. },
  12704. },
  12705. [
  12706. {
  12707. name: "Normal",
  12708. height: math.unit(13, "feet"),
  12709. default: true
  12710. },
  12711. {
  12712. name: "Big Boi",
  12713. height: math.unit(150, "meters")
  12714. },
  12715. {
  12716. name: "Mini Stomper",
  12717. height: math.unit(300, "meters")
  12718. },
  12719. {
  12720. name: "Macro",
  12721. height: math.unit(1000, "meters")
  12722. },
  12723. {
  12724. name: "Megamacro",
  12725. height: math.unit(11000, "meters")
  12726. },
  12727. {
  12728. name: "Gigamacro",
  12729. height: math.unit(11000, "km")
  12730. },
  12731. {
  12732. name: "Teramacro",
  12733. height: math.unit(420000, "km")
  12734. },
  12735. {
  12736. name: "Examacro",
  12737. height: math.unit(120, "parsecs")
  12738. },
  12739. {
  12740. name: "God Tho",
  12741. height: math.unit(98000000000, "parsecs")
  12742. },
  12743. ]
  12744. ))
  12745. characterMakers.push(() => makeCharacter(
  12746. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12747. {
  12748. taurFront: {
  12749. height: math.unit(6, "feet"),
  12750. weight: math.unit(200, "lb"),
  12751. name: "Taur (Front)",
  12752. image: {
  12753. source: "./media/characters/scales/taur-front.svg",
  12754. extra: 1,
  12755. bottom: 0.05
  12756. }
  12757. },
  12758. taurBack: {
  12759. height: math.unit(6, "feet"),
  12760. weight: math.unit(200, "lb"),
  12761. name: "Taur (Back)",
  12762. image: {
  12763. source: "./media/characters/scales/taur-back.svg",
  12764. extra: 1,
  12765. bottom: 0.08
  12766. }
  12767. },
  12768. anthro: {
  12769. height: math.unit(6 * 7 / 12, "feet"),
  12770. weight: math.unit(100, "lb"),
  12771. name: "Anthro",
  12772. image: {
  12773. source: "./media/characters/scales/anthro.svg",
  12774. extra: 1,
  12775. bottom: 0.06
  12776. }
  12777. },
  12778. },
  12779. [
  12780. {
  12781. name: "Normal",
  12782. height: math.unit(12, "feet"),
  12783. default: true
  12784. },
  12785. ]
  12786. ))
  12787. characterMakers.push(() => makeCharacter(
  12788. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12789. {
  12790. front: {
  12791. height: math.unit(6, "feet"),
  12792. weight: math.unit(150, "lb"),
  12793. name: "Front",
  12794. image: {
  12795. source: "./media/characters/koragos/front.svg",
  12796. extra: 841 / 794,
  12797. bottom: 0.035
  12798. }
  12799. },
  12800. back: {
  12801. height: math.unit(6, "feet"),
  12802. weight: math.unit(150, "lb"),
  12803. name: "Back",
  12804. image: {
  12805. source: "./media/characters/koragos/back.svg",
  12806. extra: 841 / 810,
  12807. bottom: 0.022
  12808. }
  12809. },
  12810. },
  12811. [
  12812. {
  12813. name: "Normal",
  12814. height: math.unit(6 + 11 / 12, "feet"),
  12815. default: true
  12816. },
  12817. {
  12818. name: "Macro",
  12819. height: math.unit(490, "feet")
  12820. },
  12821. {
  12822. name: "Megamacro",
  12823. height: math.unit(10, "miles")
  12824. },
  12825. {
  12826. name: "Gigamacro",
  12827. height: math.unit(50, "miles")
  12828. },
  12829. ]
  12830. ))
  12831. characterMakers.push(() => makeCharacter(
  12832. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12833. {
  12834. front: {
  12835. height: math.unit(6, "feet"),
  12836. weight: math.unit(250, "lb"),
  12837. name: "Front",
  12838. image: {
  12839. source: "./media/characters/xylrem/front.svg",
  12840. extra: 3323 / 3050,
  12841. bottom: 0.065
  12842. }
  12843. },
  12844. },
  12845. [
  12846. {
  12847. name: "Micro",
  12848. height: math.unit(4, "feet")
  12849. },
  12850. {
  12851. name: "Normal",
  12852. height: math.unit(16, "feet"),
  12853. default: true
  12854. },
  12855. {
  12856. name: "Macro",
  12857. height: math.unit(2720, "feet")
  12858. },
  12859. {
  12860. name: "Megamacro",
  12861. height: math.unit(25000, "miles")
  12862. },
  12863. ]
  12864. ))
  12865. characterMakers.push(() => makeCharacter(
  12866. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12867. {
  12868. front: {
  12869. height: math.unit(8, "feet"),
  12870. weight: math.unit(250, "kg"),
  12871. name: "Front",
  12872. image: {
  12873. source: "./media/characters/ikideru/front.svg",
  12874. extra: 930 / 870,
  12875. bottom: 0.087
  12876. }
  12877. },
  12878. back: {
  12879. height: math.unit(8, "feet"),
  12880. weight: math.unit(250, "kg"),
  12881. name: "Back",
  12882. image: {
  12883. source: "./media/characters/ikideru/back.svg",
  12884. extra: 919 / 852,
  12885. bottom: 0.055
  12886. }
  12887. },
  12888. },
  12889. [
  12890. {
  12891. name: "Rare",
  12892. height: math.unit(8, "feet"),
  12893. default: true
  12894. },
  12895. {
  12896. name: "Playful Loom",
  12897. height: math.unit(80, "feet")
  12898. },
  12899. {
  12900. name: "City Leaner",
  12901. height: math.unit(230, "feet")
  12902. },
  12903. {
  12904. name: "Megamacro",
  12905. height: math.unit(2500, "feet")
  12906. },
  12907. {
  12908. name: "Gigamacro",
  12909. height: math.unit(26400, "feet")
  12910. },
  12911. {
  12912. name: "Tectonic Shifter",
  12913. height: math.unit(1.7, "megameters")
  12914. },
  12915. {
  12916. name: "Planet Carer",
  12917. height: math.unit(21, "megameters")
  12918. },
  12919. {
  12920. name: "God",
  12921. height: math.unit(11157.22, "parsecs")
  12922. },
  12923. ]
  12924. ))
  12925. characterMakers.push(() => makeCharacter(
  12926. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12927. {
  12928. front: {
  12929. height: math.unit(6, "feet"),
  12930. weight: math.unit(120, "lb"),
  12931. name: "Front",
  12932. image: {
  12933. source: "./media/characters/neo/front.svg"
  12934. }
  12935. },
  12936. },
  12937. [
  12938. {
  12939. name: "Micro",
  12940. height: math.unit(2, "inches"),
  12941. default: true
  12942. },
  12943. {
  12944. name: "Human Size",
  12945. height: math.unit(5 + 8 / 12, "feet")
  12946. },
  12947. ]
  12948. ))
  12949. characterMakers.push(() => makeCharacter(
  12950. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12951. {
  12952. front: {
  12953. height: math.unit(13 + 10 / 12, "feet"),
  12954. weight: math.unit(5320, "lb"),
  12955. name: "Front",
  12956. image: {
  12957. source: "./media/characters/chauncey-chantz/front.svg",
  12958. extra: 1587 / 1435,
  12959. bottom: 0.02
  12960. }
  12961. },
  12962. },
  12963. [
  12964. {
  12965. name: "Normal",
  12966. height: math.unit(13 + 10 / 12, "feet"),
  12967. default: true
  12968. },
  12969. {
  12970. name: "Macro",
  12971. height: math.unit(45, "feet")
  12972. },
  12973. {
  12974. name: "Megamacro",
  12975. height: math.unit(250, "miles")
  12976. },
  12977. {
  12978. name: "Planetary",
  12979. height: math.unit(10000, "miles")
  12980. },
  12981. {
  12982. name: "Galactic",
  12983. height: math.unit(40000, "parsecs")
  12984. },
  12985. {
  12986. name: "Universal",
  12987. height: math.unit(1, "yottameter")
  12988. },
  12989. ]
  12990. ))
  12991. characterMakers.push(() => makeCharacter(
  12992. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12993. {
  12994. front: {
  12995. height: math.unit(6, "feet"),
  12996. weight: math.unit(150, "lb"),
  12997. name: "Front",
  12998. image: {
  12999. source: "./media/characters/epifox/front.svg",
  13000. extra: 1,
  13001. bottom: 0.075
  13002. }
  13003. },
  13004. },
  13005. [
  13006. {
  13007. name: "Micro",
  13008. height: math.unit(6, "inches")
  13009. },
  13010. {
  13011. name: "Normal",
  13012. height: math.unit(12, "feet"),
  13013. default: true
  13014. },
  13015. {
  13016. name: "Macro",
  13017. height: math.unit(3810, "feet")
  13018. },
  13019. {
  13020. name: "Megamacro",
  13021. height: math.unit(500, "miles")
  13022. },
  13023. ]
  13024. ))
  13025. characterMakers.push(() => makeCharacter(
  13026. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13027. {
  13028. front: {
  13029. height: math.unit(1.8796, "m"),
  13030. weight: math.unit(230, "lb"),
  13031. name: "Front",
  13032. image: {
  13033. source: "./media/characters/colin-t/front.svg",
  13034. extra: 1272 / 1193,
  13035. bottom: 0.07
  13036. }
  13037. },
  13038. },
  13039. [
  13040. {
  13041. name: "Micro",
  13042. height: math.unit(0.571, "meters")
  13043. },
  13044. {
  13045. name: "Normal",
  13046. height: math.unit(1.8796, "meters"),
  13047. default: true
  13048. },
  13049. {
  13050. name: "Tall",
  13051. height: math.unit(4, "meters")
  13052. },
  13053. {
  13054. name: "Macro",
  13055. height: math.unit(67.241, "meters")
  13056. },
  13057. {
  13058. name: "Megamacro",
  13059. height: math.unit(371.856, "meters")
  13060. },
  13061. {
  13062. name: "Planetary",
  13063. height: math.unit(12631.5689, "km")
  13064. },
  13065. ]
  13066. ))
  13067. characterMakers.push(() => makeCharacter(
  13068. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13069. {
  13070. front: {
  13071. height: math.unit(1.85, "meters"),
  13072. weight: math.unit(80, "kg"),
  13073. name: "Front",
  13074. image: {
  13075. source: "./media/characters/matvei/front.svg",
  13076. extra: 456/447,
  13077. bottom: 8/464
  13078. }
  13079. },
  13080. back: {
  13081. height: math.unit(1.85, "meters"),
  13082. weight: math.unit(80, "kg"),
  13083. name: "Back",
  13084. image: {
  13085. source: "./media/characters/matvei/back.svg",
  13086. extra: 434/427,
  13087. bottom: 11/445
  13088. }
  13089. },
  13090. },
  13091. [
  13092. {
  13093. name: "Normal",
  13094. height: math.unit(1.85, "meters"),
  13095. default: true
  13096. },
  13097. ]
  13098. ))
  13099. characterMakers.push(() => makeCharacter(
  13100. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13101. {
  13102. front: {
  13103. height: math.unit(5 + 9 / 12, "feet"),
  13104. weight: math.unit(70, "lb"),
  13105. name: "Front",
  13106. image: {
  13107. source: "./media/characters/quincy/front.svg",
  13108. extra: 3041 / 2751
  13109. }
  13110. },
  13111. back: {
  13112. height: math.unit(5 + 9 / 12, "feet"),
  13113. weight: math.unit(70, "lb"),
  13114. name: "Back",
  13115. image: {
  13116. source: "./media/characters/quincy/back.svg",
  13117. extra: 3041 / 2751
  13118. }
  13119. },
  13120. flying: {
  13121. height: math.unit(5 + 4 / 12, "feet"),
  13122. weight: math.unit(70, "lb"),
  13123. name: "Flying",
  13124. image: {
  13125. source: "./media/characters/quincy/flying.svg",
  13126. extra: 1044 / 930
  13127. }
  13128. },
  13129. },
  13130. [
  13131. {
  13132. name: "Micro",
  13133. height: math.unit(3, "cm")
  13134. },
  13135. {
  13136. name: "Normal",
  13137. height: math.unit(5 + 9 / 12, "feet")
  13138. },
  13139. {
  13140. name: "Macro",
  13141. height: math.unit(200, "meters"),
  13142. default: true
  13143. },
  13144. {
  13145. name: "Megamacro",
  13146. height: math.unit(1000, "meters")
  13147. },
  13148. ]
  13149. ))
  13150. characterMakers.push(() => makeCharacter(
  13151. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13152. {
  13153. front: {
  13154. height: math.unit(3 + 11/12, "feet"),
  13155. weight: math.unit(50, "lb"),
  13156. name: "Front",
  13157. image: {
  13158. source: "./media/characters/vanrel/front.svg",
  13159. extra: 1104/949,
  13160. bottom: 52/1156
  13161. }
  13162. },
  13163. back: {
  13164. height: math.unit(3 + 11/12, "feet"),
  13165. weight: math.unit(50, "lb"),
  13166. name: "Back",
  13167. image: {
  13168. source: "./media/characters/vanrel/back.svg",
  13169. extra: 1119/976,
  13170. bottom: 37/1156
  13171. }
  13172. },
  13173. tome: {
  13174. height: math.unit(1.35, "feet"),
  13175. weight: math.unit(10, "lb"),
  13176. name: "Vanrel's Tome",
  13177. rename: true,
  13178. image: {
  13179. source: "./media/characters/vanrel/tome.svg"
  13180. }
  13181. },
  13182. beans: {
  13183. height: math.unit(0.89, "feet"),
  13184. name: "Beans",
  13185. image: {
  13186. source: "./media/characters/vanrel/beans.svg"
  13187. }
  13188. },
  13189. },
  13190. [
  13191. {
  13192. name: "Normal",
  13193. height: math.unit(3 + 11/12, "feet"),
  13194. default: true
  13195. },
  13196. ]
  13197. ))
  13198. characterMakers.push(() => makeCharacter(
  13199. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13200. {
  13201. front: {
  13202. height: math.unit(7 + 5 / 12, "feet"),
  13203. name: "Front",
  13204. image: {
  13205. source: "./media/characters/kuiper-vanrel/front.svg",
  13206. extra: 1219/1169,
  13207. bottom: 69/1288
  13208. }
  13209. },
  13210. back: {
  13211. height: math.unit(7 + 5 / 12, "feet"),
  13212. name: "Back",
  13213. image: {
  13214. source: "./media/characters/kuiper-vanrel/back.svg",
  13215. extra: 1236/1193,
  13216. bottom: 27/1263
  13217. }
  13218. },
  13219. foot: {
  13220. height: math.unit(0.55, "meters"),
  13221. name: "Foot",
  13222. image: {
  13223. source: "./media/characters/kuiper-vanrel/foot.svg",
  13224. }
  13225. },
  13226. battle: {
  13227. height: math.unit(6.824, "feet"),
  13228. name: "Battle",
  13229. image: {
  13230. source: "./media/characters/kuiper-vanrel/battle.svg",
  13231. extra: 1466 / 1327,
  13232. bottom: 29 / 1492.5
  13233. }
  13234. },
  13235. meerkui: {
  13236. height: math.unit(18, "inches"),
  13237. name: "Meerkui",
  13238. image: {
  13239. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13240. extra: 1354/1289,
  13241. bottom: 69/1423
  13242. }
  13243. },
  13244. },
  13245. [
  13246. {
  13247. name: "Normal",
  13248. height: math.unit(7 + 5 / 12, "feet"),
  13249. default: true
  13250. },
  13251. ]
  13252. ))
  13253. characterMakers.push(() => makeCharacter(
  13254. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13255. {
  13256. front: {
  13257. height: math.unit(8 + 5 / 12, "feet"),
  13258. name: "Front",
  13259. image: {
  13260. source: "./media/characters/keset-vanrel/front.svg",
  13261. extra: 1231/1148,
  13262. bottom: 82/1313
  13263. }
  13264. },
  13265. back: {
  13266. height: math.unit(8 + 5 / 12, "feet"),
  13267. name: "Back",
  13268. image: {
  13269. source: "./media/characters/keset-vanrel/back.svg",
  13270. extra: 1240/1174,
  13271. bottom: 33/1273
  13272. }
  13273. },
  13274. hand: {
  13275. height: math.unit(0.6, "meters"),
  13276. name: "Hand",
  13277. image: {
  13278. source: "./media/characters/keset-vanrel/hand.svg"
  13279. }
  13280. },
  13281. foot: {
  13282. height: math.unit(0.94978, "meters"),
  13283. name: "Foot",
  13284. image: {
  13285. source: "./media/characters/keset-vanrel/foot.svg"
  13286. }
  13287. },
  13288. battle: {
  13289. height: math.unit(7.408, "feet"),
  13290. name: "Battle",
  13291. image: {
  13292. source: "./media/characters/keset-vanrel/battle.svg",
  13293. extra: 1890 / 1386,
  13294. bottom: 73.28 / 1970
  13295. }
  13296. },
  13297. },
  13298. [
  13299. {
  13300. name: "Normal",
  13301. height: math.unit(8 + 5 / 12, "feet"),
  13302. default: true
  13303. },
  13304. ]
  13305. ))
  13306. characterMakers.push(() => makeCharacter(
  13307. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13308. {
  13309. front: {
  13310. height: math.unit(6, "feet"),
  13311. weight: math.unit(150, "lb"),
  13312. name: "Front",
  13313. image: {
  13314. source: "./media/characters/neos/front.svg",
  13315. extra: 1696 / 992,
  13316. bottom: 0.14
  13317. }
  13318. },
  13319. },
  13320. [
  13321. {
  13322. name: "Normal",
  13323. height: math.unit(54, "cm"),
  13324. default: true
  13325. },
  13326. {
  13327. name: "Macro",
  13328. height: math.unit(100, "m")
  13329. },
  13330. {
  13331. name: "Megamacro",
  13332. height: math.unit(10, "km")
  13333. },
  13334. {
  13335. name: "Megamacro+",
  13336. height: math.unit(100, "km")
  13337. },
  13338. {
  13339. name: "Gigamacro",
  13340. height: math.unit(100, "Mm")
  13341. },
  13342. {
  13343. name: "Teramacro",
  13344. height: math.unit(100, "Gm")
  13345. },
  13346. {
  13347. name: "Examacro",
  13348. height: math.unit(100, "Em")
  13349. },
  13350. {
  13351. name: "Godly",
  13352. height: math.unit(10000, "Ym")
  13353. },
  13354. {
  13355. name: "Beyond Godly",
  13356. height: math.unit(25, "multiverses")
  13357. },
  13358. ]
  13359. ))
  13360. characterMakers.push(() => makeCharacter(
  13361. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13362. {
  13363. feminine: {
  13364. height: math.unit(5, "feet"),
  13365. weight: math.unit(100, "lb"),
  13366. name: "Feminine",
  13367. image: {
  13368. source: "./media/characters/sammy-mouse/feminine.svg",
  13369. extra: 2526 / 2425,
  13370. bottom: 0.123
  13371. }
  13372. },
  13373. masculine: {
  13374. height: math.unit(5, "feet"),
  13375. weight: math.unit(100, "lb"),
  13376. name: "Masculine",
  13377. image: {
  13378. source: "./media/characters/sammy-mouse/masculine.svg",
  13379. extra: 2526 / 2425,
  13380. bottom: 0.123
  13381. }
  13382. },
  13383. },
  13384. [
  13385. {
  13386. name: "Micro",
  13387. height: math.unit(5, "inches")
  13388. },
  13389. {
  13390. name: "Normal",
  13391. height: math.unit(5, "feet"),
  13392. default: true
  13393. },
  13394. {
  13395. name: "Macro",
  13396. height: math.unit(60, "feet")
  13397. },
  13398. ]
  13399. ))
  13400. characterMakers.push(() => makeCharacter(
  13401. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13402. {
  13403. front: {
  13404. height: math.unit(4, "feet"),
  13405. weight: math.unit(50, "lb"),
  13406. name: "Front",
  13407. image: {
  13408. source: "./media/characters/kole/front.svg",
  13409. extra: 1423 / 1303,
  13410. bottom: 0.025
  13411. }
  13412. },
  13413. back: {
  13414. height: math.unit(4, "feet"),
  13415. weight: math.unit(50, "lb"),
  13416. name: "Back",
  13417. image: {
  13418. source: "./media/characters/kole/back.svg",
  13419. extra: 1426 / 1280,
  13420. bottom: 0.02
  13421. }
  13422. },
  13423. },
  13424. [
  13425. {
  13426. name: "Normal",
  13427. height: math.unit(4, "feet"),
  13428. default: true
  13429. },
  13430. ]
  13431. ))
  13432. characterMakers.push(() => makeCharacter(
  13433. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13434. {
  13435. front: {
  13436. height: math.unit(2.5, "feet"),
  13437. weight: math.unit(32, "lb"),
  13438. name: "Front",
  13439. image: {
  13440. source: "./media/characters/rufran/front.svg",
  13441. extra: 1313/885,
  13442. bottom: 94/1407
  13443. }
  13444. },
  13445. side: {
  13446. height: math.unit(2.5, "feet"),
  13447. weight: math.unit(32, "lb"),
  13448. name: "Side",
  13449. image: {
  13450. source: "./media/characters/rufran/side.svg",
  13451. extra: 1109/852,
  13452. bottom: 118/1227
  13453. }
  13454. },
  13455. back: {
  13456. height: math.unit(2.5, "feet"),
  13457. weight: math.unit(32, "lb"),
  13458. name: "Back",
  13459. image: {
  13460. source: "./media/characters/rufran/back.svg",
  13461. extra: 1280/878,
  13462. bottom: 131/1411
  13463. }
  13464. },
  13465. mouth: {
  13466. height: math.unit(1.13, "feet"),
  13467. name: "Mouth",
  13468. image: {
  13469. source: "./media/characters/rufran/mouth.svg"
  13470. }
  13471. },
  13472. foot: {
  13473. height: math.unit(1.33, "feet"),
  13474. name: "Foot",
  13475. image: {
  13476. source: "./media/characters/rufran/foot.svg"
  13477. }
  13478. },
  13479. koboldFront: {
  13480. height: math.unit(2 + 6 / 12, "feet"),
  13481. weight: math.unit(20, "lb"),
  13482. name: "Front (Kobold)",
  13483. image: {
  13484. source: "./media/characters/rufran/kobold-front.svg",
  13485. extra: 2041 / 1839,
  13486. bottom: 0.055
  13487. }
  13488. },
  13489. koboldBack: {
  13490. height: math.unit(2 + 6 / 12, "feet"),
  13491. weight: math.unit(20, "lb"),
  13492. name: "Back (Kobold)",
  13493. image: {
  13494. source: "./media/characters/rufran/kobold-back.svg",
  13495. extra: 2054 / 1839,
  13496. bottom: 0.01
  13497. }
  13498. },
  13499. koboldHand: {
  13500. height: math.unit(0.2166, "meters"),
  13501. name: "Hand (Kobold)",
  13502. image: {
  13503. source: "./media/characters/rufran/kobold-hand.svg"
  13504. }
  13505. },
  13506. koboldFoot: {
  13507. height: math.unit(0.185, "meters"),
  13508. name: "Foot (Kobold)",
  13509. image: {
  13510. source: "./media/characters/rufran/kobold-foot.svg"
  13511. }
  13512. },
  13513. },
  13514. [
  13515. {
  13516. name: "Micro",
  13517. height: math.unit(1, "inch")
  13518. },
  13519. {
  13520. name: "Normal",
  13521. height: math.unit(2 + 6 / 12, "feet"),
  13522. default: true
  13523. },
  13524. {
  13525. name: "Big",
  13526. height: math.unit(60, "feet")
  13527. },
  13528. {
  13529. name: "Macro",
  13530. height: math.unit(325, "feet")
  13531. },
  13532. ]
  13533. ))
  13534. characterMakers.push(() => makeCharacter(
  13535. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13536. {
  13537. front: {
  13538. height: math.unit(0.3, "meters"),
  13539. weight: math.unit(3.5, "kg"),
  13540. name: "Front",
  13541. image: {
  13542. source: "./media/characters/chip/front.svg",
  13543. extra: 748 / 674
  13544. }
  13545. },
  13546. },
  13547. [
  13548. {
  13549. name: "Micro",
  13550. height: math.unit(1, "inch"),
  13551. default: true
  13552. },
  13553. ]
  13554. ))
  13555. characterMakers.push(() => makeCharacter(
  13556. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13557. {
  13558. side: {
  13559. height: math.unit(2.3, "meters"),
  13560. weight: math.unit(3500, "lb"),
  13561. name: "Side",
  13562. image: {
  13563. source: "./media/characters/torvid/side.svg",
  13564. extra: 1972 / 722,
  13565. bottom: 0.035
  13566. }
  13567. },
  13568. },
  13569. [
  13570. {
  13571. name: "Normal",
  13572. height: math.unit(2.3, "meters"),
  13573. default: true
  13574. },
  13575. ]
  13576. ))
  13577. characterMakers.push(() => makeCharacter(
  13578. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13579. {
  13580. front: {
  13581. height: math.unit(2, "meters"),
  13582. weight: math.unit(150.5, "kg"),
  13583. name: "Front",
  13584. image: {
  13585. source: "./media/characters/susan/front.svg",
  13586. extra: 693 / 635,
  13587. bottom: 0.05
  13588. }
  13589. },
  13590. },
  13591. [
  13592. {
  13593. name: "Megamacro",
  13594. height: math.unit(505, "miles"),
  13595. default: true
  13596. },
  13597. ]
  13598. ))
  13599. characterMakers.push(() => makeCharacter(
  13600. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13601. {
  13602. front: {
  13603. height: math.unit(6, "feet"),
  13604. weight: math.unit(150, "lb"),
  13605. name: "Front",
  13606. image: {
  13607. source: "./media/characters/raindrops/front.svg",
  13608. extra: 2655 / 2461,
  13609. bottom: 49 / 2705
  13610. }
  13611. },
  13612. back: {
  13613. height: math.unit(6, "feet"),
  13614. weight: math.unit(150, "lb"),
  13615. name: "Back",
  13616. image: {
  13617. source: "./media/characters/raindrops/back.svg",
  13618. extra: 2574 / 2400,
  13619. bottom: 65 / 2634
  13620. }
  13621. },
  13622. },
  13623. [
  13624. {
  13625. name: "Micro",
  13626. height: math.unit(6, "inches")
  13627. },
  13628. {
  13629. name: "Normal",
  13630. height: math.unit(6 + 2 / 12, "feet")
  13631. },
  13632. {
  13633. name: "Macro",
  13634. height: math.unit(131, "feet"),
  13635. default: true
  13636. },
  13637. {
  13638. name: "Megamacro",
  13639. height: math.unit(15, "miles")
  13640. },
  13641. {
  13642. name: "Gigamacro",
  13643. height: math.unit(4000, "miles")
  13644. },
  13645. {
  13646. name: "Teramacro",
  13647. height: math.unit(315000, "miles")
  13648. },
  13649. ]
  13650. ))
  13651. characterMakers.push(() => makeCharacter(
  13652. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13653. {
  13654. front: {
  13655. height: math.unit(2.794, "meters"),
  13656. weight: math.unit(325, "kg"),
  13657. name: "Front",
  13658. image: {
  13659. source: "./media/characters/tezwa/front.svg",
  13660. extra: 2083 / 1906,
  13661. bottom: 0.031
  13662. }
  13663. },
  13664. foot: {
  13665. height: math.unit(0.687, "meters"),
  13666. name: "Foot",
  13667. image: {
  13668. source: "./media/characters/tezwa/foot.svg"
  13669. }
  13670. },
  13671. },
  13672. [
  13673. {
  13674. name: "Normal",
  13675. height: math.unit(9 + 2 / 12, "feet"),
  13676. default: true
  13677. },
  13678. ]
  13679. ))
  13680. characterMakers.push(() => makeCharacter(
  13681. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13682. {
  13683. front: {
  13684. height: math.unit(58, "feet"),
  13685. weight: math.unit(89000, "lb"),
  13686. name: "Front",
  13687. image: {
  13688. source: "./media/characters/typhus/front.svg",
  13689. extra: 816 / 800,
  13690. bottom: 0.065
  13691. }
  13692. },
  13693. },
  13694. [
  13695. {
  13696. name: "Macro",
  13697. height: math.unit(58, "feet"),
  13698. default: true
  13699. },
  13700. ]
  13701. ))
  13702. characterMakers.push(() => makeCharacter(
  13703. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13704. {
  13705. front: {
  13706. height: math.unit(12, "feet"),
  13707. weight: math.unit(6, "tonnes"),
  13708. name: "Front",
  13709. image: {
  13710. source: "./media/characters/lyra-von-wulf/front.svg",
  13711. extra: 1,
  13712. bottom: 0.10
  13713. }
  13714. },
  13715. frontMecha: {
  13716. height: math.unit(12, "feet"),
  13717. weight: math.unit(12, "tonnes"),
  13718. name: "Front (Mecha)",
  13719. image: {
  13720. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13721. extra: 1,
  13722. bottom: 0.042
  13723. }
  13724. },
  13725. maw: {
  13726. height: math.unit(2.2, "feet"),
  13727. name: "Maw",
  13728. image: {
  13729. source: "./media/characters/lyra-von-wulf/maw.svg"
  13730. }
  13731. },
  13732. },
  13733. [
  13734. {
  13735. name: "Normal",
  13736. height: math.unit(12, "feet"),
  13737. default: true
  13738. },
  13739. {
  13740. name: "Classic",
  13741. height: math.unit(50, "feet")
  13742. },
  13743. {
  13744. name: "Macro",
  13745. height: math.unit(500, "feet")
  13746. },
  13747. {
  13748. name: "Megamacro",
  13749. height: math.unit(1, "mile")
  13750. },
  13751. {
  13752. name: "Gigamacro",
  13753. height: math.unit(400, "miles")
  13754. },
  13755. {
  13756. name: "Teramacro",
  13757. height: math.unit(22000, "miles")
  13758. },
  13759. {
  13760. name: "Solarmacro",
  13761. height: math.unit(8600000, "miles")
  13762. },
  13763. {
  13764. name: "Galactic",
  13765. height: math.unit(1057000, "lightyears")
  13766. },
  13767. ]
  13768. ))
  13769. characterMakers.push(() => makeCharacter(
  13770. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13771. {
  13772. front: {
  13773. height: math.unit(6 + 10 / 12, "feet"),
  13774. weight: math.unit(150, "lb"),
  13775. name: "Front",
  13776. image: {
  13777. source: "./media/characters/dixon/front.svg",
  13778. extra: 3361 / 3209,
  13779. bottom: 0.01
  13780. }
  13781. },
  13782. },
  13783. [
  13784. {
  13785. name: "Normal",
  13786. height: math.unit(6 + 10 / 12, "feet"),
  13787. default: true
  13788. },
  13789. {
  13790. name: "Big",
  13791. height: math.unit(12, "meters")
  13792. },
  13793. {
  13794. name: "Macro",
  13795. height: math.unit(500, "meters")
  13796. },
  13797. {
  13798. name: "Megamacro",
  13799. height: math.unit(2, "km")
  13800. },
  13801. ]
  13802. ))
  13803. characterMakers.push(() => makeCharacter(
  13804. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13805. {
  13806. front: {
  13807. height: math.unit(185, "cm"),
  13808. weight: math.unit(68, "kg"),
  13809. name: "Front",
  13810. image: {
  13811. source: "./media/characters/kauko/front.svg",
  13812. extra: 1455 / 1421,
  13813. bottom: 0.03
  13814. }
  13815. },
  13816. back: {
  13817. height: math.unit(185, "cm"),
  13818. weight: math.unit(68, "kg"),
  13819. name: "Back",
  13820. image: {
  13821. source: "./media/characters/kauko/back.svg",
  13822. extra: 1455 / 1421,
  13823. bottom: 0.004
  13824. }
  13825. },
  13826. },
  13827. [
  13828. {
  13829. name: "Normal",
  13830. height: math.unit(185, "cm"),
  13831. default: true
  13832. },
  13833. ]
  13834. ))
  13835. characterMakers.push(() => makeCharacter(
  13836. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13837. {
  13838. frontSfw: {
  13839. height: math.unit(5, "meters"),
  13840. weight: math.unit(4250, "lb"),
  13841. name: "Front",
  13842. image: {
  13843. source: "./media/characters/varg/front-sfw.svg",
  13844. extra: 1103/1010,
  13845. bottom: 50/1153
  13846. },
  13847. form: "anthro",
  13848. default: true
  13849. },
  13850. backSfw: {
  13851. height: math.unit(5, "meters"),
  13852. weight: math.unit(4250, "lb"),
  13853. name: "Back",
  13854. image: {
  13855. source: "./media/characters/varg/back-sfw.svg",
  13856. extra: 1038/1022,
  13857. bottom: 36/1074
  13858. },
  13859. form: "anthro"
  13860. },
  13861. frontNsfw: {
  13862. height: math.unit(5, "meters"),
  13863. weight: math.unit(4250, "lb"),
  13864. name: "Front (NSFW)",
  13865. image: {
  13866. source: "./media/characters/varg/front-nsfw.svg",
  13867. extra: 1103/1010,
  13868. bottom: 50/1153
  13869. },
  13870. form: "anthro"
  13871. },
  13872. sheath: {
  13873. height: math.unit(3.8, "feet"),
  13874. weight: math.unit(90, "kilograms"),
  13875. name: "Sheath",
  13876. image: {
  13877. source: "./media/characters/varg/sheath.svg"
  13878. },
  13879. form: "anthro"
  13880. },
  13881. dick: {
  13882. height: math.unit(4.6, "feet"),
  13883. weight: math.unit(451, "kilograms"),
  13884. name: "Dick",
  13885. image: {
  13886. source: "./media/characters/varg/dick.svg"
  13887. },
  13888. form: "anthro"
  13889. },
  13890. feralSfw: {
  13891. height: math.unit(5, "meters"),
  13892. weight: math.unit(100000, "lb"),
  13893. name: "Side",
  13894. image: {
  13895. source: "./media/characters/varg/feral-sfw.svg",
  13896. extra: 1065/511,
  13897. bottom: 211/1276
  13898. },
  13899. form: "feral",
  13900. default: true
  13901. },
  13902. feralNsfw: {
  13903. height: math.unit(5, "meters"),
  13904. weight: math.unit(100000, "lb"),
  13905. name: "Side (NSFW)",
  13906. image: {
  13907. source: "./media/characters/varg/feral-nsfw.svg",
  13908. extra: 1065/511,
  13909. bottom: 211/1276
  13910. },
  13911. form: "feral",
  13912. },
  13913. feralSheath: {
  13914. height: math.unit(9.8, "feet"),
  13915. weight: math.unit(2000, "kilograms"),
  13916. name: "Sheath",
  13917. image: {
  13918. source: "./media/characters/varg/sheath.svg"
  13919. },
  13920. form: "feral"
  13921. },
  13922. feralDick: {
  13923. height: math.unit(13.11, "feet"),
  13924. weight: math.unit(10440, "kilograms"),
  13925. name: "Dick",
  13926. image: {
  13927. source: "./media/characters/varg/dick.svg"
  13928. },
  13929. form: "feral"
  13930. },
  13931. },
  13932. [
  13933. {
  13934. name: "Normal",
  13935. height: math.unit(5, "meters"),
  13936. form: "anthro"
  13937. },
  13938. {
  13939. name: "Macro",
  13940. height: math.unit(200, "meters"),
  13941. form: "anthro"
  13942. },
  13943. {
  13944. name: "Megamacro",
  13945. height: math.unit(20, "kilometers"),
  13946. form: "anthro"
  13947. },
  13948. {
  13949. name: "True Size",
  13950. height: math.unit(211, "km"),
  13951. form: "anthro",
  13952. default: true
  13953. },
  13954. {
  13955. name: "Gigamacro",
  13956. height: math.unit(1000, "km"),
  13957. form: "anthro"
  13958. },
  13959. {
  13960. name: "Gigamacro+",
  13961. height: math.unit(8000, "km"),
  13962. form: "anthro"
  13963. },
  13964. {
  13965. name: "Teramacro",
  13966. height: math.unit(1000000, "km"),
  13967. form: "anthro"
  13968. },
  13969. {
  13970. name: "Normal",
  13971. height: math.unit(5, "meters"),
  13972. form: "feral"
  13973. },
  13974. {
  13975. name: "Macro",
  13976. height: math.unit(200, "meters"),
  13977. form: "feral"
  13978. },
  13979. {
  13980. name: "Megamacro",
  13981. height: math.unit(20, "kilometers"),
  13982. form: "feral"
  13983. },
  13984. {
  13985. name: "True Size",
  13986. height: math.unit(211, "km"),
  13987. form: "feral",
  13988. default: true
  13989. },
  13990. {
  13991. name: "Gigamacro",
  13992. height: math.unit(1000, "km"),
  13993. form: "feral"
  13994. },
  13995. {
  13996. name: "Gigamacro+",
  13997. height: math.unit(8000, "km"),
  13998. form: "feral"
  13999. },
  14000. {
  14001. name: "Teramacro",
  14002. height: math.unit(1000000, "km"),
  14003. form: "feral"
  14004. },
  14005. ],
  14006. {
  14007. "anthro": {
  14008. name: "Anthro",
  14009. default: true
  14010. },
  14011. "feral": {
  14012. name: "Feral",
  14013. },
  14014. }
  14015. ))
  14016. characterMakers.push(() => makeCharacter(
  14017. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14018. {
  14019. front: {
  14020. height: math.unit(7 + 7 / 12, "feet"),
  14021. weight: math.unit(267, "lb"),
  14022. name: "Front",
  14023. image: {
  14024. source: "./media/characters/dayza/front.svg",
  14025. extra: 1262 / 1200,
  14026. bottom: 0.035
  14027. }
  14028. },
  14029. side: {
  14030. height: math.unit(7 + 7 / 12, "feet"),
  14031. weight: math.unit(267, "lb"),
  14032. name: "Side",
  14033. image: {
  14034. source: "./media/characters/dayza/side.svg",
  14035. extra: 1295 / 1245,
  14036. bottom: 0.05
  14037. }
  14038. },
  14039. back: {
  14040. height: math.unit(7 + 7 / 12, "feet"),
  14041. weight: math.unit(267, "lb"),
  14042. name: "Back",
  14043. image: {
  14044. source: "./media/characters/dayza/back.svg",
  14045. extra: 1241 / 1170
  14046. }
  14047. },
  14048. },
  14049. [
  14050. {
  14051. name: "Normal",
  14052. height: math.unit(7 + 7 / 12, "feet"),
  14053. default: true
  14054. },
  14055. {
  14056. name: "Macro",
  14057. height: math.unit(155, "feet")
  14058. },
  14059. ]
  14060. ))
  14061. characterMakers.push(() => makeCharacter(
  14062. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14063. {
  14064. front: {
  14065. height: math.unit(6 + 5 / 12, "feet"),
  14066. weight: math.unit(160, "lb"),
  14067. name: "Front",
  14068. image: {
  14069. source: "./media/characters/xanthos/front.svg",
  14070. extra: 1,
  14071. bottom: 0.04
  14072. }
  14073. },
  14074. back: {
  14075. height: math.unit(6 + 5 / 12, "feet"),
  14076. weight: math.unit(160, "lb"),
  14077. name: "Back",
  14078. image: {
  14079. source: "./media/characters/xanthos/back.svg",
  14080. extra: 1,
  14081. bottom: 0.03
  14082. }
  14083. },
  14084. hand: {
  14085. height: math.unit(0.928, "feet"),
  14086. name: "Hand",
  14087. image: {
  14088. source: "./media/characters/xanthos/hand.svg"
  14089. }
  14090. },
  14091. foot: {
  14092. height: math.unit(1.286, "feet"),
  14093. name: "Foot",
  14094. image: {
  14095. source: "./media/characters/xanthos/foot.svg"
  14096. }
  14097. },
  14098. },
  14099. [
  14100. {
  14101. name: "Normal",
  14102. height: math.unit(6 + 5 / 12, "feet"),
  14103. default: true
  14104. },
  14105. {
  14106. name: "Normal+",
  14107. height: math.unit(6, "meters")
  14108. },
  14109. {
  14110. name: "Macro",
  14111. height: math.unit(40, "feet")
  14112. },
  14113. {
  14114. name: "Macro+",
  14115. height: math.unit(200, "meters")
  14116. },
  14117. {
  14118. name: "Megamacro",
  14119. height: math.unit(20, "km")
  14120. },
  14121. {
  14122. name: "Megamacro+",
  14123. height: math.unit(100, "km")
  14124. },
  14125. {
  14126. name: "Gigamacro",
  14127. height: math.unit(200, "megameters")
  14128. },
  14129. {
  14130. name: "Gigamacro+",
  14131. height: math.unit(1.5, "gigameters")
  14132. },
  14133. ]
  14134. ))
  14135. characterMakers.push(() => makeCharacter(
  14136. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14137. {
  14138. front: {
  14139. height: math.unit(6 + 3 / 12, "feet"),
  14140. weight: math.unit(215, "lb"),
  14141. name: "Front",
  14142. image: {
  14143. source: "./media/characters/grynn/front.svg",
  14144. extra: 4627 / 4209,
  14145. bottom: 0.047
  14146. }
  14147. },
  14148. },
  14149. [
  14150. {
  14151. name: "Micro",
  14152. height: math.unit(6, "inches")
  14153. },
  14154. {
  14155. name: "Normal",
  14156. height: math.unit(6 + 3 / 12, "feet"),
  14157. default: true
  14158. },
  14159. {
  14160. name: "Big",
  14161. height: math.unit(104, "feet")
  14162. },
  14163. {
  14164. name: "Macro",
  14165. height: math.unit(944, "feet")
  14166. },
  14167. {
  14168. name: "Macro+",
  14169. height: math.unit(9480, "feet")
  14170. },
  14171. {
  14172. name: "Megamacro",
  14173. height: math.unit(78752, "feet")
  14174. },
  14175. {
  14176. name: "Megamacro+",
  14177. height: math.unit(630128, "feet")
  14178. },
  14179. {
  14180. name: "Megamacro++",
  14181. height: math.unit(3150695, "feet")
  14182. },
  14183. ]
  14184. ))
  14185. characterMakers.push(() => makeCharacter(
  14186. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14187. {
  14188. front: {
  14189. height: math.unit(7 + 5 / 12, "feet"),
  14190. weight: math.unit(450, "lb"),
  14191. name: "Front",
  14192. image: {
  14193. source: "./media/characters/mocha-aura/front.svg",
  14194. extra: 1907 / 1817,
  14195. bottom: 0.04
  14196. }
  14197. },
  14198. back: {
  14199. height: math.unit(7 + 5 / 12, "feet"),
  14200. weight: math.unit(450, "lb"),
  14201. name: "Back",
  14202. image: {
  14203. source: "./media/characters/mocha-aura/back.svg",
  14204. extra: 1900 / 1825,
  14205. bottom: 0.045
  14206. }
  14207. },
  14208. },
  14209. [
  14210. {
  14211. name: "Nano",
  14212. height: math.unit(1, "nm")
  14213. },
  14214. {
  14215. name: "Megamicro",
  14216. height: math.unit(1, "mm")
  14217. },
  14218. {
  14219. name: "Micro",
  14220. height: math.unit(3, "inches")
  14221. },
  14222. {
  14223. name: "Normal",
  14224. height: math.unit(7 + 5 / 12, "feet"),
  14225. default: true
  14226. },
  14227. {
  14228. name: "Macro",
  14229. height: math.unit(30, "feet")
  14230. },
  14231. {
  14232. name: "Megamacro",
  14233. height: math.unit(3500, "feet")
  14234. },
  14235. {
  14236. name: "Teramacro",
  14237. height: math.unit(500000, "miles")
  14238. },
  14239. {
  14240. name: "Petamacro",
  14241. height: math.unit(50000000000000000, "parsecs")
  14242. },
  14243. ]
  14244. ))
  14245. characterMakers.push(() => makeCharacter(
  14246. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14247. {
  14248. front: {
  14249. height: math.unit(6, "feet"),
  14250. weight: math.unit(150, "lb"),
  14251. name: "Front",
  14252. image: {
  14253. source: "./media/characters/ilisha-devya/front.svg",
  14254. extra: 1053/1049,
  14255. bottom: 270/1323
  14256. }
  14257. },
  14258. back: {
  14259. height: math.unit(6, "feet"),
  14260. weight: math.unit(150, "lb"),
  14261. name: "Back",
  14262. image: {
  14263. source: "./media/characters/ilisha-devya/back.svg",
  14264. extra: 1131/1128,
  14265. bottom: 39/1170
  14266. }
  14267. },
  14268. },
  14269. [
  14270. {
  14271. name: "Macro",
  14272. height: math.unit(500, "feet"),
  14273. default: true
  14274. },
  14275. {
  14276. name: "Megamacro",
  14277. height: math.unit(10, "miles")
  14278. },
  14279. {
  14280. name: "Gigamacro",
  14281. height: math.unit(100000, "miles")
  14282. },
  14283. {
  14284. name: "Examacro",
  14285. height: math.unit(1e9, "lightyears")
  14286. },
  14287. {
  14288. name: "Omniversal",
  14289. height: math.unit(1e33, "lightyears")
  14290. },
  14291. {
  14292. name: "Beyond Infinite",
  14293. height: math.unit(1e100, "lightyears")
  14294. },
  14295. ]
  14296. ))
  14297. characterMakers.push(() => makeCharacter(
  14298. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14299. {
  14300. Side: {
  14301. height: math.unit(6, "feet"),
  14302. weight: math.unit(150, "lb"),
  14303. name: "Side",
  14304. image: {
  14305. source: "./media/characters/mira/side.svg",
  14306. extra: 900 / 799,
  14307. bottom: 0.02
  14308. }
  14309. },
  14310. },
  14311. [
  14312. {
  14313. name: "Human Size",
  14314. height: math.unit(6, "feet")
  14315. },
  14316. {
  14317. name: "Macro",
  14318. height: math.unit(100, "feet"),
  14319. default: true
  14320. },
  14321. {
  14322. name: "Megamacro",
  14323. height: math.unit(10, "miles")
  14324. },
  14325. {
  14326. name: "Gigamacro",
  14327. height: math.unit(25000, "miles")
  14328. },
  14329. {
  14330. name: "Teramacro",
  14331. height: math.unit(300, "AU")
  14332. },
  14333. {
  14334. name: "Full Size",
  14335. height: math.unit(4.5e10, "lightyears")
  14336. },
  14337. ]
  14338. ))
  14339. characterMakers.push(() => makeCharacter(
  14340. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14341. {
  14342. front: {
  14343. height: math.unit(6, "feet"),
  14344. weight: math.unit(150, "lb"),
  14345. name: "Front",
  14346. image: {
  14347. source: "./media/characters/holly/front.svg",
  14348. extra: 639 / 606
  14349. }
  14350. },
  14351. back: {
  14352. height: math.unit(6, "feet"),
  14353. weight: math.unit(150, "lb"),
  14354. name: "Back",
  14355. image: {
  14356. source: "./media/characters/holly/back.svg",
  14357. extra: 623 / 598
  14358. }
  14359. },
  14360. frontWorking: {
  14361. height: math.unit(6, "feet"),
  14362. weight: math.unit(150, "lb"),
  14363. name: "Front (Working)",
  14364. image: {
  14365. source: "./media/characters/holly/front-working.svg",
  14366. extra: 607 / 577,
  14367. bottom: 0.048
  14368. }
  14369. },
  14370. },
  14371. [
  14372. {
  14373. name: "Normal",
  14374. height: math.unit(12 + 3 / 12, "feet"),
  14375. default: true
  14376. },
  14377. ]
  14378. ))
  14379. characterMakers.push(() => makeCharacter(
  14380. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14381. {
  14382. front: {
  14383. height: math.unit(6, "feet"),
  14384. weight: math.unit(150, "lb"),
  14385. name: "Front",
  14386. image: {
  14387. source: "./media/characters/porter/front.svg",
  14388. extra: 1,
  14389. bottom: 0.01
  14390. }
  14391. },
  14392. frontRobes: {
  14393. height: math.unit(6, "feet"),
  14394. weight: math.unit(150, "lb"),
  14395. name: "Front (Robes)",
  14396. image: {
  14397. source: "./media/characters/porter/front-robes.svg",
  14398. extra: 1.01,
  14399. bottom: 0.01
  14400. }
  14401. },
  14402. },
  14403. [
  14404. {
  14405. name: "Normal",
  14406. height: math.unit(11 + 9 / 12, "feet"),
  14407. default: true
  14408. },
  14409. ]
  14410. ))
  14411. characterMakers.push(() => makeCharacter(
  14412. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14413. {
  14414. legendary: {
  14415. height: math.unit(6, "feet"),
  14416. weight: math.unit(150, "lb"),
  14417. name: "Legendary",
  14418. image: {
  14419. source: "./media/characters/lucy/legendary.svg",
  14420. extra: 1355 / 1100,
  14421. bottom: 0.045
  14422. }
  14423. },
  14424. },
  14425. [
  14426. {
  14427. name: "Legendary",
  14428. height: math.unit(86882 * 2, "miles"),
  14429. default: true
  14430. },
  14431. ]
  14432. ))
  14433. characterMakers.push(() => makeCharacter(
  14434. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14435. {
  14436. front: {
  14437. height: math.unit(6, "feet"),
  14438. weight: math.unit(150, "lb"),
  14439. name: "Front",
  14440. image: {
  14441. source: "./media/characters/drusilla/front.svg",
  14442. extra: 678 / 635,
  14443. bottom: 0.03
  14444. }
  14445. },
  14446. back: {
  14447. height: math.unit(6, "feet"),
  14448. weight: math.unit(150, "lb"),
  14449. name: "Back",
  14450. image: {
  14451. source: "./media/characters/drusilla/back.svg",
  14452. extra: 678 / 635,
  14453. bottom: 0.005
  14454. }
  14455. },
  14456. },
  14457. [
  14458. {
  14459. name: "Macro",
  14460. height: math.unit(100, "feet")
  14461. },
  14462. {
  14463. name: "Canon Height",
  14464. height: math.unit(2000, "feet"),
  14465. default: true
  14466. },
  14467. ]
  14468. ))
  14469. characterMakers.push(() => makeCharacter(
  14470. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14471. {
  14472. front: {
  14473. height: math.unit(6, "feet"),
  14474. weight: math.unit(180, "lb"),
  14475. name: "Front",
  14476. image: {
  14477. source: "./media/characters/renard-thatch/front.svg",
  14478. extra: 2411 / 2275,
  14479. bottom: 0.01
  14480. }
  14481. },
  14482. frontPosing: {
  14483. height: math.unit(6, "feet"),
  14484. weight: math.unit(180, "lb"),
  14485. name: "Front (Posing)",
  14486. image: {
  14487. source: "./media/characters/renard-thatch/front-posing.svg",
  14488. extra: 2381 / 2261,
  14489. bottom: 0.01
  14490. }
  14491. },
  14492. back: {
  14493. height: math.unit(6, "feet"),
  14494. weight: math.unit(180, "lb"),
  14495. name: "Back",
  14496. image: {
  14497. source: "./media/characters/renard-thatch/back.svg",
  14498. extra: 2428 / 2288
  14499. }
  14500. },
  14501. },
  14502. [
  14503. {
  14504. name: "Micro",
  14505. height: math.unit(3, "inches")
  14506. },
  14507. {
  14508. name: "Default",
  14509. height: math.unit(6, "feet"),
  14510. default: true
  14511. },
  14512. {
  14513. name: "Macro",
  14514. height: math.unit(75, "feet")
  14515. },
  14516. ]
  14517. ))
  14518. characterMakers.push(() => makeCharacter(
  14519. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14520. {
  14521. front: {
  14522. height: math.unit(1450, "feet"),
  14523. weight: math.unit(1.21e6, "tons"),
  14524. name: "Front",
  14525. image: {
  14526. source: "./media/characters/sekvra/front.svg",
  14527. extra: 1193/1190,
  14528. bottom: 78/1271
  14529. }
  14530. },
  14531. side: {
  14532. height: math.unit(1450, "feet"),
  14533. weight: math.unit(1.21e6, "tons"),
  14534. name: "Side",
  14535. image: {
  14536. source: "./media/characters/sekvra/side.svg",
  14537. extra: 1193/1190,
  14538. bottom: 52/1245
  14539. }
  14540. },
  14541. back: {
  14542. height: math.unit(1450, "feet"),
  14543. weight: math.unit(1.21e6, "tons"),
  14544. name: "Back",
  14545. image: {
  14546. source: "./media/characters/sekvra/back.svg",
  14547. extra: 1219/1216,
  14548. bottom: 21/1240
  14549. }
  14550. },
  14551. frontClothed: {
  14552. height: math.unit(1450, "feet"),
  14553. weight: math.unit(1.21e6, "tons"),
  14554. name: "Front (Clothed)",
  14555. image: {
  14556. source: "./media/characters/sekvra/front-clothed.svg",
  14557. extra: 1192/1189,
  14558. bottom: 79/1271
  14559. }
  14560. },
  14561. },
  14562. [
  14563. {
  14564. name: "Macro",
  14565. height: math.unit(1450, "feet"),
  14566. default: true
  14567. },
  14568. {
  14569. name: "Megamacro",
  14570. height: math.unit(15000, "feet")
  14571. },
  14572. ]
  14573. ))
  14574. characterMakers.push(() => makeCharacter(
  14575. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14576. {
  14577. front: {
  14578. height: math.unit(6, "feet"),
  14579. weight: math.unit(150, "lb"),
  14580. name: "Front",
  14581. image: {
  14582. source: "./media/characters/carmine/front.svg",
  14583. extra: 1,
  14584. bottom: 0.035
  14585. }
  14586. },
  14587. frontArmor: {
  14588. height: math.unit(6, "feet"),
  14589. weight: math.unit(150, "lb"),
  14590. name: "Front (Armor)",
  14591. image: {
  14592. source: "./media/characters/carmine/front-armor.svg",
  14593. extra: 1,
  14594. bottom: 0.035
  14595. }
  14596. },
  14597. },
  14598. [
  14599. {
  14600. name: "Large",
  14601. height: math.unit(1, "mile")
  14602. },
  14603. {
  14604. name: "Huge",
  14605. height: math.unit(40, "miles"),
  14606. default: true
  14607. },
  14608. {
  14609. name: "Colossal",
  14610. height: math.unit(2500, "miles")
  14611. },
  14612. ]
  14613. ))
  14614. characterMakers.push(() => makeCharacter(
  14615. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14616. {
  14617. front: {
  14618. height: math.unit(6, "feet"),
  14619. weight: math.unit(150, "lb"),
  14620. name: "Front",
  14621. image: {
  14622. source: "./media/characters/elyssia/front.svg",
  14623. extra: 2201 / 2035,
  14624. bottom: 0.05
  14625. }
  14626. },
  14627. frontClothed: {
  14628. height: math.unit(6, "feet"),
  14629. weight: math.unit(150, "lb"),
  14630. name: "Front (Clothed)",
  14631. image: {
  14632. source: "./media/characters/elyssia/front-clothed.svg",
  14633. extra: 2201 / 2035,
  14634. bottom: 0.05
  14635. }
  14636. },
  14637. back: {
  14638. height: math.unit(6, "feet"),
  14639. weight: math.unit(150, "lb"),
  14640. name: "Back",
  14641. image: {
  14642. source: "./media/characters/elyssia/back.svg",
  14643. extra: 2201 / 2035,
  14644. bottom: 0.013
  14645. }
  14646. },
  14647. },
  14648. [
  14649. {
  14650. name: "Smaller",
  14651. height: math.unit(150, "feet")
  14652. },
  14653. {
  14654. name: "Standard",
  14655. height: math.unit(1400, "feet"),
  14656. default: true
  14657. },
  14658. {
  14659. name: "Distracted",
  14660. height: math.unit(15000, "feet")
  14661. },
  14662. ]
  14663. ))
  14664. characterMakers.push(() => makeCharacter(
  14665. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14666. {
  14667. front: {
  14668. height: math.unit(7 + 4/12, "feet"),
  14669. weight: math.unit(690, "lb"),
  14670. name: "Front",
  14671. image: {
  14672. source: "./media/characters/geno-maxwell/front.svg",
  14673. extra: 984/856,
  14674. bottom: 87/1071
  14675. }
  14676. },
  14677. back: {
  14678. height: math.unit(7 + 4/12, "feet"),
  14679. weight: math.unit(690, "lb"),
  14680. name: "Back",
  14681. image: {
  14682. source: "./media/characters/geno-maxwell/back.svg",
  14683. extra: 981/854,
  14684. bottom: 57/1038
  14685. }
  14686. },
  14687. frontCostume: {
  14688. height: math.unit(7 + 4/12, "feet"),
  14689. weight: math.unit(690, "lb"),
  14690. name: "Front (Costume)",
  14691. image: {
  14692. source: "./media/characters/geno-maxwell/front-costume.svg",
  14693. extra: 984/856,
  14694. bottom: 87/1071
  14695. }
  14696. },
  14697. backcostume: {
  14698. height: math.unit(7 + 4/12, "feet"),
  14699. weight: math.unit(690, "lb"),
  14700. name: "Back (Costume)",
  14701. image: {
  14702. source: "./media/characters/geno-maxwell/back-costume.svg",
  14703. extra: 981/854,
  14704. bottom: 57/1038
  14705. }
  14706. },
  14707. },
  14708. [
  14709. {
  14710. name: "Micro",
  14711. height: math.unit(3, "inches")
  14712. },
  14713. {
  14714. name: "Normal",
  14715. height: math.unit(7 + 4 / 12, "feet"),
  14716. default: true
  14717. },
  14718. {
  14719. name: "Macro",
  14720. height: math.unit(220, "feet")
  14721. },
  14722. {
  14723. name: "Megamacro",
  14724. height: math.unit(11, "miles")
  14725. },
  14726. ]
  14727. ))
  14728. characterMakers.push(() => makeCharacter(
  14729. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14730. {
  14731. front: {
  14732. height: math.unit(7 + 4/12, "feet"),
  14733. weight: math.unit(750, "lb"),
  14734. name: "Front",
  14735. image: {
  14736. source: "./media/characters/regena-maxwell/front.svg",
  14737. extra: 984/856,
  14738. bottom: 87/1071
  14739. }
  14740. },
  14741. back: {
  14742. height: math.unit(7 + 4/12, "feet"),
  14743. weight: math.unit(750, "lb"),
  14744. name: "Back",
  14745. image: {
  14746. source: "./media/characters/regena-maxwell/back.svg",
  14747. extra: 981/854,
  14748. bottom: 57/1038
  14749. }
  14750. },
  14751. frontCostume: {
  14752. height: math.unit(7 + 4/12, "feet"),
  14753. weight: math.unit(750, "lb"),
  14754. name: "Front (Costume)",
  14755. image: {
  14756. source: "./media/characters/regena-maxwell/front-costume.svg",
  14757. extra: 984/856,
  14758. bottom: 87/1071
  14759. }
  14760. },
  14761. backcostume: {
  14762. height: math.unit(7 + 4/12, "feet"),
  14763. weight: math.unit(750, "lb"),
  14764. name: "Back (Costume)",
  14765. image: {
  14766. source: "./media/characters/regena-maxwell/back-costume.svg",
  14767. extra: 981/854,
  14768. bottom: 57/1038
  14769. }
  14770. },
  14771. },
  14772. [
  14773. {
  14774. name: "Normal",
  14775. height: math.unit(7 + 4 / 12, "feet"),
  14776. default: true
  14777. },
  14778. {
  14779. name: "Macro",
  14780. height: math.unit(220, "feet")
  14781. },
  14782. {
  14783. name: "Megamacro",
  14784. height: math.unit(11, "miles")
  14785. },
  14786. ]
  14787. ))
  14788. characterMakers.push(() => makeCharacter(
  14789. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14790. {
  14791. front: {
  14792. height: math.unit(6, "feet"),
  14793. weight: math.unit(150, "lb"),
  14794. name: "Front",
  14795. image: {
  14796. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14797. extra: 860 / 690,
  14798. bottom: 0.03
  14799. }
  14800. },
  14801. },
  14802. [
  14803. {
  14804. name: "Normal",
  14805. height: math.unit(1.7, "meters"),
  14806. default: true
  14807. },
  14808. ]
  14809. ))
  14810. characterMakers.push(() => makeCharacter(
  14811. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14812. {
  14813. front: {
  14814. height: math.unit(6, "feet"),
  14815. weight: math.unit(150, "lb"),
  14816. name: "Front",
  14817. image: {
  14818. source: "./media/characters/quilly/front.svg",
  14819. extra: 890 / 776
  14820. }
  14821. },
  14822. },
  14823. [
  14824. {
  14825. name: "Gigamacro",
  14826. height: math.unit(404090, "miles"),
  14827. default: true
  14828. },
  14829. ]
  14830. ))
  14831. characterMakers.push(() => makeCharacter(
  14832. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14833. {
  14834. front: {
  14835. height: math.unit(7 + 8 / 12, "feet"),
  14836. weight: math.unit(350, "lb"),
  14837. name: "Front",
  14838. image: {
  14839. source: "./media/characters/tempest/front.svg",
  14840. extra: 1175 / 1086,
  14841. bottom: 0.02
  14842. }
  14843. },
  14844. },
  14845. [
  14846. {
  14847. name: "Normal",
  14848. height: math.unit(7 + 8 / 12, "feet"),
  14849. default: true
  14850. },
  14851. ]
  14852. ))
  14853. characterMakers.push(() => makeCharacter(
  14854. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14855. {
  14856. side: {
  14857. height: math.unit(4 + 5 / 12, "feet"),
  14858. weight: math.unit(80, "lb"),
  14859. name: "Side",
  14860. image: {
  14861. source: "./media/characters/rodger/side.svg",
  14862. extra: 1235 / 1118
  14863. }
  14864. },
  14865. },
  14866. [
  14867. {
  14868. name: "Micro",
  14869. height: math.unit(1, "inch")
  14870. },
  14871. {
  14872. name: "Normal",
  14873. height: math.unit(4 + 5 / 12, "feet"),
  14874. default: true
  14875. },
  14876. {
  14877. name: "Macro",
  14878. height: math.unit(120, "feet")
  14879. },
  14880. ]
  14881. ))
  14882. characterMakers.push(() => makeCharacter(
  14883. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14884. {
  14885. front: {
  14886. height: math.unit(6, "feet"),
  14887. weight: math.unit(150, "lb"),
  14888. name: "Front",
  14889. image: {
  14890. source: "./media/characters/danyel/front.svg",
  14891. extra: 1185 / 1123,
  14892. bottom: 0.05
  14893. }
  14894. },
  14895. },
  14896. [
  14897. {
  14898. name: "Shrunken",
  14899. height: math.unit(0.5, "mm")
  14900. },
  14901. {
  14902. name: "Micro",
  14903. height: math.unit(1, "mm"),
  14904. default: true
  14905. },
  14906. {
  14907. name: "Upsized",
  14908. height: math.unit(5 + 5 / 12, "feet")
  14909. },
  14910. ]
  14911. ))
  14912. characterMakers.push(() => makeCharacter(
  14913. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14914. {
  14915. front: {
  14916. height: math.unit(5 + 6 / 12, "feet"),
  14917. weight: math.unit(200, "lb"),
  14918. name: "Front",
  14919. image: {
  14920. source: "./media/characters/vivian-bijoux/front.svg",
  14921. extra: 1217/1209,
  14922. bottom: 76/1293
  14923. }
  14924. },
  14925. back: {
  14926. height: math.unit(5 + 6 / 12, "feet"),
  14927. weight: math.unit(200, "lb"),
  14928. name: "Back",
  14929. image: {
  14930. source: "./media/characters/vivian-bijoux/back.svg",
  14931. extra: 1214/1208,
  14932. bottom: 51/1265
  14933. }
  14934. },
  14935. dressed: {
  14936. height: math.unit(5 + 6 / 12, "feet"),
  14937. weight: math.unit(200, "lb"),
  14938. name: "Dressed",
  14939. image: {
  14940. source: "./media/characters/vivian-bijoux/dressed.svg",
  14941. extra: 1217/1209,
  14942. bottom: 76/1293
  14943. }
  14944. },
  14945. },
  14946. [
  14947. {
  14948. name: "Normal",
  14949. height: math.unit(5 + 6 / 12, "feet"),
  14950. default: true
  14951. },
  14952. {
  14953. name: "Bad Dream",
  14954. height: math.unit(500, "feet")
  14955. },
  14956. {
  14957. name: "Nightmare",
  14958. height: math.unit(500, "miles")
  14959. },
  14960. ]
  14961. ))
  14962. characterMakers.push(() => makeCharacter(
  14963. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14964. {
  14965. front: {
  14966. height: math.unit(6 + 1 / 12, "feet"),
  14967. weight: math.unit(260, "lb"),
  14968. name: "Front",
  14969. image: {
  14970. source: "./media/characters/zeta/front.svg",
  14971. extra: 1968 / 1889,
  14972. bottom: 0.06
  14973. }
  14974. },
  14975. back: {
  14976. height: math.unit(6 + 1 / 12, "feet"),
  14977. weight: math.unit(260, "lb"),
  14978. name: "Back",
  14979. image: {
  14980. source: "./media/characters/zeta/back.svg",
  14981. extra: 1944 / 1858,
  14982. bottom: 0.03
  14983. }
  14984. },
  14985. hand: {
  14986. height: math.unit(1.112, "feet"),
  14987. name: "Hand",
  14988. image: {
  14989. source: "./media/characters/zeta/hand.svg"
  14990. }
  14991. },
  14992. foot: {
  14993. height: math.unit(1.48, "feet"),
  14994. name: "Foot",
  14995. image: {
  14996. source: "./media/characters/zeta/foot.svg"
  14997. }
  14998. },
  14999. },
  15000. [
  15001. {
  15002. name: "Micro",
  15003. height: math.unit(6, "inches")
  15004. },
  15005. {
  15006. name: "Normal",
  15007. height: math.unit(6 + 1 / 12, "feet"),
  15008. default: true
  15009. },
  15010. {
  15011. name: "Macro",
  15012. height: math.unit(20, "feet")
  15013. },
  15014. ]
  15015. ))
  15016. characterMakers.push(() => makeCharacter(
  15017. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15018. {
  15019. front: {
  15020. height: math.unit(6, "feet"),
  15021. weight: math.unit(150, "lb"),
  15022. name: "Front",
  15023. image: {
  15024. source: "./media/characters/jamie-larsen/front.svg",
  15025. extra: 962 / 933,
  15026. bottom: 0.02
  15027. }
  15028. },
  15029. back: {
  15030. height: math.unit(6, "feet"),
  15031. weight: math.unit(150, "lb"),
  15032. name: "Back",
  15033. image: {
  15034. source: "./media/characters/jamie-larsen/back.svg",
  15035. extra: 997 / 946
  15036. }
  15037. },
  15038. },
  15039. [
  15040. {
  15041. name: "Macro",
  15042. height: math.unit(28 + 7 / 12, "feet"),
  15043. default: true
  15044. },
  15045. {
  15046. name: "Macro+",
  15047. height: math.unit(180, "feet")
  15048. },
  15049. {
  15050. name: "Megamacro",
  15051. height: math.unit(10, "miles")
  15052. },
  15053. {
  15054. name: "Gigamacro",
  15055. height: math.unit(200000, "miles")
  15056. },
  15057. ]
  15058. ))
  15059. characterMakers.push(() => makeCharacter(
  15060. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15061. {
  15062. front: {
  15063. height: math.unit(6, "feet"),
  15064. weight: math.unit(120, "lb"),
  15065. name: "Front",
  15066. image: {
  15067. source: "./media/characters/vance/front.svg",
  15068. extra: 1980 / 1890,
  15069. bottom: 0.09
  15070. }
  15071. },
  15072. back: {
  15073. height: math.unit(6, "feet"),
  15074. weight: math.unit(120, "lb"),
  15075. name: "Back",
  15076. image: {
  15077. source: "./media/characters/vance/back.svg",
  15078. extra: 2081 / 1994,
  15079. bottom: 0.014
  15080. }
  15081. },
  15082. hand: {
  15083. height: math.unit(0.88, "feet"),
  15084. name: "Hand",
  15085. image: {
  15086. source: "./media/characters/vance/hand.svg"
  15087. }
  15088. },
  15089. foot: {
  15090. height: math.unit(0.64, "feet"),
  15091. name: "Foot",
  15092. image: {
  15093. source: "./media/characters/vance/foot.svg"
  15094. }
  15095. },
  15096. },
  15097. [
  15098. {
  15099. name: "Small",
  15100. height: math.unit(90, "feet"),
  15101. default: true
  15102. },
  15103. {
  15104. name: "Macro",
  15105. height: math.unit(100, "meters")
  15106. },
  15107. {
  15108. name: "Megamacro",
  15109. height: math.unit(15, "miles")
  15110. },
  15111. ]
  15112. ))
  15113. characterMakers.push(() => makeCharacter(
  15114. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15115. {
  15116. front: {
  15117. height: math.unit(6, "feet"),
  15118. weight: math.unit(180, "lb"),
  15119. name: "Front",
  15120. image: {
  15121. source: "./media/characters/xochitl/front.svg",
  15122. extra: 2297 / 2261,
  15123. bottom: 0.065
  15124. }
  15125. },
  15126. back: {
  15127. height: math.unit(6, "feet"),
  15128. weight: math.unit(180, "lb"),
  15129. name: "Back",
  15130. image: {
  15131. source: "./media/characters/xochitl/back.svg",
  15132. extra: 2386 / 2354,
  15133. bottom: 0.01
  15134. }
  15135. },
  15136. foot: {
  15137. height: math.unit(6 / 5 * 1.15, "feet"),
  15138. weight: math.unit(150, "lb"),
  15139. name: "Foot",
  15140. image: {
  15141. source: "./media/characters/xochitl/foot.svg"
  15142. }
  15143. },
  15144. },
  15145. [
  15146. {
  15147. name: "Macro",
  15148. height: math.unit(80, "feet")
  15149. },
  15150. {
  15151. name: "Macro+",
  15152. height: math.unit(400, "feet"),
  15153. default: true
  15154. },
  15155. {
  15156. name: "Gigamacro",
  15157. height: math.unit(80000, "miles")
  15158. },
  15159. {
  15160. name: "Gigamacro+",
  15161. height: math.unit(400000, "miles")
  15162. },
  15163. {
  15164. name: "Teramacro",
  15165. height: math.unit(300, "AU")
  15166. },
  15167. ]
  15168. ))
  15169. characterMakers.push(() => makeCharacter(
  15170. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15171. {
  15172. front: {
  15173. height: math.unit(6, "feet"),
  15174. weight: math.unit(150, "lb"),
  15175. name: "Front",
  15176. image: {
  15177. source: "./media/characters/vincent/front.svg",
  15178. extra: 1130 / 1080,
  15179. bottom: 0.055
  15180. }
  15181. },
  15182. beak: {
  15183. height: math.unit(6 * 0.1, "feet"),
  15184. name: "Beak",
  15185. image: {
  15186. source: "./media/characters/vincent/beak.svg"
  15187. }
  15188. },
  15189. hand: {
  15190. height: math.unit(6 * 0.85, "feet"),
  15191. weight: math.unit(150, "lb"),
  15192. name: "Hand",
  15193. image: {
  15194. source: "./media/characters/vincent/hand.svg"
  15195. }
  15196. },
  15197. foot: {
  15198. height: math.unit(6 * 0.19, "feet"),
  15199. weight: math.unit(150, "lb"),
  15200. name: "Foot",
  15201. image: {
  15202. source: "./media/characters/vincent/foot.svg"
  15203. }
  15204. },
  15205. },
  15206. [
  15207. {
  15208. name: "Base",
  15209. height: math.unit(6 + 5 / 12, "feet"),
  15210. default: true
  15211. },
  15212. {
  15213. name: "Macro",
  15214. height: math.unit(300, "feet")
  15215. },
  15216. {
  15217. name: "Megamacro",
  15218. height: math.unit(2, "miles")
  15219. },
  15220. {
  15221. name: "Gigamacro",
  15222. height: math.unit(1000, "miles")
  15223. },
  15224. ]
  15225. ))
  15226. characterMakers.push(() => makeCharacter(
  15227. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15228. {
  15229. front: {
  15230. height: math.unit(2, "meters"),
  15231. weight: math.unit(500, "kg"),
  15232. name: "Front",
  15233. image: {
  15234. source: "./media/characters/coatl/front.svg",
  15235. extra: 3948 / 3500,
  15236. bottom: 0.082
  15237. }
  15238. },
  15239. },
  15240. [
  15241. {
  15242. name: "Normal",
  15243. height: math.unit(4, "meters")
  15244. },
  15245. {
  15246. name: "Macro",
  15247. height: math.unit(100, "meters"),
  15248. default: true
  15249. },
  15250. {
  15251. name: "Macro+",
  15252. height: math.unit(300, "meters")
  15253. },
  15254. {
  15255. name: "Megamacro",
  15256. height: math.unit(3, "gigameters")
  15257. },
  15258. {
  15259. name: "Megamacro+",
  15260. height: math.unit(300, "terameters")
  15261. },
  15262. {
  15263. name: "Megamacro++",
  15264. height: math.unit(3, "lightyears")
  15265. },
  15266. ]
  15267. ))
  15268. characterMakers.push(() => makeCharacter(
  15269. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15270. {
  15271. front: {
  15272. height: math.unit(6, "feet"),
  15273. weight: math.unit(50, "kg"),
  15274. name: "front",
  15275. image: {
  15276. source: "./media/characters/shiroryu/front.svg",
  15277. extra: 1990 / 1935
  15278. }
  15279. },
  15280. },
  15281. [
  15282. {
  15283. name: "Mortal Mingling",
  15284. height: math.unit(3, "meters")
  15285. },
  15286. {
  15287. name: "Kaiju-ish",
  15288. height: math.unit(250, "meters")
  15289. },
  15290. {
  15291. name: "Somewhat Godly",
  15292. height: math.unit(400, "km"),
  15293. default: true
  15294. },
  15295. {
  15296. name: "Planetary",
  15297. height: math.unit(300, "megameters")
  15298. },
  15299. {
  15300. name: "Galaxy-dwarfing",
  15301. height: math.unit(450, "kiloparsecs")
  15302. },
  15303. {
  15304. name: "Universe Eater",
  15305. height: math.unit(150, "gigaparsecs")
  15306. },
  15307. {
  15308. name: "Almost Immeasurable",
  15309. height: math.unit(1.3e266, "yottaparsecs")
  15310. },
  15311. ]
  15312. ))
  15313. characterMakers.push(() => makeCharacter(
  15314. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15315. {
  15316. front: {
  15317. height: math.unit(6, "feet"),
  15318. weight: math.unit(150, "lb"),
  15319. name: "Front",
  15320. image: {
  15321. source: "./media/characters/umeko/front.svg",
  15322. extra: 1,
  15323. bottom: 0.019
  15324. }
  15325. },
  15326. frontArmored: {
  15327. height: math.unit(6, "feet"),
  15328. weight: math.unit(150, "lb"),
  15329. name: "Front (Armored)",
  15330. image: {
  15331. source: "./media/characters/umeko/front-armored.svg",
  15332. extra: 1,
  15333. bottom: 0.021
  15334. }
  15335. },
  15336. },
  15337. [
  15338. {
  15339. name: "Macro",
  15340. height: math.unit(220, "feet"),
  15341. default: true
  15342. },
  15343. {
  15344. name: "Guardian Dragon",
  15345. height: math.unit(50, "miles")
  15346. },
  15347. {
  15348. name: "Cosmic",
  15349. height: math.unit(800000, "miles")
  15350. },
  15351. ]
  15352. ))
  15353. characterMakers.push(() => makeCharacter(
  15354. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15355. {
  15356. front: {
  15357. height: math.unit(6, "feet"),
  15358. weight: math.unit(150, "lb"),
  15359. name: "Front",
  15360. image: {
  15361. source: "./media/characters/cassidy/front.svg",
  15362. extra: 810/808,
  15363. bottom: 41/851
  15364. }
  15365. },
  15366. },
  15367. [
  15368. {
  15369. name: "Canon Height",
  15370. height: math.unit(120, "feet"),
  15371. default: true
  15372. },
  15373. {
  15374. name: "Macro+",
  15375. height: math.unit(400, "feet")
  15376. },
  15377. {
  15378. name: "Macro++",
  15379. height: math.unit(4000, "feet")
  15380. },
  15381. {
  15382. name: "Megamacro",
  15383. height: math.unit(3, "miles")
  15384. },
  15385. ]
  15386. ))
  15387. characterMakers.push(() => makeCharacter(
  15388. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15389. {
  15390. front: {
  15391. height: math.unit(6, "feet"),
  15392. weight: math.unit(150, "lb"),
  15393. name: "Front",
  15394. image: {
  15395. source: "./media/characters/isaac/front.svg",
  15396. extra: 896 / 815,
  15397. bottom: 0.11
  15398. }
  15399. },
  15400. },
  15401. [
  15402. {
  15403. name: "Human Size",
  15404. height: math.unit(8, "feet"),
  15405. default: true
  15406. },
  15407. {
  15408. name: "Macro",
  15409. height: math.unit(400, "feet")
  15410. },
  15411. {
  15412. name: "Megamacro",
  15413. height: math.unit(50, "miles")
  15414. },
  15415. {
  15416. name: "Canon Height",
  15417. height: math.unit(200, "AU")
  15418. },
  15419. ]
  15420. ))
  15421. characterMakers.push(() => makeCharacter(
  15422. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15423. {
  15424. front: {
  15425. height: math.unit(6, "feet"),
  15426. weight: math.unit(72, "kg"),
  15427. name: "Front",
  15428. image: {
  15429. source: "./media/characters/sleekit/front.svg",
  15430. extra: 4693 / 4487,
  15431. bottom: 0.012
  15432. }
  15433. },
  15434. },
  15435. [
  15436. {
  15437. name: "Minimum Height",
  15438. height: math.unit(10, "meters")
  15439. },
  15440. {
  15441. name: "Smaller",
  15442. height: math.unit(25, "meters")
  15443. },
  15444. {
  15445. name: "Larger",
  15446. height: math.unit(38, "meters"),
  15447. default: true
  15448. },
  15449. {
  15450. name: "Maximum height",
  15451. height: math.unit(100, "meters")
  15452. },
  15453. ]
  15454. ))
  15455. characterMakers.push(() => makeCharacter(
  15456. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15457. {
  15458. front: {
  15459. height: math.unit(6, "feet"),
  15460. weight: math.unit(150, "lb"),
  15461. name: "Front",
  15462. image: {
  15463. source: "./media/characters/nillia/front.svg",
  15464. extra: 2195 / 2037,
  15465. bottom: 0.005
  15466. }
  15467. },
  15468. back: {
  15469. height: math.unit(6, "feet"),
  15470. weight: math.unit(150, "lb"),
  15471. name: "Back",
  15472. image: {
  15473. source: "./media/characters/nillia/back.svg",
  15474. extra: 2195 / 2037,
  15475. bottom: 0.005
  15476. }
  15477. },
  15478. },
  15479. [
  15480. {
  15481. name: "Canon Height",
  15482. height: math.unit(489, "feet"),
  15483. default: true
  15484. }
  15485. ]
  15486. ))
  15487. characterMakers.push(() => makeCharacter(
  15488. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15489. {
  15490. front: {
  15491. height: math.unit(6, "feet"),
  15492. weight: math.unit(150, "lb"),
  15493. name: "Front",
  15494. image: {
  15495. source: "./media/characters/mesmyriza/front.svg",
  15496. extra: 2067 / 1784,
  15497. bottom: 0.035
  15498. }
  15499. },
  15500. foot: {
  15501. height: math.unit(6 / (250 / 35), "feet"),
  15502. name: "Foot",
  15503. image: {
  15504. source: "./media/characters/mesmyriza/foot.svg"
  15505. }
  15506. },
  15507. },
  15508. [
  15509. {
  15510. name: "Macro",
  15511. height: math.unit(457, "meters"),
  15512. default: true
  15513. },
  15514. {
  15515. name: "Megamacro",
  15516. height: math.unit(8, "megameters")
  15517. },
  15518. ]
  15519. ))
  15520. characterMakers.push(() => makeCharacter(
  15521. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15522. {
  15523. front: {
  15524. height: math.unit(6, "feet"),
  15525. weight: math.unit(250, "lb"),
  15526. name: "Front",
  15527. image: {
  15528. source: "./media/characters/saudade/front.svg",
  15529. extra: 1172 / 1139,
  15530. bottom: 0.035
  15531. }
  15532. },
  15533. },
  15534. [
  15535. {
  15536. name: "Micro",
  15537. height: math.unit(3, "inches")
  15538. },
  15539. {
  15540. name: "Normal",
  15541. height: math.unit(6, "feet"),
  15542. default: true
  15543. },
  15544. {
  15545. name: "Macro",
  15546. height: math.unit(50, "feet")
  15547. },
  15548. {
  15549. name: "Megamacro",
  15550. height: math.unit(2800, "feet")
  15551. },
  15552. ]
  15553. ))
  15554. characterMakers.push(() => makeCharacter(
  15555. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15556. {
  15557. front: {
  15558. height: math.unit(5 + 4 / 12, "feet"),
  15559. weight: math.unit(100, "lb"),
  15560. name: "Front",
  15561. image: {
  15562. source: "./media/characters/keireer/front.svg",
  15563. extra: 716 / 666,
  15564. bottom: 0.05
  15565. }
  15566. },
  15567. },
  15568. [
  15569. {
  15570. name: "Normal",
  15571. height: math.unit(5 + 4 / 12, "feet"),
  15572. default: true
  15573. },
  15574. ]
  15575. ))
  15576. characterMakers.push(() => makeCharacter(
  15577. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15578. {
  15579. front: {
  15580. height: math.unit(5.5, "feet"),
  15581. weight: math.unit(90, "kg"),
  15582. name: "Front",
  15583. image: {
  15584. source: "./media/characters/mirja/front.svg",
  15585. extra: 1452/1262,
  15586. bottom: 67/1519
  15587. }
  15588. },
  15589. frontDressed: {
  15590. height: math.unit(5.5, "feet"),
  15591. weight: math.unit(90, "lb"),
  15592. name: "Front (Dressed)",
  15593. image: {
  15594. source: "./media/characters/mirja/dressed.svg",
  15595. extra: 1452/1262,
  15596. bottom: 67/1519
  15597. }
  15598. },
  15599. back: {
  15600. height: math.unit(6, "feet"),
  15601. weight: math.unit(90, "lb"),
  15602. name: "Back",
  15603. image: {
  15604. source: "./media/characters/mirja/back.svg",
  15605. extra: 1892/1795,
  15606. bottom: 48/1940
  15607. }
  15608. },
  15609. maw: {
  15610. height: math.unit(1.312, "feet"),
  15611. name: "Maw",
  15612. image: {
  15613. source: "./media/characters/mirja/maw.svg"
  15614. }
  15615. },
  15616. paw: {
  15617. height: math.unit(1.15, "feet"),
  15618. name: "Paw",
  15619. image: {
  15620. source: "./media/characters/mirja/paw.svg"
  15621. }
  15622. },
  15623. },
  15624. [
  15625. {
  15626. name: "\"Incognito\"",
  15627. height: math.unit(3, "meters")
  15628. },
  15629. {
  15630. name: "Strolling Size",
  15631. height: math.unit(15, "km")
  15632. },
  15633. {
  15634. name: "Larger Strolling Size",
  15635. height: math.unit(400, "km")
  15636. },
  15637. {
  15638. name: "Preferred Size",
  15639. height: math.unit(5000, "km"),
  15640. default: true
  15641. },
  15642. {
  15643. name: "True Size",
  15644. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15645. },
  15646. ]
  15647. ))
  15648. characterMakers.push(() => makeCharacter(
  15649. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15650. {
  15651. front: {
  15652. height: math.unit(15, "feet"),
  15653. weight: math.unit(880, "kg"),
  15654. name: "Front",
  15655. image: {
  15656. source: "./media/characters/nightraver/front.svg",
  15657. extra: 2444 / 2160,
  15658. bottom: 0.027
  15659. }
  15660. },
  15661. back: {
  15662. height: math.unit(15, "feet"),
  15663. weight: math.unit(880, "kg"),
  15664. name: "Back",
  15665. image: {
  15666. source: "./media/characters/nightraver/back.svg",
  15667. extra: 2309 / 2180,
  15668. bottom: 0.005
  15669. }
  15670. },
  15671. sole: {
  15672. height: math.unit(2.878, "feet"),
  15673. name: "Sole",
  15674. image: {
  15675. source: "./media/characters/nightraver/sole.svg"
  15676. }
  15677. },
  15678. foot: {
  15679. height: math.unit(2.285, "feet"),
  15680. name: "Foot",
  15681. image: {
  15682. source: "./media/characters/nightraver/foot.svg"
  15683. }
  15684. },
  15685. maw: {
  15686. height: math.unit(2.67, "feet"),
  15687. name: "Maw",
  15688. image: {
  15689. source: "./media/characters/nightraver/maw.svg"
  15690. }
  15691. },
  15692. },
  15693. [
  15694. {
  15695. name: "Micro",
  15696. height: math.unit(1, "cm")
  15697. },
  15698. {
  15699. name: "Normal",
  15700. height: math.unit(15, "feet"),
  15701. default: true
  15702. },
  15703. {
  15704. name: "Macro",
  15705. height: math.unit(300, "feet")
  15706. },
  15707. {
  15708. name: "Megamacro",
  15709. height: math.unit(300, "miles")
  15710. },
  15711. {
  15712. name: "Gigamacro",
  15713. height: math.unit(10000, "miles")
  15714. },
  15715. ]
  15716. ))
  15717. characterMakers.push(() => makeCharacter(
  15718. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15719. {
  15720. side: {
  15721. height: math.unit(2, "inches"),
  15722. weight: math.unit(5, "grams"),
  15723. name: "Side",
  15724. image: {
  15725. source: "./media/characters/arc/side.svg"
  15726. }
  15727. },
  15728. },
  15729. [
  15730. {
  15731. name: "Micro",
  15732. height: math.unit(2, "inches"),
  15733. default: true
  15734. },
  15735. ]
  15736. ))
  15737. characterMakers.push(() => makeCharacter(
  15738. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15739. {
  15740. front: {
  15741. height: math.unit(1.1938, "meters"),
  15742. weight: math.unit(54, "kg"),
  15743. name: "Front",
  15744. image: {
  15745. source: "./media/characters/nebula-shahar/front.svg",
  15746. extra: 1642 / 1436,
  15747. bottom: 0.06
  15748. }
  15749. },
  15750. },
  15751. [
  15752. {
  15753. name: "Megamicro",
  15754. height: math.unit(0.3, "mm")
  15755. },
  15756. {
  15757. name: "Micro",
  15758. height: math.unit(3, "cm")
  15759. },
  15760. {
  15761. name: "Normal",
  15762. height: math.unit(138, "cm"),
  15763. default: true
  15764. },
  15765. {
  15766. name: "Macro",
  15767. height: math.unit(30, "m")
  15768. },
  15769. ]
  15770. ))
  15771. characterMakers.push(() => makeCharacter(
  15772. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15773. {
  15774. front: {
  15775. height: math.unit(5.24, "feet"),
  15776. weight: math.unit(150, "lb"),
  15777. name: "Front",
  15778. image: {
  15779. source: "./media/characters/shayla/front.svg",
  15780. extra: 1512 / 1414,
  15781. bottom: 0.01
  15782. }
  15783. },
  15784. back: {
  15785. height: math.unit(5.24, "feet"),
  15786. weight: math.unit(150, "lb"),
  15787. name: "Back",
  15788. image: {
  15789. source: "./media/characters/shayla/back.svg",
  15790. extra: 1512 / 1414
  15791. }
  15792. },
  15793. hand: {
  15794. height: math.unit(0.7781496062992126, "feet"),
  15795. name: "Hand",
  15796. image: {
  15797. source: "./media/characters/shayla/hand.svg"
  15798. }
  15799. },
  15800. foot: {
  15801. height: math.unit(1.4206036745406823, "feet"),
  15802. name: "Foot",
  15803. image: {
  15804. source: "./media/characters/shayla/foot.svg"
  15805. }
  15806. },
  15807. },
  15808. [
  15809. {
  15810. name: "Micro",
  15811. height: math.unit(0.32, "feet")
  15812. },
  15813. {
  15814. name: "Normal",
  15815. height: math.unit(5.24, "feet"),
  15816. default: true
  15817. },
  15818. {
  15819. name: "Macro",
  15820. height: math.unit(492.12, "feet")
  15821. },
  15822. {
  15823. name: "Megamacro",
  15824. height: math.unit(186.41, "miles")
  15825. },
  15826. ]
  15827. ))
  15828. characterMakers.push(() => makeCharacter(
  15829. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15830. {
  15831. front: {
  15832. height: math.unit(2.2, "m"),
  15833. weight: math.unit(120, "kg"),
  15834. name: "Front",
  15835. image: {
  15836. source: "./media/characters/pia-jr/front.svg",
  15837. extra: 1000 / 970,
  15838. bottom: 0.035
  15839. }
  15840. },
  15841. hand: {
  15842. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15843. name: "Hand",
  15844. image: {
  15845. source: "./media/characters/pia-jr/hand.svg"
  15846. }
  15847. },
  15848. paw: {
  15849. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15850. name: "Paw",
  15851. image: {
  15852. source: "./media/characters/pia-jr/paw.svg"
  15853. }
  15854. },
  15855. },
  15856. [
  15857. {
  15858. name: "Micro",
  15859. height: math.unit(1.2, "cm")
  15860. },
  15861. {
  15862. name: "Normal",
  15863. height: math.unit(2.2, "m"),
  15864. default: true
  15865. },
  15866. {
  15867. name: "Macro",
  15868. height: math.unit(180, "m")
  15869. },
  15870. {
  15871. name: "Megamacro",
  15872. height: math.unit(420, "km")
  15873. },
  15874. ]
  15875. ))
  15876. characterMakers.push(() => makeCharacter(
  15877. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15878. {
  15879. front: {
  15880. height: math.unit(2, "m"),
  15881. weight: math.unit(115, "kg"),
  15882. name: "Front",
  15883. image: {
  15884. source: "./media/characters/pia-sr/front.svg",
  15885. extra: 760 / 730,
  15886. bottom: 0.015
  15887. }
  15888. },
  15889. back: {
  15890. height: math.unit(2, "m"),
  15891. weight: math.unit(115, "kg"),
  15892. name: "Back",
  15893. image: {
  15894. source: "./media/characters/pia-sr/back.svg",
  15895. extra: 760 / 730,
  15896. bottom: 0.01
  15897. }
  15898. },
  15899. hand: {
  15900. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15901. name: "Hand",
  15902. image: {
  15903. source: "./media/characters/pia-sr/hand.svg"
  15904. }
  15905. },
  15906. foot: {
  15907. height: math.unit(1.83, "feet"),
  15908. name: "Foot",
  15909. image: {
  15910. source: "./media/characters/pia-sr/foot.svg"
  15911. }
  15912. },
  15913. },
  15914. [
  15915. {
  15916. name: "Micro",
  15917. height: math.unit(88, "mm")
  15918. },
  15919. {
  15920. name: "Normal",
  15921. height: math.unit(2, "m"),
  15922. default: true
  15923. },
  15924. {
  15925. name: "Macro",
  15926. height: math.unit(200, "m")
  15927. },
  15928. {
  15929. name: "Megamacro",
  15930. height: math.unit(420, "km")
  15931. },
  15932. ]
  15933. ))
  15934. characterMakers.push(() => makeCharacter(
  15935. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15936. {
  15937. front: {
  15938. height: math.unit(8 + 2 / 12, "feet"),
  15939. weight: math.unit(300, "lb"),
  15940. name: "Front",
  15941. image: {
  15942. source: "./media/characters/kibibyte/front.svg",
  15943. extra: 2221 / 2098,
  15944. bottom: 0.04
  15945. }
  15946. },
  15947. },
  15948. [
  15949. {
  15950. name: "Normal",
  15951. height: math.unit(8 + 2 / 12, "feet"),
  15952. default: true
  15953. },
  15954. {
  15955. name: "Socialable Macro",
  15956. height: math.unit(50, "feet")
  15957. },
  15958. {
  15959. name: "Macro",
  15960. height: math.unit(300, "feet")
  15961. },
  15962. {
  15963. name: "Megamacro",
  15964. height: math.unit(500, "miles")
  15965. },
  15966. ]
  15967. ))
  15968. characterMakers.push(() => makeCharacter(
  15969. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15970. {
  15971. front: {
  15972. height: math.unit(6, "feet"),
  15973. weight: math.unit(150, "lb"),
  15974. name: "Front",
  15975. image: {
  15976. source: "./media/characters/felix/front.svg",
  15977. extra: 762 / 722,
  15978. bottom: 0.02
  15979. }
  15980. },
  15981. frontClothed: {
  15982. height: math.unit(6, "feet"),
  15983. weight: math.unit(150, "lb"),
  15984. name: "Front (Clothed)",
  15985. image: {
  15986. source: "./media/characters/felix/front-clothed.svg",
  15987. extra: 762 / 722,
  15988. bottom: 0.02
  15989. }
  15990. },
  15991. },
  15992. [
  15993. {
  15994. name: "Normal",
  15995. height: math.unit(6 + 8 / 12, "feet"),
  15996. default: true
  15997. },
  15998. {
  15999. name: "Macro",
  16000. height: math.unit(2600, "feet")
  16001. },
  16002. {
  16003. name: "Megamacro",
  16004. height: math.unit(450, "miles")
  16005. },
  16006. ]
  16007. ))
  16008. characterMakers.push(() => makeCharacter(
  16009. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16010. {
  16011. front: {
  16012. height: math.unit(6 + 1 / 12, "feet"),
  16013. weight: math.unit(250, "lb"),
  16014. name: "Front",
  16015. image: {
  16016. source: "./media/characters/tobo/front.svg",
  16017. extra: 608 / 586,
  16018. bottom: 0.023
  16019. }
  16020. },
  16021. back: {
  16022. height: math.unit(6 + 1 / 12, "feet"),
  16023. weight: math.unit(250, "lb"),
  16024. name: "Back",
  16025. image: {
  16026. source: "./media/characters/tobo/back.svg",
  16027. extra: 608 / 586
  16028. }
  16029. },
  16030. },
  16031. [
  16032. {
  16033. name: "Nano",
  16034. height: math.unit(2, "nm")
  16035. },
  16036. {
  16037. name: "Megamicro",
  16038. height: math.unit(0.1, "mm")
  16039. },
  16040. {
  16041. name: "Micro",
  16042. height: math.unit(1, "inch"),
  16043. default: true
  16044. },
  16045. {
  16046. name: "Human-sized",
  16047. height: math.unit(6 + 1 / 12, "feet")
  16048. },
  16049. {
  16050. name: "Macro",
  16051. height: math.unit(250, "feet")
  16052. },
  16053. {
  16054. name: "Megamacro",
  16055. height: math.unit(75, "miles")
  16056. },
  16057. {
  16058. name: "Texas-sized",
  16059. height: math.unit(750, "miles")
  16060. },
  16061. {
  16062. name: "Teramacro",
  16063. height: math.unit(50000, "miles")
  16064. },
  16065. ]
  16066. ))
  16067. characterMakers.push(() => makeCharacter(
  16068. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16069. {
  16070. front: {
  16071. height: math.unit(6, "feet"),
  16072. weight: math.unit(269, "lb"),
  16073. name: "Front",
  16074. image: {
  16075. source: "./media/characters/danny-kapowsky/front.svg",
  16076. extra: 766 / 736,
  16077. bottom: 0.044
  16078. }
  16079. },
  16080. back: {
  16081. height: math.unit(6, "feet"),
  16082. weight: math.unit(269, "lb"),
  16083. name: "Back",
  16084. image: {
  16085. source: "./media/characters/danny-kapowsky/back.svg",
  16086. extra: 797 / 760,
  16087. bottom: 0.025
  16088. }
  16089. },
  16090. },
  16091. [
  16092. {
  16093. name: "Macro",
  16094. height: math.unit(150, "feet"),
  16095. default: true
  16096. },
  16097. {
  16098. name: "Macro+",
  16099. height: math.unit(200, "feet")
  16100. },
  16101. {
  16102. name: "Macro++",
  16103. height: math.unit(300, "feet")
  16104. },
  16105. {
  16106. name: "Macro+++",
  16107. height: math.unit(400, "feet")
  16108. },
  16109. ]
  16110. ))
  16111. characterMakers.push(() => makeCharacter(
  16112. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16113. {
  16114. side: {
  16115. height: math.unit(6, "feet"),
  16116. weight: math.unit(170, "lb"),
  16117. name: "Side",
  16118. image: {
  16119. source: "./media/characters/finn/side.svg",
  16120. extra: 1953 / 1807,
  16121. bottom: 0.057
  16122. }
  16123. },
  16124. },
  16125. [
  16126. {
  16127. name: "Megamacro",
  16128. height: math.unit(14445, "feet"),
  16129. default: true
  16130. },
  16131. ]
  16132. ))
  16133. characterMakers.push(() => makeCharacter(
  16134. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16135. {
  16136. front: {
  16137. height: math.unit(5 + 6 / 12, "feet"),
  16138. weight: math.unit(125, "lb"),
  16139. name: "Front",
  16140. image: {
  16141. source: "./media/characters/roy/front.svg",
  16142. extra: 1,
  16143. bottom: 0.11
  16144. }
  16145. },
  16146. },
  16147. [
  16148. {
  16149. name: "Micro",
  16150. height: math.unit(3, "inches"),
  16151. default: true
  16152. },
  16153. {
  16154. name: "Normal",
  16155. height: math.unit(5 + 6 / 12, "feet")
  16156. },
  16157. {
  16158. name: "Lesser Macro",
  16159. height: math.unit(60, "feet")
  16160. },
  16161. {
  16162. name: "Greater Macro",
  16163. height: math.unit(120, "feet")
  16164. },
  16165. ]
  16166. ))
  16167. characterMakers.push(() => makeCharacter(
  16168. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16169. {
  16170. front: {
  16171. height: math.unit(6, "feet"),
  16172. weight: math.unit(100, "lb"),
  16173. name: "Front",
  16174. image: {
  16175. source: "./media/characters/aevsivs/front.svg",
  16176. extra: 1,
  16177. bottom: 0.03
  16178. }
  16179. },
  16180. back: {
  16181. height: math.unit(6, "feet"),
  16182. weight: math.unit(100, "lb"),
  16183. name: "Back",
  16184. image: {
  16185. source: "./media/characters/aevsivs/back.svg"
  16186. }
  16187. },
  16188. },
  16189. [
  16190. {
  16191. name: "Micro",
  16192. height: math.unit(2, "inches"),
  16193. default: true
  16194. },
  16195. {
  16196. name: "Normal",
  16197. height: math.unit(5, "feet")
  16198. },
  16199. ]
  16200. ))
  16201. characterMakers.push(() => makeCharacter(
  16202. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16203. {
  16204. front: {
  16205. height: math.unit(5 + 7 / 12, "feet"),
  16206. weight: math.unit(159, "lb"),
  16207. name: "Front",
  16208. image: {
  16209. source: "./media/characters/hildegard/front.svg",
  16210. extra: 289 / 269,
  16211. bottom: 7.63 / 297.8
  16212. }
  16213. },
  16214. back: {
  16215. height: math.unit(5 + 7 / 12, "feet"),
  16216. weight: math.unit(159, "lb"),
  16217. name: "Back",
  16218. image: {
  16219. source: "./media/characters/hildegard/back.svg",
  16220. extra: 280 / 260,
  16221. bottom: 2.3 / 282
  16222. }
  16223. },
  16224. },
  16225. [
  16226. {
  16227. name: "Normal",
  16228. height: math.unit(5 + 7 / 12, "feet"),
  16229. default: true
  16230. },
  16231. ]
  16232. ))
  16233. characterMakers.push(() => makeCharacter(
  16234. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16235. {
  16236. bernard: {
  16237. height: math.unit(2 + 7 / 12, "feet"),
  16238. weight: math.unit(66, "lb"),
  16239. name: "Bernard",
  16240. rename: true,
  16241. image: {
  16242. source: "./media/characters/bernard-wilder/bernard.svg",
  16243. extra: 192 / 128,
  16244. bottom: 0.05
  16245. }
  16246. },
  16247. wilder: {
  16248. height: math.unit(5 + 8 / 12, "feet"),
  16249. weight: math.unit(143, "lb"),
  16250. name: "Wilder",
  16251. rename: true,
  16252. image: {
  16253. source: "./media/characters/bernard-wilder/wilder.svg",
  16254. extra: 361 / 312,
  16255. bottom: 0.02
  16256. }
  16257. },
  16258. },
  16259. [
  16260. {
  16261. name: "Normal",
  16262. height: math.unit(2 + 7 / 12, "feet"),
  16263. default: true
  16264. },
  16265. ]
  16266. ))
  16267. characterMakers.push(() => makeCharacter(
  16268. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16269. {
  16270. anthro: {
  16271. height: math.unit(6 + 1 / 12, "feet"),
  16272. weight: math.unit(155, "lb"),
  16273. name: "Anthro",
  16274. image: {
  16275. source: "./media/characters/hearth/anthro.svg",
  16276. extra: 1178/1136,
  16277. bottom: 28/1206
  16278. }
  16279. },
  16280. feral: {
  16281. height: math.unit(3.78, "feet"),
  16282. weight: math.unit(35, "kg"),
  16283. name: "Feral",
  16284. image: {
  16285. source: "./media/characters/hearth/feral.svg",
  16286. extra: 153 / 135,
  16287. bottom: 0.03
  16288. }
  16289. },
  16290. },
  16291. [
  16292. {
  16293. name: "Normal",
  16294. height: math.unit(6 + 1 / 12, "feet"),
  16295. default: true
  16296. },
  16297. ]
  16298. ))
  16299. characterMakers.push(() => makeCharacter(
  16300. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16301. {
  16302. front: {
  16303. height: math.unit(6, "feet"),
  16304. weight: math.unit(182, "lb"),
  16305. name: "Front",
  16306. image: {
  16307. source: "./media/characters/ingrid/front.svg",
  16308. extra: 294 / 268,
  16309. bottom: 0.027
  16310. }
  16311. },
  16312. },
  16313. [
  16314. {
  16315. name: "Normal",
  16316. height: math.unit(6, "feet"),
  16317. default: true
  16318. },
  16319. ]
  16320. ))
  16321. characterMakers.push(() => makeCharacter(
  16322. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16323. {
  16324. eevee: {
  16325. height: math.unit(2 + 10 / 12, "feet"),
  16326. weight: math.unit(86, "lb"),
  16327. name: "Malgam",
  16328. image: {
  16329. source: "./media/characters/malgam/eevee.svg",
  16330. extra: 952/784,
  16331. bottom: 38/990
  16332. }
  16333. },
  16334. sylveon: {
  16335. height: math.unit(4, "feet"),
  16336. weight: math.unit(101, "lb"),
  16337. name: "Future Malgam",
  16338. rename: true,
  16339. image: {
  16340. source: "./media/characters/malgam/sylveon.svg",
  16341. extra: 371 / 325,
  16342. bottom: 0.015
  16343. }
  16344. },
  16345. gigantamax: {
  16346. height: math.unit(50, "feet"),
  16347. name: "Gigantamax Malgam",
  16348. rename: true,
  16349. image: {
  16350. source: "./media/characters/malgam/gigantamax.svg"
  16351. }
  16352. },
  16353. },
  16354. [
  16355. {
  16356. name: "Normal",
  16357. height: math.unit(2 + 10 / 12, "feet"),
  16358. default: true
  16359. },
  16360. ]
  16361. ))
  16362. characterMakers.push(() => makeCharacter(
  16363. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16364. {
  16365. front: {
  16366. height: math.unit(5 + 11 / 12, "feet"),
  16367. weight: math.unit(188, "lb"),
  16368. name: "Front",
  16369. image: {
  16370. source: "./media/characters/fleur/front.svg",
  16371. extra: 309 / 283,
  16372. bottom: 0.007
  16373. }
  16374. },
  16375. },
  16376. [
  16377. {
  16378. name: "Normal",
  16379. height: math.unit(5 + 11 / 12, "feet"),
  16380. default: true
  16381. },
  16382. ]
  16383. ))
  16384. characterMakers.push(() => makeCharacter(
  16385. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16386. {
  16387. front: {
  16388. height: math.unit(5 + 4 / 12, "feet"),
  16389. weight: math.unit(122, "lb"),
  16390. name: "Front",
  16391. image: {
  16392. source: "./media/characters/jude/front.svg",
  16393. extra: 288 / 273,
  16394. bottom: 0.03
  16395. }
  16396. },
  16397. },
  16398. [
  16399. {
  16400. name: "Normal",
  16401. height: math.unit(5 + 4 / 12, "feet"),
  16402. default: true
  16403. },
  16404. ]
  16405. ))
  16406. characterMakers.push(() => makeCharacter(
  16407. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16408. {
  16409. front: {
  16410. height: math.unit(5 + 11 / 12, "feet"),
  16411. weight: math.unit(190, "lb"),
  16412. name: "Front",
  16413. image: {
  16414. source: "./media/characters/seara/front.svg",
  16415. extra: 1,
  16416. bottom: 0.05
  16417. }
  16418. },
  16419. },
  16420. [
  16421. {
  16422. name: "Normal",
  16423. height: math.unit(5 + 11 / 12, "feet"),
  16424. default: true
  16425. },
  16426. ]
  16427. ))
  16428. characterMakers.push(() => makeCharacter(
  16429. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16430. {
  16431. front: {
  16432. height: math.unit(16 + 5 / 12, "feet"),
  16433. weight: math.unit(524, "lb"),
  16434. name: "Front",
  16435. image: {
  16436. source: "./media/characters/caspian-lugia/front.svg",
  16437. extra: 1,
  16438. bottom: 0.04
  16439. }
  16440. },
  16441. },
  16442. [
  16443. {
  16444. name: "Normal",
  16445. height: math.unit(16 + 5 / 12, "feet"),
  16446. default: true
  16447. },
  16448. ]
  16449. ))
  16450. characterMakers.push(() => makeCharacter(
  16451. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16452. {
  16453. front: {
  16454. height: math.unit(5 + 7 / 12, "feet"),
  16455. weight: math.unit(170, "lb"),
  16456. name: "Front",
  16457. image: {
  16458. source: "./media/characters/mika/front.svg",
  16459. extra: 1,
  16460. bottom: 0.016
  16461. }
  16462. },
  16463. },
  16464. [
  16465. {
  16466. name: "Normal",
  16467. height: math.unit(5 + 7 / 12, "feet"),
  16468. default: true
  16469. },
  16470. ]
  16471. ))
  16472. characterMakers.push(() => makeCharacter(
  16473. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16474. {
  16475. front: {
  16476. height: math.unit(6 + 2 / 12, "feet"),
  16477. weight: math.unit(268, "lb"),
  16478. name: "Front",
  16479. image: {
  16480. source: "./media/characters/sol/front.svg",
  16481. extra: 247 / 231,
  16482. bottom: 0.05
  16483. }
  16484. },
  16485. },
  16486. [
  16487. {
  16488. name: "Normal",
  16489. height: math.unit(6 + 2 / 12, "feet"),
  16490. default: true
  16491. },
  16492. ]
  16493. ))
  16494. characterMakers.push(() => makeCharacter(
  16495. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16496. {
  16497. buizel: {
  16498. height: math.unit(2 + 5 / 12, "feet"),
  16499. weight: math.unit(87, "lb"),
  16500. name: "Front",
  16501. image: {
  16502. source: "./media/characters/umiko/buizel.svg",
  16503. extra: 172 / 157,
  16504. bottom: 0.01
  16505. },
  16506. form: "buizel",
  16507. default: true
  16508. },
  16509. floatzel: {
  16510. height: math.unit(5 + 9 / 12, "feet"),
  16511. weight: math.unit(250, "lb"),
  16512. name: "Front",
  16513. image: {
  16514. source: "./media/characters/umiko/floatzel.svg",
  16515. extra: 1076/1006,
  16516. bottom: 15/1091
  16517. },
  16518. form: "floatzel",
  16519. default: true
  16520. },
  16521. },
  16522. [
  16523. {
  16524. name: "Normal",
  16525. height: math.unit(2 + 5 / 12, "feet"),
  16526. form: "buizel",
  16527. default: true
  16528. },
  16529. {
  16530. name: "Normal",
  16531. height: math.unit(5 + 9 / 12, "feet"),
  16532. form: "floatzel",
  16533. default: true
  16534. },
  16535. ],
  16536. {
  16537. "buizel": {
  16538. name: "Buizel"
  16539. },
  16540. "floatzel": {
  16541. name: "Floatzel",
  16542. default: true
  16543. }
  16544. }
  16545. ))
  16546. characterMakers.push(() => makeCharacter(
  16547. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16548. {
  16549. front: {
  16550. height: math.unit(6 + 2 / 12, "feet"),
  16551. weight: math.unit(146, "lb"),
  16552. name: "Front",
  16553. image: {
  16554. source: "./media/characters/iliac/front.svg",
  16555. extra: 389 / 365,
  16556. bottom: 0.035
  16557. }
  16558. },
  16559. },
  16560. [
  16561. {
  16562. name: "Normal",
  16563. height: math.unit(6 + 2 / 12, "feet"),
  16564. default: true
  16565. },
  16566. ]
  16567. ))
  16568. characterMakers.push(() => makeCharacter(
  16569. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16570. {
  16571. front: {
  16572. height: math.unit(6, "feet"),
  16573. weight: math.unit(170, "lb"),
  16574. name: "Front",
  16575. image: {
  16576. source: "./media/characters/topaz/front.svg",
  16577. extra: 317 / 303,
  16578. bottom: 0.055
  16579. }
  16580. },
  16581. },
  16582. [
  16583. {
  16584. name: "Normal",
  16585. height: math.unit(6, "feet"),
  16586. default: true
  16587. },
  16588. ]
  16589. ))
  16590. characterMakers.push(() => makeCharacter(
  16591. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16592. {
  16593. front: {
  16594. height: math.unit(5 + 11 / 12, "feet"),
  16595. weight: math.unit(144, "lb"),
  16596. name: "Front",
  16597. image: {
  16598. source: "./media/characters/gabriel/front.svg",
  16599. extra: 285 / 262,
  16600. bottom: 0.004
  16601. }
  16602. },
  16603. },
  16604. [
  16605. {
  16606. name: "Normal",
  16607. height: math.unit(5 + 11 / 12, "feet"),
  16608. default: true
  16609. },
  16610. ]
  16611. ))
  16612. characterMakers.push(() => makeCharacter(
  16613. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16614. {
  16615. side: {
  16616. height: math.unit(6 + 5 / 12, "feet"),
  16617. weight: math.unit(300, "lb"),
  16618. name: "Side",
  16619. image: {
  16620. source: "./media/characters/tempest-suicune/side.svg",
  16621. extra: 195 / 154,
  16622. bottom: 0.04
  16623. }
  16624. },
  16625. },
  16626. [
  16627. {
  16628. name: "Normal",
  16629. height: math.unit(6 + 5 / 12, "feet"),
  16630. default: true
  16631. },
  16632. ]
  16633. ))
  16634. characterMakers.push(() => makeCharacter(
  16635. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16636. {
  16637. front: {
  16638. height: math.unit(7 + 2 / 12, "feet"),
  16639. weight: math.unit(322, "lb"),
  16640. name: "Front",
  16641. image: {
  16642. source: "./media/characters/vulcan/front.svg",
  16643. extra: 154 / 147,
  16644. bottom: 0.04
  16645. }
  16646. },
  16647. },
  16648. [
  16649. {
  16650. name: "Normal",
  16651. height: math.unit(7 + 2 / 12, "feet"),
  16652. default: true
  16653. },
  16654. ]
  16655. ))
  16656. characterMakers.push(() => makeCharacter(
  16657. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16658. {
  16659. front: {
  16660. height: math.unit(5 + 10 / 12, "feet"),
  16661. weight: math.unit(264, "lb"),
  16662. name: "Front",
  16663. image: {
  16664. source: "./media/characters/gault/front.svg",
  16665. extra: 161 / 140,
  16666. bottom: 0.028
  16667. }
  16668. },
  16669. },
  16670. [
  16671. {
  16672. name: "Normal",
  16673. height: math.unit(5 + 10 / 12, "feet"),
  16674. default: true
  16675. },
  16676. ]
  16677. ))
  16678. characterMakers.push(() => makeCharacter(
  16679. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16680. {
  16681. front: {
  16682. height: math.unit(6, "feet"),
  16683. weight: math.unit(150, "lb"),
  16684. name: "Front",
  16685. image: {
  16686. source: "./media/characters/shard/front.svg",
  16687. extra: 273 / 238,
  16688. bottom: 0.02
  16689. }
  16690. },
  16691. },
  16692. [
  16693. {
  16694. name: "Normal",
  16695. height: math.unit(3 + 6 / 12, "feet"),
  16696. default: true
  16697. },
  16698. ]
  16699. ))
  16700. characterMakers.push(() => makeCharacter(
  16701. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16702. {
  16703. front: {
  16704. height: math.unit(5 + 11 / 12, "feet"),
  16705. weight: math.unit(146, "lb"),
  16706. name: "Front",
  16707. image: {
  16708. source: "./media/characters/ashe/front.svg",
  16709. extra: 400 / 373,
  16710. bottom: 0.01
  16711. }
  16712. },
  16713. },
  16714. [
  16715. {
  16716. name: "Normal",
  16717. height: math.unit(5 + 11 / 12, "feet"),
  16718. default: true
  16719. },
  16720. ]
  16721. ))
  16722. characterMakers.push(() => makeCharacter(
  16723. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16724. {
  16725. front: {
  16726. height: math.unit(5 + 5 / 12, "feet"),
  16727. weight: math.unit(135, "lb"),
  16728. name: "Front",
  16729. image: {
  16730. source: "./media/characters/beatrix/front.svg",
  16731. extra: 392 / 379,
  16732. bottom: 0.01
  16733. }
  16734. },
  16735. },
  16736. [
  16737. {
  16738. name: "Normal",
  16739. height: math.unit(6, "feet"),
  16740. default: true
  16741. },
  16742. ]
  16743. ))
  16744. characterMakers.push(() => makeCharacter(
  16745. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16746. {
  16747. front: {
  16748. height: math.unit(6 + 2/12, "feet"),
  16749. weight: math.unit(135, "lb"),
  16750. name: "Front",
  16751. image: {
  16752. source: "./media/characters/ignatius/front.svg",
  16753. extra: 1380/1259,
  16754. bottom: 27/1407
  16755. }
  16756. },
  16757. },
  16758. [
  16759. {
  16760. name: "Normal",
  16761. height: math.unit(6 + 2/12, "feet"),
  16762. default: true
  16763. },
  16764. ]
  16765. ))
  16766. characterMakers.push(() => makeCharacter(
  16767. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16768. {
  16769. front: {
  16770. height: math.unit(6 + 2 / 12, "feet"),
  16771. weight: math.unit(138, "lb"),
  16772. name: "Front",
  16773. image: {
  16774. source: "./media/characters/mei-li/front.svg",
  16775. extra: 237 / 229,
  16776. bottom: 0.03
  16777. }
  16778. },
  16779. },
  16780. [
  16781. {
  16782. name: "Normal",
  16783. height: math.unit(6 + 2 / 12, "feet"),
  16784. default: true
  16785. },
  16786. ]
  16787. ))
  16788. characterMakers.push(() => makeCharacter(
  16789. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16790. {
  16791. front: {
  16792. height: math.unit(2 + 4 / 12, "feet"),
  16793. weight: math.unit(62, "lb"),
  16794. name: "Front",
  16795. image: {
  16796. source: "./media/characters/puru/front.svg",
  16797. extra: 206 / 149,
  16798. bottom: 0.06
  16799. }
  16800. },
  16801. },
  16802. [
  16803. {
  16804. name: "Normal",
  16805. height: math.unit(2 + 4 / 12, "feet"),
  16806. default: true
  16807. },
  16808. ]
  16809. ))
  16810. characterMakers.push(() => makeCharacter(
  16811. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16812. {
  16813. anthro: {
  16814. height: math.unit(5 + 8/12, "feet"),
  16815. weight: math.unit(200, "lb"),
  16816. energyNeed: math.unit(2000, "kcal"),
  16817. name: "Anthro",
  16818. image: {
  16819. source: "./media/characters/kee/anthro.svg",
  16820. extra: 3251/3184,
  16821. bottom: 250/3501
  16822. }
  16823. },
  16824. taur: {
  16825. height: math.unit(11, "feet"),
  16826. weight: math.unit(500, "lb"),
  16827. energyNeed: math.unit(5000, "kcal"),
  16828. name: "Taur",
  16829. image: {
  16830. source: "./media/characters/kee/taur.svg",
  16831. extra: 1362/1320,
  16832. bottom: 83/1445
  16833. }
  16834. },
  16835. },
  16836. [
  16837. {
  16838. name: "Normal",
  16839. height: math.unit(5 + 8/12, "feet"),
  16840. default: true
  16841. },
  16842. {
  16843. name: "Macro",
  16844. height: math.unit(35, "feet")
  16845. },
  16846. ]
  16847. ))
  16848. characterMakers.push(() => makeCharacter(
  16849. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16850. {
  16851. anthro: {
  16852. height: math.unit(7, "feet"),
  16853. weight: math.unit(190, "lb"),
  16854. name: "Anthro",
  16855. image: {
  16856. source: "./media/characters/cobalt-dracha/anthro.svg",
  16857. extra: 231 / 225,
  16858. bottom: 0.04
  16859. }
  16860. },
  16861. feral: {
  16862. height: math.unit(9 + 7 / 12, "feet"),
  16863. weight: math.unit(294, "lb"),
  16864. name: "Feral",
  16865. image: {
  16866. source: "./media/characters/cobalt-dracha/feral.svg",
  16867. extra: 692 / 633,
  16868. bottom: 0.05
  16869. }
  16870. },
  16871. },
  16872. [
  16873. {
  16874. name: "Normal",
  16875. height: math.unit(7, "feet"),
  16876. default: true
  16877. },
  16878. ]
  16879. ))
  16880. characterMakers.push(() => makeCharacter(
  16881. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16882. {
  16883. fallen: {
  16884. height: math.unit(11 + 8 / 12, "feet"),
  16885. weight: math.unit(485, "lb"),
  16886. name: "Java (Fallen)",
  16887. rename: true,
  16888. image: {
  16889. source: "./media/characters/java/fallen.svg",
  16890. extra: 226 / 208,
  16891. bottom: 0.005
  16892. }
  16893. },
  16894. godkin: {
  16895. height: math.unit(10 + 6 / 12, "feet"),
  16896. weight: math.unit(328, "lb"),
  16897. name: "Java (Godkin)",
  16898. rename: true,
  16899. image: {
  16900. source: "./media/characters/java/godkin.svg",
  16901. extra: 1104/1068,
  16902. bottom: 36/1140
  16903. }
  16904. },
  16905. },
  16906. [
  16907. {
  16908. name: "Normal",
  16909. height: math.unit(11 + 8 / 12, "feet"),
  16910. default: true
  16911. },
  16912. ]
  16913. ))
  16914. characterMakers.push(() => makeCharacter(
  16915. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16916. {
  16917. front: {
  16918. height: math.unit(5 + 9 / 12, "feet"),
  16919. weight: math.unit(170, "lb"),
  16920. name: "Front",
  16921. image: {
  16922. source: "./media/characters/purna/front.svg",
  16923. extra: 239 / 229,
  16924. bottom: 0.01
  16925. }
  16926. },
  16927. },
  16928. [
  16929. {
  16930. name: "Normal",
  16931. height: math.unit(5 + 9 / 12, "feet"),
  16932. default: true
  16933. },
  16934. ]
  16935. ))
  16936. characterMakers.push(() => makeCharacter(
  16937. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16938. {
  16939. front: {
  16940. height: math.unit(5 + 9 / 12, "feet"),
  16941. weight: math.unit(142, "lb"),
  16942. name: "Front",
  16943. image: {
  16944. source: "./media/characters/kuva/front.svg",
  16945. extra: 281 / 271,
  16946. bottom: 0.006
  16947. }
  16948. },
  16949. },
  16950. [
  16951. {
  16952. name: "Normal",
  16953. height: math.unit(5 + 9 / 12, "feet"),
  16954. default: true
  16955. },
  16956. ]
  16957. ))
  16958. characterMakers.push(() => makeCharacter(
  16959. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16960. {
  16961. anthro: {
  16962. height: math.unit(9 + 2 / 12, "feet"),
  16963. weight: math.unit(270, "lb"),
  16964. name: "Anthro",
  16965. image: {
  16966. source: "./media/characters/embra/anthro.svg",
  16967. extra: 200 / 187,
  16968. bottom: 0.02
  16969. }
  16970. },
  16971. feral: {
  16972. height: math.unit(18 + 8 / 12, "feet"),
  16973. weight: math.unit(576, "lb"),
  16974. name: "Feral",
  16975. image: {
  16976. source: "./media/characters/embra/feral.svg",
  16977. extra: 152 / 137,
  16978. bottom: 0.037
  16979. }
  16980. },
  16981. },
  16982. [
  16983. {
  16984. name: "Normal",
  16985. height: math.unit(9 + 2 / 12, "feet"),
  16986. default: true
  16987. },
  16988. ]
  16989. ))
  16990. characterMakers.push(() => makeCharacter(
  16991. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16992. {
  16993. anthro: {
  16994. height: math.unit(10 + 9 / 12, "feet"),
  16995. weight: math.unit(224, "lb"),
  16996. name: "Anthro",
  16997. image: {
  16998. source: "./media/characters/grottos/anthro.svg",
  16999. extra: 350 / 332,
  17000. bottom: 0.045
  17001. }
  17002. },
  17003. feral: {
  17004. height: math.unit(20 + 7 / 12, "feet"),
  17005. weight: math.unit(629, "lb"),
  17006. name: "Feral",
  17007. image: {
  17008. source: "./media/characters/grottos/feral.svg",
  17009. extra: 207 / 190,
  17010. bottom: 0.05
  17011. }
  17012. },
  17013. },
  17014. [
  17015. {
  17016. name: "Normal",
  17017. height: math.unit(10 + 9 / 12, "feet"),
  17018. default: true
  17019. },
  17020. ]
  17021. ))
  17022. characterMakers.push(() => makeCharacter(
  17023. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17024. {
  17025. anthro: {
  17026. height: math.unit(9 + 6 / 12, "feet"),
  17027. weight: math.unit(298, "lb"),
  17028. name: "Anthro",
  17029. image: {
  17030. source: "./media/characters/frifna/anthro.svg",
  17031. extra: 282 / 269,
  17032. bottom: 0.015
  17033. }
  17034. },
  17035. feral: {
  17036. height: math.unit(16 + 2 / 12, "feet"),
  17037. weight: math.unit(624, "lb"),
  17038. name: "Feral",
  17039. image: {
  17040. source: "./media/characters/frifna/feral.svg"
  17041. }
  17042. },
  17043. },
  17044. [
  17045. {
  17046. name: "Normal",
  17047. height: math.unit(9 + 6 / 12, "feet"),
  17048. default: true
  17049. },
  17050. ]
  17051. ))
  17052. characterMakers.push(() => makeCharacter(
  17053. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17054. {
  17055. front: {
  17056. height: math.unit(6 + 2 / 12, "feet"),
  17057. weight: math.unit(168, "lb"),
  17058. name: "Front",
  17059. image: {
  17060. source: "./media/characters/elise/front.svg",
  17061. extra: 276 / 271
  17062. }
  17063. },
  17064. },
  17065. [
  17066. {
  17067. name: "Normal",
  17068. height: math.unit(6 + 2 / 12, "feet"),
  17069. default: true
  17070. },
  17071. ]
  17072. ))
  17073. characterMakers.push(() => makeCharacter(
  17074. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17075. {
  17076. front: {
  17077. height: math.unit(5 + 10 / 12, "feet"),
  17078. weight: math.unit(210, "lb"),
  17079. name: "Front",
  17080. image: {
  17081. source: "./media/characters/glade/front.svg",
  17082. extra: 258 / 247,
  17083. bottom: 0.008
  17084. }
  17085. },
  17086. },
  17087. [
  17088. {
  17089. name: "Normal",
  17090. height: math.unit(5 + 10 / 12, "feet"),
  17091. default: true
  17092. },
  17093. ]
  17094. ))
  17095. characterMakers.push(() => makeCharacter(
  17096. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17097. {
  17098. front: {
  17099. height: math.unit(5 + 10 / 12, "feet"),
  17100. weight: math.unit(129, "lb"),
  17101. name: "Front",
  17102. image: {
  17103. source: "./media/characters/rina/front.svg",
  17104. extra: 266 / 255,
  17105. bottom: 0.005
  17106. }
  17107. },
  17108. },
  17109. [
  17110. {
  17111. name: "Normal",
  17112. height: math.unit(5 + 10 / 12, "feet"),
  17113. default: true
  17114. },
  17115. ]
  17116. ))
  17117. characterMakers.push(() => makeCharacter(
  17118. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17119. {
  17120. front: {
  17121. height: math.unit(6 + 1 / 12, "feet"),
  17122. weight: math.unit(192, "lb"),
  17123. name: "Front",
  17124. image: {
  17125. source: "./media/characters/veronica/front.svg",
  17126. extra: 319 / 309,
  17127. bottom: 0.005
  17128. }
  17129. },
  17130. },
  17131. [
  17132. {
  17133. name: "Normal",
  17134. height: math.unit(6 + 1 / 12, "feet"),
  17135. default: true
  17136. },
  17137. ]
  17138. ))
  17139. characterMakers.push(() => makeCharacter(
  17140. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17141. {
  17142. front: {
  17143. height: math.unit(9 + 3 / 12, "feet"),
  17144. weight: math.unit(1100, "lb"),
  17145. name: "Front",
  17146. image: {
  17147. source: "./media/characters/braxton/front.svg",
  17148. extra: 1057 / 984,
  17149. bottom: 0.05
  17150. }
  17151. },
  17152. },
  17153. [
  17154. {
  17155. name: "Normal",
  17156. height: math.unit(9 + 3 / 12, "feet")
  17157. },
  17158. {
  17159. name: "Giant",
  17160. height: math.unit(300, "feet"),
  17161. default: true
  17162. },
  17163. {
  17164. name: "Macro",
  17165. height: math.unit(700, "feet")
  17166. },
  17167. {
  17168. name: "Megamacro",
  17169. height: math.unit(6000, "feet")
  17170. },
  17171. ]
  17172. ))
  17173. characterMakers.push(() => makeCharacter(
  17174. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17175. {
  17176. front: {
  17177. height: math.unit(6 + 7 / 12, "feet"),
  17178. weight: math.unit(150, "lb"),
  17179. name: "Front",
  17180. image: {
  17181. source: "./media/characters/blue-feyonics/front.svg",
  17182. extra: 1403 / 1306,
  17183. bottom: 0.047
  17184. }
  17185. },
  17186. },
  17187. [
  17188. {
  17189. name: "Normal",
  17190. height: math.unit(6 + 7 / 12, "feet"),
  17191. default: true
  17192. },
  17193. ]
  17194. ))
  17195. characterMakers.push(() => makeCharacter(
  17196. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17197. {
  17198. front: {
  17199. height: math.unit(1.8, "meters"),
  17200. weight: math.unit(60, "kg"),
  17201. name: "Front",
  17202. image: {
  17203. source: "./media/characters/maxwell/front.svg",
  17204. extra: 2060 / 1873
  17205. }
  17206. },
  17207. },
  17208. [
  17209. {
  17210. name: "Micro",
  17211. height: math.unit(1, "mm")
  17212. },
  17213. {
  17214. name: "Normal",
  17215. height: math.unit(1.8, "meter"),
  17216. default: true
  17217. },
  17218. {
  17219. name: "Macro",
  17220. height: math.unit(30, "meters")
  17221. },
  17222. {
  17223. name: "Megamacro",
  17224. height: math.unit(10, "km")
  17225. },
  17226. ]
  17227. ))
  17228. characterMakers.push(() => makeCharacter(
  17229. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17230. {
  17231. front: {
  17232. height: math.unit(6, "feet"),
  17233. weight: math.unit(150, "lb"),
  17234. name: "Front",
  17235. image: {
  17236. source: "./media/characters/jack/front.svg",
  17237. extra: 1754 / 1640,
  17238. bottom: 0.01
  17239. }
  17240. },
  17241. },
  17242. [
  17243. {
  17244. name: "Normal",
  17245. height: math.unit(80000, "feet"),
  17246. default: true
  17247. },
  17248. {
  17249. name: "Max size",
  17250. height: math.unit(10, "lightyears")
  17251. },
  17252. ]
  17253. ))
  17254. characterMakers.push(() => makeCharacter(
  17255. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17256. {
  17257. urban: {
  17258. height: math.unit(5, "feet"),
  17259. weight: math.unit(240, "lb"),
  17260. name: "Urban",
  17261. image: {
  17262. source: "./media/characters/cafat/urban.svg",
  17263. extra: 1223/1126,
  17264. bottom: 205/1428
  17265. }
  17266. },
  17267. summer: {
  17268. height: math.unit(5, "feet"),
  17269. weight: math.unit(240, "lb"),
  17270. name: "Summer",
  17271. image: {
  17272. source: "./media/characters/cafat/summer.svg",
  17273. extra: 1223/1126,
  17274. bottom: 205/1428
  17275. }
  17276. },
  17277. winter: {
  17278. height: math.unit(5, "feet"),
  17279. weight: math.unit(240, "lb"),
  17280. name: "Winter",
  17281. image: {
  17282. source: "./media/characters/cafat/winter.svg",
  17283. extra: 1223/1126,
  17284. bottom: 205/1428
  17285. }
  17286. },
  17287. lingerie: {
  17288. height: math.unit(5, "feet"),
  17289. weight: math.unit(240, "lb"),
  17290. name: "Lingerie",
  17291. image: {
  17292. source: "./media/characters/cafat/lingerie.svg",
  17293. extra: 1223/1126,
  17294. bottom: 205/1428
  17295. }
  17296. },
  17297. upright: {
  17298. height: math.unit(6.3, "feet"),
  17299. weight: math.unit(240, "lb"),
  17300. name: "Upright",
  17301. image: {
  17302. source: "./media/characters/cafat/upright.svg",
  17303. bottom: 0.01
  17304. }
  17305. },
  17306. uprightFull: {
  17307. height: math.unit(6.3, "feet"),
  17308. weight: math.unit(240, "lb"),
  17309. name: "Upright (Full)",
  17310. image: {
  17311. source: "./media/characters/cafat/upright-full.svg",
  17312. bottom: 0.01
  17313. }
  17314. },
  17315. },
  17316. [
  17317. {
  17318. name: "Small",
  17319. height: math.unit(5, "feet"),
  17320. default: true
  17321. },
  17322. {
  17323. name: "Large",
  17324. height: math.unit(13, "feet")
  17325. },
  17326. ]
  17327. ))
  17328. characterMakers.push(() => makeCharacter(
  17329. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17330. {
  17331. front: {
  17332. height: math.unit(6, "feet"),
  17333. weight: math.unit(150, "lb"),
  17334. name: "Front",
  17335. image: {
  17336. source: "./media/characters/verin-raharra/front.svg",
  17337. extra: 5019 / 4835,
  17338. bottom: 0.023
  17339. }
  17340. },
  17341. },
  17342. [
  17343. {
  17344. name: "Normal",
  17345. height: math.unit(7 + 5 / 12, "feet"),
  17346. default: true
  17347. },
  17348. {
  17349. name: "Upsized",
  17350. height: math.unit(20, "feet")
  17351. },
  17352. ]
  17353. ))
  17354. characterMakers.push(() => makeCharacter(
  17355. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17356. {
  17357. front: {
  17358. height: math.unit(7, "feet"),
  17359. weight: math.unit(230, "lb"),
  17360. name: "Front",
  17361. image: {
  17362. source: "./media/characters/nakata/front.svg",
  17363. extra: 1.005,
  17364. bottom: 0.01
  17365. }
  17366. },
  17367. },
  17368. [
  17369. {
  17370. name: "Normal",
  17371. height: math.unit(7, "feet"),
  17372. default: true
  17373. },
  17374. {
  17375. name: "Big",
  17376. height: math.unit(14, "feet")
  17377. },
  17378. {
  17379. name: "Macro",
  17380. height: math.unit(400, "feet")
  17381. },
  17382. ]
  17383. ))
  17384. characterMakers.push(() => makeCharacter(
  17385. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17386. {
  17387. front: {
  17388. height: math.unit(4.91, "feet"),
  17389. weight: math.unit(100, "lb"),
  17390. name: "Front",
  17391. image: {
  17392. source: "./media/characters/lily/front.svg",
  17393. extra: 1585 / 1415,
  17394. bottom: 0.02
  17395. }
  17396. },
  17397. },
  17398. [
  17399. {
  17400. name: "Normal",
  17401. height: math.unit(4.91, "feet"),
  17402. default: true
  17403. },
  17404. ]
  17405. ))
  17406. characterMakers.push(() => makeCharacter(
  17407. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17408. {
  17409. laying: {
  17410. height: math.unit(4 + 4 / 12, "feet"),
  17411. weight: math.unit(600, "lb"),
  17412. name: "Laying",
  17413. image: {
  17414. source: "./media/characters/sheila/laying.svg",
  17415. extra: 1333 / 1265,
  17416. bottom: 0.16
  17417. }
  17418. },
  17419. },
  17420. [
  17421. {
  17422. name: "Normal",
  17423. height: math.unit(4 + 4 / 12, "feet"),
  17424. default: true
  17425. },
  17426. ]
  17427. ))
  17428. characterMakers.push(() => makeCharacter(
  17429. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17430. {
  17431. front: {
  17432. height: math.unit(6, "feet"),
  17433. weight: math.unit(190, "lb"),
  17434. name: "Front",
  17435. image: {
  17436. source: "./media/characters/sax/front.svg",
  17437. extra: 1187 / 973,
  17438. bottom: 0.042
  17439. }
  17440. },
  17441. },
  17442. [
  17443. {
  17444. name: "Micro",
  17445. height: math.unit(4, "inches"),
  17446. default: true
  17447. },
  17448. ]
  17449. ))
  17450. characterMakers.push(() => makeCharacter(
  17451. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17452. {
  17453. front: {
  17454. height: math.unit(6, "feet"),
  17455. weight: math.unit(150, "lb"),
  17456. name: "Front",
  17457. image: {
  17458. source: "./media/characters/pandora/front.svg",
  17459. extra: 2720 / 2556,
  17460. bottom: 0.015
  17461. }
  17462. },
  17463. back: {
  17464. height: math.unit(6, "feet"),
  17465. weight: math.unit(150, "lb"),
  17466. name: "Back",
  17467. image: {
  17468. source: "./media/characters/pandora/back.svg",
  17469. extra: 2720 / 2556,
  17470. bottom: 0.01
  17471. }
  17472. },
  17473. beans: {
  17474. height: math.unit(6 / 8, "feet"),
  17475. name: "Beans",
  17476. image: {
  17477. source: "./media/characters/pandora/beans.svg"
  17478. }
  17479. },
  17480. collar: {
  17481. height: math.unit(0.31, "feet"),
  17482. name: "Collar",
  17483. image: {
  17484. source: "./media/characters/pandora/collar.svg"
  17485. }
  17486. },
  17487. skirt: {
  17488. height: math.unit(6, "feet"),
  17489. weight: math.unit(150, "lb"),
  17490. name: "Skirt",
  17491. image: {
  17492. source: "./media/characters/pandora/skirt.svg",
  17493. extra: 1622 / 1525,
  17494. bottom: 0.015
  17495. }
  17496. },
  17497. hoodie: {
  17498. height: math.unit(6, "feet"),
  17499. weight: math.unit(150, "lb"),
  17500. name: "Hoodie",
  17501. image: {
  17502. source: "./media/characters/pandora/hoodie.svg",
  17503. extra: 1622 / 1525,
  17504. bottom: 0.015
  17505. }
  17506. },
  17507. casual: {
  17508. height: math.unit(6, "feet"),
  17509. weight: math.unit(150, "lb"),
  17510. name: "Casual",
  17511. image: {
  17512. source: "./media/characters/pandora/casual.svg",
  17513. extra: 1622 / 1525,
  17514. bottom: 0.015
  17515. }
  17516. },
  17517. },
  17518. [
  17519. {
  17520. name: "Normal",
  17521. height: math.unit(6, "feet")
  17522. },
  17523. {
  17524. name: "Big Steppy",
  17525. height: math.unit(1, "km"),
  17526. default: true
  17527. },
  17528. {
  17529. name: "Galactic Steppy",
  17530. height: math.unit(2, "gigameters")
  17531. },
  17532. ]
  17533. ))
  17534. characterMakers.push(() => makeCharacter(
  17535. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17536. {
  17537. side: {
  17538. height: math.unit(10, "feet"),
  17539. weight: math.unit(800, "kg"),
  17540. name: "Side",
  17541. image: {
  17542. source: "./media/characters/venio-darcony/side.svg",
  17543. extra: 1373 / 1003,
  17544. bottom: 0.037
  17545. }
  17546. },
  17547. front: {
  17548. height: math.unit(19, "feet"),
  17549. weight: math.unit(800, "kg"),
  17550. name: "Front",
  17551. image: {
  17552. source: "./media/characters/venio-darcony/front.svg"
  17553. }
  17554. },
  17555. back: {
  17556. height: math.unit(19, "feet"),
  17557. weight: math.unit(800, "kg"),
  17558. name: "Back",
  17559. image: {
  17560. source: "./media/characters/venio-darcony/back.svg"
  17561. }
  17562. },
  17563. sideNsfw: {
  17564. height: math.unit(10, "feet"),
  17565. weight: math.unit(800, "kg"),
  17566. name: "Side (NSFW)",
  17567. image: {
  17568. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17569. extra: 1373 / 1003,
  17570. bottom: 0.037
  17571. }
  17572. },
  17573. frontNsfw: {
  17574. height: math.unit(19, "feet"),
  17575. weight: math.unit(800, "kg"),
  17576. name: "Front (NSFW)",
  17577. image: {
  17578. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17579. }
  17580. },
  17581. backNsfw: {
  17582. height: math.unit(19, "feet"),
  17583. weight: math.unit(800, "kg"),
  17584. name: "Back (NSFW)",
  17585. image: {
  17586. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17587. }
  17588. },
  17589. sideArmored: {
  17590. height: math.unit(10, "feet"),
  17591. weight: math.unit(800, "kg"),
  17592. name: "Side (Armored)",
  17593. image: {
  17594. source: "./media/characters/venio-darcony/side-armored.svg",
  17595. extra: 1373 / 1003,
  17596. bottom: 0.037
  17597. }
  17598. },
  17599. frontArmored: {
  17600. height: math.unit(19, "feet"),
  17601. weight: math.unit(900, "kg"),
  17602. name: "Front (Armored)",
  17603. image: {
  17604. source: "./media/characters/venio-darcony/front-armored.svg"
  17605. }
  17606. },
  17607. backArmored: {
  17608. height: math.unit(19, "feet"),
  17609. weight: math.unit(900, "kg"),
  17610. name: "Back (Armored)",
  17611. image: {
  17612. source: "./media/characters/venio-darcony/back-armored.svg"
  17613. }
  17614. },
  17615. sword: {
  17616. height: math.unit(10, "feet"),
  17617. weight: math.unit(50, "lb"),
  17618. name: "Sword",
  17619. image: {
  17620. source: "./media/characters/venio-darcony/sword.svg"
  17621. }
  17622. },
  17623. },
  17624. [
  17625. {
  17626. name: "Normal",
  17627. height: math.unit(10, "feet")
  17628. },
  17629. {
  17630. name: "Macro",
  17631. height: math.unit(130, "feet"),
  17632. default: true
  17633. },
  17634. {
  17635. name: "Macro+",
  17636. height: math.unit(240, "feet")
  17637. },
  17638. ]
  17639. ))
  17640. characterMakers.push(() => makeCharacter(
  17641. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17642. {
  17643. front: {
  17644. height: math.unit(6, "feet"),
  17645. weight: math.unit(150, "lb"),
  17646. name: "Front",
  17647. image: {
  17648. source: "./media/characters/veski/front.svg",
  17649. extra: 1299 / 1225,
  17650. bottom: 0.04
  17651. }
  17652. },
  17653. back: {
  17654. height: math.unit(6, "feet"),
  17655. weight: math.unit(150, "lb"),
  17656. name: "Back",
  17657. image: {
  17658. source: "./media/characters/veski/back.svg",
  17659. extra: 1299 / 1225,
  17660. bottom: 0.008
  17661. }
  17662. },
  17663. maw: {
  17664. height: math.unit(1.5 * 1.21, "feet"),
  17665. name: "Maw",
  17666. image: {
  17667. source: "./media/characters/veski/maw.svg"
  17668. }
  17669. },
  17670. },
  17671. [
  17672. {
  17673. name: "Macro",
  17674. height: math.unit(2, "km"),
  17675. default: true
  17676. },
  17677. ]
  17678. ))
  17679. characterMakers.push(() => makeCharacter(
  17680. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17681. {
  17682. front: {
  17683. height: math.unit(5 + 7 / 12, "feet"),
  17684. name: "Front",
  17685. image: {
  17686. source: "./media/characters/isabelle/front.svg",
  17687. extra: 2130 / 1976,
  17688. bottom: 0.05
  17689. }
  17690. },
  17691. },
  17692. [
  17693. {
  17694. name: "Supermicro",
  17695. height: math.unit(10, "micrometers")
  17696. },
  17697. {
  17698. name: "Micro",
  17699. height: math.unit(1, "inch")
  17700. },
  17701. {
  17702. name: "Tiny",
  17703. height: math.unit(5, "inches")
  17704. },
  17705. {
  17706. name: "Standard",
  17707. height: math.unit(5 + 7 / 12, "inches")
  17708. },
  17709. {
  17710. name: "Macro",
  17711. height: math.unit(80, "meters"),
  17712. default: true
  17713. },
  17714. {
  17715. name: "Megamacro",
  17716. height: math.unit(250, "meters")
  17717. },
  17718. {
  17719. name: "Gigamacro",
  17720. height: math.unit(5, "km")
  17721. },
  17722. {
  17723. name: "Cosmic",
  17724. height: math.unit(2.5e6, "miles")
  17725. },
  17726. ]
  17727. ))
  17728. characterMakers.push(() => makeCharacter(
  17729. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17730. {
  17731. front: {
  17732. height: math.unit(6, "feet"),
  17733. weight: math.unit(150, "lb"),
  17734. name: "Front",
  17735. image: {
  17736. source: "./media/characters/hanzo/front.svg",
  17737. extra: 374 / 344,
  17738. bottom: 0.02
  17739. }
  17740. },
  17741. },
  17742. [
  17743. {
  17744. name: "Normal",
  17745. height: math.unit(8, "feet"),
  17746. default: true
  17747. },
  17748. ]
  17749. ))
  17750. characterMakers.push(() => makeCharacter(
  17751. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17752. {
  17753. front: {
  17754. height: math.unit(7, "feet"),
  17755. weight: math.unit(130, "lb"),
  17756. name: "Front",
  17757. image: {
  17758. source: "./media/characters/anna/front.svg",
  17759. extra: 169 / 145,
  17760. bottom: 0.06
  17761. }
  17762. },
  17763. full: {
  17764. height: math.unit(4.96, "feet"),
  17765. weight: math.unit(220, "lb"),
  17766. name: "Full",
  17767. image: {
  17768. source: "./media/characters/anna/full.svg",
  17769. extra: 138 / 114,
  17770. bottom: 0.15
  17771. }
  17772. },
  17773. tongue: {
  17774. height: math.unit(2.53, "feet"),
  17775. name: "Tongue",
  17776. image: {
  17777. source: "./media/characters/anna/tongue.svg"
  17778. }
  17779. },
  17780. },
  17781. [
  17782. {
  17783. name: "Normal",
  17784. height: math.unit(7, "feet"),
  17785. default: true
  17786. },
  17787. ]
  17788. ))
  17789. characterMakers.push(() => makeCharacter(
  17790. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17791. {
  17792. front: {
  17793. height: math.unit(7, "feet"),
  17794. weight: math.unit(150, "lb"),
  17795. name: "Front",
  17796. image: {
  17797. source: "./media/characters/ian-corvid/front.svg",
  17798. extra: 150 / 142,
  17799. bottom: 0.02
  17800. }
  17801. },
  17802. back: {
  17803. height: math.unit(7, "feet"),
  17804. weight: math.unit(150, "lb"),
  17805. name: "Back",
  17806. image: {
  17807. source: "./media/characters/ian-corvid/back.svg",
  17808. extra: 150 / 143,
  17809. bottom: 0.01
  17810. }
  17811. },
  17812. stomping: {
  17813. height: math.unit(7, "feet"),
  17814. weight: math.unit(150, "lb"),
  17815. name: "Stomping",
  17816. image: {
  17817. source: "./media/characters/ian-corvid/stomping.svg",
  17818. extra: 76 / 72
  17819. }
  17820. },
  17821. sitting: {
  17822. height: math.unit(7 / 1.8, "feet"),
  17823. weight: math.unit(150, "lb"),
  17824. name: "Sitting",
  17825. image: {
  17826. source: "./media/characters/ian-corvid/sitting.svg",
  17827. extra: 1400 / 1269,
  17828. bottom: 0.15
  17829. }
  17830. },
  17831. },
  17832. [
  17833. {
  17834. name: "Tiny Microw",
  17835. height: math.unit(1, "inch")
  17836. },
  17837. {
  17838. name: "Microw",
  17839. height: math.unit(6, "inches")
  17840. },
  17841. {
  17842. name: "Crow",
  17843. height: math.unit(7 + 1 / 12, "feet"),
  17844. default: true
  17845. },
  17846. {
  17847. name: "Macrow",
  17848. height: math.unit(176, "feet")
  17849. },
  17850. ]
  17851. ))
  17852. characterMakers.push(() => makeCharacter(
  17853. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17854. {
  17855. front: {
  17856. height: math.unit(5 + 7 / 12, "feet"),
  17857. weight: math.unit(147, "lb"),
  17858. name: "Front",
  17859. image: {
  17860. source: "./media/characters/natalie-kellon/front.svg",
  17861. extra: 1214 / 1141,
  17862. bottom: 0.02
  17863. }
  17864. },
  17865. },
  17866. [
  17867. {
  17868. name: "Micro",
  17869. height: math.unit(1 / 16, "inch")
  17870. },
  17871. {
  17872. name: "Tiny",
  17873. height: math.unit(4, "inches")
  17874. },
  17875. {
  17876. name: "Normal",
  17877. height: math.unit(5 + 7 / 12, "feet"),
  17878. default: true
  17879. },
  17880. {
  17881. name: "Amazon",
  17882. height: math.unit(12, "feet")
  17883. },
  17884. {
  17885. name: "Giantess",
  17886. height: math.unit(160, "meters")
  17887. },
  17888. {
  17889. name: "Titaness",
  17890. height: math.unit(800, "meters")
  17891. },
  17892. ]
  17893. ))
  17894. characterMakers.push(() => makeCharacter(
  17895. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17896. {
  17897. front: {
  17898. height: math.unit(6, "feet"),
  17899. weight: math.unit(150, "lb"),
  17900. name: "Front",
  17901. image: {
  17902. source: "./media/characters/alluria/front.svg",
  17903. extra: 806 / 738,
  17904. bottom: 0.01
  17905. }
  17906. },
  17907. side: {
  17908. height: math.unit(6, "feet"),
  17909. weight: math.unit(150, "lb"),
  17910. name: "Side",
  17911. image: {
  17912. source: "./media/characters/alluria/side.svg",
  17913. extra: 800 / 750,
  17914. }
  17915. },
  17916. back: {
  17917. height: math.unit(6, "feet"),
  17918. weight: math.unit(150, "lb"),
  17919. name: "Back",
  17920. image: {
  17921. source: "./media/characters/alluria/back.svg",
  17922. extra: 806 / 738,
  17923. }
  17924. },
  17925. frontMaid: {
  17926. height: math.unit(6, "feet"),
  17927. weight: math.unit(150, "lb"),
  17928. name: "Front (Maid)",
  17929. image: {
  17930. source: "./media/characters/alluria/front-maid.svg",
  17931. extra: 806 / 738,
  17932. bottom: 0.01
  17933. }
  17934. },
  17935. sideMaid: {
  17936. height: math.unit(6, "feet"),
  17937. weight: math.unit(150, "lb"),
  17938. name: "Side (Maid)",
  17939. image: {
  17940. source: "./media/characters/alluria/side-maid.svg",
  17941. extra: 800 / 750,
  17942. bottom: 0.005
  17943. }
  17944. },
  17945. backMaid: {
  17946. height: math.unit(6, "feet"),
  17947. weight: math.unit(150, "lb"),
  17948. name: "Back (Maid)",
  17949. image: {
  17950. source: "./media/characters/alluria/back-maid.svg",
  17951. extra: 806 / 738,
  17952. }
  17953. },
  17954. },
  17955. [
  17956. {
  17957. name: "Micro",
  17958. height: math.unit(6, "inches"),
  17959. default: true
  17960. },
  17961. ]
  17962. ))
  17963. characterMakers.push(() => makeCharacter(
  17964. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17965. {
  17966. front: {
  17967. height: math.unit(6, "feet"),
  17968. weight: math.unit(150, "lb"),
  17969. name: "Front",
  17970. image: {
  17971. source: "./media/characters/kyle/front.svg",
  17972. extra: 1069 / 962,
  17973. bottom: 77.228 / 1727.45
  17974. }
  17975. },
  17976. },
  17977. [
  17978. {
  17979. name: "Macro",
  17980. height: math.unit(150, "feet"),
  17981. default: true
  17982. },
  17983. ]
  17984. ))
  17985. characterMakers.push(() => makeCharacter(
  17986. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17987. {
  17988. front: {
  17989. height: math.unit(6, "feet"),
  17990. weight: math.unit(300, "lb"),
  17991. name: "Front",
  17992. image: {
  17993. source: "./media/characters/duncan/front.svg",
  17994. extra: 1650 / 1482,
  17995. bottom: 0.05
  17996. }
  17997. },
  17998. },
  17999. [
  18000. {
  18001. name: "Macro",
  18002. height: math.unit(100, "feet"),
  18003. default: true
  18004. },
  18005. ]
  18006. ))
  18007. characterMakers.push(() => makeCharacter(
  18008. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18009. {
  18010. front: {
  18011. height: math.unit(5 + 4 / 12, "feet"),
  18012. weight: math.unit(220, "lb"),
  18013. name: "Front",
  18014. image: {
  18015. source: "./media/characters/memory/front.svg",
  18016. extra: 3641 / 3545,
  18017. bottom: 0.03
  18018. }
  18019. },
  18020. back: {
  18021. height: math.unit(5 + 4 / 12, "feet"),
  18022. weight: math.unit(220, "lb"),
  18023. name: "Back",
  18024. image: {
  18025. source: "./media/characters/memory/back.svg",
  18026. extra: 3641 / 3545,
  18027. bottom: 0.025
  18028. }
  18029. },
  18030. frontSkirt: {
  18031. height: math.unit(5 + 4 / 12, "feet"),
  18032. weight: math.unit(220, "lb"),
  18033. name: "Front (Skirt)",
  18034. image: {
  18035. source: "./media/characters/memory/front-skirt.svg",
  18036. extra: 3641 / 3545,
  18037. bottom: 0.03
  18038. }
  18039. },
  18040. frontDress: {
  18041. height: math.unit(5 + 4 / 12, "feet"),
  18042. weight: math.unit(220, "lb"),
  18043. name: "Front (Dress)",
  18044. image: {
  18045. source: "./media/characters/memory/front-dress.svg",
  18046. extra: 3641 / 3545,
  18047. bottom: 0.03
  18048. }
  18049. },
  18050. },
  18051. [
  18052. {
  18053. name: "Micro",
  18054. height: math.unit(6, "inches"),
  18055. default: true
  18056. },
  18057. {
  18058. name: "Normal",
  18059. height: math.unit(5 + 4 / 12, "feet")
  18060. },
  18061. ]
  18062. ))
  18063. characterMakers.push(() => makeCharacter(
  18064. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18065. {
  18066. front: {
  18067. height: math.unit(4 + 11 / 12, "feet"),
  18068. weight: math.unit(100, "lb"),
  18069. name: "Front",
  18070. image: {
  18071. source: "./media/characters/luno/front.svg",
  18072. extra: 1535 / 1487,
  18073. bottom: 0.03
  18074. }
  18075. },
  18076. },
  18077. [
  18078. {
  18079. name: "Micro",
  18080. height: math.unit(3, "inches")
  18081. },
  18082. {
  18083. name: "Normal",
  18084. height: math.unit(4 + 11 / 12, "feet"),
  18085. default: true
  18086. },
  18087. {
  18088. name: "Macro",
  18089. height: math.unit(300, "feet")
  18090. },
  18091. {
  18092. name: "Megamacro",
  18093. height: math.unit(700, "miles")
  18094. },
  18095. ]
  18096. ))
  18097. characterMakers.push(() => makeCharacter(
  18098. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18099. {
  18100. front: {
  18101. height: math.unit(6 + 2 / 12, "feet"),
  18102. weight: math.unit(170, "lb"),
  18103. name: "Front",
  18104. image: {
  18105. source: "./media/characters/jamesy/front.svg",
  18106. extra: 440 / 382,
  18107. bottom: 0.005
  18108. }
  18109. },
  18110. },
  18111. [
  18112. {
  18113. name: "Micro",
  18114. height: math.unit(3, "inches")
  18115. },
  18116. {
  18117. name: "Normal",
  18118. height: math.unit(6 + 2 / 12, "feet"),
  18119. default: true
  18120. },
  18121. {
  18122. name: "Macro",
  18123. height: math.unit(300, "feet")
  18124. },
  18125. {
  18126. name: "Megamacro",
  18127. height: math.unit(700, "miles")
  18128. },
  18129. ]
  18130. ))
  18131. characterMakers.push(() => makeCharacter(
  18132. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18133. {
  18134. front: {
  18135. height: math.unit(6, "feet"),
  18136. weight: math.unit(160, "lb"),
  18137. name: "Front",
  18138. image: {
  18139. source: "./media/characters/mark/front.svg",
  18140. extra: 3300 / 3100,
  18141. bottom: 136.42 / 3440.47
  18142. }
  18143. },
  18144. },
  18145. [
  18146. {
  18147. name: "Macro",
  18148. height: math.unit(120, "meters")
  18149. },
  18150. {
  18151. name: "Bigger Macro",
  18152. height: math.unit(350, "meters")
  18153. },
  18154. {
  18155. name: "Megamacro",
  18156. height: math.unit(8, "km"),
  18157. default: true
  18158. },
  18159. {
  18160. name: "Continental",
  18161. height: math.unit(4550, "km")
  18162. },
  18163. {
  18164. name: "Planetary",
  18165. height: math.unit(65000, "km")
  18166. },
  18167. ]
  18168. ))
  18169. characterMakers.push(() => makeCharacter(
  18170. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18171. {
  18172. front: {
  18173. height: math.unit(6, "feet"),
  18174. weight: math.unit(400, "lb"),
  18175. name: "Front",
  18176. image: {
  18177. source: "./media/characters/mac/front.svg",
  18178. extra: 1048 / 987.7,
  18179. bottom: 60 / 1107.6,
  18180. }
  18181. },
  18182. },
  18183. [
  18184. {
  18185. name: "Macro",
  18186. height: math.unit(500, "feet"),
  18187. default: true
  18188. },
  18189. ]
  18190. ))
  18191. characterMakers.push(() => makeCharacter(
  18192. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18193. {
  18194. front: {
  18195. height: math.unit(5 + 2 / 12, "feet"),
  18196. weight: math.unit(190, "lb"),
  18197. name: "Front",
  18198. image: {
  18199. source: "./media/characters/bari/front.svg",
  18200. extra: 3156 / 2880,
  18201. bottom: 0.03
  18202. }
  18203. },
  18204. back: {
  18205. height: math.unit(5 + 2 / 12, "feet"),
  18206. weight: math.unit(190, "lb"),
  18207. name: "Back",
  18208. image: {
  18209. source: "./media/characters/bari/back.svg",
  18210. extra: 3260 / 2834,
  18211. bottom: 0.025
  18212. }
  18213. },
  18214. frontPlush: {
  18215. height: math.unit(5 + 2 / 12, "feet"),
  18216. weight: math.unit(190, "lb"),
  18217. name: "Front (Plush)",
  18218. image: {
  18219. source: "./media/characters/bari/front-plush.svg",
  18220. extra: 1112 / 1061,
  18221. bottom: 0.002
  18222. }
  18223. },
  18224. },
  18225. [
  18226. {
  18227. name: "Micro",
  18228. height: math.unit(3, "inches")
  18229. },
  18230. {
  18231. name: "Normal",
  18232. height: math.unit(5 + 2 / 12, "feet"),
  18233. default: true
  18234. },
  18235. {
  18236. name: "Macro",
  18237. height: math.unit(20, "feet")
  18238. },
  18239. ]
  18240. ))
  18241. characterMakers.push(() => makeCharacter(
  18242. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18243. {
  18244. front: {
  18245. height: math.unit(6 + 1 / 12, "feet"),
  18246. weight: math.unit(275, "lb"),
  18247. name: "Front",
  18248. image: {
  18249. source: "./media/characters/hunter-misha-raven/front.svg"
  18250. }
  18251. },
  18252. },
  18253. [
  18254. {
  18255. name: "Mortal",
  18256. height: math.unit(6 + 1 / 12, "feet")
  18257. },
  18258. {
  18259. name: "Divine",
  18260. height: math.unit(1.12134e34, "parsecs"),
  18261. default: true
  18262. },
  18263. ]
  18264. ))
  18265. characterMakers.push(() => makeCharacter(
  18266. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18267. {
  18268. front: {
  18269. height: math.unit(6 + 3 / 12, "feet"),
  18270. weight: math.unit(220, "lb"),
  18271. name: "Front",
  18272. image: {
  18273. source: "./media/characters/max-calore/front.svg",
  18274. extra: 1700 / 1648,
  18275. bottom: 0.01
  18276. }
  18277. },
  18278. back: {
  18279. height: math.unit(6 + 3 / 12, "feet"),
  18280. weight: math.unit(220, "lb"),
  18281. name: "Back",
  18282. image: {
  18283. source: "./media/characters/max-calore/back.svg",
  18284. extra: 1700 / 1648,
  18285. bottom: 0.01
  18286. }
  18287. },
  18288. },
  18289. [
  18290. {
  18291. name: "Normal",
  18292. height: math.unit(6 + 3 / 12, "feet"),
  18293. default: true
  18294. },
  18295. ]
  18296. ))
  18297. characterMakers.push(() => makeCharacter(
  18298. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18299. {
  18300. side: {
  18301. height: math.unit(2 + 8 / 12, "feet"),
  18302. weight: math.unit(99, "lb"),
  18303. name: "Side",
  18304. image: {
  18305. source: "./media/characters/aspen/side.svg",
  18306. extra: 152 / 138,
  18307. bottom: 0.032
  18308. }
  18309. },
  18310. },
  18311. [
  18312. {
  18313. name: "Normal",
  18314. height: math.unit(2 + 8 / 12, "feet"),
  18315. default: true
  18316. },
  18317. ]
  18318. ))
  18319. characterMakers.push(() => makeCharacter(
  18320. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18321. {
  18322. side: {
  18323. height: math.unit(3 + 2 / 12, "feet"),
  18324. weight: math.unit(224, "lb"),
  18325. name: "Side",
  18326. image: {
  18327. source: "./media/characters/sheila-feral-wolf/side.svg",
  18328. extra: 179 / 166,
  18329. bottom: 0.03
  18330. }
  18331. },
  18332. },
  18333. [
  18334. {
  18335. name: "Normal",
  18336. height: math.unit(3 + 2 / 12, "feet"),
  18337. default: true
  18338. },
  18339. ]
  18340. ))
  18341. characterMakers.push(() => makeCharacter(
  18342. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18343. {
  18344. side: {
  18345. height: math.unit(1 + 9 / 12, "feet"),
  18346. weight: math.unit(38, "lb"),
  18347. name: "Side",
  18348. image: {
  18349. source: "./media/characters/michelle/side.svg",
  18350. extra: 147 / 136.7,
  18351. bottom: 0.03
  18352. }
  18353. },
  18354. },
  18355. [
  18356. {
  18357. name: "Normal",
  18358. height: math.unit(1 + 9 / 12, "feet"),
  18359. default: true
  18360. },
  18361. ]
  18362. ))
  18363. characterMakers.push(() => makeCharacter(
  18364. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18365. {
  18366. front: {
  18367. height: math.unit(1.54, "feet"),
  18368. weight: math.unit(50, "lb"),
  18369. name: "Front",
  18370. image: {
  18371. source: "./media/characters/nino/front.svg"
  18372. }
  18373. },
  18374. },
  18375. [
  18376. {
  18377. name: "Normal",
  18378. height: math.unit(1.54, "feet"),
  18379. default: true
  18380. },
  18381. ]
  18382. ))
  18383. characterMakers.push(() => makeCharacter(
  18384. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18385. {
  18386. front: {
  18387. height: math.unit(1.49, "feet"),
  18388. weight: math.unit(45, "lb"),
  18389. name: "Front",
  18390. image: {
  18391. source: "./media/characters/viola/front.svg"
  18392. }
  18393. },
  18394. },
  18395. [
  18396. {
  18397. name: "Normal",
  18398. height: math.unit(1.49, "feet"),
  18399. default: true
  18400. },
  18401. ]
  18402. ))
  18403. characterMakers.push(() => makeCharacter(
  18404. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18405. {
  18406. front: {
  18407. height: math.unit(6 + 5 / 12, "feet"),
  18408. weight: math.unit(580, "lb"),
  18409. name: "Front",
  18410. image: {
  18411. source: "./media/characters/atlas/front.svg",
  18412. extra: 298.5 / 290,
  18413. bottom: 0.015
  18414. }
  18415. },
  18416. },
  18417. [
  18418. {
  18419. name: "Normal",
  18420. height: math.unit(6 + 5 / 12, "feet"),
  18421. default: true
  18422. },
  18423. ]
  18424. ))
  18425. characterMakers.push(() => makeCharacter(
  18426. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18427. {
  18428. side: {
  18429. height: math.unit(15.6, "inches"),
  18430. weight: math.unit(10, "lb"),
  18431. name: "Side",
  18432. image: {
  18433. source: "./media/characters/davy/side.svg",
  18434. extra: 200 / 170,
  18435. bottom: 0.01
  18436. }
  18437. },
  18438. },
  18439. [
  18440. {
  18441. name: "Normal",
  18442. height: math.unit(15.6, "inches"),
  18443. default: true
  18444. },
  18445. ]
  18446. ))
  18447. characterMakers.push(() => makeCharacter(
  18448. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18449. {
  18450. side: {
  18451. height: math.unit(4 + 8 / 12, "feet"),
  18452. weight: math.unit(166, "lb"),
  18453. name: "Side",
  18454. image: {
  18455. source: "./media/characters/fiona/side.svg",
  18456. extra: 232 / 220,
  18457. bottom: 0.03
  18458. }
  18459. },
  18460. },
  18461. [
  18462. {
  18463. name: "Normal",
  18464. height: math.unit(4 + 8 / 12, "feet"),
  18465. default: true
  18466. },
  18467. ]
  18468. ))
  18469. characterMakers.push(() => makeCharacter(
  18470. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18471. {
  18472. front: {
  18473. height: math.unit(26, "inches"),
  18474. weight: math.unit(35, "lb"),
  18475. name: "Front",
  18476. image: {
  18477. source: "./media/characters/lyla/front.svg",
  18478. bottom: 0.1
  18479. }
  18480. },
  18481. },
  18482. [
  18483. {
  18484. name: "Normal",
  18485. height: math.unit(3, "feet"),
  18486. default: true
  18487. },
  18488. ]
  18489. ))
  18490. characterMakers.push(() => makeCharacter(
  18491. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18492. {
  18493. side: {
  18494. height: math.unit(1.8, "feet"),
  18495. weight: math.unit(44, "lb"),
  18496. name: "Side",
  18497. image: {
  18498. source: "./media/characters/perseus/side.svg",
  18499. bottom: 0.21
  18500. }
  18501. },
  18502. },
  18503. [
  18504. {
  18505. name: "Normal",
  18506. height: math.unit(1.8, "feet"),
  18507. default: true
  18508. },
  18509. ]
  18510. ))
  18511. characterMakers.push(() => makeCharacter(
  18512. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18513. {
  18514. side: {
  18515. height: math.unit(4 + 2 / 12, "feet"),
  18516. weight: math.unit(20, "lb"),
  18517. name: "Side",
  18518. image: {
  18519. source: "./media/characters/remus/side.svg"
  18520. }
  18521. },
  18522. },
  18523. [
  18524. {
  18525. name: "Normal",
  18526. height: math.unit(4 + 2 / 12, "feet"),
  18527. default: true
  18528. },
  18529. ]
  18530. ))
  18531. characterMakers.push(() => makeCharacter(
  18532. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18533. {
  18534. front: {
  18535. height: math.unit(4 + 11 / 12, "feet"),
  18536. weight: math.unit(114, "lb"),
  18537. name: "Front",
  18538. image: {
  18539. source: "./media/characters/raf/front.svg",
  18540. extra: 1504/1339,
  18541. bottom: 26/1530
  18542. }
  18543. },
  18544. side: {
  18545. height: math.unit(4 + 11 / 12, "feet"),
  18546. weight: math.unit(114, "lb"),
  18547. name: "Side",
  18548. image: {
  18549. source: "./media/characters/raf/side.svg",
  18550. extra: 1466/1316,
  18551. bottom: 29/1495
  18552. }
  18553. },
  18554. paw: {
  18555. height: math.unit(1.45, "feet"),
  18556. name: "Paw",
  18557. image: {
  18558. source: "./media/characters/raf/paw.svg"
  18559. },
  18560. extraAttributes: {
  18561. "toeSize": {
  18562. name: "Toe Size",
  18563. power: 2,
  18564. type: "area",
  18565. base: math.unit(0.004, "m^2")
  18566. },
  18567. "padSize": {
  18568. name: "Pad Size",
  18569. power: 2,
  18570. type: "area",
  18571. base: math.unit(0.04, "m^2")
  18572. },
  18573. "footSize": {
  18574. name: "Foot Size",
  18575. power: 2,
  18576. type: "area",
  18577. base: math.unit(0.08, "m^2")
  18578. },
  18579. }
  18580. },
  18581. },
  18582. [
  18583. {
  18584. name: "Micro",
  18585. height: math.unit(2, "inches")
  18586. },
  18587. {
  18588. name: "Normal",
  18589. height: math.unit(4 + 11 / 12, "feet"),
  18590. default: true
  18591. },
  18592. {
  18593. name: "Macro",
  18594. height: math.unit(70, "feet")
  18595. },
  18596. ]
  18597. ))
  18598. characterMakers.push(() => makeCharacter(
  18599. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18600. {
  18601. front: {
  18602. height: math.unit(1.5, "meters"),
  18603. weight: math.unit(68, "kg"),
  18604. name: "Front",
  18605. image: {
  18606. source: "./media/characters/liam-einarr/front.svg",
  18607. extra: 2822 / 2666
  18608. }
  18609. },
  18610. back: {
  18611. height: math.unit(1.5, "meters"),
  18612. weight: math.unit(68, "kg"),
  18613. name: "Back",
  18614. image: {
  18615. source: "./media/characters/liam-einarr/back.svg",
  18616. extra: 2822 / 2666,
  18617. bottom: 0.015
  18618. }
  18619. },
  18620. },
  18621. [
  18622. {
  18623. name: "Normal",
  18624. height: math.unit(1.5, "meters"),
  18625. default: true
  18626. },
  18627. {
  18628. name: "Macro",
  18629. height: math.unit(150, "meters")
  18630. },
  18631. {
  18632. name: "Megamacro",
  18633. height: math.unit(35, "km")
  18634. },
  18635. ]
  18636. ))
  18637. characterMakers.push(() => makeCharacter(
  18638. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18639. {
  18640. front: {
  18641. height: math.unit(6, "feet"),
  18642. weight: math.unit(75, "kg"),
  18643. name: "Front",
  18644. image: {
  18645. source: "./media/characters/linda/front.svg",
  18646. extra: 930 / 874,
  18647. bottom: 0.004
  18648. }
  18649. },
  18650. },
  18651. [
  18652. {
  18653. name: "Normal",
  18654. height: math.unit(6, "feet"),
  18655. default: true
  18656. },
  18657. ]
  18658. ))
  18659. characterMakers.push(() => makeCharacter(
  18660. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18661. {
  18662. front: {
  18663. height: math.unit(6 + 8 / 12, "feet"),
  18664. weight: math.unit(220, "lb"),
  18665. name: "Front",
  18666. image: {
  18667. source: "./media/characters/caylex/front.svg",
  18668. extra: 821 / 772,
  18669. bottom: 0.07
  18670. }
  18671. },
  18672. back: {
  18673. height: math.unit(6 + 8 / 12, "feet"),
  18674. weight: math.unit(220, "lb"),
  18675. name: "Back",
  18676. image: {
  18677. source: "./media/characters/caylex/back.svg",
  18678. extra: 821 / 772,
  18679. bottom: 0.022
  18680. }
  18681. },
  18682. hand: {
  18683. height: math.unit(1.25, "feet"),
  18684. name: "Hand",
  18685. image: {
  18686. source: "./media/characters/caylex/hand.svg"
  18687. }
  18688. },
  18689. foot: {
  18690. height: math.unit(1.6, "feet"),
  18691. name: "Foot",
  18692. image: {
  18693. source: "./media/characters/caylex/foot.svg"
  18694. }
  18695. },
  18696. armored: {
  18697. height: math.unit(6 + 8 / 12, "feet"),
  18698. weight: math.unit(250, "lb"),
  18699. name: "Armored",
  18700. image: {
  18701. source: "./media/characters/caylex/armored.svg",
  18702. extra: 1420 / 1310,
  18703. bottom: 0.045
  18704. }
  18705. },
  18706. },
  18707. [
  18708. {
  18709. name: "Normal",
  18710. height: math.unit(6 + 8 / 12, "feet"),
  18711. default: true
  18712. },
  18713. {
  18714. name: "Normal+",
  18715. height: math.unit(12, "feet")
  18716. },
  18717. ]
  18718. ))
  18719. characterMakers.push(() => makeCharacter(
  18720. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18721. {
  18722. front: {
  18723. height: math.unit(7 + 6 / 12, "feet"),
  18724. weight: math.unit(288, "lb"),
  18725. name: "Front",
  18726. image: {
  18727. source: "./media/characters/alana/front.svg",
  18728. extra: 679 / 653,
  18729. bottom: 22.5 / 701
  18730. }
  18731. },
  18732. },
  18733. [
  18734. {
  18735. name: "Normal",
  18736. height: math.unit(7 + 6 / 12, "feet")
  18737. },
  18738. {
  18739. name: "Large",
  18740. height: math.unit(50, "feet")
  18741. },
  18742. {
  18743. name: "Macro",
  18744. height: math.unit(100, "feet"),
  18745. default: true
  18746. },
  18747. {
  18748. name: "Macro+",
  18749. height: math.unit(200, "feet")
  18750. },
  18751. ]
  18752. ))
  18753. characterMakers.push(() => makeCharacter(
  18754. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18755. {
  18756. front: {
  18757. height: math.unit(6 + 1 / 12, "feet"),
  18758. weight: math.unit(210, "lb"),
  18759. name: "Front",
  18760. image: {
  18761. source: "./media/characters/hasani/front.svg",
  18762. extra: 244 / 232,
  18763. bottom: 0.01
  18764. }
  18765. },
  18766. back: {
  18767. height: math.unit(6 + 1 / 12, "feet"),
  18768. weight: math.unit(210, "lb"),
  18769. name: "Back",
  18770. image: {
  18771. source: "./media/characters/hasani/back.svg",
  18772. extra: 244 / 232,
  18773. bottom: 0.01
  18774. }
  18775. },
  18776. },
  18777. [
  18778. {
  18779. name: "Normal",
  18780. height: math.unit(6 + 1 / 12, "feet")
  18781. },
  18782. {
  18783. name: "Macro",
  18784. height: math.unit(175, "feet"),
  18785. default: true
  18786. },
  18787. ]
  18788. ))
  18789. characterMakers.push(() => makeCharacter(
  18790. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18791. {
  18792. front: {
  18793. height: math.unit(1.82, "meters"),
  18794. weight: math.unit(140, "lb"),
  18795. name: "Front",
  18796. image: {
  18797. source: "./media/characters/nita/front.svg",
  18798. extra: 2473 / 2363,
  18799. bottom: 0.01
  18800. }
  18801. },
  18802. },
  18803. [
  18804. {
  18805. name: "Normal",
  18806. height: math.unit(1.82, "m")
  18807. },
  18808. {
  18809. name: "Macro",
  18810. height: math.unit(300, "m")
  18811. },
  18812. {
  18813. name: "Mistake Canon",
  18814. height: math.unit(0.5, "miles"),
  18815. default: true
  18816. },
  18817. {
  18818. name: "Big Mistake",
  18819. height: math.unit(13, "miles")
  18820. },
  18821. {
  18822. name: "Playing God",
  18823. height: math.unit(2450, "miles")
  18824. },
  18825. ]
  18826. ))
  18827. characterMakers.push(() => makeCharacter(
  18828. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18829. {
  18830. front: {
  18831. height: math.unit(4, "feet"),
  18832. weight: math.unit(120, "lb"),
  18833. name: "Front",
  18834. image: {
  18835. source: "./media/characters/shiriko/front.svg",
  18836. extra: 970/934,
  18837. bottom: 5/975
  18838. }
  18839. },
  18840. },
  18841. [
  18842. {
  18843. name: "Normal",
  18844. height: math.unit(4, "feet"),
  18845. default: true
  18846. },
  18847. ]
  18848. ))
  18849. characterMakers.push(() => makeCharacter(
  18850. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18851. {
  18852. front: {
  18853. height: math.unit(6, "feet"),
  18854. name: "front",
  18855. image: {
  18856. source: "./media/characters/deja/front.svg",
  18857. extra: 926 / 840,
  18858. bottom: 0.07
  18859. }
  18860. },
  18861. },
  18862. [
  18863. {
  18864. name: "Planck Length",
  18865. height: math.unit(1.6e-35, "meters")
  18866. },
  18867. {
  18868. name: "Normal",
  18869. height: math.unit(30.48, "meters"),
  18870. default: true
  18871. },
  18872. {
  18873. name: "Universal",
  18874. height: math.unit(8.8e26, "meters")
  18875. },
  18876. ]
  18877. ))
  18878. characterMakers.push(() => makeCharacter(
  18879. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18880. {
  18881. side: {
  18882. height: math.unit(8, "feet"),
  18883. weight: math.unit(6300, "lb"),
  18884. name: "Side",
  18885. image: {
  18886. source: "./media/characters/anima/side.svg",
  18887. bottom: 0.035
  18888. }
  18889. },
  18890. },
  18891. [
  18892. {
  18893. name: "Normal",
  18894. height: math.unit(8, "feet"),
  18895. default: true
  18896. },
  18897. ]
  18898. ))
  18899. characterMakers.push(() => makeCharacter(
  18900. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18901. {
  18902. front: {
  18903. height: math.unit(8, "feet"),
  18904. weight: math.unit(350, "lb"),
  18905. name: "Front",
  18906. image: {
  18907. source: "./media/characters/bianca/front.svg",
  18908. extra: 234 / 225,
  18909. bottom: 0.03
  18910. }
  18911. },
  18912. },
  18913. [
  18914. {
  18915. name: "Normal",
  18916. height: math.unit(8, "feet"),
  18917. default: true
  18918. },
  18919. ]
  18920. ))
  18921. characterMakers.push(() => makeCharacter(
  18922. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18923. {
  18924. front: {
  18925. height: math.unit(11 + 5/12, "feet"),
  18926. weight: math.unit(1200, "lb"),
  18927. name: "Front",
  18928. image: {
  18929. source: "./media/characters/adinia/front.svg",
  18930. extra: 1767/1641,
  18931. bottom: 44/1811
  18932. },
  18933. extraAttributes: {
  18934. "energyIntake": {
  18935. name: "Energy Intake",
  18936. power: 3,
  18937. type: "energy",
  18938. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18939. },
  18940. }
  18941. },
  18942. back: {
  18943. height: math.unit(11 + 5/12, "feet"),
  18944. weight: math.unit(1200, "lb"),
  18945. name: "Back",
  18946. image: {
  18947. source: "./media/characters/adinia/back.svg",
  18948. extra: 1834/1684,
  18949. bottom: 14/1848
  18950. },
  18951. extraAttributes: {
  18952. "energyIntake": {
  18953. name: "Energy Intake",
  18954. power: 3,
  18955. type: "energy",
  18956. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18957. },
  18958. }
  18959. },
  18960. maw: {
  18961. height: math.unit(3.79, "feet"),
  18962. name: "Maw",
  18963. image: {
  18964. source: "./media/characters/adinia/maw.svg"
  18965. }
  18966. },
  18967. rump: {
  18968. height: math.unit(4.6, "feet"),
  18969. name: "Rump",
  18970. image: {
  18971. source: "./media/characters/adinia/rump.svg"
  18972. }
  18973. },
  18974. },
  18975. [
  18976. {
  18977. name: "Normal",
  18978. height: math.unit(11 + 5 / 12, "feet"),
  18979. default: true
  18980. },
  18981. ]
  18982. ))
  18983. characterMakers.push(() => makeCharacter(
  18984. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18985. {
  18986. front: {
  18987. height: math.unit(3, "meters"),
  18988. weight: math.unit(200, "kg"),
  18989. name: "Front",
  18990. image: {
  18991. source: "./media/characters/lykasa/front.svg",
  18992. extra: 1076 / 976,
  18993. bottom: 0.06
  18994. }
  18995. },
  18996. },
  18997. [
  18998. {
  18999. name: "Normal",
  19000. height: math.unit(3, "meters")
  19001. },
  19002. {
  19003. name: "Kaiju",
  19004. height: math.unit(120, "meters"),
  19005. default: true
  19006. },
  19007. {
  19008. name: "Mega Kaiju",
  19009. height: math.unit(240, "km")
  19010. },
  19011. {
  19012. name: "Giga Kaiju",
  19013. height: math.unit(400, "megameters")
  19014. },
  19015. {
  19016. name: "Tera Kaiju",
  19017. height: math.unit(800, "gigameters")
  19018. },
  19019. {
  19020. name: "Kaiju Dragon Goddess",
  19021. height: math.unit(26, "zettaparsecs")
  19022. },
  19023. ]
  19024. ))
  19025. characterMakers.push(() => makeCharacter(
  19026. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19027. {
  19028. side: {
  19029. height: math.unit(283 / 124 * 6, "feet"),
  19030. weight: math.unit(35000, "lb"),
  19031. name: "Side",
  19032. image: {
  19033. source: "./media/characters/malfaren/side.svg",
  19034. extra: 1310/529,
  19035. bottom: 24/1334
  19036. }
  19037. },
  19038. front: {
  19039. height: math.unit(22.36, "feet"),
  19040. weight: math.unit(35000, "lb"),
  19041. name: "Front",
  19042. image: {
  19043. source: "./media/characters/malfaren/front.svg",
  19044. extra: 1237/1115,
  19045. bottom: 32/1269
  19046. }
  19047. },
  19048. maw: {
  19049. height: math.unit(6.9, "feet"),
  19050. name: "Maw",
  19051. image: {
  19052. source: "./media/characters/malfaren/maw.svg"
  19053. }
  19054. },
  19055. dick: {
  19056. height: math.unit(6.19, "feet"),
  19057. name: "Dick",
  19058. image: {
  19059. source: "./media/characters/malfaren/dick.svg"
  19060. }
  19061. },
  19062. eye: {
  19063. height: math.unit(0.69, "feet"),
  19064. name: "Eye",
  19065. image: {
  19066. source: "./media/characters/malfaren/eye.svg"
  19067. }
  19068. },
  19069. },
  19070. [
  19071. {
  19072. name: "Big",
  19073. height: math.unit(283 / 162 * 6, "feet"),
  19074. },
  19075. {
  19076. name: "Bigger",
  19077. height: math.unit(283 / 124 * 6, "feet")
  19078. },
  19079. {
  19080. name: "Massive",
  19081. height: math.unit(283 / 92 * 6, "feet"),
  19082. default: true
  19083. },
  19084. {
  19085. name: "👀💦",
  19086. height: math.unit(283 / 73 * 6, "feet"),
  19087. },
  19088. ]
  19089. ))
  19090. characterMakers.push(() => makeCharacter(
  19091. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19092. {
  19093. front: {
  19094. height: math.unit(1.7, "m"),
  19095. weight: math.unit(70, "kg"),
  19096. name: "Front",
  19097. image: {
  19098. source: "./media/characters/kernel/front.svg",
  19099. extra: 222 / 210,
  19100. bottom: 0.007
  19101. }
  19102. },
  19103. },
  19104. [
  19105. {
  19106. name: "Nano",
  19107. height: math.unit(17, "micrometers")
  19108. },
  19109. {
  19110. name: "Micro",
  19111. height: math.unit(1.7, "mm")
  19112. },
  19113. {
  19114. name: "Small",
  19115. height: math.unit(1.7, "cm")
  19116. },
  19117. {
  19118. name: "Normal",
  19119. height: math.unit(1.7, "m"),
  19120. default: true
  19121. },
  19122. ]
  19123. ))
  19124. characterMakers.push(() => makeCharacter(
  19125. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19126. {
  19127. front: {
  19128. height: math.unit(1.75, "meters"),
  19129. weight: math.unit(65, "kg"),
  19130. name: "Front",
  19131. image: {
  19132. source: "./media/characters/jayne-folest/front.svg",
  19133. extra: 2115 / 2007,
  19134. bottom: 0.02
  19135. }
  19136. },
  19137. back: {
  19138. height: math.unit(1.75, "meters"),
  19139. weight: math.unit(65, "kg"),
  19140. name: "Back",
  19141. image: {
  19142. source: "./media/characters/jayne-folest/back.svg",
  19143. extra: 2115 / 2007,
  19144. bottom: 0.005
  19145. }
  19146. },
  19147. frontClothed: {
  19148. height: math.unit(1.75, "meters"),
  19149. weight: math.unit(65, "kg"),
  19150. name: "Front (Clothed)",
  19151. image: {
  19152. source: "./media/characters/jayne-folest/front-clothed.svg",
  19153. extra: 2115 / 2007,
  19154. bottom: 0.035
  19155. }
  19156. },
  19157. hand: {
  19158. height: math.unit(1 / 1.260, "feet"),
  19159. name: "Hand",
  19160. image: {
  19161. source: "./media/characters/jayne-folest/hand.svg"
  19162. }
  19163. },
  19164. foot: {
  19165. height: math.unit(1 / 0.918, "feet"),
  19166. name: "Foot",
  19167. image: {
  19168. source: "./media/characters/jayne-folest/foot.svg"
  19169. }
  19170. },
  19171. },
  19172. [
  19173. {
  19174. name: "Micro",
  19175. height: math.unit(4, "cm")
  19176. },
  19177. {
  19178. name: "Normal",
  19179. height: math.unit(1.75, "meters")
  19180. },
  19181. {
  19182. name: "Macro",
  19183. height: math.unit(47.5, "meters"),
  19184. default: true
  19185. },
  19186. ]
  19187. ))
  19188. characterMakers.push(() => makeCharacter(
  19189. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19190. {
  19191. front: {
  19192. height: math.unit(180, "cm"),
  19193. weight: math.unit(70, "kg"),
  19194. name: "Front",
  19195. image: {
  19196. source: "./media/characters/algier/front.svg",
  19197. extra: 596 / 572,
  19198. bottom: 0.04
  19199. }
  19200. },
  19201. back: {
  19202. height: math.unit(180, "cm"),
  19203. weight: math.unit(70, "kg"),
  19204. name: "Back",
  19205. image: {
  19206. source: "./media/characters/algier/back.svg",
  19207. extra: 596 / 572,
  19208. bottom: 0.025
  19209. }
  19210. },
  19211. frontdressed: {
  19212. height: math.unit(180, "cm"),
  19213. weight: math.unit(150, "kg"),
  19214. name: "Front-dressed",
  19215. image: {
  19216. source: "./media/characters/algier/front-dressed.svg",
  19217. extra: 596 / 572,
  19218. bottom: 0.038
  19219. }
  19220. },
  19221. },
  19222. [
  19223. {
  19224. name: "Micro",
  19225. height: math.unit(5, "cm")
  19226. },
  19227. {
  19228. name: "Normal",
  19229. height: math.unit(180, "cm"),
  19230. default: true
  19231. },
  19232. {
  19233. name: "Macro",
  19234. height: math.unit(64, "m")
  19235. },
  19236. ]
  19237. ))
  19238. characterMakers.push(() => makeCharacter(
  19239. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19240. {
  19241. upright: {
  19242. height: math.unit(7, "feet"),
  19243. weight: math.unit(300, "lb"),
  19244. name: "Upright",
  19245. image: {
  19246. source: "./media/characters/pretzel/upright.svg",
  19247. extra: 534 / 522,
  19248. bottom: 0.065
  19249. }
  19250. },
  19251. sprawling: {
  19252. height: math.unit(3.75, "feet"),
  19253. weight: math.unit(300, "lb"),
  19254. name: "Sprawling",
  19255. image: {
  19256. source: "./media/characters/pretzel/sprawling.svg",
  19257. extra: 314 / 281,
  19258. bottom: 0.1
  19259. }
  19260. },
  19261. tongue: {
  19262. height: math.unit(2, "feet"),
  19263. name: "Tongue",
  19264. image: {
  19265. source: "./media/characters/pretzel/tongue.svg"
  19266. }
  19267. },
  19268. },
  19269. [
  19270. {
  19271. name: "Normal",
  19272. height: math.unit(7, "feet"),
  19273. default: true
  19274. },
  19275. {
  19276. name: "Oversized",
  19277. height: math.unit(15, "feet")
  19278. },
  19279. {
  19280. name: "Huge",
  19281. height: math.unit(30, "feet")
  19282. },
  19283. {
  19284. name: "Macro",
  19285. height: math.unit(250, "feet")
  19286. },
  19287. ]
  19288. ))
  19289. characterMakers.push(() => makeCharacter(
  19290. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19291. {
  19292. sideFront: {
  19293. height: math.unit(5 + 2 / 12, "feet"),
  19294. weight: math.unit(120, "lb"),
  19295. name: "Front Side",
  19296. image: {
  19297. source: "./media/characters/roxi/side-front.svg",
  19298. extra: 2924 / 2717,
  19299. bottom: 0.08
  19300. }
  19301. },
  19302. sideBack: {
  19303. height: math.unit(5 + 2 / 12, "feet"),
  19304. weight: math.unit(120, "lb"),
  19305. name: "Back Side",
  19306. image: {
  19307. source: "./media/characters/roxi/side-back.svg",
  19308. extra: 2904 / 2693,
  19309. bottom: 0.06
  19310. }
  19311. },
  19312. front: {
  19313. height: math.unit(5 + 2 / 12, "feet"),
  19314. weight: math.unit(120, "lb"),
  19315. name: "Front",
  19316. image: {
  19317. source: "./media/characters/roxi/front.svg",
  19318. extra: 2028 / 1907,
  19319. bottom: 0.01
  19320. }
  19321. },
  19322. frontAlt: {
  19323. height: math.unit(5 + 2 / 12, "feet"),
  19324. weight: math.unit(120, "lb"),
  19325. name: "Front (Alt)",
  19326. image: {
  19327. source: "./media/characters/roxi/front-alt.svg",
  19328. extra: 1828 / 1798,
  19329. bottom: 0.01
  19330. }
  19331. },
  19332. sitting: {
  19333. height: math.unit(2.8, "feet"),
  19334. weight: math.unit(120, "lb"),
  19335. name: "Sitting",
  19336. image: {
  19337. source: "./media/characters/roxi/sitting.svg",
  19338. extra: 2660 / 2462,
  19339. bottom: 0.1
  19340. }
  19341. },
  19342. },
  19343. [
  19344. {
  19345. name: "Normal",
  19346. height: math.unit(5 + 2 / 12, "feet"),
  19347. default: true
  19348. },
  19349. ]
  19350. ))
  19351. characterMakers.push(() => makeCharacter(
  19352. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19353. {
  19354. side: {
  19355. height: math.unit(55, "feet"),
  19356. weight: math.unit(153, "tons"),
  19357. name: "Side",
  19358. image: {
  19359. source: "./media/characters/shadow/side.svg",
  19360. extra: 701 / 628,
  19361. bottom: 0.02
  19362. }
  19363. },
  19364. flying: {
  19365. height: math.unit(145, "feet"),
  19366. weight: math.unit(153, "tons"),
  19367. name: "Flying",
  19368. image: {
  19369. source: "./media/characters/shadow/flying.svg"
  19370. }
  19371. },
  19372. },
  19373. [
  19374. {
  19375. name: "Normal",
  19376. height: math.unit(55, "feet"),
  19377. default: true
  19378. },
  19379. ]
  19380. ))
  19381. characterMakers.push(() => makeCharacter(
  19382. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19383. {
  19384. front: {
  19385. height: math.unit(6, "feet"),
  19386. weight: math.unit(200, "lb"),
  19387. name: "Front",
  19388. image: {
  19389. source: "./media/characters/marcie/front.svg",
  19390. extra: 960 / 876,
  19391. bottom: 58 / 1017.87
  19392. }
  19393. },
  19394. },
  19395. [
  19396. {
  19397. name: "Macro",
  19398. height: math.unit(1, "mile"),
  19399. default: true
  19400. },
  19401. ]
  19402. ))
  19403. characterMakers.push(() => makeCharacter(
  19404. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19405. {
  19406. front: {
  19407. height: math.unit(7, "feet"),
  19408. weight: math.unit(200, "lb"),
  19409. name: "Front",
  19410. image: {
  19411. source: "./media/characters/kachina/front.svg",
  19412. extra: 1290.68 / 1119,
  19413. bottom: 36.5 / 1327.18
  19414. }
  19415. },
  19416. },
  19417. [
  19418. {
  19419. name: "Normal",
  19420. height: math.unit(7, "feet"),
  19421. default: true
  19422. },
  19423. ]
  19424. ))
  19425. characterMakers.push(() => makeCharacter(
  19426. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19427. {
  19428. looking: {
  19429. height: math.unit(2, "meters"),
  19430. weight: math.unit(300, "kg"),
  19431. name: "Looking",
  19432. image: {
  19433. source: "./media/characters/kash/looking.svg",
  19434. extra: 474 / 344,
  19435. bottom: 0.03
  19436. }
  19437. },
  19438. side: {
  19439. height: math.unit(2, "meters"),
  19440. weight: math.unit(300, "kg"),
  19441. name: "Side",
  19442. image: {
  19443. source: "./media/characters/kash/side.svg",
  19444. extra: 302 / 251,
  19445. bottom: 0.03
  19446. }
  19447. },
  19448. front: {
  19449. height: math.unit(2, "meters"),
  19450. weight: math.unit(300, "kg"),
  19451. name: "Front",
  19452. image: {
  19453. source: "./media/characters/kash/front.svg",
  19454. extra: 495 / 360,
  19455. bottom: 0.015
  19456. }
  19457. },
  19458. },
  19459. [
  19460. {
  19461. name: "Normal",
  19462. height: math.unit(2, "meters"),
  19463. default: true
  19464. },
  19465. {
  19466. name: "Big",
  19467. height: math.unit(3, "meters")
  19468. },
  19469. {
  19470. name: "Large",
  19471. height: math.unit(5, "meters")
  19472. },
  19473. ]
  19474. ))
  19475. characterMakers.push(() => makeCharacter(
  19476. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19477. {
  19478. feeding: {
  19479. height: math.unit(6.7, "feet"),
  19480. weight: math.unit(350, "lb"),
  19481. name: "Feeding",
  19482. image: {
  19483. source: "./media/characters/lalim/feeding.svg",
  19484. }
  19485. },
  19486. },
  19487. [
  19488. {
  19489. name: "Normal",
  19490. height: math.unit(6.7, "feet"),
  19491. default: true
  19492. },
  19493. ]
  19494. ))
  19495. characterMakers.push(() => makeCharacter(
  19496. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19497. {
  19498. front: {
  19499. height: math.unit(9.5, "feet"),
  19500. weight: math.unit(600, "lb"),
  19501. name: "Front",
  19502. image: {
  19503. source: "./media/characters/de'vout/front.svg",
  19504. extra: 1443 / 1328,
  19505. bottom: 0.025
  19506. }
  19507. },
  19508. back: {
  19509. height: math.unit(9.5, "feet"),
  19510. weight: math.unit(600, "lb"),
  19511. name: "Back",
  19512. image: {
  19513. source: "./media/characters/de'vout/back.svg",
  19514. extra: 1443 / 1328
  19515. }
  19516. },
  19517. frontDressed: {
  19518. height: math.unit(9.5, "feet"),
  19519. weight: math.unit(600, "lb"),
  19520. name: "Front (Dressed",
  19521. image: {
  19522. source: "./media/characters/de'vout/front-dressed.svg",
  19523. extra: 1443 / 1328,
  19524. bottom: 0.025
  19525. }
  19526. },
  19527. backDressed: {
  19528. height: math.unit(9.5, "feet"),
  19529. weight: math.unit(600, "lb"),
  19530. name: "Back (Dressed",
  19531. image: {
  19532. source: "./media/characters/de'vout/back-dressed.svg",
  19533. extra: 1443 / 1328
  19534. }
  19535. },
  19536. },
  19537. [
  19538. {
  19539. name: "Normal",
  19540. height: math.unit(9.5, "feet"),
  19541. default: true
  19542. },
  19543. ]
  19544. ))
  19545. characterMakers.push(() => makeCharacter(
  19546. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19547. {
  19548. front: {
  19549. height: math.unit(8, "feet"),
  19550. weight: math.unit(225, "lb"),
  19551. name: "Front",
  19552. image: {
  19553. source: "./media/characters/talana/front.svg",
  19554. extra: 1410 / 1300,
  19555. bottom: 0.015
  19556. }
  19557. },
  19558. frontDressed: {
  19559. height: math.unit(8, "feet"),
  19560. weight: math.unit(225, "lb"),
  19561. name: "Front (Dressed",
  19562. image: {
  19563. source: "./media/characters/talana/front-dressed.svg",
  19564. extra: 1410 / 1300,
  19565. bottom: 0.015
  19566. }
  19567. },
  19568. },
  19569. [
  19570. {
  19571. name: "Normal",
  19572. height: math.unit(8, "feet"),
  19573. default: true
  19574. },
  19575. ]
  19576. ))
  19577. characterMakers.push(() => makeCharacter(
  19578. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19579. {
  19580. side: {
  19581. height: math.unit(7.2, "feet"),
  19582. weight: math.unit(150, "lb"),
  19583. name: "Side",
  19584. image: {
  19585. source: "./media/characters/xeauvok/side.svg",
  19586. extra: 1975 / 1523,
  19587. bottom: 0.07
  19588. }
  19589. },
  19590. },
  19591. [
  19592. {
  19593. name: "Normal",
  19594. height: math.unit(7.2, "feet"),
  19595. default: true
  19596. },
  19597. ]
  19598. ))
  19599. characterMakers.push(() => makeCharacter(
  19600. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19601. {
  19602. side: {
  19603. height: math.unit(4, "meters"),
  19604. weight: math.unit(2200, "kg"),
  19605. name: "Side",
  19606. image: {
  19607. source: "./media/characters/zara/side.svg",
  19608. extra: 765/744,
  19609. bottom: 156/921
  19610. }
  19611. },
  19612. },
  19613. [
  19614. {
  19615. name: "Normal",
  19616. height: math.unit(4, "meters"),
  19617. default: true
  19618. },
  19619. ]
  19620. ))
  19621. characterMakers.push(() => makeCharacter(
  19622. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19623. {
  19624. side: {
  19625. height: math.unit(6, "feet"),
  19626. weight: math.unit(150, "lb"),
  19627. name: "Side",
  19628. image: {
  19629. source: "./media/characters/richard-dragon/side.svg",
  19630. extra: 845 / 340,
  19631. bottom: 0.017
  19632. }
  19633. },
  19634. maw: {
  19635. height: math.unit(2.97, "feet"),
  19636. name: "Maw",
  19637. image: {
  19638. source: "./media/characters/richard-dragon/maw.svg"
  19639. }
  19640. },
  19641. },
  19642. [
  19643. ]
  19644. ))
  19645. characterMakers.push(() => makeCharacter(
  19646. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19647. {
  19648. front: {
  19649. height: math.unit(4, "feet"),
  19650. weight: math.unit(100, "lb"),
  19651. name: "Front",
  19652. image: {
  19653. source: "./media/characters/richard-smeargle/front.svg",
  19654. extra: 2952 / 2820,
  19655. bottom: 0.028
  19656. }
  19657. },
  19658. },
  19659. [
  19660. {
  19661. name: "Normal",
  19662. height: math.unit(4, "feet"),
  19663. default: true
  19664. },
  19665. {
  19666. name: "Dynamax",
  19667. height: math.unit(20, "meters")
  19668. },
  19669. ]
  19670. ))
  19671. characterMakers.push(() => makeCharacter(
  19672. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19673. {
  19674. front: {
  19675. height: math.unit(6, "feet"),
  19676. weight: math.unit(110, "lb"),
  19677. name: "Front",
  19678. image: {
  19679. source: "./media/characters/klay/front.svg",
  19680. extra: 962 / 883,
  19681. bottom: 0.04
  19682. }
  19683. },
  19684. back: {
  19685. height: math.unit(6, "feet"),
  19686. weight: math.unit(110, "lb"),
  19687. name: "Back",
  19688. image: {
  19689. source: "./media/characters/klay/back.svg",
  19690. extra: 962 / 883
  19691. }
  19692. },
  19693. beans: {
  19694. height: math.unit(1.15, "feet"),
  19695. name: "Beans",
  19696. image: {
  19697. source: "./media/characters/klay/beans.svg"
  19698. }
  19699. },
  19700. },
  19701. [
  19702. {
  19703. name: "Micro",
  19704. height: math.unit(6, "inches")
  19705. },
  19706. {
  19707. name: "Mini",
  19708. height: math.unit(3, "feet")
  19709. },
  19710. {
  19711. name: "Normal",
  19712. height: math.unit(6, "feet"),
  19713. default: true
  19714. },
  19715. {
  19716. name: "Big",
  19717. height: math.unit(25, "feet")
  19718. },
  19719. {
  19720. name: "Macro",
  19721. height: math.unit(100, "feet")
  19722. },
  19723. {
  19724. name: "Megamacro",
  19725. height: math.unit(400, "feet")
  19726. },
  19727. ]
  19728. ))
  19729. characterMakers.push(() => makeCharacter(
  19730. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19731. {
  19732. front: {
  19733. height: math.unit(6, "feet"),
  19734. weight: math.unit(160, "lb"),
  19735. name: "Front",
  19736. image: {
  19737. source: "./media/characters/marcus/front.svg",
  19738. extra: 734 / 676,
  19739. bottom: 0.03
  19740. }
  19741. },
  19742. },
  19743. [
  19744. {
  19745. name: "Little",
  19746. height: math.unit(6, "feet")
  19747. },
  19748. {
  19749. name: "Normal",
  19750. height: math.unit(110, "feet"),
  19751. default: true
  19752. },
  19753. {
  19754. name: "Macro",
  19755. height: math.unit(250, "feet")
  19756. },
  19757. {
  19758. name: "Megamacro",
  19759. height: math.unit(1000, "feet")
  19760. },
  19761. ]
  19762. ))
  19763. characterMakers.push(() => makeCharacter(
  19764. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19765. {
  19766. front: {
  19767. height: math.unit(7, "feet"),
  19768. weight: math.unit(275, "lb"),
  19769. name: "Front",
  19770. image: {
  19771. source: "./media/characters/claude-delroute/front.svg",
  19772. extra: 902/827,
  19773. bottom: 26/928
  19774. }
  19775. },
  19776. side: {
  19777. height: math.unit(7, "feet"),
  19778. weight: math.unit(275, "lb"),
  19779. name: "Side",
  19780. image: {
  19781. source: "./media/characters/claude-delroute/side.svg",
  19782. extra: 908/853,
  19783. bottom: 16/924
  19784. }
  19785. },
  19786. back: {
  19787. height: math.unit(7, "feet"),
  19788. weight: math.unit(275, "lb"),
  19789. name: "Back",
  19790. image: {
  19791. source: "./media/characters/claude-delroute/back.svg",
  19792. extra: 911/829,
  19793. bottom: 18/929
  19794. }
  19795. },
  19796. maw: {
  19797. height: math.unit(0.6407, "meters"),
  19798. name: "Maw",
  19799. image: {
  19800. source: "./media/characters/claude-delroute/maw.svg"
  19801. }
  19802. },
  19803. },
  19804. [
  19805. {
  19806. name: "Normal",
  19807. height: math.unit(7, "feet"),
  19808. default: true
  19809. },
  19810. {
  19811. name: "Lorge",
  19812. height: math.unit(20, "feet")
  19813. },
  19814. ]
  19815. ))
  19816. characterMakers.push(() => makeCharacter(
  19817. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19818. {
  19819. front: {
  19820. height: math.unit(8 + 4 / 12, "feet"),
  19821. weight: math.unit(600, "lb"),
  19822. name: "Front",
  19823. image: {
  19824. source: "./media/characters/dragonien/front.svg",
  19825. extra: 100 / 94,
  19826. bottom: 3.3 / 103.3445
  19827. }
  19828. },
  19829. back: {
  19830. height: math.unit(8 + 4 / 12, "feet"),
  19831. weight: math.unit(600, "lb"),
  19832. name: "Back",
  19833. image: {
  19834. source: "./media/characters/dragonien/back.svg",
  19835. extra: 776 / 746,
  19836. bottom: 6.4 / 782.0616
  19837. }
  19838. },
  19839. foot: {
  19840. height: math.unit(1.54, "feet"),
  19841. name: "Foot",
  19842. image: {
  19843. source: "./media/characters/dragonien/foot.svg",
  19844. }
  19845. },
  19846. },
  19847. [
  19848. {
  19849. name: "Normal",
  19850. height: math.unit(8 + 4 / 12, "feet"),
  19851. default: true
  19852. },
  19853. {
  19854. name: "Macro",
  19855. height: math.unit(200, "feet")
  19856. },
  19857. {
  19858. name: "Megamacro",
  19859. height: math.unit(1, "mile")
  19860. },
  19861. {
  19862. name: "Gigamacro",
  19863. height: math.unit(1000, "miles")
  19864. },
  19865. ]
  19866. ))
  19867. characterMakers.push(() => makeCharacter(
  19868. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19869. {
  19870. front: {
  19871. height: math.unit(5 + 2 / 12, "feet"),
  19872. weight: math.unit(110, "lb"),
  19873. name: "Front",
  19874. image: {
  19875. source: "./media/characters/desta/front.svg",
  19876. extra: 767 / 726,
  19877. bottom: 11.7 / 779
  19878. }
  19879. },
  19880. back: {
  19881. height: math.unit(5 + 2 / 12, "feet"),
  19882. weight: math.unit(110, "lb"),
  19883. name: "Back",
  19884. image: {
  19885. source: "./media/characters/desta/back.svg",
  19886. extra: 777 / 728,
  19887. bottom: 6 / 784
  19888. }
  19889. },
  19890. frontAlt: {
  19891. height: math.unit(5 + 2 / 12, "feet"),
  19892. weight: math.unit(110, "lb"),
  19893. name: "Front",
  19894. image: {
  19895. source: "./media/characters/desta/front-alt.svg",
  19896. extra: 1482 / 1417
  19897. }
  19898. },
  19899. side: {
  19900. height: math.unit(5 + 2 / 12, "feet"),
  19901. weight: math.unit(110, "lb"),
  19902. name: "Side",
  19903. image: {
  19904. source: "./media/characters/desta/side.svg",
  19905. extra: 2579 / 2491,
  19906. bottom: 0.053
  19907. }
  19908. },
  19909. },
  19910. [
  19911. {
  19912. name: "Micro",
  19913. height: math.unit(6, "inches")
  19914. },
  19915. {
  19916. name: "Normal",
  19917. height: math.unit(5 + 2 / 12, "feet"),
  19918. default: true
  19919. },
  19920. {
  19921. name: "Macro",
  19922. height: math.unit(62, "feet")
  19923. },
  19924. {
  19925. name: "Megamacro",
  19926. height: math.unit(1800, "feet")
  19927. },
  19928. ]
  19929. ))
  19930. characterMakers.push(() => makeCharacter(
  19931. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19932. {
  19933. front: {
  19934. height: math.unit(10, "feet"),
  19935. weight: math.unit(700, "lb"),
  19936. name: "Front",
  19937. image: {
  19938. source: "./media/characters/storm-alystar/front.svg",
  19939. extra: 2112 / 1898,
  19940. bottom: 0.034
  19941. }
  19942. },
  19943. },
  19944. [
  19945. {
  19946. name: "Micro",
  19947. height: math.unit(3.5, "inches")
  19948. },
  19949. {
  19950. name: "Normal",
  19951. height: math.unit(10, "feet"),
  19952. default: true
  19953. },
  19954. {
  19955. name: "Macro",
  19956. height: math.unit(400, "feet")
  19957. },
  19958. {
  19959. name: "Deific",
  19960. height: math.unit(60, "miles")
  19961. },
  19962. ]
  19963. ))
  19964. characterMakers.push(() => makeCharacter(
  19965. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19966. {
  19967. front: {
  19968. height: math.unit(2.35, "meters"),
  19969. weight: math.unit(119, "kg"),
  19970. name: "Front",
  19971. image: {
  19972. source: "./media/characters/ilia/front.svg",
  19973. extra: 1285 / 1255,
  19974. bottom: 0.06
  19975. }
  19976. },
  19977. },
  19978. [
  19979. {
  19980. name: "Normal",
  19981. height: math.unit(2.35, "meters")
  19982. },
  19983. {
  19984. name: "Macro",
  19985. height: math.unit(140, "meters"),
  19986. default: true
  19987. },
  19988. {
  19989. name: "Megamacro",
  19990. height: math.unit(100, "miles")
  19991. },
  19992. ]
  19993. ))
  19994. characterMakers.push(() => makeCharacter(
  19995. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19996. {
  19997. front: {
  19998. height: math.unit(6 + 5 / 12, "feet"),
  19999. weight: math.unit(190, "lb"),
  20000. name: "Front",
  20001. image: {
  20002. source: "./media/characters/kingdead/front.svg",
  20003. extra: 1228 / 1177
  20004. }
  20005. },
  20006. },
  20007. [
  20008. {
  20009. name: "Micro",
  20010. height: math.unit(7, "inches")
  20011. },
  20012. {
  20013. name: "Normal",
  20014. height: math.unit(6 + 5 / 12, "feet")
  20015. },
  20016. {
  20017. name: "Macro",
  20018. height: math.unit(150, "feet"),
  20019. default: true
  20020. },
  20021. {
  20022. name: "Megamacro",
  20023. height: math.unit(200, "miles")
  20024. },
  20025. ]
  20026. ))
  20027. characterMakers.push(() => makeCharacter(
  20028. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20029. {
  20030. front: {
  20031. height: math.unit(8, "feet"),
  20032. weight: math.unit(600, "lb"),
  20033. name: "Front",
  20034. image: {
  20035. source: "./media/characters/kyrehx/front.svg",
  20036. extra: 1195 / 1095,
  20037. bottom: 0.034
  20038. }
  20039. },
  20040. },
  20041. [
  20042. {
  20043. name: "Micro",
  20044. height: math.unit(2, "inches")
  20045. },
  20046. {
  20047. name: "Normal",
  20048. height: math.unit(8, "feet"),
  20049. default: true
  20050. },
  20051. {
  20052. name: "Macro",
  20053. height: math.unit(255, "feet")
  20054. },
  20055. ]
  20056. ))
  20057. characterMakers.push(() => makeCharacter(
  20058. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20059. {
  20060. front: {
  20061. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20062. weight: math.unit(184, "lb"),
  20063. name: "Front",
  20064. image: {
  20065. source: "./media/characters/xang/front.svg",
  20066. extra: 845 / 755
  20067. }
  20068. },
  20069. },
  20070. [
  20071. {
  20072. name: "Normal",
  20073. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20074. default: true
  20075. },
  20076. {
  20077. name: "Macro",
  20078. height: math.unit(0.935 * 146, "feet")
  20079. },
  20080. {
  20081. name: "Megamacro",
  20082. height: math.unit(0.935 * 3, "miles")
  20083. },
  20084. ]
  20085. ))
  20086. characterMakers.push(() => makeCharacter(
  20087. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20088. {
  20089. frontDressed: {
  20090. height: math.unit(5 + 7 / 12, "feet"),
  20091. weight: math.unit(140, "lb"),
  20092. name: "Front (Dressed)",
  20093. image: {
  20094. source: "./media/characters/doc-weardno/front-dressed.svg",
  20095. extra: 263 / 234
  20096. }
  20097. },
  20098. backDressed: {
  20099. height: math.unit(5 + 7 / 12, "feet"),
  20100. weight: math.unit(140, "lb"),
  20101. name: "Back (Dressed)",
  20102. image: {
  20103. source: "./media/characters/doc-weardno/back-dressed.svg",
  20104. extra: 266 / 238
  20105. }
  20106. },
  20107. front: {
  20108. height: math.unit(5 + 7 / 12, "feet"),
  20109. weight: math.unit(140, "lb"),
  20110. name: "Front",
  20111. image: {
  20112. source: "./media/characters/doc-weardno/front.svg",
  20113. extra: 254 / 233
  20114. }
  20115. },
  20116. },
  20117. [
  20118. {
  20119. name: "Micro",
  20120. height: math.unit(3, "inches")
  20121. },
  20122. {
  20123. name: "Normal",
  20124. height: math.unit(5 + 7 / 12, "feet"),
  20125. default: true
  20126. },
  20127. {
  20128. name: "Macro",
  20129. height: math.unit(25, "feet")
  20130. },
  20131. {
  20132. name: "Megamacro",
  20133. height: math.unit(2, "miles")
  20134. },
  20135. ]
  20136. ))
  20137. characterMakers.push(() => makeCharacter(
  20138. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20139. {
  20140. front: {
  20141. height: math.unit(6 + 2 / 12, "feet"),
  20142. weight: math.unit(153, "lb"),
  20143. name: "Front",
  20144. image: {
  20145. source: "./media/characters/seth-whilst/front.svg",
  20146. bottom: 0.07
  20147. }
  20148. },
  20149. },
  20150. [
  20151. {
  20152. name: "Micro",
  20153. height: math.unit(5, "inches")
  20154. },
  20155. {
  20156. name: "Normal",
  20157. height: math.unit(6 + 2 / 12, "feet"),
  20158. default: true
  20159. },
  20160. ]
  20161. ))
  20162. characterMakers.push(() => makeCharacter(
  20163. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20164. {
  20165. front: {
  20166. height: math.unit(3, "inches"),
  20167. weight: math.unit(8, "grams"),
  20168. name: "Front",
  20169. image: {
  20170. source: "./media/characters/pocket-jabari/front.svg",
  20171. extra: 1024 / 974,
  20172. bottom: 0.039
  20173. }
  20174. },
  20175. },
  20176. [
  20177. {
  20178. name: "Minimicro",
  20179. height: math.unit(8, "mm")
  20180. },
  20181. {
  20182. name: "Micro",
  20183. height: math.unit(3, "inches"),
  20184. default: true
  20185. },
  20186. {
  20187. name: "Normal",
  20188. height: math.unit(3, "feet")
  20189. },
  20190. ]
  20191. ))
  20192. characterMakers.push(() => makeCharacter(
  20193. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20194. {
  20195. frontDressed: {
  20196. height: math.unit(15, "feet"),
  20197. weight: math.unit(3280, "lb"),
  20198. name: "Front (Dressed)",
  20199. image: {
  20200. source: "./media/characters/sapphy/front-dressed.svg",
  20201. extra: 1951/1654,
  20202. bottom: 194/2145
  20203. },
  20204. form: "anthro",
  20205. default: true
  20206. },
  20207. backDressed: {
  20208. height: math.unit(15, "feet"),
  20209. weight: math.unit(3280, "lb"),
  20210. name: "Back (Dressed)",
  20211. image: {
  20212. source: "./media/characters/sapphy/back-dressed.svg",
  20213. extra: 2058/1918,
  20214. bottom: 125/2183
  20215. },
  20216. form: "anthro"
  20217. },
  20218. frontNude: {
  20219. height: math.unit(15, "feet"),
  20220. weight: math.unit(3280, "lb"),
  20221. name: "Front (Nude)",
  20222. image: {
  20223. source: "./media/characters/sapphy/front-nude.svg",
  20224. extra: 1951/1654,
  20225. bottom: 194/2145
  20226. },
  20227. form: "anthro"
  20228. },
  20229. backNude: {
  20230. height: math.unit(15, "feet"),
  20231. weight: math.unit(3280, "lb"),
  20232. name: "Back (Nude)",
  20233. image: {
  20234. source: "./media/characters/sapphy/back-nude.svg",
  20235. extra: 2058/1918,
  20236. bottom: 125/2183
  20237. },
  20238. form: "anthro"
  20239. },
  20240. full: {
  20241. height: math.unit(15, "feet"),
  20242. weight: math.unit(3280, "lb"),
  20243. name: "Full",
  20244. image: {
  20245. source: "./media/characters/sapphy/full.svg",
  20246. extra: 1396/1317,
  20247. bottom: 44/1440
  20248. },
  20249. form: "anthro"
  20250. },
  20251. dick: {
  20252. height: math.unit(3.8, "feet"),
  20253. name: "Dick",
  20254. image: {
  20255. source: "./media/characters/sapphy/dick.svg"
  20256. },
  20257. form: "anthro"
  20258. },
  20259. feral: {
  20260. height: math.unit(35, "feet"),
  20261. weight: math.unit(160, "tons"),
  20262. name: "Feral",
  20263. image: {
  20264. source: "./media/characters/sapphy/feral.svg",
  20265. extra: 1050/573,
  20266. bottom: 60/1110
  20267. },
  20268. form: "feral",
  20269. default: true
  20270. },
  20271. },
  20272. [
  20273. {
  20274. name: "Normal",
  20275. height: math.unit(15, "feet"),
  20276. form: "anthro"
  20277. },
  20278. {
  20279. name: "Casual Macro",
  20280. height: math.unit(120, "feet"),
  20281. form: "anthro"
  20282. },
  20283. {
  20284. name: "Macro",
  20285. height: math.unit(2150, "feet"),
  20286. default: true,
  20287. form: "anthro"
  20288. },
  20289. {
  20290. name: "Megamacro",
  20291. height: math.unit(8, "miles"),
  20292. form: "anthro"
  20293. },
  20294. {
  20295. name: "Galaxy Mom",
  20296. height: math.unit(6, "megalightyears"),
  20297. form: "anthro"
  20298. },
  20299. {
  20300. name: "Normal",
  20301. height: math.unit(35, "feet"),
  20302. form: "feral",
  20303. default: true
  20304. },
  20305. {
  20306. name: "Macro",
  20307. height: math.unit(300, "feet"),
  20308. form: "feral"
  20309. },
  20310. {
  20311. name: "Galaxy Mom",
  20312. height: math.unit(10, "megalightyears"),
  20313. form: "feral"
  20314. },
  20315. ],
  20316. {
  20317. "anthro": {
  20318. name: "Anthro",
  20319. default: true
  20320. },
  20321. "feral": {
  20322. name: "Feral"
  20323. }
  20324. }
  20325. ))
  20326. characterMakers.push(() => makeCharacter(
  20327. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20328. {
  20329. hyenaFront: {
  20330. height: math.unit(6, "feet"),
  20331. weight: math.unit(190, "lb"),
  20332. name: "Front",
  20333. image: {
  20334. source: "./media/characters/kiro/hyena-front.svg",
  20335. extra: 927/839,
  20336. bottom: 91/1018
  20337. },
  20338. form: "hyena",
  20339. default: true
  20340. },
  20341. front: {
  20342. height: math.unit(6, "feet"),
  20343. weight: math.unit(170, "lb"),
  20344. name: "Front",
  20345. image: {
  20346. source: "./media/characters/kiro/front.svg",
  20347. extra: 1064 / 1012,
  20348. bottom: 0.052
  20349. },
  20350. form: "folf",
  20351. default: true
  20352. },
  20353. },
  20354. [
  20355. {
  20356. name: "Micro",
  20357. height: math.unit(6, "inches"),
  20358. form: "folf"
  20359. },
  20360. {
  20361. name: "Normal",
  20362. height: math.unit(6, "feet"),
  20363. form: "folf",
  20364. default: true
  20365. },
  20366. {
  20367. name: "Macro",
  20368. height: math.unit(72, "feet"),
  20369. form: "folf"
  20370. },
  20371. {
  20372. name: "Micro",
  20373. height: math.unit(6, "inches"),
  20374. form: "hyena"
  20375. },
  20376. {
  20377. name: "Normal",
  20378. height: math.unit(6, "feet"),
  20379. form: "hyena",
  20380. default: true
  20381. },
  20382. {
  20383. name: "Macro",
  20384. height: math.unit(72, "feet"),
  20385. form: "hyena"
  20386. },
  20387. ],
  20388. {
  20389. "hyena": {
  20390. name: "Hyena",
  20391. default: true
  20392. },
  20393. "folf": {
  20394. name: "Folf",
  20395. },
  20396. }
  20397. ))
  20398. characterMakers.push(() => makeCharacter(
  20399. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20400. {
  20401. front: {
  20402. height: math.unit(5 + 9 / 12, "feet"),
  20403. weight: math.unit(175, "lb"),
  20404. name: "Front",
  20405. image: {
  20406. source: "./media/characters/irishfox/front.svg",
  20407. extra: 1912 / 1680,
  20408. bottom: 0.02
  20409. }
  20410. },
  20411. },
  20412. [
  20413. {
  20414. name: "Nano",
  20415. height: math.unit(1, "mm")
  20416. },
  20417. {
  20418. name: "Micro",
  20419. height: math.unit(2, "inches")
  20420. },
  20421. {
  20422. name: "Normal",
  20423. height: math.unit(5 + 9 / 12, "feet"),
  20424. default: true
  20425. },
  20426. {
  20427. name: "Macro",
  20428. height: math.unit(45, "feet")
  20429. },
  20430. ]
  20431. ))
  20432. characterMakers.push(() => makeCharacter(
  20433. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20434. {
  20435. front: {
  20436. height: math.unit(6 + 1 / 12, "feet"),
  20437. weight: math.unit(75, "lb"),
  20438. name: "Front",
  20439. image: {
  20440. source: "./media/characters/aronai-sieyes/front.svg",
  20441. extra: 1532/1450,
  20442. bottom: 42/1574
  20443. }
  20444. },
  20445. side: {
  20446. height: math.unit(6 + 1 / 12, "feet"),
  20447. weight: math.unit(75, "lb"),
  20448. name: "Side",
  20449. image: {
  20450. source: "./media/characters/aronai-sieyes/side.svg",
  20451. extra: 1422/1365,
  20452. bottom: 148/1570
  20453. }
  20454. },
  20455. back: {
  20456. height: math.unit(6 + 1 / 12, "feet"),
  20457. weight: math.unit(75, "lb"),
  20458. name: "Back",
  20459. image: {
  20460. source: "./media/characters/aronai-sieyes/back.svg",
  20461. extra: 1526/1464,
  20462. bottom: 51/1577
  20463. }
  20464. },
  20465. dressed: {
  20466. height: math.unit(6 + 1 / 12, "feet"),
  20467. weight: math.unit(75, "lb"),
  20468. name: "Dressed",
  20469. image: {
  20470. source: "./media/characters/aronai-sieyes/dressed.svg",
  20471. extra: 1559/1483,
  20472. bottom: 39/1598
  20473. }
  20474. },
  20475. slit: {
  20476. height: math.unit(1.3, "feet"),
  20477. name: "Slit",
  20478. image: {
  20479. source: "./media/characters/aronai-sieyes/slit.svg"
  20480. }
  20481. },
  20482. slitSpread: {
  20483. height: math.unit(0.9, "feet"),
  20484. name: "Slit (Spread)",
  20485. image: {
  20486. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20487. }
  20488. },
  20489. rump: {
  20490. height: math.unit(1.3, "feet"),
  20491. name: "Rump",
  20492. image: {
  20493. source: "./media/characters/aronai-sieyes/rump.svg"
  20494. }
  20495. },
  20496. maw: {
  20497. height: math.unit(1.25, "feet"),
  20498. name: "Maw",
  20499. image: {
  20500. source: "./media/characters/aronai-sieyes/maw.svg"
  20501. }
  20502. },
  20503. feral: {
  20504. height: math.unit(18, "feet"),
  20505. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20506. name: "Feral",
  20507. image: {
  20508. source: "./media/characters/aronai-sieyes/feral.svg",
  20509. extra: 1530 / 1240,
  20510. bottom: 0.035
  20511. }
  20512. },
  20513. },
  20514. [
  20515. {
  20516. name: "Micro",
  20517. height: math.unit(2, "inches")
  20518. },
  20519. {
  20520. name: "Normal",
  20521. height: math.unit(6 + 1 / 12, "feet"),
  20522. default: true
  20523. }
  20524. ]
  20525. ))
  20526. characterMakers.push(() => makeCharacter(
  20527. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20528. {
  20529. front: {
  20530. height: math.unit(12, "feet"),
  20531. weight: math.unit(410, "kg"),
  20532. name: "Front",
  20533. image: {
  20534. source: "./media/characters/xuna/front.svg",
  20535. extra: 2184 / 1980
  20536. }
  20537. },
  20538. side: {
  20539. height: math.unit(12, "feet"),
  20540. weight: math.unit(410, "kg"),
  20541. name: "Side",
  20542. image: {
  20543. source: "./media/characters/xuna/side.svg",
  20544. extra: 2184 / 1980
  20545. }
  20546. },
  20547. back: {
  20548. height: math.unit(12, "feet"),
  20549. weight: math.unit(410, "kg"),
  20550. name: "Back",
  20551. image: {
  20552. source: "./media/characters/xuna/back.svg",
  20553. extra: 2184 / 1980
  20554. }
  20555. },
  20556. },
  20557. [
  20558. {
  20559. name: "Nano glow",
  20560. height: math.unit(10, "nm")
  20561. },
  20562. {
  20563. name: "Micro floof",
  20564. height: math.unit(0.3, "m")
  20565. },
  20566. {
  20567. name: "Huggable softy boi",
  20568. height: math.unit(3.6576, "m"),
  20569. default: true
  20570. },
  20571. {
  20572. name: "Admirable floof",
  20573. height: math.unit(80, "meters")
  20574. },
  20575. {
  20576. name: "Gentle macro",
  20577. height: math.unit(300, "meters")
  20578. },
  20579. {
  20580. name: "Very careful floof",
  20581. height: math.unit(3200, "meters")
  20582. },
  20583. {
  20584. name: "The mega floof",
  20585. height: math.unit(36000, "meters")
  20586. },
  20587. {
  20588. name: "Giga-fur-Wicker",
  20589. height: math.unit(4800000, "meters")
  20590. },
  20591. {
  20592. name: "Licky world",
  20593. height: math.unit(20000000, "meters")
  20594. },
  20595. {
  20596. name: "Floofy cyan sun",
  20597. height: math.unit(1500000000, "meters")
  20598. },
  20599. {
  20600. name: "Milky Wicker",
  20601. height: math.unit(1000000000000000000000, "meters")
  20602. },
  20603. {
  20604. name: "The observing Wicker",
  20605. height: math.unit(999999999999999999999999999, "meters")
  20606. },
  20607. ]
  20608. ))
  20609. characterMakers.push(() => makeCharacter(
  20610. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20611. {
  20612. front: {
  20613. height: math.unit(5 + 9 / 12, "feet"),
  20614. weight: math.unit(150, "lb"),
  20615. name: "Front",
  20616. image: {
  20617. source: "./media/characters/arokha-sieyes/front.svg",
  20618. extra: 1425 / 1284,
  20619. bottom: 0.05
  20620. }
  20621. },
  20622. },
  20623. [
  20624. {
  20625. name: "Normal",
  20626. height: math.unit(5 + 9 / 12, "feet")
  20627. },
  20628. {
  20629. name: "Macro",
  20630. height: math.unit(30, "meters"),
  20631. default: true
  20632. },
  20633. ]
  20634. ))
  20635. characterMakers.push(() => makeCharacter(
  20636. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20637. {
  20638. front: {
  20639. height: math.unit(6, "feet"),
  20640. weight: math.unit(180, "lb"),
  20641. name: "Front",
  20642. image: {
  20643. source: "./media/characters/arokh-sieyes/front.svg",
  20644. extra: 1830 / 1769,
  20645. bottom: 0.01
  20646. }
  20647. },
  20648. },
  20649. [
  20650. {
  20651. name: "Normal",
  20652. height: math.unit(6, "feet")
  20653. },
  20654. {
  20655. name: "Macro",
  20656. height: math.unit(30, "meters"),
  20657. default: true
  20658. },
  20659. ]
  20660. ))
  20661. characterMakers.push(() => makeCharacter(
  20662. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20663. {
  20664. side: {
  20665. height: math.unit(13 + 1 / 12, "feet"),
  20666. weight: math.unit(8.5, "tonnes"),
  20667. preyCapacity: math.unit(36, "people"),
  20668. name: "Side",
  20669. image: {
  20670. source: "./media/characters/goldeneye/side.svg",
  20671. extra: 1139/741,
  20672. bottom: 98/1237
  20673. }
  20674. },
  20675. front: {
  20676. height: math.unit(5.1, "feet"),
  20677. weight: math.unit(8.5, "tonnes"),
  20678. preyCapacity: math.unit(36, "people"),
  20679. name: "Front",
  20680. image: {
  20681. source: "./media/characters/goldeneye/front.svg",
  20682. extra: 635/365,
  20683. bottom: 598/1233
  20684. }
  20685. },
  20686. maw: {
  20687. height: math.unit(6.6, "feet"),
  20688. name: "Maw",
  20689. image: {
  20690. source: "./media/characters/goldeneye/maw.svg"
  20691. }
  20692. },
  20693. headFront: {
  20694. height: math.unit(8, "feet"),
  20695. name: "Head (Front)",
  20696. image: {
  20697. source: "./media/characters/goldeneye/head-front.svg"
  20698. }
  20699. },
  20700. headSide: {
  20701. height: math.unit(6, "feet"),
  20702. name: "Head (Side)",
  20703. image: {
  20704. source: "./media/characters/goldeneye/head-side.svg"
  20705. }
  20706. },
  20707. headBack: {
  20708. height: math.unit(8, "feet"),
  20709. name: "Head (Back)",
  20710. image: {
  20711. source: "./media/characters/goldeneye/head-back.svg"
  20712. }
  20713. },
  20714. paw: {
  20715. height: math.unit(3.4, "feet"),
  20716. name: "Paw",
  20717. image: {
  20718. source: "./media/characters/goldeneye/paw.svg"
  20719. }
  20720. },
  20721. toering: {
  20722. height: math.unit(0.45, "feet"),
  20723. name: "Toering",
  20724. image: {
  20725. source: "./media/characters/goldeneye/toering.svg"
  20726. }
  20727. },
  20728. eyes: {
  20729. height: math.unit(0.5, "feet"),
  20730. name: "Eyes",
  20731. image: {
  20732. source: "./media/characters/goldeneye/eyes.svg"
  20733. }
  20734. },
  20735. },
  20736. [
  20737. {
  20738. name: "Normal",
  20739. height: math.unit(13 + 1 / 12, "feet"),
  20740. default: true
  20741. },
  20742. ]
  20743. ))
  20744. characterMakers.push(() => makeCharacter(
  20745. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20746. {
  20747. front: {
  20748. height: math.unit(6 + 1 / 12, "feet"),
  20749. weight: math.unit(210, "lb"),
  20750. name: "Front",
  20751. image: {
  20752. source: "./media/characters/leonardo-lycheborne/front.svg",
  20753. extra: 776/723,
  20754. bottom: 34/810
  20755. }
  20756. },
  20757. side: {
  20758. height: math.unit(6 + 1 / 12, "feet"),
  20759. weight: math.unit(210, "lb"),
  20760. name: "Side",
  20761. image: {
  20762. source: "./media/characters/leonardo-lycheborne/side.svg",
  20763. extra: 780/728,
  20764. bottom: 12/792
  20765. }
  20766. },
  20767. back: {
  20768. height: math.unit(6 + 1 / 12, "feet"),
  20769. weight: math.unit(210, "lb"),
  20770. name: "Back",
  20771. image: {
  20772. source: "./media/characters/leonardo-lycheborne/back.svg",
  20773. extra: 775/721,
  20774. bottom: 17/792
  20775. }
  20776. },
  20777. hand: {
  20778. height: math.unit(1.08, "feet"),
  20779. name: "Hand",
  20780. image: {
  20781. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20782. }
  20783. },
  20784. foot: {
  20785. height: math.unit(1.32, "feet"),
  20786. name: "Foot",
  20787. image: {
  20788. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20789. }
  20790. },
  20791. maw: {
  20792. height: math.unit(1, "feet"),
  20793. name: "Maw",
  20794. image: {
  20795. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20796. }
  20797. },
  20798. were: {
  20799. height: math.unit(20, "feet"),
  20800. weight: math.unit(7800, "lb"),
  20801. name: "Were",
  20802. image: {
  20803. source: "./media/characters/leonardo-lycheborne/were.svg",
  20804. extra: 1224/1165,
  20805. bottom: 72/1296
  20806. }
  20807. },
  20808. feral: {
  20809. height: math.unit(7.5, "feet"),
  20810. weight: math.unit(600, "lb"),
  20811. name: "Feral",
  20812. image: {
  20813. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20814. extra: 797/702,
  20815. bottom: 139/936
  20816. }
  20817. },
  20818. taur: {
  20819. height: math.unit(11, "feet"),
  20820. weight: math.unit(3300, "lb"),
  20821. name: "Taur",
  20822. image: {
  20823. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20824. extra: 1271/1197,
  20825. bottom: 47/1318
  20826. }
  20827. },
  20828. barghest: {
  20829. height: math.unit(11, "feet"),
  20830. weight: math.unit(1300, "lb"),
  20831. name: "Barghest",
  20832. image: {
  20833. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20834. extra: 1291/1204,
  20835. bottom: 37/1328
  20836. }
  20837. },
  20838. dick: {
  20839. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20840. name: "Dick",
  20841. image: {
  20842. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20843. }
  20844. },
  20845. dickWere: {
  20846. height: math.unit((20) / 3.8, "feet"),
  20847. name: "Dick (Were)",
  20848. image: {
  20849. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20850. }
  20851. },
  20852. },
  20853. [
  20854. {
  20855. name: "Normal",
  20856. height: math.unit(6 + 1 / 12, "feet"),
  20857. default: true
  20858. },
  20859. ]
  20860. ))
  20861. characterMakers.push(() => makeCharacter(
  20862. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20863. {
  20864. front: {
  20865. height: math.unit(10, "feet"),
  20866. weight: math.unit(350, "lb"),
  20867. name: "Front",
  20868. image: {
  20869. source: "./media/characters/jet/front.svg",
  20870. extra: 2050 / 1980,
  20871. bottom: 0.013
  20872. }
  20873. },
  20874. back: {
  20875. height: math.unit(10, "feet"),
  20876. weight: math.unit(350, "lb"),
  20877. name: "Back",
  20878. image: {
  20879. source: "./media/characters/jet/back.svg",
  20880. extra: 2050 / 1980,
  20881. bottom: 0.013
  20882. }
  20883. },
  20884. },
  20885. [
  20886. {
  20887. name: "Micro",
  20888. height: math.unit(6, "inches")
  20889. },
  20890. {
  20891. name: "Normal",
  20892. height: math.unit(10, "feet"),
  20893. default: true
  20894. },
  20895. {
  20896. name: "Macro",
  20897. height: math.unit(100, "feet")
  20898. },
  20899. ]
  20900. ))
  20901. characterMakers.push(() => makeCharacter(
  20902. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20903. {
  20904. front: {
  20905. height: math.unit(15, "feet"),
  20906. weight: math.unit(2800, "lb"),
  20907. name: "Front",
  20908. image: {
  20909. source: "./media/characters/tanarath/front.svg",
  20910. extra: 2392 / 2220,
  20911. bottom: 0.03
  20912. }
  20913. },
  20914. back: {
  20915. height: math.unit(15, "feet"),
  20916. weight: math.unit(2800, "lb"),
  20917. name: "Back",
  20918. image: {
  20919. source: "./media/characters/tanarath/back.svg",
  20920. extra: 2392 / 2220,
  20921. bottom: 0.03
  20922. }
  20923. },
  20924. },
  20925. [
  20926. {
  20927. name: "Normal",
  20928. height: math.unit(15, "feet"),
  20929. default: true
  20930. },
  20931. ]
  20932. ))
  20933. characterMakers.push(() => makeCharacter(
  20934. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20935. {
  20936. front: {
  20937. height: math.unit(7 + 1 / 12, "feet"),
  20938. weight: math.unit(175, "lb"),
  20939. name: "Front",
  20940. image: {
  20941. source: "./media/characters/patty-cattybatty/front.svg",
  20942. extra: 908 / 874,
  20943. bottom: 0.025
  20944. }
  20945. },
  20946. },
  20947. [
  20948. {
  20949. name: "Micro",
  20950. height: math.unit(1, "inch")
  20951. },
  20952. {
  20953. name: "Normal",
  20954. height: math.unit(7 + 1 / 12, "feet")
  20955. },
  20956. {
  20957. name: "Mini Macro",
  20958. height: math.unit(155, "feet")
  20959. },
  20960. {
  20961. name: "Macro",
  20962. height: math.unit(1077, "feet")
  20963. },
  20964. {
  20965. name: "Mega Macro",
  20966. height: math.unit(47650, "feet"),
  20967. default: true
  20968. },
  20969. {
  20970. name: "Giga Macro",
  20971. height: math.unit(440, "miles")
  20972. },
  20973. {
  20974. name: "Tera Macro",
  20975. height: math.unit(8700, "miles")
  20976. },
  20977. {
  20978. name: "Planetary Macro",
  20979. height: math.unit(32700, "miles")
  20980. },
  20981. {
  20982. name: "Solar Macro",
  20983. height: math.unit(550000, "miles")
  20984. },
  20985. {
  20986. name: "Celestial Macro",
  20987. height: math.unit(2.5, "AU")
  20988. },
  20989. ]
  20990. ))
  20991. characterMakers.push(() => makeCharacter(
  20992. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20993. {
  20994. front: {
  20995. height: math.unit(4 + 5 / 12, "feet"),
  20996. weight: math.unit(90, "lb"),
  20997. name: "Front",
  20998. image: {
  20999. source: "./media/characters/cappu/front.svg",
  21000. extra: 1247 / 1152,
  21001. bottom: 0.012
  21002. }
  21003. },
  21004. },
  21005. [
  21006. {
  21007. name: "Normal",
  21008. height: math.unit(4 + 5 / 12, "feet"),
  21009. default: true
  21010. },
  21011. ]
  21012. ))
  21013. characterMakers.push(() => makeCharacter(
  21014. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21015. {
  21016. frontDressed: {
  21017. height: math.unit(70, "cm"),
  21018. weight: math.unit(6, "kg"),
  21019. name: "Front (Dressed)",
  21020. image: {
  21021. source: "./media/characters/sebi/front-dressed.svg",
  21022. extra: 713.5 / 686.5,
  21023. bottom: 0.003
  21024. }
  21025. },
  21026. front: {
  21027. height: math.unit(70, "cm"),
  21028. weight: math.unit(5, "kg"),
  21029. name: "Front",
  21030. image: {
  21031. source: "./media/characters/sebi/front.svg",
  21032. extra: 713.5 / 686.5,
  21033. bottom: 0.003
  21034. }
  21035. }
  21036. },
  21037. [
  21038. {
  21039. name: "Normal",
  21040. height: math.unit(70, "cm"),
  21041. default: true
  21042. },
  21043. {
  21044. name: "Macro",
  21045. height: math.unit(8, "meters")
  21046. },
  21047. ]
  21048. ))
  21049. characterMakers.push(() => makeCharacter(
  21050. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21051. {
  21052. front: {
  21053. height: math.unit(6, "feet"),
  21054. weight: math.unit(150, "lb"),
  21055. name: "Front",
  21056. image: {
  21057. source: "./media/characters/typhek/front.svg",
  21058. extra: 1948 / 1929,
  21059. bottom: 0.025
  21060. }
  21061. },
  21062. side: {
  21063. height: math.unit(6, "feet"),
  21064. weight: math.unit(150, "lb"),
  21065. name: "Side",
  21066. image: {
  21067. source: "./media/characters/typhek/side.svg",
  21068. extra: 2034 / 2010,
  21069. bottom: 0.003
  21070. }
  21071. },
  21072. back: {
  21073. height: math.unit(6, "feet"),
  21074. weight: math.unit(150, "lb"),
  21075. name: "Back",
  21076. image: {
  21077. source: "./media/characters/typhek/back.svg",
  21078. extra: 2005 / 1978,
  21079. bottom: 0.004
  21080. }
  21081. },
  21082. palm: {
  21083. height: math.unit(1.2, "feet"),
  21084. name: "Palm",
  21085. image: {
  21086. source: "./media/characters/typhek/palm.svg"
  21087. }
  21088. },
  21089. fist: {
  21090. height: math.unit(1.1, "feet"),
  21091. name: "Fist",
  21092. image: {
  21093. source: "./media/characters/typhek/fist.svg"
  21094. }
  21095. },
  21096. foot: {
  21097. height: math.unit(1.57, "feet"),
  21098. name: "Foot",
  21099. image: {
  21100. source: "./media/characters/typhek/foot.svg"
  21101. }
  21102. },
  21103. sole: {
  21104. height: math.unit(2.05, "feet"),
  21105. name: "Sole",
  21106. image: {
  21107. source: "./media/characters/typhek/sole.svg"
  21108. }
  21109. },
  21110. },
  21111. [
  21112. {
  21113. name: "Macro",
  21114. height: math.unit(40, "stories"),
  21115. default: true
  21116. },
  21117. {
  21118. name: "Megamacro",
  21119. height: math.unit(1, "mile")
  21120. },
  21121. {
  21122. name: "Gigamacro",
  21123. height: math.unit(4000, "solarradii")
  21124. },
  21125. {
  21126. name: "Universal",
  21127. height: math.unit(1.1, "universes")
  21128. }
  21129. ]
  21130. ))
  21131. characterMakers.push(() => makeCharacter(
  21132. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21133. {
  21134. side: {
  21135. height: math.unit(5 + 7 / 12, "feet"),
  21136. weight: math.unit(150, "lb"),
  21137. name: "Side",
  21138. image: {
  21139. source: "./media/characters/kassy/side.svg",
  21140. extra: 1280 / 1225,
  21141. bottom: 0.002
  21142. }
  21143. },
  21144. front: {
  21145. height: math.unit(5 + 7 / 12, "feet"),
  21146. weight: math.unit(150, "lb"),
  21147. name: "Front",
  21148. image: {
  21149. source: "./media/characters/kassy/front.svg",
  21150. extra: 1280 / 1225,
  21151. bottom: 0.025
  21152. }
  21153. },
  21154. back: {
  21155. height: math.unit(5 + 7 / 12, "feet"),
  21156. weight: math.unit(150, "lb"),
  21157. name: "Back",
  21158. image: {
  21159. source: "./media/characters/kassy/back.svg",
  21160. extra: 1280 / 1225,
  21161. bottom: 0.002
  21162. }
  21163. },
  21164. foot: {
  21165. height: math.unit(1.266, "feet"),
  21166. name: "Foot",
  21167. image: {
  21168. source: "./media/characters/kassy/foot.svg"
  21169. }
  21170. },
  21171. },
  21172. [
  21173. {
  21174. name: "Normal",
  21175. height: math.unit(5 + 7 / 12, "feet")
  21176. },
  21177. {
  21178. name: "Macro",
  21179. height: math.unit(137, "feet"),
  21180. default: true
  21181. },
  21182. {
  21183. name: "Megamacro",
  21184. height: math.unit(1, "mile")
  21185. },
  21186. ]
  21187. ))
  21188. characterMakers.push(() => makeCharacter(
  21189. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21190. {
  21191. front: {
  21192. height: math.unit(6 + 1 / 12, "feet"),
  21193. weight: math.unit(200, "lb"),
  21194. name: "Front",
  21195. image: {
  21196. source: "./media/characters/neil/front.svg",
  21197. extra: 1326 / 1250,
  21198. bottom: 0.023
  21199. }
  21200. },
  21201. },
  21202. [
  21203. {
  21204. name: "Normal",
  21205. height: math.unit(6 + 1 / 12, "feet"),
  21206. default: true
  21207. },
  21208. {
  21209. name: "Macro",
  21210. height: math.unit(200, "feet")
  21211. },
  21212. ]
  21213. ))
  21214. characterMakers.push(() => makeCharacter(
  21215. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21216. {
  21217. front: {
  21218. height: math.unit(5 + 9 / 12, "feet"),
  21219. weight: math.unit(190, "lb"),
  21220. name: "Front",
  21221. image: {
  21222. source: "./media/characters/atticus/front.svg",
  21223. extra: 2934 / 2785,
  21224. bottom: 0.025
  21225. }
  21226. },
  21227. },
  21228. [
  21229. {
  21230. name: "Normal",
  21231. height: math.unit(5 + 9 / 12, "feet"),
  21232. default: true
  21233. },
  21234. {
  21235. name: "Macro",
  21236. height: math.unit(180, "feet")
  21237. },
  21238. ]
  21239. ))
  21240. characterMakers.push(() => makeCharacter(
  21241. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21242. {
  21243. side: {
  21244. height: math.unit(9, "feet"),
  21245. weight: math.unit(650, "lb"),
  21246. name: "Side",
  21247. image: {
  21248. source: "./media/characters/milo/side.svg",
  21249. extra: 2644 / 2310,
  21250. bottom: 0.032
  21251. }
  21252. },
  21253. },
  21254. [
  21255. {
  21256. name: "Normal",
  21257. height: math.unit(9, "feet"),
  21258. default: true
  21259. },
  21260. {
  21261. name: "Macro",
  21262. height: math.unit(300, "feet")
  21263. },
  21264. ]
  21265. ))
  21266. characterMakers.push(() => makeCharacter(
  21267. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21268. {
  21269. side: {
  21270. height: math.unit(8, "meters"),
  21271. weight: math.unit(90000, "kg"),
  21272. name: "Side",
  21273. image: {
  21274. source: "./media/characters/ijzer/side.svg",
  21275. extra: 2756 / 1600,
  21276. bottom: 0.01
  21277. }
  21278. },
  21279. },
  21280. [
  21281. {
  21282. name: "Small",
  21283. height: math.unit(3, "meters")
  21284. },
  21285. {
  21286. name: "Normal",
  21287. height: math.unit(8, "meters"),
  21288. default: true
  21289. },
  21290. {
  21291. name: "Normal+",
  21292. height: math.unit(10, "meters")
  21293. },
  21294. {
  21295. name: "Bigger",
  21296. height: math.unit(24, "meters")
  21297. },
  21298. {
  21299. name: "Huge",
  21300. height: math.unit(80, "meters")
  21301. },
  21302. ]
  21303. ))
  21304. characterMakers.push(() => makeCharacter(
  21305. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21306. {
  21307. front: {
  21308. height: math.unit(6 + 2 / 12, "feet"),
  21309. weight: math.unit(153, "lb"),
  21310. name: "Front",
  21311. image: {
  21312. source: "./media/characters/luca-cervicum/front.svg",
  21313. extra: 370 / 327,
  21314. bottom: 0.015
  21315. }
  21316. },
  21317. back: {
  21318. height: math.unit(6 + 2 / 12, "feet"),
  21319. weight: math.unit(153, "lb"),
  21320. name: "Back",
  21321. image: {
  21322. source: "./media/characters/luca-cervicum/back.svg",
  21323. extra: 367 / 333,
  21324. bottom: 0.005
  21325. }
  21326. },
  21327. frontGear: {
  21328. height: math.unit(6 + 2 / 12, "feet"),
  21329. weight: math.unit(173, "lb"),
  21330. name: "Front (Gear)",
  21331. image: {
  21332. source: "./media/characters/luca-cervicum/front-gear.svg",
  21333. extra: 377 / 333,
  21334. bottom: 0.006
  21335. }
  21336. },
  21337. },
  21338. [
  21339. {
  21340. name: "Normal",
  21341. height: math.unit(6 + 2 / 12, "feet"),
  21342. default: true
  21343. },
  21344. ]
  21345. ))
  21346. characterMakers.push(() => makeCharacter(
  21347. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21348. {
  21349. front: {
  21350. height: math.unit(6 + 1 / 12, "feet"),
  21351. weight: math.unit(304, "lb"),
  21352. name: "Front",
  21353. image: {
  21354. source: "./media/characters/oliver/front.svg",
  21355. extra: 157 / 143,
  21356. bottom: 0.08
  21357. }
  21358. },
  21359. },
  21360. [
  21361. {
  21362. name: "Normal",
  21363. height: math.unit(6 + 1 / 12, "feet"),
  21364. default: true
  21365. },
  21366. ]
  21367. ))
  21368. characterMakers.push(() => makeCharacter(
  21369. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21370. {
  21371. front: {
  21372. height: math.unit(5 + 7 / 12, "feet"),
  21373. weight: math.unit(140, "lb"),
  21374. name: "Front",
  21375. image: {
  21376. source: "./media/characters/shane/front.svg",
  21377. extra: 304 / 289,
  21378. bottom: 0.005
  21379. }
  21380. },
  21381. },
  21382. [
  21383. {
  21384. name: "Normal",
  21385. height: math.unit(5 + 7 / 12, "feet"),
  21386. default: true
  21387. },
  21388. ]
  21389. ))
  21390. characterMakers.push(() => makeCharacter(
  21391. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21392. {
  21393. front: {
  21394. height: math.unit(5 + 9 / 12, "feet"),
  21395. weight: math.unit(178, "lb"),
  21396. name: "Front",
  21397. image: {
  21398. source: "./media/characters/shin/front.svg",
  21399. extra: 159 / 151,
  21400. bottom: 0.015
  21401. }
  21402. },
  21403. },
  21404. [
  21405. {
  21406. name: "Normal",
  21407. height: math.unit(5 + 9 / 12, "feet"),
  21408. default: true
  21409. },
  21410. ]
  21411. ))
  21412. characterMakers.push(() => makeCharacter(
  21413. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21414. {
  21415. front: {
  21416. height: math.unit(5 + 10 / 12, "feet"),
  21417. weight: math.unit(168, "lb"),
  21418. name: "Front",
  21419. image: {
  21420. source: "./media/characters/xerxes/front.svg",
  21421. extra: 282 / 260,
  21422. bottom: 0.045
  21423. }
  21424. },
  21425. },
  21426. [
  21427. {
  21428. name: "Normal",
  21429. height: math.unit(5 + 10 / 12, "feet"),
  21430. default: true
  21431. },
  21432. ]
  21433. ))
  21434. characterMakers.push(() => makeCharacter(
  21435. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21436. {
  21437. front: {
  21438. height: math.unit(6 + 7 / 12, "feet"),
  21439. weight: math.unit(208, "lb"),
  21440. name: "Front",
  21441. image: {
  21442. source: "./media/characters/chaska/front.svg",
  21443. extra: 332 / 319,
  21444. bottom: 0.015
  21445. }
  21446. },
  21447. },
  21448. [
  21449. {
  21450. name: "Normal",
  21451. height: math.unit(6 + 7 / 12, "feet"),
  21452. default: true
  21453. },
  21454. ]
  21455. ))
  21456. characterMakers.push(() => makeCharacter(
  21457. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21458. {
  21459. front: {
  21460. height: math.unit(5 + 8 / 12, "feet"),
  21461. weight: math.unit(208, "lb"),
  21462. name: "Front",
  21463. image: {
  21464. source: "./media/characters/enuk/front.svg",
  21465. extra: 437 / 406,
  21466. bottom: 0.02
  21467. }
  21468. },
  21469. },
  21470. [
  21471. {
  21472. name: "Normal",
  21473. height: math.unit(5 + 8 / 12, "feet"),
  21474. default: true
  21475. },
  21476. ]
  21477. ))
  21478. characterMakers.push(() => makeCharacter(
  21479. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21480. {
  21481. front: {
  21482. height: math.unit(5 + 10 / 12, "feet"),
  21483. weight: math.unit(252, "lb"),
  21484. name: "Front",
  21485. image: {
  21486. source: "./media/characters/bruun/front.svg",
  21487. extra: 197 / 187,
  21488. bottom: 0.012
  21489. }
  21490. },
  21491. },
  21492. [
  21493. {
  21494. name: "Normal",
  21495. height: math.unit(5 + 10 / 12, "feet"),
  21496. default: true
  21497. },
  21498. ]
  21499. ))
  21500. characterMakers.push(() => makeCharacter(
  21501. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21502. {
  21503. front: {
  21504. height: math.unit(6 + 10 / 12, "feet"),
  21505. weight: math.unit(255, "lb"),
  21506. name: "Front",
  21507. image: {
  21508. source: "./media/characters/alexeev/front.svg",
  21509. extra: 213 / 200,
  21510. bottom: 0.05
  21511. }
  21512. },
  21513. },
  21514. [
  21515. {
  21516. name: "Normal",
  21517. height: math.unit(6 + 10 / 12, "feet"),
  21518. default: true
  21519. },
  21520. ]
  21521. ))
  21522. characterMakers.push(() => makeCharacter(
  21523. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21524. {
  21525. front: {
  21526. height: math.unit(2 + 8 / 12, "feet"),
  21527. weight: math.unit(22, "lb"),
  21528. name: "Front",
  21529. image: {
  21530. source: "./media/characters/evelyn/front.svg",
  21531. extra: 208 / 180
  21532. }
  21533. },
  21534. },
  21535. [
  21536. {
  21537. name: "Normal",
  21538. height: math.unit(2 + 8 / 12, "feet"),
  21539. default: true
  21540. },
  21541. ]
  21542. ))
  21543. characterMakers.push(() => makeCharacter(
  21544. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21545. {
  21546. front: {
  21547. height: math.unit(5 + 9 / 12, "feet"),
  21548. weight: math.unit(139, "lb"),
  21549. name: "Front",
  21550. image: {
  21551. source: "./media/characters/inca/front.svg",
  21552. extra: 294 / 291,
  21553. bottom: 0.03
  21554. }
  21555. },
  21556. },
  21557. [
  21558. {
  21559. name: "Normal",
  21560. height: math.unit(5 + 9 / 12, "feet"),
  21561. default: true
  21562. },
  21563. ]
  21564. ))
  21565. characterMakers.push(() => makeCharacter(
  21566. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21567. {
  21568. front: {
  21569. height: math.unit(6 + 3 / 12, "feet"),
  21570. weight: math.unit(185, "lb"),
  21571. name: "Front",
  21572. image: {
  21573. source: "./media/characters/mera/front.svg",
  21574. extra: 291 / 277,
  21575. bottom: 0.03
  21576. }
  21577. },
  21578. },
  21579. [
  21580. {
  21581. name: "Normal",
  21582. height: math.unit(6 + 3 / 12, "feet"),
  21583. default: true
  21584. },
  21585. ]
  21586. ))
  21587. characterMakers.push(() => makeCharacter(
  21588. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21589. {
  21590. front: {
  21591. height: math.unit(6 + 7 / 12, "feet"),
  21592. weight: math.unit(160, "lb"),
  21593. name: "Front",
  21594. image: {
  21595. source: "./media/characters/ceres/front.svg",
  21596. extra: 1023 / 950,
  21597. bottom: 0.027
  21598. }
  21599. },
  21600. back: {
  21601. height: math.unit(6 + 7 / 12, "feet"),
  21602. weight: math.unit(160, "lb"),
  21603. name: "Back",
  21604. image: {
  21605. source: "./media/characters/ceres/back.svg",
  21606. extra: 1023 / 950
  21607. }
  21608. },
  21609. },
  21610. [
  21611. {
  21612. name: "Normal",
  21613. height: math.unit(6 + 7 / 12, "feet"),
  21614. default: true
  21615. },
  21616. ]
  21617. ))
  21618. characterMakers.push(() => makeCharacter(
  21619. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21620. {
  21621. front: {
  21622. height: math.unit(5 + 10 / 12, "feet"),
  21623. weight: math.unit(150, "lb"),
  21624. name: "Front",
  21625. image: {
  21626. source: "./media/characters/kris/front.svg",
  21627. extra: 885 / 803,
  21628. bottom: 0.03
  21629. }
  21630. },
  21631. },
  21632. [
  21633. {
  21634. name: "Normal",
  21635. height: math.unit(5 + 10 / 12, "feet"),
  21636. default: true
  21637. },
  21638. ]
  21639. ))
  21640. characterMakers.push(() => makeCharacter(
  21641. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21642. {
  21643. front: {
  21644. height: math.unit(7, "feet"),
  21645. weight: math.unit(120, "kg"),
  21646. name: "Front",
  21647. image: {
  21648. source: "./media/characters/taluthus/front.svg",
  21649. extra: 903 / 833,
  21650. bottom: 0.015
  21651. }
  21652. },
  21653. },
  21654. [
  21655. {
  21656. name: "Normal",
  21657. height: math.unit(7, "feet"),
  21658. default: true
  21659. },
  21660. {
  21661. name: "Macro",
  21662. height: math.unit(300, "feet")
  21663. },
  21664. ]
  21665. ))
  21666. characterMakers.push(() => makeCharacter(
  21667. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21668. {
  21669. front: {
  21670. height: math.unit(5 + 9 / 12, "feet"),
  21671. weight: math.unit(145, "lb"),
  21672. name: "Front",
  21673. image: {
  21674. source: "./media/characters/dawn/front.svg",
  21675. extra: 2094 / 2016,
  21676. bottom: 0.025
  21677. }
  21678. },
  21679. back: {
  21680. height: math.unit(5 + 9 / 12, "feet"),
  21681. weight: math.unit(160, "lb"),
  21682. name: "Back",
  21683. image: {
  21684. source: "./media/characters/dawn/back.svg",
  21685. extra: 2112 / 2080,
  21686. bottom: 0.005
  21687. }
  21688. },
  21689. },
  21690. [
  21691. {
  21692. name: "Normal",
  21693. height: math.unit(6 + 7 / 12, "feet"),
  21694. default: true
  21695. },
  21696. ]
  21697. ))
  21698. characterMakers.push(() => makeCharacter(
  21699. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21700. {
  21701. anthro: {
  21702. height: math.unit(8 + 3 / 12, "feet"),
  21703. weight: math.unit(450, "lb"),
  21704. name: "Anthro",
  21705. image: {
  21706. source: "./media/characters/arador/anthro.svg",
  21707. extra: 1835 / 1718,
  21708. bottom: 0.025
  21709. }
  21710. },
  21711. feral: {
  21712. height: math.unit(4, "feet"),
  21713. weight: math.unit(200, "lb"),
  21714. name: "Feral",
  21715. image: {
  21716. source: "./media/characters/arador/feral.svg",
  21717. extra: 1683 / 1514,
  21718. bottom: 0.07
  21719. }
  21720. },
  21721. },
  21722. [
  21723. {
  21724. name: "Normal",
  21725. height: math.unit(8 + 3 / 12, "feet")
  21726. },
  21727. {
  21728. name: "Macro",
  21729. height: math.unit(82.5, "feet"),
  21730. default: true
  21731. },
  21732. ]
  21733. ))
  21734. characterMakers.push(() => makeCharacter(
  21735. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21736. {
  21737. front: {
  21738. height: math.unit(5 + 10 / 12, "feet"),
  21739. weight: math.unit(125, "lb"),
  21740. name: "Front",
  21741. image: {
  21742. source: "./media/characters/dharsi/front.svg",
  21743. extra: 716 / 630,
  21744. bottom: 0.035
  21745. }
  21746. },
  21747. },
  21748. [
  21749. {
  21750. name: "Nano",
  21751. height: math.unit(100, "nm")
  21752. },
  21753. {
  21754. name: "Micro",
  21755. height: math.unit(2, "inches")
  21756. },
  21757. {
  21758. name: "Normal",
  21759. height: math.unit(5 + 10 / 12, "feet"),
  21760. default: true
  21761. },
  21762. {
  21763. name: "Macro",
  21764. height: math.unit(1000, "feet")
  21765. },
  21766. {
  21767. name: "Megamacro",
  21768. height: math.unit(10, "miles")
  21769. },
  21770. {
  21771. name: "Gigamacro",
  21772. height: math.unit(3000, "miles")
  21773. },
  21774. {
  21775. name: "Teramacro",
  21776. height: math.unit(500000, "miles")
  21777. },
  21778. {
  21779. name: "Teramacro+",
  21780. height: math.unit(30, "galaxies")
  21781. },
  21782. ]
  21783. ))
  21784. characterMakers.push(() => makeCharacter(
  21785. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21786. {
  21787. front: {
  21788. height: math.unit(6, "feet"),
  21789. weight: math.unit(150, "lb"),
  21790. name: "Front",
  21791. image: {
  21792. source: "./media/characters/deathy/front.svg",
  21793. extra: 1552 / 1463,
  21794. bottom: 0.025
  21795. }
  21796. },
  21797. side: {
  21798. height: math.unit(6, "feet"),
  21799. weight: math.unit(150, "lb"),
  21800. name: "Side",
  21801. image: {
  21802. source: "./media/characters/deathy/side.svg",
  21803. extra: 1604 / 1455,
  21804. bottom: 0.025
  21805. }
  21806. },
  21807. back: {
  21808. height: math.unit(6, "feet"),
  21809. weight: math.unit(150, "lb"),
  21810. name: "Back",
  21811. image: {
  21812. source: "./media/characters/deathy/back.svg",
  21813. extra: 1580 / 1463,
  21814. bottom: 0.005
  21815. }
  21816. },
  21817. },
  21818. [
  21819. {
  21820. name: "Micro",
  21821. height: math.unit(5, "millimeters")
  21822. },
  21823. {
  21824. name: "Normal",
  21825. height: math.unit(6 + 5 / 12, "feet"),
  21826. default: true
  21827. },
  21828. ]
  21829. ))
  21830. characterMakers.push(() => makeCharacter(
  21831. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21832. {
  21833. front: {
  21834. height: math.unit(16, "feet"),
  21835. weight: math.unit(4000, "lb"),
  21836. name: "Front",
  21837. image: {
  21838. source: "./media/characters/juniper/front.svg",
  21839. bottom: 0.04
  21840. }
  21841. },
  21842. },
  21843. [
  21844. {
  21845. name: "Normal",
  21846. height: math.unit(16, "feet"),
  21847. default: true
  21848. },
  21849. ]
  21850. ))
  21851. characterMakers.push(() => makeCharacter(
  21852. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21853. {
  21854. front: {
  21855. height: math.unit(6, "feet"),
  21856. weight: math.unit(150, "lb"),
  21857. name: "Front",
  21858. image: {
  21859. source: "./media/characters/hipster/front.svg",
  21860. extra: 1312 / 1209,
  21861. bottom: 0.025
  21862. }
  21863. },
  21864. back: {
  21865. height: math.unit(6, "feet"),
  21866. weight: math.unit(150, "lb"),
  21867. name: "Back",
  21868. image: {
  21869. source: "./media/characters/hipster/back.svg",
  21870. extra: 1281 / 1196,
  21871. bottom: 0.01
  21872. }
  21873. },
  21874. },
  21875. [
  21876. {
  21877. name: "Micro",
  21878. height: math.unit(1, "mm")
  21879. },
  21880. {
  21881. name: "Normal",
  21882. height: math.unit(4, "inches"),
  21883. default: true
  21884. },
  21885. {
  21886. name: "Macro",
  21887. height: math.unit(500, "feet")
  21888. },
  21889. {
  21890. name: "Megamacro",
  21891. height: math.unit(1000, "miles")
  21892. },
  21893. ]
  21894. ))
  21895. characterMakers.push(() => makeCharacter(
  21896. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21897. {
  21898. front: {
  21899. height: math.unit(6, "feet"),
  21900. weight: math.unit(150, "lb"),
  21901. name: "Front",
  21902. image: {
  21903. source: "./media/characters/tendirmuldr/front.svg",
  21904. extra: 1878 / 1772,
  21905. bottom: 0.015
  21906. }
  21907. },
  21908. },
  21909. [
  21910. {
  21911. name: "Megamacro",
  21912. height: math.unit(1500, "miles"),
  21913. default: true
  21914. },
  21915. ]
  21916. ))
  21917. characterMakers.push(() => makeCharacter(
  21918. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21919. {
  21920. front: {
  21921. height: math.unit(14, "feet"),
  21922. weight: math.unit(12000, "lb"),
  21923. name: "Front",
  21924. image: {
  21925. source: "./media/characters/mort/front.svg",
  21926. extra: 365 / 318,
  21927. bottom: 0.01
  21928. }
  21929. },
  21930. side: {
  21931. height: math.unit(14, "feet"),
  21932. weight: math.unit(12000, "lb"),
  21933. name: "Side",
  21934. image: {
  21935. source: "./media/characters/mort/side.svg",
  21936. extra: 365 / 318,
  21937. bottom: 0.052
  21938. },
  21939. default: true
  21940. },
  21941. back: {
  21942. height: math.unit(14, "feet"),
  21943. weight: math.unit(12000, "lb"),
  21944. name: "Back",
  21945. image: {
  21946. source: "./media/characters/mort/back.svg",
  21947. extra: 371 / 332,
  21948. bottom: 0.18
  21949. }
  21950. },
  21951. },
  21952. [
  21953. {
  21954. name: "Normal",
  21955. height: math.unit(14, "feet"),
  21956. default: true
  21957. },
  21958. ]
  21959. ))
  21960. characterMakers.push(() => makeCharacter(
  21961. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21962. {
  21963. front: {
  21964. height: math.unit(8, "feet"),
  21965. weight: math.unit(1, "ton"),
  21966. name: "Front",
  21967. image: {
  21968. source: "./media/characters/lycoa/front.svg",
  21969. extra: 1836/1728,
  21970. bottom: 81/1917
  21971. }
  21972. },
  21973. back: {
  21974. height: math.unit(8, "feet"),
  21975. weight: math.unit(1, "ton"),
  21976. name: "Back",
  21977. image: {
  21978. source: "./media/characters/lycoa/back.svg",
  21979. extra: 1785/1720,
  21980. bottom: 91/1876
  21981. }
  21982. },
  21983. head: {
  21984. height: math.unit(1.6243, "feet"),
  21985. name: "Head",
  21986. image: {
  21987. source: "./media/characters/lycoa/head.svg",
  21988. extra: 1011/782,
  21989. bottom: 0/1011
  21990. }
  21991. },
  21992. tailmaw: {
  21993. height: math.unit(1.9, "feet"),
  21994. name: "Tailmaw",
  21995. image: {
  21996. source: "./media/characters/lycoa/tailmaw.svg"
  21997. }
  21998. },
  21999. tentacles: {
  22000. height: math.unit(2.1, "feet"),
  22001. name: "Tentacles",
  22002. image: {
  22003. source: "./media/characters/lycoa/tentacles.svg"
  22004. }
  22005. },
  22006. dick: {
  22007. height: math.unit(1.73, "feet"),
  22008. name: "Dick",
  22009. image: {
  22010. source: "./media/characters/lycoa/dick.svg"
  22011. }
  22012. },
  22013. },
  22014. [
  22015. {
  22016. name: "Normal",
  22017. height: math.unit(8, "feet"),
  22018. default: true
  22019. },
  22020. {
  22021. name: "Macro",
  22022. height: math.unit(30, "feet")
  22023. },
  22024. ]
  22025. ))
  22026. characterMakers.push(() => makeCharacter(
  22027. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22028. {
  22029. front: {
  22030. height: math.unit(4 + 2 / 12, "feet"),
  22031. weight: math.unit(70, "lb"),
  22032. name: "Front",
  22033. image: {
  22034. source: "./media/characters/naldara/front.svg",
  22035. extra: 1664/1387,
  22036. bottom: 81/1745
  22037. },
  22038. form: "anthro",
  22039. default: true
  22040. },
  22041. naga: {
  22042. height: math.unit(20, "feet"),
  22043. weight: math.unit(15000, "kg"),
  22044. name: "Front",
  22045. image: {
  22046. source: "./media/characters/naldara/naga.svg",
  22047. extra: 1590/1396,
  22048. bottom: 285/1875
  22049. },
  22050. form: "naga",
  22051. default: true
  22052. },
  22053. },
  22054. [
  22055. {
  22056. name: "Normal",
  22057. height: math.unit(4 + 2 / 12, "feet"),
  22058. form: "anthro",
  22059. default: true
  22060. },
  22061. {
  22062. name: "Normal",
  22063. height: math.unit(20, "feet"),
  22064. form: "naga",
  22065. default: true
  22066. },
  22067. ],
  22068. {
  22069. "anthro": {
  22070. name: "Anthro",
  22071. default: true
  22072. },
  22073. "naga": {
  22074. name: "Naga"
  22075. }
  22076. }
  22077. ))
  22078. characterMakers.push(() => makeCharacter(
  22079. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22080. {
  22081. front: {
  22082. height: math.unit(13 + 7 / 12, "feet"),
  22083. weight: math.unit(1500, "lb"),
  22084. name: "Front",
  22085. image: {
  22086. source: "./media/characters/briar/front.svg",
  22087. extra: 1223/1157,
  22088. bottom: 123/1346
  22089. }
  22090. },
  22091. },
  22092. [
  22093. {
  22094. name: "Normal",
  22095. height: math.unit(13 + 7 / 12, "feet"),
  22096. default: true
  22097. },
  22098. ]
  22099. ))
  22100. characterMakers.push(() => makeCharacter(
  22101. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22102. {
  22103. side: {
  22104. height: math.unit(16, "feet"),
  22105. weight: math.unit(500, "lb"),
  22106. name: "Side",
  22107. image: {
  22108. source: "./media/characters/vanguard/side.svg",
  22109. extra: 1022/914,
  22110. bottom: 30/1052
  22111. }
  22112. },
  22113. sideAlt: {
  22114. height: math.unit(10, "feet"),
  22115. weight: math.unit(500, "lb"),
  22116. name: "Side (Alt)",
  22117. image: {
  22118. source: "./media/characters/vanguard/side-alt.svg",
  22119. extra: 502 / 425,
  22120. bottom: 0.087
  22121. }
  22122. },
  22123. },
  22124. [
  22125. {
  22126. name: "Normal",
  22127. height: math.unit(17.71, "feet"),
  22128. default: true
  22129. },
  22130. ]
  22131. ))
  22132. characterMakers.push(() => makeCharacter(
  22133. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22134. {
  22135. front: {
  22136. height: math.unit(7.5, "feet"),
  22137. weight: math.unit(2, "lb"),
  22138. name: "Front",
  22139. image: {
  22140. source: "./media/characters/artemis/work-safe-front.svg",
  22141. extra: 1192 / 1075,
  22142. bottom: 0.07
  22143. },
  22144. form: "work-safe",
  22145. default: true
  22146. },
  22147. frontNsfw: {
  22148. height: math.unit(7.5, "feet"),
  22149. weight: math.unit(2, "lb"),
  22150. name: "Front",
  22151. image: {
  22152. source: "./media/characters/artemis/calibrating-front.svg",
  22153. extra: 1192 / 1075,
  22154. bottom: 0.07
  22155. },
  22156. form: "calibrating",
  22157. default: true
  22158. },
  22159. frontNsfwer: {
  22160. height: math.unit(7.5, "feet"),
  22161. weight: math.unit(2, "lb"),
  22162. name: "Front",
  22163. image: {
  22164. source: "./media/characters/artemis/oversize-load-front.svg",
  22165. extra: 1192 / 1075,
  22166. bottom: 0.07
  22167. },
  22168. form: "oversize-load",
  22169. default: true
  22170. },
  22171. side: {
  22172. height: math.unit(7.5, "feet"),
  22173. weight: math.unit(2, "lb"),
  22174. name: "Side",
  22175. image: {
  22176. source: "./media/characters/artemis/work-safe-side.svg",
  22177. extra: 1192 / 1075,
  22178. bottom: 0.07
  22179. },
  22180. form: "work-safe"
  22181. },
  22182. sideNsfw: {
  22183. height: math.unit(7.5, "feet"),
  22184. weight: math.unit(2, "lb"),
  22185. name: "Side",
  22186. image: {
  22187. source: "./media/characters/artemis/calibrating-side.svg",
  22188. extra: 1192 / 1075,
  22189. bottom: 0.07
  22190. },
  22191. form: "calibrating"
  22192. },
  22193. sideNsfwer: {
  22194. height: math.unit(7.5, "feet"),
  22195. weight: math.unit(2, "lb"),
  22196. name: "Side",
  22197. image: {
  22198. source: "./media/characters/artemis/oversize-load-side.svg",
  22199. extra: 1192 / 1075,
  22200. bottom: 0.07
  22201. },
  22202. form: "oversize-load"
  22203. },
  22204. maw: {
  22205. height: math.unit(1.1, "feet"),
  22206. name: "Maw",
  22207. image: {
  22208. source: "./media/characters/artemis/maw.svg"
  22209. },
  22210. form: "work-safe"
  22211. },
  22212. stomach: {
  22213. height: math.unit(0.95, "feet"),
  22214. name: "Stomach",
  22215. image: {
  22216. source: "./media/characters/artemis/stomach.svg"
  22217. },
  22218. form: "work-safe"
  22219. },
  22220. dickCanine: {
  22221. height: math.unit(1, "feet"),
  22222. name: "Dick (Canine)",
  22223. image: {
  22224. source: "./media/characters/artemis/dick-canine.svg"
  22225. },
  22226. form: "calibrating"
  22227. },
  22228. dickEquine: {
  22229. height: math.unit(0.85, "feet"),
  22230. name: "Dick (Equine)",
  22231. image: {
  22232. source: "./media/characters/artemis/dick-equine.svg"
  22233. },
  22234. form: "calibrating"
  22235. },
  22236. dickExotic: {
  22237. height: math.unit(0.85, "feet"),
  22238. name: "Dick (Exotic)",
  22239. image: {
  22240. source: "./media/characters/artemis/dick-exotic.svg"
  22241. },
  22242. form: "calibrating"
  22243. },
  22244. dickCanineBigger: {
  22245. height: math.unit(1 * 1.33, "feet"),
  22246. name: "Dick (Canine)",
  22247. image: {
  22248. source: "./media/characters/artemis/dick-canine.svg"
  22249. },
  22250. form: "oversize-load"
  22251. },
  22252. dickEquineBigger: {
  22253. height: math.unit(0.85 * 1.33, "feet"),
  22254. name: "Dick (Equine)",
  22255. image: {
  22256. source: "./media/characters/artemis/dick-equine.svg"
  22257. },
  22258. form: "oversize-load"
  22259. },
  22260. dickExoticBigger: {
  22261. height: math.unit(0.85 * 1.33, "feet"),
  22262. name: "Dick (Exotic)",
  22263. image: {
  22264. source: "./media/characters/artemis/dick-exotic.svg"
  22265. },
  22266. form: "oversize-load"
  22267. },
  22268. },
  22269. [
  22270. {
  22271. name: "Normal",
  22272. height: math.unit(7.5, "feet"),
  22273. form: "work-safe",
  22274. default: true
  22275. },
  22276. {
  22277. name: "Normal",
  22278. height: math.unit(7.5, "feet"),
  22279. form: "calibrating",
  22280. default: true
  22281. },
  22282. {
  22283. name: "Normal",
  22284. height: math.unit(7.5, "feet"),
  22285. form: "oversize-load",
  22286. default: true
  22287. },
  22288. {
  22289. name: "Enlarged",
  22290. height: math.unit(12, "feet"),
  22291. form: "work-safe",
  22292. },
  22293. {
  22294. name: "Enlarged",
  22295. height: math.unit(12, "feet"),
  22296. form: "calibrating",
  22297. },
  22298. {
  22299. name: "Enlarged",
  22300. height: math.unit(12, "feet"),
  22301. form: "oversize-load",
  22302. },
  22303. ],
  22304. {
  22305. "work-safe": {
  22306. name: "Work-Safe",
  22307. default: true
  22308. },
  22309. "calibrating": {
  22310. name: "Calibrating"
  22311. },
  22312. "oversize-load": {
  22313. name: "Oversize Load"
  22314. }
  22315. }
  22316. ))
  22317. characterMakers.push(() => makeCharacter(
  22318. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22319. {
  22320. front: {
  22321. height: math.unit(5 + 3 / 12, "feet"),
  22322. weight: math.unit(160, "lb"),
  22323. name: "Front",
  22324. image: {
  22325. source: "./media/characters/kira/front.svg",
  22326. extra: 906 / 786,
  22327. bottom: 0.01
  22328. }
  22329. },
  22330. back: {
  22331. height: math.unit(5 + 3 / 12, "feet"),
  22332. weight: math.unit(160, "lb"),
  22333. name: "Back",
  22334. image: {
  22335. source: "./media/characters/kira/back.svg",
  22336. extra: 882 / 757,
  22337. bottom: 0.005
  22338. }
  22339. },
  22340. frontDressed: {
  22341. height: math.unit(5 + 3 / 12, "feet"),
  22342. weight: math.unit(160, "lb"),
  22343. name: "Front (Dressed)",
  22344. image: {
  22345. source: "./media/characters/kira/front-dressed.svg",
  22346. extra: 906 / 786,
  22347. bottom: 0.01
  22348. }
  22349. },
  22350. beans: {
  22351. height: math.unit(0.92, "feet"),
  22352. name: "Beans",
  22353. image: {
  22354. source: "./media/characters/kira/beans.svg"
  22355. }
  22356. },
  22357. },
  22358. [
  22359. {
  22360. name: "Normal",
  22361. height: math.unit(5 + 3 / 12, "feet"),
  22362. default: true
  22363. },
  22364. ]
  22365. ))
  22366. characterMakers.push(() => makeCharacter(
  22367. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22368. {
  22369. front: {
  22370. height: math.unit(5 + 4 / 12, "feet"),
  22371. weight: math.unit(145, "lb"),
  22372. name: "Front",
  22373. image: {
  22374. source: "./media/characters/scramble/front.svg",
  22375. extra: 763 / 727,
  22376. bottom: 0.05
  22377. }
  22378. },
  22379. back: {
  22380. height: math.unit(5 + 4 / 12, "feet"),
  22381. weight: math.unit(145, "lb"),
  22382. name: "Back",
  22383. image: {
  22384. source: "./media/characters/scramble/back.svg",
  22385. extra: 826 / 737,
  22386. bottom: 0.002
  22387. }
  22388. },
  22389. },
  22390. [
  22391. {
  22392. name: "Normal",
  22393. height: math.unit(5 + 4 / 12, "feet"),
  22394. default: true
  22395. },
  22396. ]
  22397. ))
  22398. characterMakers.push(() => makeCharacter(
  22399. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22400. {
  22401. side: {
  22402. height: math.unit(6 + 2 / 12, "feet"),
  22403. weight: math.unit(190, "lb"),
  22404. name: "Side",
  22405. image: {
  22406. source: "./media/characters/biscuit/side.svg",
  22407. extra: 858 / 791,
  22408. bottom: 0.044
  22409. }
  22410. },
  22411. },
  22412. [
  22413. {
  22414. name: "Normal",
  22415. height: math.unit(6 + 2 / 12, "feet"),
  22416. default: true
  22417. },
  22418. ]
  22419. ))
  22420. characterMakers.push(() => makeCharacter(
  22421. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22422. {
  22423. front: {
  22424. height: math.unit(5 + 2 / 12, "feet"),
  22425. weight: math.unit(120, "lb"),
  22426. name: "Front",
  22427. image: {
  22428. source: "./media/characters/poffin/front.svg",
  22429. extra: 786 / 680,
  22430. bottom: 0.005
  22431. }
  22432. },
  22433. },
  22434. [
  22435. {
  22436. name: "Normal",
  22437. height: math.unit(5 + 2 / 12, "feet"),
  22438. default: true
  22439. },
  22440. ]
  22441. ))
  22442. characterMakers.push(() => makeCharacter(
  22443. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22444. {
  22445. front: {
  22446. height: math.unit(6 + 3 / 12, "feet"),
  22447. weight: math.unit(519, "lb"),
  22448. name: "Front",
  22449. image: {
  22450. source: "./media/characters/dhari/front.svg",
  22451. extra: 1048 / 946,
  22452. bottom: 0.015
  22453. }
  22454. },
  22455. back: {
  22456. height: math.unit(6 + 3 / 12, "feet"),
  22457. weight: math.unit(519, "lb"),
  22458. name: "Back",
  22459. image: {
  22460. source: "./media/characters/dhari/back.svg",
  22461. extra: 1048 / 931,
  22462. bottom: 0.005
  22463. }
  22464. },
  22465. frontDressed: {
  22466. height: math.unit(6 + 3 / 12, "feet"),
  22467. weight: math.unit(519, "lb"),
  22468. name: "Front (Dressed)",
  22469. image: {
  22470. source: "./media/characters/dhari/front-dressed.svg",
  22471. extra: 1713 / 1546,
  22472. bottom: 0.02
  22473. }
  22474. },
  22475. backDressed: {
  22476. height: math.unit(6 + 3 / 12, "feet"),
  22477. weight: math.unit(519, "lb"),
  22478. name: "Back (Dressed)",
  22479. image: {
  22480. source: "./media/characters/dhari/back-dressed.svg",
  22481. extra: 1699 / 1537,
  22482. bottom: 0.01
  22483. }
  22484. },
  22485. maw: {
  22486. height: math.unit(0.95, "feet"),
  22487. name: "Maw",
  22488. image: {
  22489. source: "./media/characters/dhari/maw.svg"
  22490. }
  22491. },
  22492. wereFront: {
  22493. height: math.unit(12 + 8 / 12, "feet"),
  22494. weight: math.unit(4000, "lb"),
  22495. name: "Front (Were)",
  22496. image: {
  22497. source: "./media/characters/dhari/were-front.svg",
  22498. extra: 1065 / 969,
  22499. bottom: 0.015
  22500. }
  22501. },
  22502. wereBack: {
  22503. height: math.unit(12 + 8 / 12, "feet"),
  22504. weight: math.unit(4000, "lb"),
  22505. name: "Back (Were)",
  22506. image: {
  22507. source: "./media/characters/dhari/were-back.svg",
  22508. extra: 1065 / 969,
  22509. bottom: 0.012
  22510. }
  22511. },
  22512. wereMaw: {
  22513. height: math.unit(0.625, "meters"),
  22514. name: "Maw (Were)",
  22515. image: {
  22516. source: "./media/characters/dhari/were-maw.svg"
  22517. }
  22518. },
  22519. },
  22520. [
  22521. {
  22522. name: "Normal",
  22523. height: math.unit(6 + 3 / 12, "feet"),
  22524. default: true
  22525. },
  22526. ]
  22527. ))
  22528. characterMakers.push(() => makeCharacter(
  22529. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22530. {
  22531. anthro: {
  22532. height: math.unit(5 + 7 / 12, "feet"),
  22533. weight: math.unit(175, "lb"),
  22534. name: "Anthro",
  22535. image: {
  22536. source: "./media/characters/rena-dyne/anthro.svg",
  22537. extra: 1849 / 1785,
  22538. bottom: 0.005
  22539. }
  22540. },
  22541. taur: {
  22542. height: math.unit(15 + 6 / 12, "feet"),
  22543. weight: math.unit(8000, "lb"),
  22544. name: "Taur",
  22545. image: {
  22546. source: "./media/characters/rena-dyne/taur.svg",
  22547. extra: 2315 / 2234,
  22548. bottom: 0.033
  22549. }
  22550. },
  22551. },
  22552. [
  22553. {
  22554. name: "Normal",
  22555. height: math.unit(5 + 7 / 12, "feet"),
  22556. default: true
  22557. },
  22558. ]
  22559. ))
  22560. characterMakers.push(() => makeCharacter(
  22561. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22562. {
  22563. front: {
  22564. height: math.unit(8, "feet"),
  22565. weight: math.unit(600, "lb"),
  22566. name: "Front",
  22567. image: {
  22568. source: "./media/characters/weremeep/front.svg",
  22569. extra: 970/849,
  22570. bottom: 7/977
  22571. }
  22572. },
  22573. },
  22574. [
  22575. {
  22576. name: "Normal",
  22577. height: math.unit(8, "feet"),
  22578. default: true
  22579. },
  22580. {
  22581. name: "Lorg",
  22582. height: math.unit(12, "feet")
  22583. },
  22584. {
  22585. name: "Oh Lawd She Comin'",
  22586. height: math.unit(20, "feet")
  22587. },
  22588. ]
  22589. ))
  22590. characterMakers.push(() => makeCharacter(
  22591. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22592. {
  22593. front: {
  22594. height: math.unit(4, "feet"),
  22595. weight: math.unit(90, "lb"),
  22596. name: "Front",
  22597. image: {
  22598. source: "./media/characters/reza/front.svg",
  22599. extra: 1183 / 1111,
  22600. bottom: 0.017
  22601. }
  22602. },
  22603. back: {
  22604. height: math.unit(4, "feet"),
  22605. weight: math.unit(90, "lb"),
  22606. name: "Back",
  22607. image: {
  22608. source: "./media/characters/reza/back.svg",
  22609. extra: 1183 / 1111,
  22610. bottom: 0.01
  22611. }
  22612. },
  22613. drake: {
  22614. height: math.unit(30, "feet"),
  22615. weight: math.unit(246960, "lb"),
  22616. name: "Drake",
  22617. image: {
  22618. source: "./media/characters/reza/drake.svg",
  22619. extra: 2350 / 2024,
  22620. bottom: 60.7 / 2403
  22621. }
  22622. },
  22623. },
  22624. [
  22625. {
  22626. name: "Normal",
  22627. height: math.unit(4, "feet"),
  22628. default: true
  22629. },
  22630. ]
  22631. ))
  22632. characterMakers.push(() => makeCharacter(
  22633. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22634. {
  22635. side: {
  22636. height: math.unit(15, "feet"),
  22637. weight: math.unit(14, "tons"),
  22638. name: "Side",
  22639. image: {
  22640. source: "./media/characters/athea/side.svg",
  22641. extra: 960 / 540,
  22642. bottom: 0.003
  22643. }
  22644. },
  22645. sitting: {
  22646. height: math.unit(6 * 2.85, "feet"),
  22647. weight: math.unit(14, "tons"),
  22648. name: "Sitting",
  22649. image: {
  22650. source: "./media/characters/athea/sitting.svg",
  22651. extra: 621 / 581,
  22652. bottom: 0.075
  22653. }
  22654. },
  22655. maw: {
  22656. height: math.unit(7.59498031496063, "feet"),
  22657. name: "Maw",
  22658. image: {
  22659. source: "./media/characters/athea/maw.svg"
  22660. }
  22661. },
  22662. },
  22663. [
  22664. {
  22665. name: "Lap Cat",
  22666. height: math.unit(2.5, "feet")
  22667. },
  22668. {
  22669. name: "Minimacro",
  22670. height: math.unit(15, "feet"),
  22671. default: true
  22672. },
  22673. {
  22674. name: "Macro",
  22675. height: math.unit(120, "feet")
  22676. },
  22677. {
  22678. name: "Macro+",
  22679. height: math.unit(640, "feet")
  22680. },
  22681. {
  22682. name: "Colossus",
  22683. height: math.unit(2.2, "miles")
  22684. },
  22685. ]
  22686. ))
  22687. characterMakers.push(() => makeCharacter(
  22688. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22689. {
  22690. front: {
  22691. height: math.unit(8 + 8 / 12, "feet"),
  22692. weight: math.unit(130, "kg"),
  22693. name: "Front",
  22694. image: {
  22695. source: "./media/characters/seroko/front.svg",
  22696. extra: 1385 / 1280,
  22697. bottom: 0.025
  22698. }
  22699. },
  22700. back: {
  22701. height: math.unit(8 + 8 / 12, "feet"),
  22702. weight: math.unit(130, "kg"),
  22703. name: "Back",
  22704. image: {
  22705. source: "./media/characters/seroko/back.svg",
  22706. extra: 1369 / 1238,
  22707. bottom: 0.018
  22708. }
  22709. },
  22710. frontDressed: {
  22711. height: math.unit(8 + 8 / 12, "feet"),
  22712. weight: math.unit(130, "kg"),
  22713. name: "Front (Dressed)",
  22714. image: {
  22715. source: "./media/characters/seroko/front-dressed.svg",
  22716. extra: 1366 / 1275,
  22717. bottom: 0.03
  22718. }
  22719. },
  22720. },
  22721. [
  22722. {
  22723. name: "Normal",
  22724. height: math.unit(8 + 8 / 12, "feet"),
  22725. default: true
  22726. },
  22727. ]
  22728. ))
  22729. characterMakers.push(() => makeCharacter(
  22730. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22731. {
  22732. front: {
  22733. height: math.unit(5.5, "feet"),
  22734. weight: math.unit(160, "lb"),
  22735. name: "Front",
  22736. image: {
  22737. source: "./media/characters/quatzi/front.svg",
  22738. extra: 2346 / 2242,
  22739. bottom: 0.015
  22740. }
  22741. },
  22742. },
  22743. [
  22744. {
  22745. name: "Normal",
  22746. height: math.unit(5.5, "feet"),
  22747. default: true
  22748. },
  22749. {
  22750. name: "Big",
  22751. height: math.unit(7.7, "feet")
  22752. },
  22753. ]
  22754. ))
  22755. characterMakers.push(() => makeCharacter(
  22756. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22757. {
  22758. front: {
  22759. height: math.unit(5 + 11 / 12, "feet"),
  22760. weight: math.unit(180, "lb"),
  22761. name: "Front",
  22762. image: {
  22763. source: "./media/characters/sen/front.svg",
  22764. extra: 1321 / 1254,
  22765. bottom: 0.015
  22766. }
  22767. },
  22768. side: {
  22769. height: math.unit(5 + 11 / 12, "feet"),
  22770. weight: math.unit(180, "lb"),
  22771. name: "Side",
  22772. image: {
  22773. source: "./media/characters/sen/side.svg",
  22774. extra: 1321 / 1254,
  22775. bottom: 0.007
  22776. }
  22777. },
  22778. back: {
  22779. height: math.unit(5 + 11 / 12, "feet"),
  22780. weight: math.unit(180, "lb"),
  22781. name: "Back",
  22782. image: {
  22783. source: "./media/characters/sen/back.svg",
  22784. extra: 1321 / 1254
  22785. }
  22786. },
  22787. },
  22788. [
  22789. {
  22790. name: "Normal",
  22791. height: math.unit(5 + 11 / 12, "feet"),
  22792. default: true
  22793. },
  22794. ]
  22795. ))
  22796. characterMakers.push(() => makeCharacter(
  22797. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22798. {
  22799. front: {
  22800. height: math.unit(166.6, "cm"),
  22801. weight: math.unit(66.6, "kg"),
  22802. name: "Front",
  22803. image: {
  22804. source: "./media/characters/fruity/front.svg",
  22805. extra: 1510 / 1386,
  22806. bottom: 0.04
  22807. }
  22808. },
  22809. back: {
  22810. height: math.unit(166.6, "cm"),
  22811. weight: math.unit(66.6, "lb"),
  22812. name: "Back",
  22813. image: {
  22814. source: "./media/characters/fruity/back.svg",
  22815. extra: 1563 / 1435,
  22816. bottom: 0.005
  22817. }
  22818. },
  22819. },
  22820. [
  22821. {
  22822. name: "Normal",
  22823. height: math.unit(166.6, "cm"),
  22824. default: true
  22825. },
  22826. {
  22827. name: "Demonic",
  22828. height: math.unit(166.6, "feet")
  22829. },
  22830. ]
  22831. ))
  22832. characterMakers.push(() => makeCharacter(
  22833. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22834. {
  22835. side: {
  22836. height: math.unit(10, "feet"),
  22837. weight: math.unit(500, "lb"),
  22838. name: "Side",
  22839. image: {
  22840. source: "./media/characters/zost/side.svg",
  22841. extra: 2870/2533,
  22842. bottom: 252/3122
  22843. }
  22844. },
  22845. mawFront: {
  22846. height: math.unit(1.08, "meters"),
  22847. name: "Maw (Front)",
  22848. image: {
  22849. source: "./media/characters/zost/maw-front.svg"
  22850. }
  22851. },
  22852. mawSide: {
  22853. height: math.unit(2.66, "feet"),
  22854. name: "Maw (Side)",
  22855. image: {
  22856. source: "./media/characters/zost/maw-side.svg"
  22857. }
  22858. },
  22859. wingspan: {
  22860. height: math.unit(7.4, "feet"),
  22861. name: "Wingspan",
  22862. image: {
  22863. source: "./media/characters/zost/wingspan.svg"
  22864. }
  22865. },
  22866. },
  22867. [
  22868. {
  22869. name: "Normal",
  22870. height: math.unit(10, "feet"),
  22871. default: true
  22872. },
  22873. ]
  22874. ))
  22875. characterMakers.push(() => makeCharacter(
  22876. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22877. {
  22878. front: {
  22879. height: math.unit(5 + 4 / 12, "feet"),
  22880. weight: math.unit(120, "lb"),
  22881. name: "Front",
  22882. image: {
  22883. source: "./media/characters/luci/front.svg",
  22884. extra: 1985 / 1884,
  22885. bottom: 0.04
  22886. }
  22887. },
  22888. back: {
  22889. height: math.unit(5 + 4 / 12, "feet"),
  22890. weight: math.unit(120, "lb"),
  22891. name: "Back",
  22892. image: {
  22893. source: "./media/characters/luci/back.svg",
  22894. extra: 1892 / 1791,
  22895. bottom: 0.002
  22896. }
  22897. },
  22898. },
  22899. [
  22900. {
  22901. name: "Normal",
  22902. height: math.unit(5 + 4 / 12, "feet"),
  22903. default: true
  22904. },
  22905. ]
  22906. ))
  22907. characterMakers.push(() => makeCharacter(
  22908. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22909. {
  22910. front: {
  22911. height: math.unit(1500, "feet"),
  22912. weight: math.unit(3.8e6, "tons"),
  22913. name: "Front",
  22914. image: {
  22915. source: "./media/characters/2th/front.svg",
  22916. extra: 3489 / 3350,
  22917. bottom: 0.1
  22918. }
  22919. },
  22920. foot: {
  22921. height: math.unit(461, "feet"),
  22922. name: "Foot",
  22923. image: {
  22924. source: "./media/characters/2th/foot.svg"
  22925. }
  22926. },
  22927. },
  22928. [
  22929. {
  22930. name: "\"Micro\"",
  22931. height: math.unit(15 + 7 / 12, "feet")
  22932. },
  22933. {
  22934. name: "Normal",
  22935. height: math.unit(1500, "feet"),
  22936. default: true
  22937. },
  22938. {
  22939. name: "Macro",
  22940. height: math.unit(5000, "feet")
  22941. },
  22942. {
  22943. name: "Megamacro",
  22944. height: math.unit(15, "miles")
  22945. },
  22946. {
  22947. name: "Gigamacro",
  22948. height: math.unit(4000, "miles")
  22949. },
  22950. {
  22951. name: "Galactic",
  22952. height: math.unit(50, "AU")
  22953. },
  22954. ]
  22955. ))
  22956. characterMakers.push(() => makeCharacter(
  22957. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22958. {
  22959. front: {
  22960. height: math.unit(5 + 6 / 12, "feet"),
  22961. weight: math.unit(220, "lb"),
  22962. name: "Front",
  22963. image: {
  22964. source: "./media/characters/amethyst/front.svg",
  22965. extra: 2078 / 2040,
  22966. bottom: 0.045
  22967. }
  22968. },
  22969. back: {
  22970. height: math.unit(5 + 6 / 12, "feet"),
  22971. weight: math.unit(220, "lb"),
  22972. name: "Back",
  22973. image: {
  22974. source: "./media/characters/amethyst/back.svg",
  22975. extra: 2021 / 1989,
  22976. bottom: 0.02
  22977. }
  22978. },
  22979. },
  22980. [
  22981. {
  22982. name: "Normal",
  22983. height: math.unit(5 + 6 / 12, "feet"),
  22984. default: true
  22985. },
  22986. ]
  22987. ))
  22988. characterMakers.push(() => makeCharacter(
  22989. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22990. {
  22991. front: {
  22992. height: math.unit(4 + 11 / 12, "feet"),
  22993. weight: math.unit(120, "lb"),
  22994. name: "Front",
  22995. image: {
  22996. source: "./media/characters/yumi-akiyama/front.svg",
  22997. extra: 1327 / 1235,
  22998. bottom: 0.02
  22999. }
  23000. },
  23001. back: {
  23002. height: math.unit(4 + 11 / 12, "feet"),
  23003. weight: math.unit(120, "lb"),
  23004. name: "Back",
  23005. image: {
  23006. source: "./media/characters/yumi-akiyama/back.svg",
  23007. extra: 1287 / 1245,
  23008. bottom: 0.002
  23009. }
  23010. },
  23011. },
  23012. [
  23013. {
  23014. name: "Galactic",
  23015. height: math.unit(50, "galaxies"),
  23016. default: true
  23017. },
  23018. {
  23019. name: "Universal",
  23020. height: math.unit(100, "universes")
  23021. },
  23022. ]
  23023. ))
  23024. characterMakers.push(() => makeCharacter(
  23025. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23026. {
  23027. front: {
  23028. height: math.unit(8, "feet"),
  23029. weight: math.unit(500, "lb"),
  23030. name: "Front",
  23031. image: {
  23032. source: "./media/characters/rifter-yrmori/front.svg",
  23033. extra: 1180 / 1125,
  23034. bottom: 0.02
  23035. }
  23036. },
  23037. back: {
  23038. height: math.unit(8, "feet"),
  23039. weight: math.unit(500, "lb"),
  23040. name: "Back",
  23041. image: {
  23042. source: "./media/characters/rifter-yrmori/back.svg",
  23043. extra: 1190 / 1145,
  23044. bottom: 0.001
  23045. }
  23046. },
  23047. wings: {
  23048. height: math.unit(7.75, "feet"),
  23049. weight: math.unit(500, "lb"),
  23050. name: "Wings",
  23051. image: {
  23052. source: "./media/characters/rifter-yrmori/wings.svg",
  23053. extra: 1357 / 1285
  23054. }
  23055. },
  23056. maw: {
  23057. height: math.unit(0.8, "feet"),
  23058. name: "Maw",
  23059. image: {
  23060. source: "./media/characters/rifter-yrmori/maw.svg"
  23061. }
  23062. },
  23063. mawfront: {
  23064. height: math.unit(1.45, "feet"),
  23065. name: "Maw (Front)",
  23066. image: {
  23067. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23068. }
  23069. },
  23070. },
  23071. [
  23072. {
  23073. name: "Normal",
  23074. height: math.unit(8, "feet"),
  23075. default: true
  23076. },
  23077. {
  23078. name: "Macro",
  23079. height: math.unit(42, "meters")
  23080. },
  23081. ]
  23082. ))
  23083. characterMakers.push(() => makeCharacter(
  23084. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23085. {
  23086. were: {
  23087. height: math.unit(25 + 6 / 12, "feet"),
  23088. weight: math.unit(10000, "lb"),
  23089. name: "Were",
  23090. image: {
  23091. source: "./media/characters/tahajin/were.svg",
  23092. extra: 801 / 770,
  23093. bottom: 0.042
  23094. }
  23095. },
  23096. aquatic: {
  23097. height: math.unit(6 + 4 / 12, "feet"),
  23098. weight: math.unit(160, "lb"),
  23099. name: "Aquatic",
  23100. image: {
  23101. source: "./media/characters/tahajin/aquatic.svg",
  23102. extra: 572 / 542,
  23103. bottom: 0.04
  23104. }
  23105. },
  23106. chow: {
  23107. height: math.unit(8 + 11 / 12, "feet"),
  23108. weight: math.unit(450, "lb"),
  23109. name: "Chow",
  23110. image: {
  23111. source: "./media/characters/tahajin/chow.svg",
  23112. extra: 660 / 640,
  23113. bottom: 0.015
  23114. }
  23115. },
  23116. demiNaga: {
  23117. height: math.unit(6 + 8 / 12, "feet"),
  23118. weight: math.unit(300, "lb"),
  23119. name: "Demi Naga",
  23120. image: {
  23121. source: "./media/characters/tahajin/demi-naga.svg",
  23122. extra: 643 / 615,
  23123. bottom: 0.1
  23124. }
  23125. },
  23126. data: {
  23127. height: math.unit(5, "inches"),
  23128. weight: math.unit(0.1, "lb"),
  23129. name: "Data",
  23130. image: {
  23131. source: "./media/characters/tahajin/data.svg"
  23132. }
  23133. },
  23134. fluu: {
  23135. height: math.unit(5 + 7 / 12, "feet"),
  23136. weight: math.unit(140, "lb"),
  23137. name: "Fluu",
  23138. image: {
  23139. source: "./media/characters/tahajin/fluu.svg",
  23140. extra: 628 / 592,
  23141. bottom: 0.02
  23142. }
  23143. },
  23144. starWarrior: {
  23145. height: math.unit(4 + 5 / 12, "feet"),
  23146. weight: math.unit(50, "lb"),
  23147. name: "Star Warrior",
  23148. image: {
  23149. source: "./media/characters/tahajin/star-warrior.svg"
  23150. }
  23151. },
  23152. },
  23153. [
  23154. {
  23155. name: "Normal",
  23156. height: math.unit(25 + 6 / 12, "feet"),
  23157. default: true
  23158. },
  23159. ]
  23160. ))
  23161. characterMakers.push(() => makeCharacter(
  23162. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23163. {
  23164. front: {
  23165. height: math.unit(8, "feet"),
  23166. weight: math.unit(350, "lb"),
  23167. name: "Front",
  23168. image: {
  23169. source: "./media/characters/gabira/front.svg",
  23170. extra: 1261/1154,
  23171. bottom: 51/1312
  23172. }
  23173. },
  23174. back: {
  23175. height: math.unit(8, "feet"),
  23176. weight: math.unit(350, "lb"),
  23177. name: "Back",
  23178. image: {
  23179. source: "./media/characters/gabira/back.svg",
  23180. extra: 1265/1163,
  23181. bottom: 46/1311
  23182. }
  23183. },
  23184. head: {
  23185. height: math.unit(2.85, "feet"),
  23186. name: "Head",
  23187. image: {
  23188. source: "./media/characters/gabira/head.svg"
  23189. }
  23190. },
  23191. },
  23192. [
  23193. {
  23194. name: "Normal",
  23195. height: math.unit(8, "feet"),
  23196. default: true
  23197. },
  23198. ]
  23199. ))
  23200. characterMakers.push(() => makeCharacter(
  23201. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23202. {
  23203. front: {
  23204. height: math.unit(5 + 3 / 12, "feet"),
  23205. weight: math.unit(137, "lb"),
  23206. name: "Front",
  23207. image: {
  23208. source: "./media/characters/sasha-katraine/front.svg",
  23209. extra: 1745/1694,
  23210. bottom: 37/1782
  23211. }
  23212. },
  23213. back: {
  23214. height: math.unit(5 + 3 / 12, "feet"),
  23215. weight: math.unit(137, "lb"),
  23216. name: "Back",
  23217. image: {
  23218. source: "./media/characters/sasha-katraine/back.svg",
  23219. extra: 1776/1699,
  23220. bottom: 26/1802
  23221. }
  23222. },
  23223. },
  23224. [
  23225. {
  23226. name: "Micro",
  23227. height: math.unit(5, "inches")
  23228. },
  23229. {
  23230. name: "Normal",
  23231. height: math.unit(5 + 3 / 12, "feet"),
  23232. default: true
  23233. },
  23234. ]
  23235. ))
  23236. characterMakers.push(() => makeCharacter(
  23237. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23238. {
  23239. side: {
  23240. height: math.unit(4, "inches"),
  23241. weight: math.unit(200, "grams"),
  23242. name: "Side",
  23243. image: {
  23244. source: "./media/characters/der/side.svg",
  23245. extra: 719 / 400,
  23246. bottom: 30.6 / 749.9187
  23247. }
  23248. },
  23249. },
  23250. [
  23251. {
  23252. name: "Micro",
  23253. height: math.unit(4, "inches"),
  23254. default: true
  23255. },
  23256. ]
  23257. ))
  23258. characterMakers.push(() => makeCharacter(
  23259. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23260. {
  23261. side: {
  23262. height: math.unit(30, "meters"),
  23263. weight: math.unit(700, "tonnes"),
  23264. name: "Side",
  23265. image: {
  23266. source: "./media/characters/fixerdragon/side.svg",
  23267. extra: (1293.0514 - 116.03) / 1106.86,
  23268. bottom: 116.03 / 1293.0514
  23269. }
  23270. },
  23271. },
  23272. [
  23273. {
  23274. name: "Planck",
  23275. height: math.unit(1.6e-35, "meters")
  23276. },
  23277. {
  23278. name: "Micro",
  23279. height: math.unit(0.4, "meters")
  23280. },
  23281. {
  23282. name: "Normal",
  23283. height: math.unit(30, "meters"),
  23284. default: true
  23285. },
  23286. {
  23287. name: "Megamacro",
  23288. height: math.unit(1.2, "megameters")
  23289. },
  23290. {
  23291. name: "Teramacro",
  23292. height: math.unit(130, "terameters")
  23293. },
  23294. {
  23295. name: "Yottamacro",
  23296. height: math.unit(6200, "yottameters")
  23297. },
  23298. ]
  23299. ));
  23300. characterMakers.push(() => makeCharacter(
  23301. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23302. {
  23303. front: {
  23304. height: math.unit(8, "feet"),
  23305. weight: math.unit(250, "lb"),
  23306. name: "Front",
  23307. image: {
  23308. source: "./media/characters/kite/front.svg",
  23309. extra: 2796 / 2659,
  23310. bottom: 0.002
  23311. }
  23312. },
  23313. },
  23314. [
  23315. {
  23316. name: "Normal",
  23317. height: math.unit(8, "feet"),
  23318. default: true
  23319. },
  23320. {
  23321. name: "Macro",
  23322. height: math.unit(360, "feet")
  23323. },
  23324. {
  23325. name: "Megamacro",
  23326. height: math.unit(1500, "feet")
  23327. },
  23328. ]
  23329. ))
  23330. characterMakers.push(() => makeCharacter(
  23331. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23332. {
  23333. front: {
  23334. height: math.unit(5 + 11/12, "feet"),
  23335. weight: math.unit(170, "lb"),
  23336. name: "Front",
  23337. image: {
  23338. source: "./media/characters/poojawa-vynar/front.svg",
  23339. extra: 1735/1585,
  23340. bottom: 96/1831
  23341. }
  23342. },
  23343. back: {
  23344. height: math.unit(5 + 11/12, "feet"),
  23345. weight: math.unit(170, "lb"),
  23346. name: "Back",
  23347. image: {
  23348. source: "./media/characters/poojawa-vynar/back.svg",
  23349. extra: 1749/1607,
  23350. bottom: 28/1777
  23351. }
  23352. },
  23353. male: {
  23354. height: math.unit(5 + 11/12, "feet"),
  23355. weight: math.unit(170, "lb"),
  23356. name: "Male",
  23357. image: {
  23358. source: "./media/characters/poojawa-vynar/male.svg",
  23359. extra: 1855/1713,
  23360. bottom: 63/1918
  23361. }
  23362. },
  23363. taur: {
  23364. height: math.unit(5 + 11/12, "feet"),
  23365. weight: math.unit(170, "lb"),
  23366. name: "Taur",
  23367. image: {
  23368. source: "./media/characters/poojawa-vynar/taur.svg",
  23369. extra: 1151/1059,
  23370. bottom: 356/1507
  23371. }
  23372. },
  23373. frontDressed: {
  23374. height: math.unit(5 + 11/12, "feet"),
  23375. weight: math.unit(170, "lb"),
  23376. name: "Front (Dressed)",
  23377. image: {
  23378. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23379. extra: 1735/1585,
  23380. bottom: 96/1831
  23381. }
  23382. },
  23383. backDressed: {
  23384. height: math.unit(5 + 11/12, "feet"),
  23385. weight: math.unit(170, "lb"),
  23386. name: "Back (Dressed)",
  23387. image: {
  23388. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23389. extra: 1749/1607,
  23390. bottom: 28/1777
  23391. }
  23392. },
  23393. maleDressed: {
  23394. height: math.unit(5 + 11/12, "feet"),
  23395. weight: math.unit(170, "lb"),
  23396. name: "Male (Dressed)",
  23397. image: {
  23398. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23399. extra: 1855/1713,
  23400. bottom: 63/1918
  23401. }
  23402. },
  23403. taurDressed: {
  23404. height: math.unit(5 + 11/12, "feet"),
  23405. weight: math.unit(170, "lb"),
  23406. name: "Taur (Dressed)",
  23407. image: {
  23408. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23409. extra: 1151/1059,
  23410. bottom: 356/1507
  23411. }
  23412. },
  23413. maw: {
  23414. height: math.unit(1.46, "feet"),
  23415. name: "Maw",
  23416. image: {
  23417. source: "./media/characters/poojawa-vynar/maw.svg"
  23418. }
  23419. },
  23420. head: {
  23421. height: math.unit(2.34, "feet"),
  23422. name: "Head",
  23423. image: {
  23424. source: "./media/characters/poojawa-vynar/head.svg"
  23425. }
  23426. },
  23427. paw: {
  23428. height: math.unit(1.61, "feet"),
  23429. name: "Paw",
  23430. image: {
  23431. source: "./media/characters/poojawa-vynar/paw.svg"
  23432. }
  23433. },
  23434. pawToering: {
  23435. height: math.unit(1.72, "feet"),
  23436. name: "Paw (Toering)",
  23437. image: {
  23438. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23439. }
  23440. },
  23441. toering: {
  23442. height: math.unit(2.9, "inches"),
  23443. name: "Toering",
  23444. image: {
  23445. source: "./media/characters/poojawa-vynar/toering.svg"
  23446. }
  23447. },
  23448. shaft: {
  23449. height: math.unit(0.625, "feet"),
  23450. name: "Shaft",
  23451. image: {
  23452. source: "./media/characters/poojawa-vynar/shaft.svg"
  23453. }
  23454. },
  23455. spade: {
  23456. height: math.unit(0.42, "feet"),
  23457. name: "Spade",
  23458. image: {
  23459. source: "./media/characters/poojawa-vynar/spade.svg"
  23460. }
  23461. },
  23462. },
  23463. [
  23464. {
  23465. name: "Shortstack",
  23466. height: math.unit(4, "feet")
  23467. },
  23468. {
  23469. name: "Normal",
  23470. height: math.unit(5 + 11 / 12, "feet"),
  23471. default: true
  23472. },
  23473. {
  23474. name: "Tauric",
  23475. height: math.unit(4, "meters")
  23476. },
  23477. ]
  23478. ))
  23479. characterMakers.push(() => makeCharacter(
  23480. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23481. {
  23482. front: {
  23483. height: math.unit(293, "meters"),
  23484. weight: math.unit(70400, "tons"),
  23485. name: "Front",
  23486. image: {
  23487. source: "./media/characters/violette/front.svg",
  23488. extra: 1227 / 1180,
  23489. bottom: 0.005
  23490. }
  23491. },
  23492. back: {
  23493. height: math.unit(293, "meters"),
  23494. weight: math.unit(70400, "tons"),
  23495. name: "Back",
  23496. image: {
  23497. source: "./media/characters/violette/back.svg",
  23498. extra: 1227 / 1180,
  23499. bottom: 0.005
  23500. }
  23501. },
  23502. },
  23503. [
  23504. {
  23505. name: "Macro",
  23506. height: math.unit(293, "meters"),
  23507. default: true
  23508. },
  23509. ]
  23510. ))
  23511. characterMakers.push(() => makeCharacter(
  23512. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23513. {
  23514. front: {
  23515. height: math.unit(1050, "feet"),
  23516. weight: math.unit(200000, "tons"),
  23517. name: "Front",
  23518. image: {
  23519. source: "./media/characters/alessandra/front.svg",
  23520. extra: 960 / 912,
  23521. bottom: 0.06
  23522. }
  23523. },
  23524. },
  23525. [
  23526. {
  23527. name: "Macro",
  23528. height: math.unit(1050, "feet")
  23529. },
  23530. {
  23531. name: "Macro+",
  23532. height: math.unit(900, "meters"),
  23533. default: true
  23534. },
  23535. ]
  23536. ))
  23537. characterMakers.push(() => makeCharacter(
  23538. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23539. {
  23540. front: {
  23541. height: math.unit(5, "feet"),
  23542. weight: math.unit(187, "lb"),
  23543. name: "Front",
  23544. image: {
  23545. source: "./media/characters/person/front.svg",
  23546. extra: 3087 / 2945,
  23547. bottom: 91 / 3181
  23548. }
  23549. },
  23550. },
  23551. [
  23552. {
  23553. name: "Micro",
  23554. height: math.unit(3, "inches")
  23555. },
  23556. {
  23557. name: "Normal",
  23558. height: math.unit(5, "feet"),
  23559. default: true
  23560. },
  23561. {
  23562. name: "Macro",
  23563. height: math.unit(90, "feet")
  23564. },
  23565. {
  23566. name: "Max Size",
  23567. height: math.unit(280, "feet")
  23568. },
  23569. ]
  23570. ))
  23571. characterMakers.push(() => makeCharacter(
  23572. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23573. {
  23574. front: {
  23575. height: math.unit(4.5, "meters"),
  23576. weight: math.unit(3200, "lb"),
  23577. name: "Front",
  23578. image: {
  23579. source: "./media/characters/ty/front.svg",
  23580. extra: 1038 / 960,
  23581. bottom: 31.156 / 1068
  23582. }
  23583. },
  23584. back: {
  23585. height: math.unit(4.5, "meters"),
  23586. weight: math.unit(3200, "lb"),
  23587. name: "Back",
  23588. image: {
  23589. source: "./media/characters/ty/back.svg",
  23590. extra: 1044 / 966,
  23591. bottom: 7.48 / 1049
  23592. }
  23593. },
  23594. },
  23595. [
  23596. {
  23597. name: "Normal",
  23598. height: math.unit(4.5, "meters"),
  23599. default: true
  23600. },
  23601. ]
  23602. ))
  23603. characterMakers.push(() => makeCharacter(
  23604. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23605. {
  23606. front: {
  23607. height: math.unit(5 + 4 / 12, "feet"),
  23608. weight: math.unit(115, "lb"),
  23609. name: "Front",
  23610. image: {
  23611. source: "./media/characters/rocky/front.svg",
  23612. extra: 1012 / 975,
  23613. bottom: 54 / 1066
  23614. }
  23615. },
  23616. },
  23617. [
  23618. {
  23619. name: "Normal",
  23620. height: math.unit(5 + 4 / 12, "feet"),
  23621. default: true
  23622. },
  23623. ]
  23624. ))
  23625. characterMakers.push(() => makeCharacter(
  23626. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23627. {
  23628. upright: {
  23629. height: math.unit(6, "meters"),
  23630. weight: math.unit(4000, "kg"),
  23631. name: "Upright",
  23632. image: {
  23633. source: "./media/characters/ruin/upright.svg",
  23634. extra: 668 / 661,
  23635. bottom: 42 / 799.8396
  23636. }
  23637. },
  23638. },
  23639. [
  23640. {
  23641. name: "Normal",
  23642. height: math.unit(6, "meters"),
  23643. default: true
  23644. },
  23645. ]
  23646. ))
  23647. characterMakers.push(() => makeCharacter(
  23648. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23649. {
  23650. front: {
  23651. height: math.unit(5, "feet"),
  23652. weight: math.unit(106, "lb"),
  23653. name: "Front",
  23654. image: {
  23655. source: "./media/characters/robin/front.svg",
  23656. extra: 862 / 799,
  23657. bottom: 42.4 / 914.8856
  23658. }
  23659. },
  23660. },
  23661. [
  23662. {
  23663. name: "Normal",
  23664. height: math.unit(5, "feet"),
  23665. default: true
  23666. },
  23667. ]
  23668. ))
  23669. characterMakers.push(() => makeCharacter(
  23670. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23671. {
  23672. side: {
  23673. height: math.unit(3, "feet"),
  23674. weight: math.unit(225, "lb"),
  23675. name: "Side",
  23676. image: {
  23677. source: "./media/characters/saian/side.svg",
  23678. extra: 566 / 356,
  23679. bottom: 79.7 / 643
  23680. }
  23681. },
  23682. maw: {
  23683. height: math.unit(2.85, "feet"),
  23684. name: "Maw",
  23685. image: {
  23686. source: "./media/characters/saian/maw.svg"
  23687. }
  23688. },
  23689. },
  23690. [
  23691. {
  23692. name: "Normal",
  23693. height: math.unit(3, "feet"),
  23694. default: true
  23695. },
  23696. ]
  23697. ))
  23698. characterMakers.push(() => makeCharacter(
  23699. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23700. {
  23701. side: {
  23702. height: math.unit(8, "feet"),
  23703. weight: math.unit(300, "lb"),
  23704. name: "Side",
  23705. image: {
  23706. source: "./media/characters/equus-silvermane/side.svg",
  23707. extra: 2176 / 2050,
  23708. bottom: 65.7 / 2245
  23709. }
  23710. },
  23711. front: {
  23712. height: math.unit(8, "feet"),
  23713. weight: math.unit(300, "lb"),
  23714. name: "Front",
  23715. image: {
  23716. source: "./media/characters/equus-silvermane/front.svg",
  23717. extra: 4633 / 4400,
  23718. bottom: 71.3 / 4706.915
  23719. }
  23720. },
  23721. sideStepping: {
  23722. height: math.unit(8, "feet"),
  23723. weight: math.unit(300, "lb"),
  23724. name: "Side (Stepping)",
  23725. image: {
  23726. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23727. extra: 1968 / 1860,
  23728. bottom: 16.4 / 1989
  23729. }
  23730. },
  23731. },
  23732. [
  23733. {
  23734. name: "Normal",
  23735. height: math.unit(8, "feet")
  23736. },
  23737. {
  23738. name: "Minimacro",
  23739. height: math.unit(75, "feet"),
  23740. default: true
  23741. },
  23742. {
  23743. name: "Macro",
  23744. height: math.unit(150, "feet")
  23745. },
  23746. {
  23747. name: "Macro+",
  23748. height: math.unit(1000, "feet")
  23749. },
  23750. {
  23751. name: "Megamacro",
  23752. height: math.unit(1, "mile")
  23753. },
  23754. ]
  23755. ))
  23756. characterMakers.push(() => makeCharacter(
  23757. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23758. {
  23759. side: {
  23760. height: math.unit(20, "feet"),
  23761. weight: math.unit(30000, "kg"),
  23762. name: "Side",
  23763. image: {
  23764. source: "./media/characters/windar/side.svg",
  23765. extra: 1491 / 1248,
  23766. bottom: 82.56 / 1568
  23767. }
  23768. },
  23769. },
  23770. [
  23771. {
  23772. name: "Normal",
  23773. height: math.unit(20, "feet"),
  23774. default: true
  23775. },
  23776. ]
  23777. ))
  23778. characterMakers.push(() => makeCharacter(
  23779. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23780. {
  23781. side: {
  23782. height: math.unit(15.66, "feet"),
  23783. weight: math.unit(150, "lb"),
  23784. name: "Side",
  23785. image: {
  23786. source: "./media/characters/melody/side.svg",
  23787. extra: 1097 / 944,
  23788. bottom: 11.8 / 1109
  23789. }
  23790. },
  23791. sideOutfit: {
  23792. height: math.unit(15.66, "feet"),
  23793. weight: math.unit(150, "lb"),
  23794. name: "Side (Outfit)",
  23795. image: {
  23796. source: "./media/characters/melody/side-outfit.svg",
  23797. extra: 1097 / 944,
  23798. bottom: 11.8 / 1109
  23799. }
  23800. },
  23801. },
  23802. [
  23803. {
  23804. name: "Normal",
  23805. height: math.unit(15.66, "feet"),
  23806. default: true
  23807. },
  23808. ]
  23809. ))
  23810. characterMakers.push(() => makeCharacter(
  23811. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23812. {
  23813. armoredFront: {
  23814. height: math.unit(8, "feet"),
  23815. weight: math.unit(325, "lb"),
  23816. name: "Front",
  23817. image: {
  23818. source: "./media/characters/windera/armored-front.svg",
  23819. extra: 1830/1598,
  23820. bottom: 151/1981
  23821. },
  23822. form: "armored",
  23823. default: true
  23824. },
  23825. macroFront: {
  23826. height: math.unit(70, "feet"),
  23827. weight: math.unit(315453, "lb"),
  23828. name: "Front",
  23829. image: {
  23830. source: "./media/characters/windera/macro-front.svg",
  23831. extra: 963/883,
  23832. bottom: 23/986
  23833. },
  23834. form: "macro",
  23835. default: true
  23836. },
  23837. },
  23838. [
  23839. {
  23840. name: "Normal",
  23841. height: math.unit(8, "feet"),
  23842. default: true,
  23843. form: "armored"
  23844. },
  23845. {
  23846. name: "Normal",
  23847. height: math.unit(70, "feet"),
  23848. default: true,
  23849. form: "macro"
  23850. },
  23851. ],
  23852. {
  23853. "armored": {
  23854. name: "Armored",
  23855. default: true
  23856. },
  23857. "macro": {
  23858. name: "Macro",
  23859. },
  23860. }
  23861. ))
  23862. characterMakers.push(() => makeCharacter(
  23863. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23864. {
  23865. front: {
  23866. height: math.unit(28.75, "feet"),
  23867. weight: math.unit(2000, "kg"),
  23868. name: "Front",
  23869. image: {
  23870. source: "./media/characters/sonear/front.svg",
  23871. extra: 1041.1 / 964.9,
  23872. bottom: 53.7 / 1096.6
  23873. }
  23874. },
  23875. },
  23876. [
  23877. {
  23878. name: "Normal",
  23879. height: math.unit(28.75, "feet"),
  23880. default: true
  23881. },
  23882. ]
  23883. ))
  23884. characterMakers.push(() => makeCharacter(
  23885. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23886. {
  23887. side: {
  23888. height: math.unit(25.5, "feet"),
  23889. weight: math.unit(23000, "kg"),
  23890. name: "Side",
  23891. image: {
  23892. source: "./media/characters/kanara/side.svg"
  23893. }
  23894. },
  23895. },
  23896. [
  23897. {
  23898. name: "Normal",
  23899. height: math.unit(25.5, "feet"),
  23900. default: true
  23901. },
  23902. ]
  23903. ))
  23904. characterMakers.push(() => makeCharacter(
  23905. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23906. {
  23907. side: {
  23908. height: math.unit(10, "feet"),
  23909. weight: math.unit(1000, "kg"),
  23910. name: "Side",
  23911. image: {
  23912. source: "./media/characters/ereus/side.svg",
  23913. extra: 1157 / 959,
  23914. bottom: 153 / 1312.5
  23915. }
  23916. },
  23917. },
  23918. [
  23919. {
  23920. name: "Normal",
  23921. height: math.unit(10, "feet"),
  23922. default: true
  23923. },
  23924. ]
  23925. ))
  23926. characterMakers.push(() => makeCharacter(
  23927. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23928. {
  23929. side: {
  23930. height: math.unit(4.5, "feet"),
  23931. weight: math.unit(500, "lb"),
  23932. name: "Side",
  23933. image: {
  23934. source: "./media/characters/e-ter/side.svg",
  23935. extra: 1550 / 1248,
  23936. bottom: 146 / 1694
  23937. }
  23938. },
  23939. },
  23940. [
  23941. {
  23942. name: "Normal",
  23943. height: math.unit(4.5, "feet"),
  23944. default: true
  23945. },
  23946. ]
  23947. ))
  23948. characterMakers.push(() => makeCharacter(
  23949. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23950. {
  23951. side: {
  23952. height: math.unit(9.7, "feet"),
  23953. weight: math.unit(4000, "kg"),
  23954. name: "Side",
  23955. image: {
  23956. source: "./media/characters/yamie/side.svg"
  23957. }
  23958. },
  23959. },
  23960. [
  23961. {
  23962. name: "Normal",
  23963. height: math.unit(9.7, "feet"),
  23964. default: true
  23965. },
  23966. ]
  23967. ))
  23968. characterMakers.push(() => makeCharacter(
  23969. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23970. {
  23971. front: {
  23972. height: math.unit(50, "feet"),
  23973. weight: math.unit(50000, "kg"),
  23974. name: "Front",
  23975. image: {
  23976. source: "./media/characters/anders/front.svg",
  23977. extra: 570 / 539,
  23978. bottom: 14.7 / 586.7
  23979. }
  23980. },
  23981. },
  23982. [
  23983. {
  23984. name: "Large",
  23985. height: math.unit(50, "feet")
  23986. },
  23987. {
  23988. name: "Macro",
  23989. height: math.unit(2000, "feet"),
  23990. default: true
  23991. },
  23992. {
  23993. name: "Megamacro",
  23994. height: math.unit(12, "miles")
  23995. },
  23996. ]
  23997. ))
  23998. characterMakers.push(() => makeCharacter(
  23999. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24000. {
  24001. front: {
  24002. height: math.unit(7 + 2 / 12, "feet"),
  24003. weight: math.unit(300, "lb"),
  24004. name: "Front",
  24005. image: {
  24006. source: "./media/characters/reban/front.svg",
  24007. extra: 1287/1212,
  24008. bottom: 148/1435
  24009. }
  24010. },
  24011. head: {
  24012. height: math.unit(1.95, "feet"),
  24013. name: "Head",
  24014. image: {
  24015. source: "./media/characters/reban/head.svg"
  24016. }
  24017. },
  24018. maw: {
  24019. height: math.unit(0.95, "feet"),
  24020. name: "Maw",
  24021. image: {
  24022. source: "./media/characters/reban/maw.svg"
  24023. }
  24024. },
  24025. foot: {
  24026. height: math.unit(1.65, "feet"),
  24027. name: "Foot",
  24028. image: {
  24029. source: "./media/characters/reban/foot.svg"
  24030. }
  24031. },
  24032. dick: {
  24033. height: math.unit(7 / 5, "feet"),
  24034. name: "Dick",
  24035. image: {
  24036. source: "./media/characters/reban/dick.svg"
  24037. }
  24038. },
  24039. },
  24040. [
  24041. {
  24042. name: "Natural Height",
  24043. height: math.unit(7 + 2 / 12, "feet")
  24044. },
  24045. {
  24046. name: "Macro",
  24047. height: math.unit(500, "feet"),
  24048. default: true
  24049. },
  24050. {
  24051. name: "Canon Height",
  24052. height: math.unit(50, "AU")
  24053. },
  24054. ]
  24055. ))
  24056. characterMakers.push(() => makeCharacter(
  24057. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24058. {
  24059. front: {
  24060. height: math.unit(6, "feet"),
  24061. weight: math.unit(150, "lb"),
  24062. name: "Front",
  24063. image: {
  24064. source: "./media/characters/terrance-keayes/front.svg",
  24065. extra: 1.005,
  24066. bottom: 151 / 1615
  24067. }
  24068. },
  24069. side: {
  24070. height: math.unit(6, "feet"),
  24071. weight: math.unit(150, "lb"),
  24072. name: "Side",
  24073. image: {
  24074. source: "./media/characters/terrance-keayes/side.svg",
  24075. extra: 1.005,
  24076. bottom: 129.4 / 1544
  24077. }
  24078. },
  24079. back: {
  24080. height: math.unit(6, "feet"),
  24081. weight: math.unit(150, "lb"),
  24082. name: "Back",
  24083. image: {
  24084. source: "./media/characters/terrance-keayes/back.svg",
  24085. extra: 1.005,
  24086. bottom: 58.4 / 1557.3
  24087. }
  24088. },
  24089. dick: {
  24090. height: math.unit(6 * 0.208, "feet"),
  24091. name: "Dick",
  24092. image: {
  24093. source: "./media/characters/terrance-keayes/dick.svg"
  24094. }
  24095. },
  24096. },
  24097. [
  24098. {
  24099. name: "Canon Height",
  24100. height: math.unit(35, "miles"),
  24101. default: true
  24102. },
  24103. ]
  24104. ))
  24105. characterMakers.push(() => makeCharacter(
  24106. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24107. {
  24108. front: {
  24109. height: math.unit(6, "feet"),
  24110. weight: math.unit(150, "lb"),
  24111. name: "Front",
  24112. image: {
  24113. source: "./media/characters/ofelia/front.svg",
  24114. extra: 1130/1117,
  24115. bottom: 91/1221
  24116. }
  24117. },
  24118. back: {
  24119. height: math.unit(6, "feet"),
  24120. weight: math.unit(150, "lb"),
  24121. name: "Back",
  24122. image: {
  24123. source: "./media/characters/ofelia/back.svg",
  24124. extra: 1172/1159,
  24125. bottom: 28/1200
  24126. }
  24127. },
  24128. maw: {
  24129. height: math.unit(1, "feet"),
  24130. name: "Maw",
  24131. image: {
  24132. source: "./media/characters/ofelia/maw.svg"
  24133. }
  24134. },
  24135. foot: {
  24136. height: math.unit(1.949, "feet"),
  24137. name: "Foot",
  24138. image: {
  24139. source: "./media/characters/ofelia/foot.svg"
  24140. }
  24141. },
  24142. },
  24143. [
  24144. {
  24145. name: "Canon Height",
  24146. height: math.unit(2000, "miles"),
  24147. default: true
  24148. },
  24149. ]
  24150. ))
  24151. characterMakers.push(() => makeCharacter(
  24152. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24153. {
  24154. front: {
  24155. height: math.unit(6, "feet"),
  24156. weight: math.unit(150, "lb"),
  24157. name: "Front",
  24158. image: {
  24159. source: "./media/characters/samuel/front.svg",
  24160. extra: 265 / 258,
  24161. bottom: 2 / 266.1566
  24162. }
  24163. },
  24164. },
  24165. [
  24166. {
  24167. name: "Macro",
  24168. height: math.unit(100, "feet"),
  24169. default: true
  24170. },
  24171. {
  24172. name: "Full Size",
  24173. height: math.unit(1000, "miles")
  24174. },
  24175. ]
  24176. ))
  24177. characterMakers.push(() => makeCharacter(
  24178. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24179. {
  24180. front: {
  24181. height: math.unit(6, "feet"),
  24182. weight: math.unit(300, "lb"),
  24183. name: "Front",
  24184. image: {
  24185. source: "./media/characters/beishir-kiel/front.svg",
  24186. extra: 569 / 547,
  24187. bottom: 41.9 / 609
  24188. }
  24189. },
  24190. maw: {
  24191. height: math.unit(6 * 0.202, "feet"),
  24192. name: "Maw",
  24193. image: {
  24194. source: "./media/characters/beishir-kiel/maw.svg"
  24195. }
  24196. },
  24197. },
  24198. [
  24199. {
  24200. name: "Macro",
  24201. height: math.unit(300, "feet"),
  24202. default: true
  24203. },
  24204. ]
  24205. ))
  24206. characterMakers.push(() => makeCharacter(
  24207. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24208. {
  24209. front: {
  24210. height: math.unit(5 + 7/12, "feet"),
  24211. weight: math.unit(120, "lb"),
  24212. name: "Front",
  24213. image: {
  24214. source: "./media/characters/logan-grey/front.svg",
  24215. extra: 1836/1738,
  24216. bottom: 108/1944
  24217. }
  24218. },
  24219. back: {
  24220. height: math.unit(5 + 7/12, "feet"),
  24221. weight: math.unit(120, "lb"),
  24222. name: "Back",
  24223. image: {
  24224. source: "./media/characters/logan-grey/back.svg",
  24225. extra: 1880/1794,
  24226. bottom: 24/1904
  24227. }
  24228. },
  24229. frontSfw: {
  24230. height: math.unit(5 + 7/12, "feet"),
  24231. weight: math.unit(120, "lb"),
  24232. name: "Front (SFW)",
  24233. image: {
  24234. source: "./media/characters/logan-grey/front-sfw.svg",
  24235. extra: 1836/1738,
  24236. bottom: 108/1944
  24237. }
  24238. },
  24239. backSfw: {
  24240. height: math.unit(5 + 7/12, "feet"),
  24241. weight: math.unit(120, "lb"),
  24242. name: "Back (SFW)",
  24243. image: {
  24244. source: "./media/characters/logan-grey/back-sfw.svg",
  24245. extra: 1880/1794,
  24246. bottom: 24/1904
  24247. }
  24248. },
  24249. hands: {
  24250. height: math.unit(0.84, "feet"),
  24251. name: "Hands",
  24252. image: {
  24253. source: "./media/characters/logan-grey/hands.svg"
  24254. }
  24255. },
  24256. paws: {
  24257. height: math.unit(0.72, "feet"),
  24258. name: "Paws",
  24259. image: {
  24260. source: "./media/characters/logan-grey/paws.svg"
  24261. }
  24262. },
  24263. cock: {
  24264. height: math.unit(1.45, "feet"),
  24265. name: "Cock",
  24266. image: {
  24267. source: "./media/characters/logan-grey/cock.svg"
  24268. }
  24269. },
  24270. cockAlt: {
  24271. height: math.unit(1.437, "feet"),
  24272. name: "Cock (alt)",
  24273. image: {
  24274. source: "./media/characters/logan-grey/cock-alt.svg"
  24275. }
  24276. },
  24277. },
  24278. [
  24279. {
  24280. name: "Normal",
  24281. height: math.unit(5 + 8 / 12, "feet")
  24282. },
  24283. {
  24284. name: "The 500 Foot Femboy",
  24285. height: math.unit(500, "feet"),
  24286. default: true
  24287. },
  24288. {
  24289. name: "Megmacro",
  24290. height: math.unit(20, "miles")
  24291. },
  24292. ]
  24293. ))
  24294. characterMakers.push(() => makeCharacter(
  24295. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24296. {
  24297. front: {
  24298. height: math.unit(8 + 2 / 12, "feet"),
  24299. weight: math.unit(275, "lb"),
  24300. name: "Front",
  24301. image: {
  24302. source: "./media/characters/draganta/front.svg",
  24303. extra: 1177 / 1135,
  24304. bottom: 33.46 / 1212.1
  24305. }
  24306. },
  24307. },
  24308. [
  24309. {
  24310. name: "Normal",
  24311. height: math.unit(8 + 6 / 12, "feet"),
  24312. default: true
  24313. },
  24314. {
  24315. name: "Macro",
  24316. height: math.unit(150, "feet")
  24317. },
  24318. {
  24319. name: "Megamacro",
  24320. height: math.unit(1000, "miles")
  24321. },
  24322. ]
  24323. ))
  24324. characterMakers.push(() => makeCharacter(
  24325. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24326. {
  24327. front: {
  24328. height: math.unit(1.72, "m"),
  24329. weight: math.unit(80, "lb"),
  24330. name: "Front",
  24331. image: {
  24332. source: "./media/characters/voski/front.svg",
  24333. extra: 2076.22 / 2022.4,
  24334. bottom: 102.7 / 2177.3866
  24335. }
  24336. },
  24337. frontFlaccid: {
  24338. height: math.unit(1.72, "m"),
  24339. weight: math.unit(80, "lb"),
  24340. name: "Front (Flaccid)",
  24341. image: {
  24342. source: "./media/characters/voski/front-flaccid.svg",
  24343. extra: 2076.22 / 2022.4,
  24344. bottom: 102.7 / 2177.3866
  24345. }
  24346. },
  24347. frontErect: {
  24348. height: math.unit(1.72, "m"),
  24349. weight: math.unit(80, "lb"),
  24350. name: "Front (Erect)",
  24351. image: {
  24352. source: "./media/characters/voski/front-erect.svg",
  24353. extra: 2076.22 / 2022.4,
  24354. bottom: 102.7 / 2177.3866
  24355. }
  24356. },
  24357. back: {
  24358. height: math.unit(1.72, "m"),
  24359. weight: math.unit(80, "lb"),
  24360. name: "Back",
  24361. image: {
  24362. source: "./media/characters/voski/back.svg",
  24363. extra: 2104 / 2051,
  24364. bottom: 10.45 / 2113.63
  24365. }
  24366. },
  24367. },
  24368. [
  24369. {
  24370. name: "Normal",
  24371. height: math.unit(1.72, "m")
  24372. },
  24373. {
  24374. name: "Macro",
  24375. height: math.unit(55, "m"),
  24376. default: true
  24377. },
  24378. {
  24379. name: "Macro+",
  24380. height: math.unit(300, "m")
  24381. },
  24382. {
  24383. name: "Macro++",
  24384. height: math.unit(700, "m")
  24385. },
  24386. {
  24387. name: "Macro+++",
  24388. height: math.unit(4500, "m")
  24389. },
  24390. {
  24391. name: "Macro++++",
  24392. height: math.unit(45, "km")
  24393. },
  24394. {
  24395. name: "Macro+++++",
  24396. height: math.unit(1220, "km")
  24397. },
  24398. ]
  24399. ))
  24400. characterMakers.push(() => makeCharacter(
  24401. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24402. {
  24403. front: {
  24404. height: math.unit(2.3, "m"),
  24405. weight: math.unit(304, "kg"),
  24406. name: "Front",
  24407. image: {
  24408. source: "./media/characters/icowom-lee/front.svg",
  24409. extra: 985 / 955,
  24410. bottom: 25.4 / 1012
  24411. }
  24412. },
  24413. fronttentacles: {
  24414. height: math.unit(2.3, "m"),
  24415. weight: math.unit(304, "kg"),
  24416. name: "Front-tentacles",
  24417. image: {
  24418. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24419. extra: 985 / 955,
  24420. bottom: 25.4 / 1012
  24421. }
  24422. },
  24423. back: {
  24424. height: math.unit(2.3, "m"),
  24425. weight: math.unit(304, "kg"),
  24426. name: "Back",
  24427. image: {
  24428. source: "./media/characters/icowom-lee/back.svg",
  24429. extra: 975 / 954,
  24430. bottom: 9.5 / 985
  24431. }
  24432. },
  24433. backtentacles: {
  24434. height: math.unit(2.3, "m"),
  24435. weight: math.unit(304, "kg"),
  24436. name: "Back-tentacles",
  24437. image: {
  24438. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24439. extra: 975 / 954,
  24440. bottom: 9.5 / 985
  24441. }
  24442. },
  24443. frontDressed: {
  24444. height: math.unit(2.3, "m"),
  24445. weight: math.unit(304, "kg"),
  24446. name: "Front (Dressed)",
  24447. image: {
  24448. source: "./media/characters/icowom-lee/front-dressed.svg",
  24449. extra: 3076 / 2933,
  24450. bottom: 51.4 / 3125.1889
  24451. }
  24452. },
  24453. rump: {
  24454. height: math.unit(0.776, "meters"),
  24455. name: "Rump",
  24456. image: {
  24457. source: "./media/characters/icowom-lee/rump.svg"
  24458. }
  24459. },
  24460. genitals: {
  24461. height: math.unit(0.78, "meters"),
  24462. name: "Genitals",
  24463. image: {
  24464. source: "./media/characters/icowom-lee/genitals.svg"
  24465. }
  24466. },
  24467. },
  24468. [
  24469. {
  24470. name: "Normal",
  24471. height: math.unit(2.3, "meters"),
  24472. default: true
  24473. },
  24474. {
  24475. name: "Macro",
  24476. height: math.unit(94, "meters"),
  24477. default: true
  24478. },
  24479. ]
  24480. ))
  24481. characterMakers.push(() => makeCharacter(
  24482. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24483. {
  24484. front: {
  24485. height: math.unit(22, "meters"),
  24486. weight: math.unit(21000, "kg"),
  24487. name: "Front",
  24488. image: {
  24489. source: "./media/characters/shock-diamond/front.svg",
  24490. extra: 2204 / 2053,
  24491. bottom: 65 / 2239.47
  24492. }
  24493. },
  24494. frontNude: {
  24495. height: math.unit(22, "meters"),
  24496. weight: math.unit(21000, "kg"),
  24497. name: "Front (Nude)",
  24498. image: {
  24499. source: "./media/characters/shock-diamond/front-nude.svg",
  24500. extra: 2514 / 2285,
  24501. bottom: 13 / 2527.56
  24502. }
  24503. },
  24504. },
  24505. [
  24506. {
  24507. name: "Normal",
  24508. height: math.unit(3, "meters")
  24509. },
  24510. {
  24511. name: "Macro",
  24512. height: math.unit(22, "meters"),
  24513. default: true
  24514. },
  24515. ]
  24516. ))
  24517. characterMakers.push(() => makeCharacter(
  24518. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24519. {
  24520. front: {
  24521. height: math.unit(5 + 4/12, "feet"),
  24522. weight: math.unit(125, "lb"),
  24523. name: "Front",
  24524. image: {
  24525. source: "./media/characters/rory/front.svg",
  24526. extra: 1790/1681,
  24527. bottom: 66/1856
  24528. }
  24529. },
  24530. back: {
  24531. height: math.unit(5 + 4/12, "feet"),
  24532. weight: math.unit(125, "lb"),
  24533. name: "Back",
  24534. image: {
  24535. source: "./media/characters/rory/back.svg",
  24536. extra: 1805/1690,
  24537. bottom: 56/1861
  24538. }
  24539. },
  24540. frontDressed: {
  24541. height: math.unit(5 + 4/12, "feet"),
  24542. weight: math.unit(125, "lb"),
  24543. name: "Front (Dressed)",
  24544. image: {
  24545. source: "./media/characters/rory/front-dressed.svg",
  24546. extra: 1790/1681,
  24547. bottom: 66/1856
  24548. }
  24549. },
  24550. backDressed: {
  24551. height: math.unit(5 + 4/12, "feet"),
  24552. weight: math.unit(125, "lb"),
  24553. name: "Back (Dressed)",
  24554. image: {
  24555. source: "./media/characters/rory/back-dressed.svg",
  24556. extra: 1805/1690,
  24557. bottom: 56/1861
  24558. }
  24559. },
  24560. frontNsfw: {
  24561. height: math.unit(5 + 4/12, "feet"),
  24562. weight: math.unit(125, "lb"),
  24563. name: "Front (NSFW)",
  24564. image: {
  24565. source: "./media/characters/rory/front-nsfw.svg",
  24566. extra: 1790/1681,
  24567. bottom: 66/1856
  24568. }
  24569. },
  24570. backNsfw: {
  24571. height: math.unit(5 + 4/12, "feet"),
  24572. weight: math.unit(125, "lb"),
  24573. name: "Back (NSFW)",
  24574. image: {
  24575. source: "./media/characters/rory/back-nsfw.svg",
  24576. extra: 1805/1690,
  24577. bottom: 56/1861
  24578. }
  24579. },
  24580. dick: {
  24581. height: math.unit(0.8, "feet"),
  24582. name: "Dick",
  24583. image: {
  24584. source: "./media/characters/rory/dick.svg"
  24585. }
  24586. },
  24587. },
  24588. [
  24589. {
  24590. name: "Micro",
  24591. height: math.unit(3, "inches")
  24592. },
  24593. {
  24594. name: "Normal",
  24595. height: math.unit(5 + 4/12, "feet"),
  24596. default: true
  24597. },
  24598. {
  24599. name: "Macro",
  24600. height: math.unit(90, "feet")
  24601. },
  24602. {
  24603. name: "Supercharged",
  24604. height: math.unit(270, "feet")
  24605. },
  24606. ]
  24607. ))
  24608. characterMakers.push(() => makeCharacter(
  24609. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24610. {
  24611. front: {
  24612. height: math.unit(5 + 9 / 12, "feet"),
  24613. weight: math.unit(190, "lb"),
  24614. name: "Front",
  24615. image: {
  24616. source: "./media/characters/sprisk/front.svg",
  24617. extra: 1225 / 1180,
  24618. bottom: 42.7 / 1266.4
  24619. }
  24620. },
  24621. frontNsfw: {
  24622. height: math.unit(5 + 9 / 12, "feet"),
  24623. weight: math.unit(190, "lb"),
  24624. name: "Front (NSFW)",
  24625. image: {
  24626. source: "./media/characters/sprisk/front-nsfw.svg",
  24627. extra: 1225 / 1180,
  24628. bottom: 42.7 / 1266.4
  24629. }
  24630. },
  24631. back: {
  24632. height: math.unit(5 + 9 / 12, "feet"),
  24633. weight: math.unit(190, "lb"),
  24634. name: "Back",
  24635. image: {
  24636. source: "./media/characters/sprisk/back.svg",
  24637. extra: 1247 / 1200,
  24638. bottom: 5.6 / 1253.04
  24639. }
  24640. },
  24641. },
  24642. [
  24643. {
  24644. name: "Tiny",
  24645. height: math.unit(2, "inches")
  24646. },
  24647. {
  24648. name: "Normal",
  24649. height: math.unit(5 + 9 / 12, "feet"),
  24650. default: true
  24651. },
  24652. {
  24653. name: "Mini Macro",
  24654. height: math.unit(18, "feet")
  24655. },
  24656. {
  24657. name: "Macro",
  24658. height: math.unit(100, "feet")
  24659. },
  24660. {
  24661. name: "MACRO",
  24662. height: math.unit(50, "miles")
  24663. },
  24664. {
  24665. name: "M A C R O",
  24666. height: math.unit(300, "miles")
  24667. },
  24668. ]
  24669. ))
  24670. characterMakers.push(() => makeCharacter(
  24671. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24672. {
  24673. side: {
  24674. height: math.unit(15.6, "meters"),
  24675. weight: math.unit(700000, "kg"),
  24676. name: "Side",
  24677. image: {
  24678. source: "./media/characters/bunsen/side.svg",
  24679. extra: 1644 / 358
  24680. }
  24681. },
  24682. foot: {
  24683. height: math.unit(1.611 * 1644 / 358, "meter"),
  24684. name: "Foot",
  24685. image: {
  24686. source: "./media/characters/bunsen/foot.svg"
  24687. }
  24688. },
  24689. },
  24690. [
  24691. {
  24692. name: "Small",
  24693. height: math.unit(10, "feet")
  24694. },
  24695. {
  24696. name: "Normal",
  24697. height: math.unit(15.6, "meters"),
  24698. default: true
  24699. },
  24700. ]
  24701. ))
  24702. characterMakers.push(() => makeCharacter(
  24703. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24704. {
  24705. front: {
  24706. height: math.unit(4 + 11 / 12, "feet"),
  24707. weight: math.unit(140, "lb"),
  24708. name: "Front",
  24709. image: {
  24710. source: "./media/characters/sesh/front.svg",
  24711. extra: 3420 / 3231,
  24712. bottom: 72 / 3949.5
  24713. }
  24714. },
  24715. },
  24716. [
  24717. {
  24718. name: "Normal",
  24719. height: math.unit(4 + 11 / 12, "feet")
  24720. },
  24721. {
  24722. name: "Grown",
  24723. height: math.unit(15, "feet"),
  24724. default: true
  24725. },
  24726. {
  24727. name: "Macro",
  24728. height: math.unit(1500, "feet")
  24729. },
  24730. {
  24731. name: "Megamacro",
  24732. height: math.unit(30, "miles")
  24733. },
  24734. {
  24735. name: "Continental",
  24736. height: math.unit(3000, "miles")
  24737. },
  24738. {
  24739. name: "Gravity Mass",
  24740. height: math.unit(300000, "miles")
  24741. },
  24742. {
  24743. name: "Planet Buster",
  24744. height: math.unit(30000000, "miles")
  24745. },
  24746. {
  24747. name: "Big",
  24748. height: math.unit(3000000000, "miles")
  24749. },
  24750. ]
  24751. ))
  24752. characterMakers.push(() => makeCharacter(
  24753. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24754. {
  24755. front: {
  24756. height: math.unit(9, "feet"),
  24757. weight: math.unit(350, "lb"),
  24758. name: "Front",
  24759. image: {
  24760. source: "./media/characters/pepper/front.svg",
  24761. extra: 1448 / 1312,
  24762. bottom: 9.4 / 1457.88
  24763. }
  24764. },
  24765. back: {
  24766. height: math.unit(9, "feet"),
  24767. weight: math.unit(350, "lb"),
  24768. name: "Back",
  24769. image: {
  24770. source: "./media/characters/pepper/back.svg",
  24771. extra: 1423 / 1300,
  24772. bottom: 4.6 / 1429
  24773. }
  24774. },
  24775. maw: {
  24776. height: math.unit(0.932, "feet"),
  24777. name: "Maw",
  24778. image: {
  24779. source: "./media/characters/pepper/maw.svg"
  24780. }
  24781. },
  24782. },
  24783. [
  24784. {
  24785. name: "Normal",
  24786. height: math.unit(9, "feet"),
  24787. default: true
  24788. },
  24789. ]
  24790. ))
  24791. characterMakers.push(() => makeCharacter(
  24792. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24793. {
  24794. front: {
  24795. height: math.unit(6, "feet"),
  24796. weight: math.unit(150, "lb"),
  24797. name: "Front",
  24798. image: {
  24799. source: "./media/characters/maelstrom/front.svg",
  24800. extra: 2100 / 1883,
  24801. bottom: 94 / 2196.7
  24802. }
  24803. },
  24804. },
  24805. [
  24806. {
  24807. name: "Less Kaiju",
  24808. height: math.unit(200, "feet")
  24809. },
  24810. {
  24811. name: "Kaiju",
  24812. height: math.unit(400, "feet"),
  24813. default: true
  24814. },
  24815. {
  24816. name: "Kaiju-er",
  24817. height: math.unit(600, "feet")
  24818. },
  24819. ]
  24820. ))
  24821. characterMakers.push(() => makeCharacter(
  24822. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24823. {
  24824. front: {
  24825. height: math.unit(6 + 5 / 12, "feet"),
  24826. weight: math.unit(180, "lb"),
  24827. name: "Front",
  24828. image: {
  24829. source: "./media/characters/lexir/front.svg",
  24830. extra: 180 / 172,
  24831. bottom: 12 / 192
  24832. }
  24833. },
  24834. back: {
  24835. height: math.unit(6 + 5 / 12, "feet"),
  24836. weight: math.unit(180, "lb"),
  24837. name: "Back",
  24838. image: {
  24839. source: "./media/characters/lexir/back.svg",
  24840. extra: 1273/1201,
  24841. bottom: 39/1312
  24842. }
  24843. },
  24844. },
  24845. [
  24846. {
  24847. name: "Very Smal",
  24848. height: math.unit(1, "nm")
  24849. },
  24850. {
  24851. name: "Normal",
  24852. height: math.unit(6 + 5 / 12, "feet"),
  24853. default: true
  24854. },
  24855. {
  24856. name: "Macro",
  24857. height: math.unit(1, "mile")
  24858. },
  24859. {
  24860. name: "Megamacro",
  24861. height: math.unit(50, "miles")
  24862. },
  24863. ]
  24864. ))
  24865. characterMakers.push(() => makeCharacter(
  24866. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24867. {
  24868. front: {
  24869. height: math.unit(1.5, "meters"),
  24870. weight: math.unit(100, "lb"),
  24871. name: "Front",
  24872. image: {
  24873. source: "./media/characters/maksio/front.svg",
  24874. extra: 1549 / 1531,
  24875. bottom: 123.7 / 1674.5429
  24876. }
  24877. },
  24878. back: {
  24879. height: math.unit(1.5, "meters"),
  24880. weight: math.unit(100, "lb"),
  24881. name: "Back",
  24882. image: {
  24883. source: "./media/characters/maksio/back.svg",
  24884. extra: 1541 / 1509,
  24885. bottom: 97 / 1639
  24886. }
  24887. },
  24888. hand: {
  24889. height: math.unit(0.621, "feet"),
  24890. name: "Hand",
  24891. image: {
  24892. source: "./media/characters/maksio/hand.svg"
  24893. }
  24894. },
  24895. foot: {
  24896. height: math.unit(1.611, "feet"),
  24897. name: "Foot",
  24898. image: {
  24899. source: "./media/characters/maksio/foot.svg"
  24900. }
  24901. },
  24902. },
  24903. [
  24904. {
  24905. name: "Shrunken",
  24906. height: math.unit(10, "cm")
  24907. },
  24908. {
  24909. name: "Normal",
  24910. height: math.unit(150, "cm"),
  24911. default: true
  24912. },
  24913. ]
  24914. ))
  24915. characterMakers.push(() => makeCharacter(
  24916. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24917. {
  24918. front: {
  24919. height: math.unit(100, "feet"),
  24920. name: "Front",
  24921. image: {
  24922. source: "./media/characters/erza-bear/front.svg",
  24923. extra: 2449 / 2390,
  24924. bottom: 46 / 2494
  24925. }
  24926. },
  24927. back: {
  24928. height: math.unit(100, "feet"),
  24929. name: "Back",
  24930. image: {
  24931. source: "./media/characters/erza-bear/back.svg",
  24932. extra: 2489 / 2430,
  24933. bottom: 85.4 / 2480
  24934. }
  24935. },
  24936. tail: {
  24937. height: math.unit(42, "feet"),
  24938. name: "Tail",
  24939. image: {
  24940. source: "./media/characters/erza-bear/tail.svg"
  24941. }
  24942. },
  24943. tongue: {
  24944. height: math.unit(8, "feet"),
  24945. name: "Tongue",
  24946. image: {
  24947. source: "./media/characters/erza-bear/tongue.svg"
  24948. }
  24949. },
  24950. dick: {
  24951. height: math.unit(10.5, "feet"),
  24952. name: "Dick",
  24953. image: {
  24954. source: "./media/characters/erza-bear/dick.svg"
  24955. }
  24956. },
  24957. dickVertical: {
  24958. height: math.unit(16.9, "feet"),
  24959. name: "Dick (Vertical)",
  24960. image: {
  24961. source: "./media/characters/erza-bear/dick-vertical.svg"
  24962. }
  24963. },
  24964. },
  24965. [
  24966. {
  24967. name: "Macro",
  24968. height: math.unit(100, "feet"),
  24969. default: true
  24970. },
  24971. ]
  24972. ))
  24973. characterMakers.push(() => makeCharacter(
  24974. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24975. {
  24976. front: {
  24977. height: math.unit(172, "cm"),
  24978. weight: math.unit(73, "kg"),
  24979. name: "Front",
  24980. image: {
  24981. source: "./media/characters/violet-flor/front.svg",
  24982. extra: 1530 / 1442,
  24983. bottom: 61.9 / 1588.8
  24984. }
  24985. },
  24986. back: {
  24987. height: math.unit(180, "cm"),
  24988. weight: math.unit(73, "kg"),
  24989. name: "Back",
  24990. image: {
  24991. source: "./media/characters/violet-flor/back.svg",
  24992. extra: 1692 / 1630,
  24993. bottom: 20 / 1712
  24994. }
  24995. },
  24996. },
  24997. [
  24998. {
  24999. name: "Normal",
  25000. height: math.unit(172, "cm"),
  25001. default: true
  25002. },
  25003. ]
  25004. ))
  25005. characterMakers.push(() => makeCharacter(
  25006. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25007. {
  25008. front: {
  25009. height: math.unit(6, "feet"),
  25010. weight: math.unit(220, "lb"),
  25011. name: "Front",
  25012. image: {
  25013. source: "./media/characters/lynn-rhea/front.svg",
  25014. extra: 310 / 273
  25015. }
  25016. },
  25017. back: {
  25018. height: math.unit(6, "feet"),
  25019. weight: math.unit(220, "lb"),
  25020. name: "Back",
  25021. image: {
  25022. source: "./media/characters/lynn-rhea/back.svg",
  25023. extra: 310 / 273
  25024. }
  25025. },
  25026. dicks: {
  25027. height: math.unit(0.9, "feet"),
  25028. name: "Dicks",
  25029. image: {
  25030. source: "./media/characters/lynn-rhea/dicks.svg"
  25031. }
  25032. },
  25033. slit: {
  25034. height: math.unit(0.4, "feet"),
  25035. name: "Slit",
  25036. image: {
  25037. source: "./media/characters/lynn-rhea/slit.svg"
  25038. }
  25039. },
  25040. },
  25041. [
  25042. {
  25043. name: "Micro",
  25044. height: math.unit(1, "inch")
  25045. },
  25046. {
  25047. name: "Macro",
  25048. height: math.unit(60, "feet"),
  25049. default: true
  25050. },
  25051. {
  25052. name: "Megamacro",
  25053. height: math.unit(2, "miles")
  25054. },
  25055. {
  25056. name: "Gigamacro",
  25057. height: math.unit(3, "earths")
  25058. },
  25059. {
  25060. name: "Galactic",
  25061. height: math.unit(0.8, "galaxies")
  25062. },
  25063. ]
  25064. ))
  25065. characterMakers.push(() => makeCharacter(
  25066. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25067. {
  25068. front: {
  25069. height: math.unit(1600, "feet"),
  25070. weight: math.unit(85758785169, "kg"),
  25071. name: "Front",
  25072. image: {
  25073. source: "./media/characters/valathos/front.svg",
  25074. extra: 1451 / 1339
  25075. }
  25076. },
  25077. },
  25078. [
  25079. {
  25080. name: "Macro",
  25081. height: math.unit(1600, "feet"),
  25082. default: true
  25083. },
  25084. ]
  25085. ))
  25086. characterMakers.push(() => makeCharacter(
  25087. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25088. {
  25089. front: {
  25090. height: math.unit(7 + 5 / 12, "feet"),
  25091. weight: math.unit(300, "lb"),
  25092. name: "Front",
  25093. image: {
  25094. source: "./media/characters/azula/front.svg",
  25095. extra: 3208 / 2880,
  25096. bottom: 80.2 / 3277
  25097. }
  25098. },
  25099. back: {
  25100. height: math.unit(7 + 5 / 12, "feet"),
  25101. weight: math.unit(300, "lb"),
  25102. name: "Back",
  25103. image: {
  25104. source: "./media/characters/azula/back.svg",
  25105. extra: 3169 / 2822,
  25106. bottom: 150.6 / 3321
  25107. }
  25108. },
  25109. },
  25110. [
  25111. {
  25112. name: "Normal",
  25113. height: math.unit(7 + 5 / 12, "feet"),
  25114. default: true
  25115. },
  25116. {
  25117. name: "Big",
  25118. height: math.unit(20, "feet")
  25119. },
  25120. ]
  25121. ))
  25122. characterMakers.push(() => makeCharacter(
  25123. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25124. {
  25125. front: {
  25126. height: math.unit(5 + 1 / 12, "feet"),
  25127. weight: math.unit(110, "lb"),
  25128. name: "Front",
  25129. image: {
  25130. source: "./media/characters/rupert/front.svg",
  25131. extra: 1549 / 1495,
  25132. bottom: 54.2 / 1604.4
  25133. }
  25134. },
  25135. },
  25136. [
  25137. {
  25138. name: "Normal",
  25139. height: math.unit(5 + 1 / 12, "feet"),
  25140. default: true
  25141. },
  25142. ]
  25143. ))
  25144. characterMakers.push(() => makeCharacter(
  25145. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25146. {
  25147. front: {
  25148. height: math.unit(8 + 4 / 12, "feet"),
  25149. weight: math.unit(350, "lb"),
  25150. name: "Front",
  25151. image: {
  25152. source: "./media/characters/sheera-castellar/front.svg",
  25153. extra: 1957 / 1894,
  25154. bottom: 26.97 / 1975.017
  25155. }
  25156. },
  25157. side: {
  25158. height: math.unit(8 + 4 / 12, "feet"),
  25159. weight: math.unit(350, "lb"),
  25160. name: "Side",
  25161. image: {
  25162. source: "./media/characters/sheera-castellar/side.svg",
  25163. extra: 1957 / 1894
  25164. }
  25165. },
  25166. back: {
  25167. height: math.unit(8 + 4 / 12, "feet"),
  25168. weight: math.unit(350, "lb"),
  25169. name: "Back",
  25170. image: {
  25171. source: "./media/characters/sheera-castellar/back.svg",
  25172. extra: 1957 / 1894
  25173. }
  25174. },
  25175. angled: {
  25176. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25177. weight: math.unit(350, "lb"),
  25178. name: "Angled",
  25179. image: {
  25180. source: "./media/characters/sheera-castellar/angled.svg",
  25181. extra: 1807 / 1707,
  25182. bottom: 68 / 1875
  25183. }
  25184. },
  25185. genitals: {
  25186. height: math.unit(2.2, "feet"),
  25187. name: "Genitals",
  25188. image: {
  25189. source: "./media/characters/sheera-castellar/genitals.svg"
  25190. }
  25191. },
  25192. taur: {
  25193. height: math.unit(10 + 6/12, "feet"),
  25194. name: "Taur",
  25195. image: {
  25196. source: "./media/characters/sheera-castellar/taur.svg",
  25197. extra: 2017/1909,
  25198. bottom: 185/2202
  25199. }
  25200. },
  25201. },
  25202. [
  25203. {
  25204. name: "Normal",
  25205. height: math.unit(8 + 4 / 12, "feet")
  25206. },
  25207. {
  25208. name: "Macro",
  25209. height: math.unit(150, "feet"),
  25210. default: true
  25211. },
  25212. {
  25213. name: "Macro+",
  25214. height: math.unit(800, "feet")
  25215. },
  25216. ]
  25217. ))
  25218. characterMakers.push(() => makeCharacter(
  25219. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25220. {
  25221. front: {
  25222. height: math.unit(6, "feet"),
  25223. weight: math.unit(150, "lb"),
  25224. name: "Front",
  25225. image: {
  25226. source: "./media/characters/jaipur/front.svg",
  25227. extra: 3860 / 3731,
  25228. bottom: 287 / 4140
  25229. }
  25230. },
  25231. back: {
  25232. height: math.unit(6, "feet"),
  25233. weight: math.unit(150, "lb"),
  25234. name: "Back",
  25235. image: {
  25236. source: "./media/characters/jaipur/back.svg",
  25237. extra: 1637/1561,
  25238. bottom: 154/1791
  25239. }
  25240. },
  25241. },
  25242. [
  25243. {
  25244. name: "Normal",
  25245. height: math.unit(1.85, "meters"),
  25246. default: true
  25247. },
  25248. {
  25249. name: "Macro",
  25250. height: math.unit(150, "meters")
  25251. },
  25252. {
  25253. name: "Macro+",
  25254. height: math.unit(0.5, "miles")
  25255. },
  25256. {
  25257. name: "Macro++",
  25258. height: math.unit(2.5, "miles")
  25259. },
  25260. {
  25261. name: "Macro+++",
  25262. height: math.unit(12, "miles")
  25263. },
  25264. {
  25265. name: "Macro++++",
  25266. height: math.unit(120, "miles")
  25267. },
  25268. {
  25269. name: "Macro+++++",
  25270. height: math.unit(1200, "miles")
  25271. },
  25272. ]
  25273. ))
  25274. characterMakers.push(() => makeCharacter(
  25275. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25276. {
  25277. front: {
  25278. height: math.unit(6, "feet"),
  25279. weight: math.unit(150, "lb"),
  25280. name: "Front",
  25281. image: {
  25282. source: "./media/characters/sheila-wolf/front.svg",
  25283. extra: 1931 / 1808,
  25284. bottom: 29.5 / 1960
  25285. }
  25286. },
  25287. dick: {
  25288. height: math.unit(1.464, "feet"),
  25289. name: "Dick",
  25290. image: {
  25291. source: "./media/characters/sheila-wolf/dick.svg"
  25292. }
  25293. },
  25294. muzzle: {
  25295. height: math.unit(0.513, "feet"),
  25296. name: "Muzzle",
  25297. image: {
  25298. source: "./media/characters/sheila-wolf/muzzle.svg"
  25299. }
  25300. },
  25301. },
  25302. [
  25303. {
  25304. name: "Macro",
  25305. height: math.unit(70, "feet"),
  25306. default: true
  25307. },
  25308. ]
  25309. ))
  25310. characterMakers.push(() => makeCharacter(
  25311. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25312. {
  25313. front: {
  25314. height: math.unit(32, "meters"),
  25315. weight: math.unit(300000, "kg"),
  25316. name: "Front",
  25317. image: {
  25318. source: "./media/characters/almor/front.svg",
  25319. extra: 1408 / 1322,
  25320. bottom: 94.6 / 1506.5
  25321. }
  25322. },
  25323. },
  25324. [
  25325. {
  25326. name: "Macro",
  25327. height: math.unit(32, "meters"),
  25328. default: true
  25329. },
  25330. ]
  25331. ))
  25332. characterMakers.push(() => makeCharacter(
  25333. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25334. {
  25335. front: {
  25336. height: math.unit(7, "feet"),
  25337. weight: math.unit(200, "lb"),
  25338. name: "Front",
  25339. image: {
  25340. source: "./media/characters/silver/front.svg",
  25341. extra: 472.1 / 450.5,
  25342. bottom: 26.5 / 499.424
  25343. }
  25344. },
  25345. },
  25346. [
  25347. {
  25348. name: "Normal",
  25349. height: math.unit(7, "feet"),
  25350. default: true
  25351. },
  25352. {
  25353. name: "Macro",
  25354. height: math.unit(800, "feet")
  25355. },
  25356. {
  25357. name: "Megamacro",
  25358. height: math.unit(250, "miles")
  25359. },
  25360. ]
  25361. ))
  25362. characterMakers.push(() => makeCharacter(
  25363. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25364. {
  25365. front: {
  25366. height: math.unit(6, "feet"),
  25367. weight: math.unit(150, "lb"),
  25368. name: "Front",
  25369. image: {
  25370. source: "./media/characters/pliskin/front.svg",
  25371. extra: 1469 / 1359,
  25372. bottom: 70 / 1540
  25373. }
  25374. },
  25375. },
  25376. [
  25377. {
  25378. name: "Micro",
  25379. height: math.unit(3, "inches")
  25380. },
  25381. {
  25382. name: "Normal",
  25383. height: math.unit(5 + 11 / 12, "feet"),
  25384. default: true
  25385. },
  25386. {
  25387. name: "Macro",
  25388. height: math.unit(120, "feet")
  25389. },
  25390. ]
  25391. ))
  25392. characterMakers.push(() => makeCharacter(
  25393. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25394. {
  25395. front: {
  25396. height: math.unit(6, "feet"),
  25397. weight: math.unit(150, "lb"),
  25398. name: "Front",
  25399. image: {
  25400. source: "./media/characters/sammy/front.svg",
  25401. extra: 1193 / 1089,
  25402. bottom: 30.5 / 1226
  25403. }
  25404. },
  25405. },
  25406. [
  25407. {
  25408. name: "Macro",
  25409. height: math.unit(1700, "feet"),
  25410. default: true
  25411. },
  25412. {
  25413. name: "Examacro",
  25414. height: math.unit(2.5e9, "lightyears")
  25415. },
  25416. ]
  25417. ))
  25418. characterMakers.push(() => makeCharacter(
  25419. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25420. {
  25421. front: {
  25422. height: math.unit(21, "meters"),
  25423. weight: math.unit(12, "tonnes"),
  25424. name: "Front",
  25425. image: {
  25426. source: "./media/characters/kuru/front.svg",
  25427. extra: 4301 / 3785,
  25428. bottom: 371.3 / 4691
  25429. }
  25430. },
  25431. },
  25432. [
  25433. {
  25434. name: "Macro",
  25435. height: math.unit(21, "meters"),
  25436. default: true
  25437. },
  25438. ]
  25439. ))
  25440. characterMakers.push(() => makeCharacter(
  25441. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25442. {
  25443. front: {
  25444. height: math.unit(23, "meters"),
  25445. weight: math.unit(12.2, "tonnes"),
  25446. name: "Front",
  25447. image: {
  25448. source: "./media/characters/rakka/front.svg",
  25449. extra: 4670 / 4169,
  25450. bottom: 301 / 4968.7
  25451. }
  25452. },
  25453. },
  25454. [
  25455. {
  25456. name: "Macro",
  25457. height: math.unit(23, "meters"),
  25458. default: true
  25459. },
  25460. ]
  25461. ))
  25462. characterMakers.push(() => makeCharacter(
  25463. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25464. {
  25465. front: {
  25466. height: math.unit(6, "feet"),
  25467. weight: math.unit(150, "lb"),
  25468. name: "Front",
  25469. image: {
  25470. source: "./media/characters/rhys-feline/front.svg",
  25471. extra: 2488 / 2308,
  25472. bottom: 35.67 / 2519.19
  25473. }
  25474. },
  25475. },
  25476. [
  25477. {
  25478. name: "Really Small",
  25479. height: math.unit(1, "nm")
  25480. },
  25481. {
  25482. name: "Micro",
  25483. height: math.unit(4, "inches")
  25484. },
  25485. {
  25486. name: "Normal",
  25487. height: math.unit(4 + 10 / 12, "feet"),
  25488. default: true
  25489. },
  25490. {
  25491. name: "Macro",
  25492. height: math.unit(100, "feet")
  25493. },
  25494. {
  25495. name: "Megamacto",
  25496. height: math.unit(50, "miles")
  25497. },
  25498. ]
  25499. ))
  25500. characterMakers.push(() => makeCharacter(
  25501. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25502. {
  25503. side: {
  25504. height: math.unit(30, "feet"),
  25505. weight: math.unit(35000, "kg"),
  25506. name: "Side",
  25507. image: {
  25508. source: "./media/characters/alydar/side.svg",
  25509. extra: 234 / 222,
  25510. bottom: 6.5 / 241
  25511. }
  25512. },
  25513. front: {
  25514. height: math.unit(30, "feet"),
  25515. weight: math.unit(35000, "kg"),
  25516. name: "Front",
  25517. image: {
  25518. source: "./media/characters/alydar/front.svg",
  25519. extra: 223.37 / 210.2,
  25520. bottom: 22.3 / 246.76
  25521. }
  25522. },
  25523. top: {
  25524. height: math.unit(64.54, "feet"),
  25525. weight: math.unit(35000, "kg"),
  25526. name: "Top",
  25527. image: {
  25528. source: "./media/characters/alydar/top.svg"
  25529. }
  25530. },
  25531. anthro: {
  25532. height: math.unit(30, "feet"),
  25533. weight: math.unit(9000, "kg"),
  25534. name: "Anthro",
  25535. image: {
  25536. source: "./media/characters/alydar/anthro.svg",
  25537. extra: 432 / 421,
  25538. bottom: 7.18 / 440
  25539. }
  25540. },
  25541. maw: {
  25542. height: math.unit(11.693, "feet"),
  25543. name: "Maw",
  25544. image: {
  25545. source: "./media/characters/alydar/maw.svg"
  25546. }
  25547. },
  25548. head: {
  25549. height: math.unit(11.693, "feet"),
  25550. name: "Head",
  25551. image: {
  25552. source: "./media/characters/alydar/head.svg"
  25553. }
  25554. },
  25555. headAlt: {
  25556. height: math.unit(12.861, "feet"),
  25557. name: "Head (Alt)",
  25558. image: {
  25559. source: "./media/characters/alydar/head-alt.svg"
  25560. }
  25561. },
  25562. wing: {
  25563. height: math.unit(20.712, "feet"),
  25564. name: "Wing",
  25565. image: {
  25566. source: "./media/characters/alydar/wing.svg"
  25567. }
  25568. },
  25569. wingFeather: {
  25570. height: math.unit(9.662, "feet"),
  25571. name: "Wing Feather",
  25572. image: {
  25573. source: "./media/characters/alydar/wing-feather.svg"
  25574. }
  25575. },
  25576. countourFeather: {
  25577. height: math.unit(4.154, "feet"),
  25578. name: "Contour Feather",
  25579. image: {
  25580. source: "./media/characters/alydar/contour-feather.svg"
  25581. }
  25582. },
  25583. },
  25584. [
  25585. {
  25586. name: "Diplomatic",
  25587. height: math.unit(13, "feet"),
  25588. default: true
  25589. },
  25590. {
  25591. name: "Small",
  25592. height: math.unit(30, "feet")
  25593. },
  25594. {
  25595. name: "Normal",
  25596. height: math.unit(95, "feet"),
  25597. default: true
  25598. },
  25599. {
  25600. name: "Large",
  25601. height: math.unit(285, "feet")
  25602. },
  25603. {
  25604. name: "Incomprehensible",
  25605. height: math.unit(450, "megameters")
  25606. },
  25607. ]
  25608. ))
  25609. characterMakers.push(() => makeCharacter(
  25610. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25611. {
  25612. side: {
  25613. height: math.unit(11, "feet"),
  25614. weight: math.unit(1750, "kg"),
  25615. name: "Side",
  25616. image: {
  25617. source: "./media/characters/selicia/side.svg",
  25618. extra: 440 / 396,
  25619. bottom: 24.8 / 465.979
  25620. }
  25621. },
  25622. maw: {
  25623. height: math.unit(4.665, "feet"),
  25624. name: "Maw",
  25625. image: {
  25626. source: "./media/characters/selicia/maw.svg"
  25627. }
  25628. },
  25629. },
  25630. [
  25631. {
  25632. name: "Normal",
  25633. height: math.unit(11, "feet"),
  25634. default: true
  25635. },
  25636. ]
  25637. ))
  25638. characterMakers.push(() => makeCharacter(
  25639. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25640. {
  25641. side: {
  25642. height: math.unit(2 + 6 / 12, "feet"),
  25643. weight: math.unit(30, "lb"),
  25644. name: "Side",
  25645. image: {
  25646. source: "./media/characters/layla/side.svg",
  25647. extra: 244 / 188,
  25648. bottom: 18.2 / 262.1
  25649. }
  25650. },
  25651. back: {
  25652. height: math.unit(2 + 6 / 12, "feet"),
  25653. weight: math.unit(30, "lb"),
  25654. name: "Back",
  25655. image: {
  25656. source: "./media/characters/layla/back.svg",
  25657. extra: 308 / 241.5,
  25658. bottom: 8.9 / 316.8
  25659. }
  25660. },
  25661. cumming: {
  25662. height: math.unit(2 + 6 / 12, "feet"),
  25663. weight: math.unit(30, "lb"),
  25664. name: "Cumming",
  25665. image: {
  25666. source: "./media/characters/layla/cumming.svg",
  25667. extra: 342 / 279,
  25668. bottom: 595 / 938
  25669. }
  25670. },
  25671. dickFlaccid: {
  25672. height: math.unit(2.595, "feet"),
  25673. name: "Flaccid Genitals",
  25674. image: {
  25675. source: "./media/characters/layla/dick-flaccid.svg"
  25676. }
  25677. },
  25678. dickErect: {
  25679. height: math.unit(2.359, "feet"),
  25680. name: "Erect Genitals",
  25681. image: {
  25682. source: "./media/characters/layla/dick-erect.svg"
  25683. }
  25684. },
  25685. dragon: {
  25686. height: math.unit(40, "feet"),
  25687. name: "Dragon",
  25688. image: {
  25689. source: "./media/characters/layla/dragon.svg",
  25690. extra: 610/535,
  25691. bottom: 367/977
  25692. }
  25693. },
  25694. taur: {
  25695. height: math.unit(30, "feet"),
  25696. name: "Taur",
  25697. image: {
  25698. source: "./media/characters/layla/taur.svg",
  25699. extra: 1268/1199,
  25700. bottom: 112/1380
  25701. }
  25702. },
  25703. },
  25704. [
  25705. {
  25706. name: "Micro",
  25707. height: math.unit(1, "inch")
  25708. },
  25709. {
  25710. name: "Small",
  25711. height: math.unit(1, "foot")
  25712. },
  25713. {
  25714. name: "Normal",
  25715. height: math.unit(2 + 6 / 12, "feet"),
  25716. default: true
  25717. },
  25718. {
  25719. name: "Macro",
  25720. height: math.unit(200, "feet")
  25721. },
  25722. {
  25723. name: "Megamacro",
  25724. height: math.unit(1000, "miles")
  25725. },
  25726. {
  25727. name: "Planetary",
  25728. height: math.unit(8000, "miles")
  25729. },
  25730. {
  25731. name: "True Layla",
  25732. height: math.unit(200000 * 7, "multiverses")
  25733. },
  25734. ]
  25735. ))
  25736. characterMakers.push(() => makeCharacter(
  25737. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25738. {
  25739. back: {
  25740. height: math.unit(10.5, "feet"),
  25741. weight: math.unit(800, "lb"),
  25742. name: "Back",
  25743. image: {
  25744. source: "./media/characters/knox/back.svg",
  25745. extra: 1486 / 1089,
  25746. bottom: 107 / 1601.4
  25747. }
  25748. },
  25749. side: {
  25750. height: math.unit(10.5, "feet"),
  25751. weight: math.unit(800, "lb"),
  25752. name: "Side",
  25753. image: {
  25754. source: "./media/characters/knox/side.svg",
  25755. extra: 244 / 218,
  25756. bottom: 14 / 260
  25757. }
  25758. },
  25759. },
  25760. [
  25761. {
  25762. name: "Compact",
  25763. height: math.unit(10.5, "feet"),
  25764. default: true
  25765. },
  25766. {
  25767. name: "Dynamax",
  25768. height: math.unit(210, "feet")
  25769. },
  25770. {
  25771. name: "Full Macro",
  25772. height: math.unit(850, "feet")
  25773. },
  25774. ]
  25775. ))
  25776. characterMakers.push(() => makeCharacter(
  25777. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25778. {
  25779. front: {
  25780. height: math.unit(28, "feet"),
  25781. weight: math.unit(10500, "lb"),
  25782. name: "Front",
  25783. image: {
  25784. source: "./media/characters/kayda/front.svg",
  25785. extra: 1536 / 1428,
  25786. bottom: 68.7 / 1603
  25787. }
  25788. },
  25789. back: {
  25790. height: math.unit(28, "feet"),
  25791. weight: math.unit(10500, "lb"),
  25792. name: "Back",
  25793. image: {
  25794. source: "./media/characters/kayda/back.svg",
  25795. extra: 1557 / 1464,
  25796. bottom: 39.5 / 1597.49
  25797. }
  25798. },
  25799. dick: {
  25800. height: math.unit(3.858, "feet"),
  25801. name: "Dick",
  25802. image: {
  25803. source: "./media/characters/kayda/dick.svg"
  25804. }
  25805. },
  25806. },
  25807. [
  25808. {
  25809. name: "Macro",
  25810. height: math.unit(28, "feet"),
  25811. default: true
  25812. },
  25813. ]
  25814. ))
  25815. characterMakers.push(() => makeCharacter(
  25816. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25817. {
  25818. front: {
  25819. height: math.unit(10 + 11 / 12, "feet"),
  25820. weight: math.unit(1400, "lb"),
  25821. name: "Front",
  25822. image: {
  25823. source: "./media/characters/brian/front.svg",
  25824. extra: 737 / 692,
  25825. bottom: 55.4 / 785
  25826. }
  25827. },
  25828. },
  25829. [
  25830. {
  25831. name: "Normal",
  25832. height: math.unit(10 + 11 / 12, "feet"),
  25833. default: true
  25834. },
  25835. ]
  25836. ))
  25837. characterMakers.push(() => makeCharacter(
  25838. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25839. {
  25840. front: {
  25841. height: math.unit(5 + 8 / 12, "feet"),
  25842. weight: math.unit(140, "lb"),
  25843. name: "Front",
  25844. image: {
  25845. source: "./media/characters/khemri/front.svg",
  25846. extra: 4780 / 4059,
  25847. bottom: 80.1 / 4859.25
  25848. }
  25849. },
  25850. },
  25851. [
  25852. {
  25853. name: "Micro",
  25854. height: math.unit(6, "inches")
  25855. },
  25856. {
  25857. name: "Normal",
  25858. height: math.unit(5 + 8 / 12, "feet"),
  25859. default: true
  25860. },
  25861. ]
  25862. ))
  25863. characterMakers.push(() => makeCharacter(
  25864. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25865. {
  25866. front: {
  25867. height: math.unit(13, "feet"),
  25868. weight: math.unit(1700, "lb"),
  25869. name: "Front",
  25870. image: {
  25871. source: "./media/characters/felix-braveheart/front.svg",
  25872. extra: 1222 / 1157,
  25873. bottom: 53.2 / 1280
  25874. }
  25875. },
  25876. back: {
  25877. height: math.unit(13, "feet"),
  25878. weight: math.unit(1700, "lb"),
  25879. name: "Back",
  25880. image: {
  25881. source: "./media/characters/felix-braveheart/back.svg",
  25882. extra: 1277 / 1203,
  25883. bottom: 50.2 / 1327
  25884. }
  25885. },
  25886. feral: {
  25887. height: math.unit(6, "feet"),
  25888. weight: math.unit(400, "lb"),
  25889. name: "Feral",
  25890. image: {
  25891. source: "./media/characters/felix-braveheart/feral.svg",
  25892. extra: 682 / 625,
  25893. bottom: 6.9 / 688
  25894. }
  25895. },
  25896. },
  25897. [
  25898. {
  25899. name: "Normal",
  25900. height: math.unit(13, "feet"),
  25901. default: true
  25902. },
  25903. ]
  25904. ))
  25905. characterMakers.push(() => makeCharacter(
  25906. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25907. {
  25908. side: {
  25909. height: math.unit(5 + 11 / 12, "feet"),
  25910. weight: math.unit(1400, "lb"),
  25911. name: "Side",
  25912. image: {
  25913. source: "./media/characters/shadow-blade/side.svg",
  25914. extra: 1726 / 1267,
  25915. bottom: 58.4 / 1785
  25916. }
  25917. },
  25918. },
  25919. [
  25920. {
  25921. name: "Normal",
  25922. height: math.unit(5 + 11 / 12, "feet"),
  25923. default: true
  25924. },
  25925. ]
  25926. ))
  25927. characterMakers.push(() => makeCharacter(
  25928. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25929. {
  25930. front: {
  25931. height: math.unit(1 + 6 / 12, "feet"),
  25932. weight: math.unit(25, "lb"),
  25933. name: "Front",
  25934. image: {
  25935. source: "./media/characters/karla-halldor/front.svg",
  25936. extra: 1459 / 1383,
  25937. bottom: 12 / 1472
  25938. }
  25939. },
  25940. },
  25941. [
  25942. {
  25943. name: "Normal",
  25944. height: math.unit(1 + 6 / 12, "feet"),
  25945. default: true
  25946. },
  25947. ]
  25948. ))
  25949. characterMakers.push(() => makeCharacter(
  25950. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25951. {
  25952. front: {
  25953. height: math.unit(6 + 2 / 12, "feet"),
  25954. weight: math.unit(160, "lb"),
  25955. name: "Front",
  25956. image: {
  25957. source: "./media/characters/ariam/front.svg",
  25958. extra: 1073/976,
  25959. bottom: 52/1125
  25960. }
  25961. },
  25962. back: {
  25963. height: math.unit(6 + 2/12, "feet"),
  25964. weight: math.unit(160, "lb"),
  25965. name: "Back",
  25966. image: {
  25967. source: "./media/characters/ariam/back.svg",
  25968. extra: 1103/1023,
  25969. bottom: 9/1112
  25970. }
  25971. },
  25972. dressed: {
  25973. height: math.unit(6 + 2/12, "feet"),
  25974. weight: math.unit(160, "lb"),
  25975. name: "Dressed",
  25976. image: {
  25977. source: "./media/characters/ariam/dressed.svg",
  25978. extra: 1099/1009,
  25979. bottom: 25/1124
  25980. }
  25981. },
  25982. squatting: {
  25983. height: math.unit(4.1, "feet"),
  25984. weight: math.unit(160, "lb"),
  25985. name: "Squatting",
  25986. image: {
  25987. source: "./media/characters/ariam/squatting.svg",
  25988. extra: 2617 / 2112,
  25989. bottom: 61.2 / 2681,
  25990. }
  25991. },
  25992. },
  25993. [
  25994. {
  25995. name: "Normal",
  25996. height: math.unit(6 + 2 / 12, "feet"),
  25997. default: true
  25998. },
  25999. {
  26000. name: "Normal+",
  26001. height: math.unit(4, "meters")
  26002. },
  26003. {
  26004. name: "Macro",
  26005. height: math.unit(50, "meters")
  26006. },
  26007. {
  26008. name: "Macro+",
  26009. height: math.unit(100, "meters")
  26010. },
  26011. {
  26012. name: "Megamacro",
  26013. height: math.unit(20, "km")
  26014. },
  26015. {
  26016. name: "Caretaker",
  26017. height: math.unit(444, "megameters")
  26018. },
  26019. ]
  26020. ))
  26021. characterMakers.push(() => makeCharacter(
  26022. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26023. {
  26024. front: {
  26025. height: math.unit(1.67, "meters"),
  26026. weight: math.unit(140, "lb"),
  26027. name: "Front",
  26028. image: {
  26029. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26030. extra: 438 / 410,
  26031. bottom: 0.75 / 439
  26032. }
  26033. },
  26034. },
  26035. [
  26036. {
  26037. name: "Shrunken",
  26038. height: math.unit(7.6, "cm")
  26039. },
  26040. {
  26041. name: "Human Scale",
  26042. height: math.unit(1.67, "meters")
  26043. },
  26044. {
  26045. name: "Wolxi Scale",
  26046. height: math.unit(36.7, "meters"),
  26047. default: true
  26048. },
  26049. ]
  26050. ))
  26051. characterMakers.push(() => makeCharacter(
  26052. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26053. {
  26054. front: {
  26055. height: math.unit(1.73, "meters"),
  26056. weight: math.unit(240, "lb"),
  26057. name: "Front",
  26058. image: {
  26059. source: "./media/characters/izue-two-mothers/front.svg",
  26060. extra: 469 / 437,
  26061. bottom: 1.24 / 470.6
  26062. }
  26063. },
  26064. },
  26065. [
  26066. {
  26067. name: "Shrunken",
  26068. height: math.unit(7.86, "cm")
  26069. },
  26070. {
  26071. name: "Human Scale",
  26072. height: math.unit(1.73, "meters")
  26073. },
  26074. {
  26075. name: "Wolxi Scale",
  26076. height: math.unit(38, "meters"),
  26077. default: true
  26078. },
  26079. ]
  26080. ))
  26081. characterMakers.push(() => makeCharacter(
  26082. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26083. {
  26084. front: {
  26085. height: math.unit(1.55, "meters"),
  26086. weight: math.unit(120, "lb"),
  26087. name: "Front",
  26088. image: {
  26089. source: "./media/characters/teeku-love-shack/front.svg",
  26090. extra: 387 / 362,
  26091. bottom: 1.51 / 388
  26092. }
  26093. },
  26094. },
  26095. [
  26096. {
  26097. name: "Shrunken",
  26098. height: math.unit(7, "cm")
  26099. },
  26100. {
  26101. name: "Human Scale",
  26102. height: math.unit(1.55, "meters")
  26103. },
  26104. {
  26105. name: "Wolxi Scale",
  26106. height: math.unit(34.1, "meters"),
  26107. default: true
  26108. },
  26109. ]
  26110. ))
  26111. characterMakers.push(() => makeCharacter(
  26112. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26113. {
  26114. front: {
  26115. height: math.unit(1.83, "meters"),
  26116. weight: math.unit(135, "lb"),
  26117. name: "Front",
  26118. image: {
  26119. source: "./media/characters/dejma-the-red/front.svg",
  26120. extra: 480 / 458,
  26121. bottom: 1.8 / 482
  26122. }
  26123. },
  26124. },
  26125. [
  26126. {
  26127. name: "Shrunken",
  26128. height: math.unit(8.3, "cm")
  26129. },
  26130. {
  26131. name: "Human Scale",
  26132. height: math.unit(1.83, "meters")
  26133. },
  26134. {
  26135. name: "Wolxi Scale",
  26136. height: math.unit(40, "meters"),
  26137. default: true
  26138. },
  26139. ]
  26140. ))
  26141. characterMakers.push(() => makeCharacter(
  26142. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26143. {
  26144. front: {
  26145. height: math.unit(1.78, "meters"),
  26146. weight: math.unit(65, "kg"),
  26147. name: "Front",
  26148. image: {
  26149. source: "./media/characters/aki/front.svg",
  26150. extra: 452 / 415
  26151. }
  26152. },
  26153. frontNsfw: {
  26154. height: math.unit(1.78, "meters"),
  26155. weight: math.unit(65, "kg"),
  26156. name: "Front (NSFW)",
  26157. image: {
  26158. source: "./media/characters/aki/front-nsfw.svg",
  26159. extra: 452 / 415
  26160. }
  26161. },
  26162. back: {
  26163. height: math.unit(1.78, "meters"),
  26164. weight: math.unit(65, "kg"),
  26165. name: "Back",
  26166. image: {
  26167. source: "./media/characters/aki/back.svg",
  26168. extra: 452 / 415
  26169. }
  26170. },
  26171. rump: {
  26172. height: math.unit(2.05, "feet"),
  26173. name: "Rump",
  26174. image: {
  26175. source: "./media/characters/aki/rump.svg"
  26176. }
  26177. },
  26178. dick: {
  26179. height: math.unit(0.95, "feet"),
  26180. name: "Dick",
  26181. image: {
  26182. source: "./media/characters/aki/dick.svg"
  26183. }
  26184. },
  26185. },
  26186. [
  26187. {
  26188. name: "Micro",
  26189. height: math.unit(15, "cm")
  26190. },
  26191. {
  26192. name: "Normal",
  26193. height: math.unit(178, "cm"),
  26194. default: true
  26195. },
  26196. {
  26197. name: "Macro",
  26198. height: math.unit(214, "m")
  26199. },
  26200. {
  26201. name: "Macro+",
  26202. height: math.unit(534, "m")
  26203. },
  26204. ]
  26205. ))
  26206. characterMakers.push(() => makeCharacter(
  26207. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26208. {
  26209. front: {
  26210. height: math.unit(5 + 5 / 12, "feet"),
  26211. weight: math.unit(120, "lb"),
  26212. name: "Front",
  26213. image: {
  26214. source: "./media/characters/ari/front.svg",
  26215. extra: 1550/1471,
  26216. bottom: 39/1589
  26217. }
  26218. },
  26219. },
  26220. [
  26221. {
  26222. name: "Normal",
  26223. height: math.unit(5 + 5 / 12, "feet")
  26224. },
  26225. {
  26226. name: "Macro",
  26227. height: math.unit(100, "feet"),
  26228. default: true
  26229. },
  26230. {
  26231. name: "Megamacro",
  26232. height: math.unit(100, "miles")
  26233. },
  26234. {
  26235. name: "Gigamacro",
  26236. height: math.unit(80000, "miles")
  26237. },
  26238. ]
  26239. ))
  26240. characterMakers.push(() => makeCharacter(
  26241. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26242. {
  26243. side: {
  26244. height: math.unit(9, "feet"),
  26245. weight: math.unit(400, "kg"),
  26246. name: "Side",
  26247. image: {
  26248. source: "./media/characters/bolt/side.svg",
  26249. extra: 1126 / 896,
  26250. bottom: 60 / 1187.3,
  26251. }
  26252. },
  26253. },
  26254. [
  26255. {
  26256. name: "Micro",
  26257. height: math.unit(5, "inches")
  26258. },
  26259. {
  26260. name: "Normal",
  26261. height: math.unit(9, "feet"),
  26262. default: true
  26263. },
  26264. {
  26265. name: "Macro",
  26266. height: math.unit(700, "feet")
  26267. },
  26268. {
  26269. name: "Max Size",
  26270. height: math.unit(1.52e22, "yottameters")
  26271. },
  26272. ]
  26273. ))
  26274. characterMakers.push(() => makeCharacter(
  26275. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26276. {
  26277. front: {
  26278. height: math.unit(4.3, "meters"),
  26279. weight: math.unit(3, "tons"),
  26280. name: "Front",
  26281. image: {
  26282. source: "./media/characters/draekon-sylviar/front.svg",
  26283. extra: 2072/1512,
  26284. bottom: 74/2146
  26285. }
  26286. },
  26287. back: {
  26288. height: math.unit(4.3, "meters"),
  26289. weight: math.unit(3, "tons"),
  26290. name: "Back",
  26291. image: {
  26292. source: "./media/characters/draekon-sylviar/back.svg",
  26293. extra: 1639/1483,
  26294. bottom: 41/1680
  26295. }
  26296. },
  26297. feral: {
  26298. height: math.unit(1.15, "meters"),
  26299. weight: math.unit(3, "tons"),
  26300. name: "Feral",
  26301. image: {
  26302. source: "./media/characters/draekon-sylviar/feral.svg",
  26303. extra: 1033/395,
  26304. bottom: 130/1163
  26305. }
  26306. },
  26307. maw: {
  26308. height: math.unit(1.3, "meters"),
  26309. name: "Maw",
  26310. image: {
  26311. source: "./media/characters/draekon-sylviar/maw.svg"
  26312. }
  26313. },
  26314. mawSeparated: {
  26315. height: math.unit(1.53, "meters"),
  26316. name: "Separated Maw",
  26317. image: {
  26318. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26319. }
  26320. },
  26321. tail: {
  26322. height: math.unit(1.15, "meters"),
  26323. name: "Tail",
  26324. image: {
  26325. source: "./media/characters/draekon-sylviar/tail.svg"
  26326. }
  26327. },
  26328. tailDick: {
  26329. height: math.unit(1.15, "meters"),
  26330. name: "Tail (Dick)",
  26331. image: {
  26332. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26333. }
  26334. },
  26335. tailDickSeparated: {
  26336. height: math.unit(1.19, "meters"),
  26337. name: "Tail (Separated Dick)",
  26338. image: {
  26339. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26340. }
  26341. },
  26342. slit: {
  26343. height: math.unit(1, "meters"),
  26344. name: "Slit",
  26345. image: {
  26346. source: "./media/characters/draekon-sylviar/slit.svg"
  26347. }
  26348. },
  26349. dick: {
  26350. height: math.unit(1.15, "meters"),
  26351. name: "Dick",
  26352. image: {
  26353. source: "./media/characters/draekon-sylviar/dick.svg"
  26354. }
  26355. },
  26356. dickSeparated: {
  26357. height: math.unit(1.1, "meters"),
  26358. name: "Separated Dick",
  26359. image: {
  26360. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26361. }
  26362. },
  26363. sheath: {
  26364. height: math.unit(1.15, "meters"),
  26365. name: "Sheath",
  26366. image: {
  26367. source: "./media/characters/draekon-sylviar/sheath.svg"
  26368. }
  26369. },
  26370. },
  26371. [
  26372. {
  26373. name: "Small",
  26374. height: math.unit(4.53 / 2, "meters"),
  26375. default: true
  26376. },
  26377. {
  26378. name: "Normal",
  26379. height: math.unit(4.53, "meters"),
  26380. default: true
  26381. },
  26382. {
  26383. name: "Large",
  26384. height: math.unit(4.53 * 2, "meters"),
  26385. },
  26386. ]
  26387. ))
  26388. characterMakers.push(() => makeCharacter(
  26389. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26390. {
  26391. front: {
  26392. height: math.unit(6 + 2 / 12, "feet"),
  26393. weight: math.unit(180, "lb"),
  26394. name: "Front",
  26395. image: {
  26396. source: "./media/characters/brawler/front.svg",
  26397. extra: 3301 / 3027,
  26398. bottom: 138 / 3439
  26399. }
  26400. },
  26401. },
  26402. [
  26403. {
  26404. name: "Normal",
  26405. height: math.unit(6 + 2 / 12, "feet"),
  26406. default: true
  26407. },
  26408. ]
  26409. ))
  26410. characterMakers.push(() => makeCharacter(
  26411. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26412. {
  26413. front: {
  26414. height: math.unit(11, "feet"),
  26415. weight: math.unit(1000, "lb"),
  26416. name: "Front",
  26417. image: {
  26418. source: "./media/characters/alex/front.svg",
  26419. bottom: 44.5 / 620
  26420. }
  26421. },
  26422. },
  26423. [
  26424. {
  26425. name: "Micro",
  26426. height: math.unit(5, "inches")
  26427. },
  26428. {
  26429. name: "Normal",
  26430. height: math.unit(11, "feet"),
  26431. default: true
  26432. },
  26433. {
  26434. name: "Macro",
  26435. height: math.unit(9.5e9, "feet")
  26436. },
  26437. {
  26438. name: "Max Size",
  26439. height: math.unit(1.4e283, "yottameters")
  26440. },
  26441. ]
  26442. ))
  26443. characterMakers.push(() => makeCharacter(
  26444. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26445. {
  26446. female: {
  26447. height: math.unit(29.9, "m"),
  26448. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26449. name: "Female",
  26450. image: {
  26451. source: "./media/characters/zenari/female.svg",
  26452. extra: 3281.6 / 3217,
  26453. bottom: 72.2 / 3353
  26454. }
  26455. },
  26456. male: {
  26457. height: math.unit(27.7, "m"),
  26458. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26459. name: "Male",
  26460. image: {
  26461. source: "./media/characters/zenari/male.svg",
  26462. extra: 3008 / 2991,
  26463. bottom: 54.6 / 3069
  26464. }
  26465. },
  26466. },
  26467. [
  26468. {
  26469. name: "Macro",
  26470. height: math.unit(29.7, "meters"),
  26471. default: true
  26472. },
  26473. ]
  26474. ))
  26475. characterMakers.push(() => makeCharacter(
  26476. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26477. {
  26478. female: {
  26479. height: math.unit(23.8, "m"),
  26480. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26481. name: "Female",
  26482. image: {
  26483. source: "./media/characters/mactarian/female.svg",
  26484. extra: 2662 / 2569,
  26485. bottom: 73 / 2736
  26486. }
  26487. },
  26488. male: {
  26489. height: math.unit(23.8, "m"),
  26490. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26491. name: "Male",
  26492. image: {
  26493. source: "./media/characters/mactarian/male.svg",
  26494. extra: 2673 / 2600,
  26495. bottom: 76 / 2750
  26496. }
  26497. },
  26498. },
  26499. [
  26500. {
  26501. name: "Macro",
  26502. height: math.unit(23.8, "meters"),
  26503. default: true
  26504. },
  26505. ]
  26506. ))
  26507. characterMakers.push(() => makeCharacter(
  26508. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26509. {
  26510. female: {
  26511. height: math.unit(19.3, "m"),
  26512. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26513. name: "Female",
  26514. image: {
  26515. source: "./media/characters/umok/female.svg",
  26516. extra: 2186 / 2078,
  26517. bottom: 87 / 2277
  26518. }
  26519. },
  26520. male: {
  26521. height: math.unit(19.5, "m"),
  26522. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26523. name: "Male",
  26524. image: {
  26525. source: "./media/characters/umok/male.svg",
  26526. extra: 2233 / 2140,
  26527. bottom: 24.4 / 2258
  26528. }
  26529. },
  26530. },
  26531. [
  26532. {
  26533. name: "Macro",
  26534. height: math.unit(19.3, "meters"),
  26535. default: true
  26536. },
  26537. ]
  26538. ))
  26539. characterMakers.push(() => makeCharacter(
  26540. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26541. {
  26542. female: {
  26543. height: math.unit(26.15, "m"),
  26544. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26545. name: "Female",
  26546. image: {
  26547. source: "./media/characters/joraxian/female.svg",
  26548. extra: 2912 / 2824,
  26549. bottom: 36 / 2956
  26550. }
  26551. },
  26552. male: {
  26553. height: math.unit(25.4, "m"),
  26554. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26555. name: "Male",
  26556. image: {
  26557. source: "./media/characters/joraxian/male.svg",
  26558. extra: 2877 / 2721,
  26559. bottom: 82 / 2967
  26560. }
  26561. },
  26562. },
  26563. [
  26564. {
  26565. name: "Macro",
  26566. height: math.unit(26.15, "meters"),
  26567. default: true
  26568. },
  26569. ]
  26570. ))
  26571. characterMakers.push(() => makeCharacter(
  26572. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26573. {
  26574. female: {
  26575. height: math.unit(21.6, "m"),
  26576. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26577. name: "Female",
  26578. image: {
  26579. source: "./media/characters/sthara/female.svg",
  26580. extra: 2516 / 2347,
  26581. bottom: 21.5 / 2537
  26582. }
  26583. },
  26584. male: {
  26585. height: math.unit(24, "m"),
  26586. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26587. name: "Male",
  26588. image: {
  26589. source: "./media/characters/sthara/male.svg",
  26590. extra: 2732 / 2607,
  26591. bottom: 23 / 2732
  26592. }
  26593. },
  26594. },
  26595. [
  26596. {
  26597. name: "Macro",
  26598. height: math.unit(21.6, "meters"),
  26599. default: true
  26600. },
  26601. ]
  26602. ))
  26603. characterMakers.push(() => makeCharacter(
  26604. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26605. {
  26606. front: {
  26607. height: math.unit(6 + 4 / 12, "feet"),
  26608. weight: math.unit(175, "lb"),
  26609. name: "Front",
  26610. image: {
  26611. source: "./media/characters/luka-bryzant/front.svg",
  26612. extra: 311 / 289,
  26613. bottom: 4 / 315
  26614. }
  26615. },
  26616. back: {
  26617. height: math.unit(6 + 4 / 12, "feet"),
  26618. weight: math.unit(175, "lb"),
  26619. name: "Back",
  26620. image: {
  26621. source: "./media/characters/luka-bryzant/back.svg",
  26622. extra: 311 / 289,
  26623. bottom: 3.8 / 313.7
  26624. }
  26625. },
  26626. },
  26627. [
  26628. {
  26629. name: "Micro",
  26630. height: math.unit(10, "inches")
  26631. },
  26632. {
  26633. name: "Normal",
  26634. height: math.unit(6 + 4 / 12, "feet"),
  26635. default: true
  26636. },
  26637. {
  26638. name: "Large",
  26639. height: math.unit(12, "feet")
  26640. },
  26641. ]
  26642. ))
  26643. characterMakers.push(() => makeCharacter(
  26644. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26645. {
  26646. front: {
  26647. height: math.unit(5 + 7 / 12, "feet"),
  26648. weight: math.unit(185, "lb"),
  26649. name: "Front",
  26650. image: {
  26651. source: "./media/characters/aman-aquila/front.svg",
  26652. extra: 1013 / 976,
  26653. bottom: 45.6 / 1057
  26654. }
  26655. },
  26656. side: {
  26657. height: math.unit(5 + 7 / 12, "feet"),
  26658. weight: math.unit(185, "lb"),
  26659. name: "Side",
  26660. image: {
  26661. source: "./media/characters/aman-aquila/side.svg",
  26662. extra: 1054 / 1011,
  26663. bottom: 15 / 1070
  26664. }
  26665. },
  26666. back: {
  26667. height: math.unit(5 + 7 / 12, "feet"),
  26668. weight: math.unit(185, "lb"),
  26669. name: "Back",
  26670. image: {
  26671. source: "./media/characters/aman-aquila/back.svg",
  26672. extra: 1026 / 970,
  26673. bottom: 12 / 1039
  26674. }
  26675. },
  26676. head: {
  26677. height: math.unit(1.211, "feet"),
  26678. name: "Head",
  26679. image: {
  26680. source: "./media/characters/aman-aquila/head.svg",
  26681. }
  26682. },
  26683. },
  26684. [
  26685. {
  26686. name: "Minimicro",
  26687. height: math.unit(0.057, "inches")
  26688. },
  26689. {
  26690. name: "Micro",
  26691. height: math.unit(7, "inches")
  26692. },
  26693. {
  26694. name: "Mini",
  26695. height: math.unit(3 + 7 / 12, "feet")
  26696. },
  26697. {
  26698. name: "Normal",
  26699. height: math.unit(5 + 7 / 12, "feet"),
  26700. default: true
  26701. },
  26702. {
  26703. name: "Macro",
  26704. height: math.unit(157 + 7 / 12, "feet")
  26705. },
  26706. {
  26707. name: "Megamacro",
  26708. height: math.unit(1557 + 7 / 12, "feet")
  26709. },
  26710. {
  26711. name: "Gigamacro",
  26712. height: math.unit(15557 + 7 / 12, "feet")
  26713. },
  26714. ]
  26715. ))
  26716. characterMakers.push(() => makeCharacter(
  26717. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26718. {
  26719. front: {
  26720. height: math.unit(3 + 2 / 12, "inches"),
  26721. weight: math.unit(0.3, "ounces"),
  26722. name: "Front",
  26723. image: {
  26724. source: "./media/characters/hiphae/front.svg",
  26725. extra: 1931 / 1683,
  26726. bottom: 24 / 1955
  26727. }
  26728. },
  26729. },
  26730. [
  26731. {
  26732. name: "Normal",
  26733. height: math.unit(3 + 1 / 2, "inches"),
  26734. default: true
  26735. },
  26736. ]
  26737. ))
  26738. characterMakers.push(() => makeCharacter(
  26739. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26740. {
  26741. front: {
  26742. height: math.unit(5 + 10 / 12, "feet"),
  26743. weight: math.unit(165, "lb"),
  26744. name: "Front",
  26745. image: {
  26746. source: "./media/characters/nicky/front.svg",
  26747. extra: 3144 / 2886,
  26748. bottom: 45.6 / 3192
  26749. }
  26750. },
  26751. back: {
  26752. height: math.unit(5 + 10 / 12, "feet"),
  26753. weight: math.unit(165, "lb"),
  26754. name: "Back",
  26755. image: {
  26756. source: "./media/characters/nicky/back.svg",
  26757. extra: 3055 / 2804,
  26758. bottom: 28.4 / 3087
  26759. }
  26760. },
  26761. frontclothed: {
  26762. height: math.unit(5 + 10 / 12, "feet"),
  26763. weight: math.unit(165, "lb"),
  26764. name: "Front-clothed",
  26765. image: {
  26766. source: "./media/characters/nicky/front-clothed.svg",
  26767. extra: 3184.9 / 2926.9,
  26768. bottom: 86.5 / 3239.9
  26769. }
  26770. },
  26771. foot: {
  26772. height: math.unit(1.16, "feet"),
  26773. name: "Foot",
  26774. image: {
  26775. source: "./media/characters/nicky/foot.svg"
  26776. }
  26777. },
  26778. feet: {
  26779. height: math.unit(1.34, "feet"),
  26780. name: "Feet",
  26781. image: {
  26782. source: "./media/characters/nicky/feet.svg"
  26783. }
  26784. },
  26785. maw: {
  26786. height: math.unit(0.9, "feet"),
  26787. name: "Maw",
  26788. image: {
  26789. source: "./media/characters/nicky/maw.svg"
  26790. }
  26791. },
  26792. },
  26793. [
  26794. {
  26795. name: "Normal",
  26796. height: math.unit(5 + 10 / 12, "feet"),
  26797. default: true
  26798. },
  26799. {
  26800. name: "Macro",
  26801. height: math.unit(60, "feet")
  26802. },
  26803. {
  26804. name: "Megamacro",
  26805. height: math.unit(1, "mile")
  26806. },
  26807. ]
  26808. ))
  26809. characterMakers.push(() => makeCharacter(
  26810. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26811. {
  26812. side: {
  26813. height: math.unit(10, "feet"),
  26814. weight: math.unit(600, "lb"),
  26815. name: "Side",
  26816. image: {
  26817. source: "./media/characters/blair/side.svg",
  26818. bottom: 16.6 / 475,
  26819. extra: 458 / 431
  26820. }
  26821. },
  26822. },
  26823. [
  26824. {
  26825. name: "Micro",
  26826. height: math.unit(8, "inches")
  26827. },
  26828. {
  26829. name: "Normal",
  26830. height: math.unit(10, "feet"),
  26831. default: true
  26832. },
  26833. {
  26834. name: "Macro",
  26835. height: math.unit(180, "feet")
  26836. },
  26837. ]
  26838. ))
  26839. characterMakers.push(() => makeCharacter(
  26840. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26841. {
  26842. front: {
  26843. height: math.unit(5 + 4 / 12, "feet"),
  26844. weight: math.unit(125, "lb"),
  26845. name: "Front",
  26846. image: {
  26847. source: "./media/characters/fisher/front.svg",
  26848. extra: 444 / 390,
  26849. bottom: 2 / 444.8
  26850. }
  26851. },
  26852. },
  26853. [
  26854. {
  26855. name: "Micro",
  26856. height: math.unit(4, "inches")
  26857. },
  26858. {
  26859. name: "Normal",
  26860. height: math.unit(5 + 4 / 12, "feet"),
  26861. default: true
  26862. },
  26863. {
  26864. name: "Macro",
  26865. height: math.unit(100, "feet")
  26866. },
  26867. ]
  26868. ))
  26869. characterMakers.push(() => makeCharacter(
  26870. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26871. {
  26872. front: {
  26873. height: math.unit(6.71, "feet"),
  26874. weight: math.unit(200, "lb"),
  26875. preyCapacity: math.unit(1000000, "people"),
  26876. name: "Front",
  26877. image: {
  26878. source: "./media/characters/gliss/front.svg",
  26879. extra: 2347 / 2231,
  26880. bottom: 113 / 2462
  26881. }
  26882. },
  26883. hammerspaceSize: {
  26884. height: math.unit(6.71 * 717, "feet"),
  26885. weight: math.unit(200, "lb"),
  26886. preyCapacity: math.unit(1000000, "people"),
  26887. name: "Hammerspace Size",
  26888. image: {
  26889. source: "./media/characters/gliss/front.svg",
  26890. extra: 2347 / 2231,
  26891. bottom: 113 / 2462
  26892. }
  26893. },
  26894. },
  26895. [
  26896. {
  26897. name: "Normal",
  26898. height: math.unit(6.71, "feet"),
  26899. default: true
  26900. },
  26901. ]
  26902. ))
  26903. characterMakers.push(() => makeCharacter(
  26904. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26905. {
  26906. side: {
  26907. height: math.unit(1.44, "m"),
  26908. weight: math.unit(80, "kg"),
  26909. name: "Side",
  26910. image: {
  26911. source: "./media/characters/dune-anderson/side.svg",
  26912. bottom: 49 / 1426
  26913. }
  26914. },
  26915. },
  26916. [
  26917. {
  26918. name: "Wolf-sized",
  26919. height: math.unit(1.44, "meters")
  26920. },
  26921. {
  26922. name: "Normal",
  26923. height: math.unit(5.05, "meters"),
  26924. default: true
  26925. },
  26926. {
  26927. name: "Big",
  26928. height: math.unit(14.4, "meters")
  26929. },
  26930. {
  26931. name: "Huge",
  26932. height: math.unit(144, "meters")
  26933. },
  26934. ]
  26935. ))
  26936. characterMakers.push(() => makeCharacter(
  26937. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26938. {
  26939. front: {
  26940. height: math.unit(7, "feet"),
  26941. weight: math.unit(425, "lb"),
  26942. name: "Front",
  26943. image: {
  26944. source: "./media/characters/hind/front.svg",
  26945. extra: 2091 / 1860,
  26946. bottom: 129 / 2220
  26947. }
  26948. },
  26949. back: {
  26950. height: math.unit(7, "feet"),
  26951. weight: math.unit(425, "lb"),
  26952. name: "Back",
  26953. image: {
  26954. source: "./media/characters/hind/back.svg",
  26955. extra: 2091 / 1860,
  26956. bottom: 24.6 / 2309
  26957. }
  26958. },
  26959. tail: {
  26960. height: math.unit(2.8, "feet"),
  26961. name: "Tail",
  26962. image: {
  26963. source: "./media/characters/hind/tail.svg"
  26964. }
  26965. },
  26966. head: {
  26967. height: math.unit(2.55, "feet"),
  26968. name: "Head",
  26969. image: {
  26970. source: "./media/characters/hind/head.svg"
  26971. }
  26972. },
  26973. },
  26974. [
  26975. {
  26976. name: "XS",
  26977. height: math.unit(0.7, "feet")
  26978. },
  26979. {
  26980. name: "Normal",
  26981. height: math.unit(7, "feet"),
  26982. default: true
  26983. },
  26984. {
  26985. name: "XL",
  26986. height: math.unit(70, "feet")
  26987. },
  26988. ]
  26989. ))
  26990. characterMakers.push(() => makeCharacter(
  26991. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26992. {
  26993. front: {
  26994. height: math.unit(2.1, "meters"),
  26995. weight: math.unit(150, "lb"),
  26996. name: "Front",
  26997. image: {
  26998. source: "./media/characters/tharquench-sizestealer/front.svg",
  26999. extra: 1605/1470,
  27000. bottom: 36/1641
  27001. }
  27002. },
  27003. frontAlt: {
  27004. height: math.unit(2.1, "meters"),
  27005. weight: math.unit(150, "lb"),
  27006. name: "Front (Alt)",
  27007. image: {
  27008. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27009. extra: 2318 / 2063,
  27010. bottom: 93.4 / 2410
  27011. }
  27012. },
  27013. },
  27014. [
  27015. {
  27016. name: "Nano",
  27017. height: math.unit(1, "mm")
  27018. },
  27019. {
  27020. name: "Micro",
  27021. height: math.unit(1, "cm")
  27022. },
  27023. {
  27024. name: "Normal",
  27025. height: math.unit(2.1, "meters"),
  27026. default: true
  27027. },
  27028. ]
  27029. ))
  27030. characterMakers.push(() => makeCharacter(
  27031. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27032. {
  27033. front: {
  27034. height: math.unit(7 + 5 / 12, "feet"),
  27035. weight: math.unit(357, "lb"),
  27036. name: "Front",
  27037. image: {
  27038. source: "./media/characters/solex-draconov/front.svg",
  27039. extra: 1993 / 1865,
  27040. bottom: 117 / 2111
  27041. }
  27042. },
  27043. },
  27044. [
  27045. {
  27046. name: "Natural Height",
  27047. height: math.unit(7 + 5 / 12, "feet"),
  27048. default: true
  27049. },
  27050. {
  27051. name: "Macro",
  27052. height: math.unit(350, "feet")
  27053. },
  27054. {
  27055. name: "Macro+",
  27056. height: math.unit(1000, "feet")
  27057. },
  27058. {
  27059. name: "Megamacro",
  27060. height: math.unit(20, "km")
  27061. },
  27062. {
  27063. name: "Megamacro+",
  27064. height: math.unit(1000, "km")
  27065. },
  27066. {
  27067. name: "Gigamacro",
  27068. height: math.unit(2.5, "Gm")
  27069. },
  27070. {
  27071. name: "Teramacro",
  27072. height: math.unit(15, "Tm")
  27073. },
  27074. {
  27075. name: "Galactic",
  27076. height: math.unit(30, "Zm")
  27077. },
  27078. {
  27079. name: "Universal",
  27080. height: math.unit(21000, "Ym")
  27081. },
  27082. {
  27083. name: "Omniversal",
  27084. height: math.unit(9.861e50, "Ym")
  27085. },
  27086. {
  27087. name: "Existential",
  27088. height: math.unit(1e300, "meters")
  27089. },
  27090. ]
  27091. ))
  27092. characterMakers.push(() => makeCharacter(
  27093. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27094. {
  27095. side: {
  27096. height: math.unit(25, "feet"),
  27097. weight: math.unit(90000, "lb"),
  27098. name: "Side",
  27099. image: {
  27100. source: "./media/characters/mandarax/side.svg",
  27101. extra: 614 / 332,
  27102. bottom: 55 / 630
  27103. }
  27104. },
  27105. lounging: {
  27106. height: math.unit(15.4, "feet"),
  27107. weight: math.unit(90000, "lb"),
  27108. name: "Lounging",
  27109. image: {
  27110. source: "./media/characters/mandarax/lounging.svg",
  27111. extra: 817/609,
  27112. bottom: 685/1502
  27113. }
  27114. },
  27115. head: {
  27116. height: math.unit(11.4, "feet"),
  27117. name: "Head",
  27118. image: {
  27119. source: "./media/characters/mandarax/head.svg"
  27120. }
  27121. },
  27122. belly: {
  27123. height: math.unit(33, "feet"),
  27124. name: "Belly",
  27125. preyCapacity: math.unit(500, "people"),
  27126. image: {
  27127. source: "./media/characters/mandarax/belly.svg"
  27128. }
  27129. },
  27130. dick: {
  27131. height: math.unit(8.46, "feet"),
  27132. name: "Dick",
  27133. image: {
  27134. source: "./media/characters/mandarax/dick.svg"
  27135. }
  27136. },
  27137. top: {
  27138. height: math.unit(28, "meters"),
  27139. name: "Top",
  27140. image: {
  27141. source: "./media/characters/mandarax/top.svg"
  27142. }
  27143. },
  27144. },
  27145. [
  27146. {
  27147. name: "Normal",
  27148. height: math.unit(25, "feet"),
  27149. default: true
  27150. },
  27151. ]
  27152. ))
  27153. characterMakers.push(() => makeCharacter(
  27154. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27155. {
  27156. front: {
  27157. height: math.unit(5, "feet"),
  27158. weight: math.unit(90, "lb"),
  27159. name: "Front",
  27160. image: {
  27161. source: "./media/characters/pixil/front.svg",
  27162. extra: 2000 / 1618,
  27163. bottom: 12.3 / 2011
  27164. }
  27165. },
  27166. },
  27167. [
  27168. {
  27169. name: "Normal",
  27170. height: math.unit(5, "feet"),
  27171. default: true
  27172. },
  27173. {
  27174. name: "Megamacro",
  27175. height: math.unit(10, "miles"),
  27176. },
  27177. ]
  27178. ))
  27179. characterMakers.push(() => makeCharacter(
  27180. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27181. {
  27182. front: {
  27183. height: math.unit(7 + 2 / 12, "feet"),
  27184. weight: math.unit(200, "lb"),
  27185. name: "Front",
  27186. image: {
  27187. source: "./media/characters/angel/front.svg",
  27188. extra: 1830 / 1737,
  27189. bottom: 22.6 / 1854,
  27190. }
  27191. },
  27192. },
  27193. [
  27194. {
  27195. name: "Normal",
  27196. height: math.unit(7 + 2 / 12, "feet"),
  27197. default: true
  27198. },
  27199. {
  27200. name: "Macro",
  27201. height: math.unit(1000, "feet")
  27202. },
  27203. {
  27204. name: "Megamacro",
  27205. height: math.unit(2, "miles")
  27206. },
  27207. {
  27208. name: "Gigamacro",
  27209. height: math.unit(20, "earths")
  27210. },
  27211. ]
  27212. ))
  27213. characterMakers.push(() => makeCharacter(
  27214. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27215. {
  27216. front: {
  27217. height: math.unit(5, "feet"),
  27218. weight: math.unit(180, "lb"),
  27219. name: "Front",
  27220. image: {
  27221. source: "./media/characters/mekana/front.svg",
  27222. extra: 1671 / 1605,
  27223. bottom: 3.5 / 1691
  27224. }
  27225. },
  27226. side: {
  27227. height: math.unit(5, "feet"),
  27228. weight: math.unit(180, "lb"),
  27229. name: "Side",
  27230. image: {
  27231. source: "./media/characters/mekana/side.svg",
  27232. extra: 1671 / 1605,
  27233. bottom: 3.5 / 1691
  27234. }
  27235. },
  27236. back: {
  27237. height: math.unit(5, "feet"),
  27238. weight: math.unit(180, "lb"),
  27239. name: "Back",
  27240. image: {
  27241. source: "./media/characters/mekana/back.svg",
  27242. extra: 1671 / 1605,
  27243. bottom: 3.5 / 1691
  27244. }
  27245. },
  27246. },
  27247. [
  27248. {
  27249. name: "Normal",
  27250. height: math.unit(5, "feet"),
  27251. default: true
  27252. },
  27253. ]
  27254. ))
  27255. characterMakers.push(() => makeCharacter(
  27256. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27257. {
  27258. front: {
  27259. height: math.unit(4 + 6 / 12, "feet"),
  27260. weight: math.unit(80, "lb"),
  27261. name: "Front",
  27262. image: {
  27263. source: "./media/characters/pixie/front.svg",
  27264. extra: 1924 / 1825,
  27265. bottom: 22.4 / 1946
  27266. }
  27267. },
  27268. },
  27269. [
  27270. {
  27271. name: "Normal",
  27272. height: math.unit(4 + 6 / 12, "feet"),
  27273. default: true
  27274. },
  27275. {
  27276. name: "Macro",
  27277. height: math.unit(40, "feet")
  27278. },
  27279. ]
  27280. ))
  27281. characterMakers.push(() => makeCharacter(
  27282. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27283. {
  27284. front: {
  27285. height: math.unit(2.1, "meters"),
  27286. weight: math.unit(200, "lb"),
  27287. name: "Front",
  27288. image: {
  27289. source: "./media/characters/the-lascivious/front.svg",
  27290. extra: 1 / 0.893,
  27291. bottom: 3.5 / 573.7
  27292. }
  27293. },
  27294. },
  27295. [
  27296. {
  27297. name: "Human Scale",
  27298. height: math.unit(2.1, "meters")
  27299. },
  27300. {
  27301. name: "Wolxi Scale",
  27302. height: math.unit(46.2, "m"),
  27303. default: true
  27304. },
  27305. {
  27306. name: "Boinker of Buildings",
  27307. height: math.unit(10, "km")
  27308. },
  27309. {
  27310. name: "Shagger of Skyscrapers",
  27311. height: math.unit(40, "km")
  27312. },
  27313. {
  27314. name: "Banger of Boroughs",
  27315. height: math.unit(4000, "km")
  27316. },
  27317. {
  27318. name: "Screwer of States",
  27319. height: math.unit(100000, "km")
  27320. },
  27321. {
  27322. name: "Pounder of Planets",
  27323. height: math.unit(2000000, "km")
  27324. },
  27325. ]
  27326. ))
  27327. characterMakers.push(() => makeCharacter(
  27328. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27329. {
  27330. front: {
  27331. height: math.unit(6, "feet"),
  27332. weight: math.unit(150, "lb"),
  27333. name: "Front",
  27334. image: {
  27335. source: "./media/characters/aj/front.svg",
  27336. extra: 2039 / 1562,
  27337. bottom: 40 / 2079
  27338. }
  27339. },
  27340. },
  27341. [
  27342. {
  27343. name: "Normal",
  27344. height: math.unit(11 + 6 / 12, "feet"),
  27345. default: true
  27346. },
  27347. {
  27348. name: "Megamacro",
  27349. height: math.unit(60, "megameters")
  27350. },
  27351. ]
  27352. ))
  27353. characterMakers.push(() => makeCharacter(
  27354. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27355. {
  27356. side: {
  27357. height: math.unit(31 + 8 / 12, "feet"),
  27358. weight: math.unit(75000, "kg"),
  27359. name: "Side",
  27360. image: {
  27361. source: "./media/characters/koros/side.svg",
  27362. extra: 1442 / 1297,
  27363. bottom: 122.7 / 1562
  27364. }
  27365. },
  27366. dicksKingsCrown: {
  27367. height: math.unit(6, "feet"),
  27368. name: "Dicks (King's Crown)",
  27369. image: {
  27370. source: "./media/characters/koros/dicks-kings-crown.svg"
  27371. }
  27372. },
  27373. dicksTailSet: {
  27374. height: math.unit(3, "feet"),
  27375. name: "Dicks (Tail Set)",
  27376. image: {
  27377. source: "./media/characters/koros/dicks-tail-set.svg"
  27378. }
  27379. },
  27380. dickCumming: {
  27381. height: math.unit(7.98, "feet"),
  27382. name: "Dick (Cumming)",
  27383. image: {
  27384. source: "./media/characters/koros/dick-cumming.svg"
  27385. }
  27386. },
  27387. dicksBack: {
  27388. height: math.unit(5.9, "feet"),
  27389. name: "Dicks (Back)",
  27390. image: {
  27391. source: "./media/characters/koros/dicks-back.svg"
  27392. }
  27393. },
  27394. dicksFront: {
  27395. height: math.unit(3.72, "feet"),
  27396. name: "Dicks (Front)",
  27397. image: {
  27398. source: "./media/characters/koros/dicks-front.svg"
  27399. }
  27400. },
  27401. dicksPeeking: {
  27402. height: math.unit(3.0, "feet"),
  27403. name: "Dicks (Peeking)",
  27404. image: {
  27405. source: "./media/characters/koros/dicks-peeking.svg"
  27406. }
  27407. },
  27408. eye: {
  27409. height: math.unit(1.7, "feet"),
  27410. name: "Eye",
  27411. image: {
  27412. source: "./media/characters/koros/eye.svg"
  27413. }
  27414. },
  27415. headFront: {
  27416. height: math.unit(11.69, "feet"),
  27417. name: "Head (Front)",
  27418. image: {
  27419. source: "./media/characters/koros/head-front.svg"
  27420. }
  27421. },
  27422. headSide: {
  27423. height: math.unit(14, "feet"),
  27424. name: "Head (Side)",
  27425. image: {
  27426. source: "./media/characters/koros/head-side.svg"
  27427. }
  27428. },
  27429. leg: {
  27430. height: math.unit(17, "feet"),
  27431. name: "Leg",
  27432. image: {
  27433. source: "./media/characters/koros/leg.svg"
  27434. }
  27435. },
  27436. mawSide: {
  27437. height: math.unit(12.8, "feet"),
  27438. name: "Maw (Side)",
  27439. image: {
  27440. source: "./media/characters/koros/maw-side.svg"
  27441. }
  27442. },
  27443. mawSpitting: {
  27444. height: math.unit(17, "feet"),
  27445. name: "Maw (Spitting)",
  27446. image: {
  27447. source: "./media/characters/koros/maw-spitting.svg"
  27448. }
  27449. },
  27450. slit: {
  27451. height: math.unit(2.8, "feet"),
  27452. name: "Slit",
  27453. image: {
  27454. source: "./media/characters/koros/slit.svg"
  27455. }
  27456. },
  27457. stomach: {
  27458. height: math.unit(6.8, "feet"),
  27459. preyCapacity: math.unit(20, "people"),
  27460. name: "Stomach",
  27461. image: {
  27462. source: "./media/characters/koros/stomach.svg"
  27463. }
  27464. },
  27465. wingspanBottom: {
  27466. height: math.unit(114, "feet"),
  27467. name: "Wingspan (Bottom)",
  27468. image: {
  27469. source: "./media/characters/koros/wingspan-bottom.svg"
  27470. }
  27471. },
  27472. wingspanTop: {
  27473. height: math.unit(104, "feet"),
  27474. name: "Wingspan (Top)",
  27475. image: {
  27476. source: "./media/characters/koros/wingspan-top.svg"
  27477. }
  27478. },
  27479. },
  27480. [
  27481. {
  27482. name: "Normal",
  27483. height: math.unit(31 + 8 / 12, "feet"),
  27484. default: true
  27485. },
  27486. ]
  27487. ))
  27488. characterMakers.push(() => makeCharacter(
  27489. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27490. {
  27491. front: {
  27492. height: math.unit(18 + 5 / 12, "feet"),
  27493. weight: math.unit(3750, "kg"),
  27494. name: "Front",
  27495. image: {
  27496. source: "./media/characters/vexx/front.svg",
  27497. extra: 426 / 396,
  27498. bottom: 31.5 / 458
  27499. }
  27500. },
  27501. maw: {
  27502. height: math.unit(6, "feet"),
  27503. name: "Maw",
  27504. image: {
  27505. source: "./media/characters/vexx/maw.svg"
  27506. }
  27507. },
  27508. },
  27509. [
  27510. {
  27511. name: "Normal",
  27512. height: math.unit(18 + 5 / 12, "feet"),
  27513. default: true
  27514. },
  27515. ]
  27516. ))
  27517. characterMakers.push(() => makeCharacter(
  27518. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27519. {
  27520. front: {
  27521. height: math.unit(17 + 6 / 12, "feet"),
  27522. weight: math.unit(150, "lb"),
  27523. name: "Front",
  27524. image: {
  27525. source: "./media/characters/baadra/front.svg",
  27526. extra: 1694/1553,
  27527. bottom: 179/1873
  27528. }
  27529. },
  27530. frontAlt: {
  27531. height: math.unit(17 + 6 / 12, "feet"),
  27532. weight: math.unit(150, "lb"),
  27533. name: "Front (Alt)",
  27534. image: {
  27535. source: "./media/characters/baadra/front-alt.svg",
  27536. extra: 3137 / 2890,
  27537. bottom: 168.4 / 3305
  27538. }
  27539. },
  27540. back: {
  27541. height: math.unit(17 + 6 / 12, "feet"),
  27542. weight: math.unit(150, "lb"),
  27543. name: "Back",
  27544. image: {
  27545. source: "./media/characters/baadra/back.svg",
  27546. extra: 3142 / 2890,
  27547. bottom: 220 / 3371
  27548. }
  27549. },
  27550. head: {
  27551. height: math.unit(5.45, "feet"),
  27552. name: "Head",
  27553. image: {
  27554. source: "./media/characters/baadra/head.svg"
  27555. }
  27556. },
  27557. headAngry: {
  27558. height: math.unit(4.95, "feet"),
  27559. name: "Head (Angry)",
  27560. image: {
  27561. source: "./media/characters/baadra/head-angry.svg"
  27562. }
  27563. },
  27564. headOpen: {
  27565. height: math.unit(6, "feet"),
  27566. name: "Head (Open)",
  27567. image: {
  27568. source: "./media/characters/baadra/head-open.svg"
  27569. }
  27570. },
  27571. },
  27572. [
  27573. {
  27574. name: "Normal",
  27575. height: math.unit(17 + 6 / 12, "feet"),
  27576. default: true
  27577. },
  27578. ]
  27579. ))
  27580. characterMakers.push(() => makeCharacter(
  27581. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27582. {
  27583. front: {
  27584. height: math.unit(7 + 3 / 12, "feet"),
  27585. weight: math.unit(180, "lb"),
  27586. name: "Front",
  27587. image: {
  27588. source: "./media/characters/juri/front.svg",
  27589. extra: 1401 / 1237,
  27590. bottom: 18.5 / 1418
  27591. }
  27592. },
  27593. side: {
  27594. height: math.unit(7 + 3 / 12, "feet"),
  27595. weight: math.unit(180, "lb"),
  27596. name: "Side",
  27597. image: {
  27598. source: "./media/characters/juri/side.svg",
  27599. extra: 1424 / 1242,
  27600. bottom: 18.5 / 1447
  27601. }
  27602. },
  27603. sitting: {
  27604. height: math.unit(6, "feet"),
  27605. weight: math.unit(180, "lb"),
  27606. name: "Sitting",
  27607. image: {
  27608. source: "./media/characters/juri/sitting.svg",
  27609. extra: 1270 / 1143,
  27610. bottom: 100 / 1343
  27611. }
  27612. },
  27613. back: {
  27614. height: math.unit(7 + 3 / 12, "feet"),
  27615. weight: math.unit(180, "lb"),
  27616. name: "Back",
  27617. image: {
  27618. source: "./media/characters/juri/back.svg",
  27619. extra: 1377 / 1240,
  27620. bottom: 23.7 / 1405
  27621. }
  27622. },
  27623. maw: {
  27624. height: math.unit(2.8, "feet"),
  27625. name: "Maw",
  27626. image: {
  27627. source: "./media/characters/juri/maw.svg"
  27628. }
  27629. },
  27630. stomach: {
  27631. height: math.unit(0.89, "feet"),
  27632. preyCapacity: math.unit(4, "liters"),
  27633. name: "Stomach",
  27634. image: {
  27635. source: "./media/characters/juri/stomach.svg"
  27636. }
  27637. },
  27638. },
  27639. [
  27640. {
  27641. name: "Normal",
  27642. height: math.unit(7 + 3 / 12, "feet"),
  27643. default: true
  27644. },
  27645. ]
  27646. ))
  27647. characterMakers.push(() => makeCharacter(
  27648. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27649. {
  27650. fox: {
  27651. height: math.unit(5 + 6 / 12, "feet"),
  27652. weight: math.unit(140, "lb"),
  27653. name: "Fox",
  27654. image: {
  27655. source: "./media/characters/maxene-sita/fox.svg",
  27656. extra: 146 / 138,
  27657. bottom: 2.1 / 148.19
  27658. }
  27659. },
  27660. foxLaying: {
  27661. height: math.unit(1.70, "feet"),
  27662. weight: math.unit(140, "lb"),
  27663. name: "Fox (Laying)",
  27664. image: {
  27665. source: "./media/characters/maxene-sita/fox-laying.svg",
  27666. extra: 910 / 572,
  27667. bottom: 71 / 981
  27668. }
  27669. },
  27670. kitsune: {
  27671. height: math.unit(10, "feet"),
  27672. weight: math.unit(800, "lb"),
  27673. name: "Kitsune",
  27674. image: {
  27675. source: "./media/characters/maxene-sita/kitsune.svg",
  27676. extra: 185 / 176,
  27677. bottom: 4.7 / 189.9
  27678. }
  27679. },
  27680. hellhound: {
  27681. height: math.unit(10, "feet"),
  27682. weight: math.unit(700, "lb"),
  27683. name: "Hellhound",
  27684. image: {
  27685. source: "./media/characters/maxene-sita/hellhound.svg",
  27686. extra: 1600 / 1545,
  27687. bottom: 81 / 1681
  27688. }
  27689. },
  27690. },
  27691. [
  27692. {
  27693. name: "Normal",
  27694. height: math.unit(5 + 6 / 12, "feet"),
  27695. default: true
  27696. },
  27697. ]
  27698. ))
  27699. characterMakers.push(() => makeCharacter(
  27700. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27701. {
  27702. front: {
  27703. height: math.unit(3 + 4 / 12, "feet"),
  27704. weight: math.unit(70, "lb"),
  27705. name: "Front",
  27706. image: {
  27707. source: "./media/characters/maia/front.svg",
  27708. extra: 227 / 219.5,
  27709. bottom: 40 / 267
  27710. }
  27711. },
  27712. back: {
  27713. height: math.unit(3 + 4 / 12, "feet"),
  27714. weight: math.unit(70, "lb"),
  27715. name: "Back",
  27716. image: {
  27717. source: "./media/characters/maia/back.svg",
  27718. extra: 237 / 225
  27719. }
  27720. },
  27721. },
  27722. [
  27723. {
  27724. name: "Normal",
  27725. height: math.unit(3 + 4 / 12, "feet"),
  27726. default: true
  27727. },
  27728. ]
  27729. ))
  27730. characterMakers.push(() => makeCharacter(
  27731. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27732. {
  27733. front: {
  27734. height: math.unit(5 + 10 / 12, "feet"),
  27735. weight: math.unit(197, "lb"),
  27736. name: "Front",
  27737. image: {
  27738. source: "./media/characters/jabaro/front.svg",
  27739. extra: 225 / 216,
  27740. bottom: 5.06 / 230
  27741. }
  27742. },
  27743. back: {
  27744. height: math.unit(5 + 10 / 12, "feet"),
  27745. weight: math.unit(197, "lb"),
  27746. name: "Back",
  27747. image: {
  27748. source: "./media/characters/jabaro/back.svg",
  27749. extra: 225 / 219,
  27750. bottom: 1.9 / 227
  27751. }
  27752. },
  27753. },
  27754. [
  27755. {
  27756. name: "Normal",
  27757. height: math.unit(5 + 10 / 12, "feet"),
  27758. default: true
  27759. },
  27760. ]
  27761. ))
  27762. characterMakers.push(() => makeCharacter(
  27763. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27764. {
  27765. front: {
  27766. height: math.unit(5 + 8 / 12, "feet"),
  27767. weight: math.unit(139, "lb"),
  27768. name: "Front",
  27769. image: {
  27770. source: "./media/characters/risa/front.svg",
  27771. extra: 270 / 260,
  27772. bottom: 11.2 / 282
  27773. }
  27774. },
  27775. back: {
  27776. height: math.unit(5 + 8 / 12, "feet"),
  27777. weight: math.unit(139, "lb"),
  27778. name: "Back",
  27779. image: {
  27780. source: "./media/characters/risa/back.svg",
  27781. extra: 264 / 255,
  27782. bottom: 4 / 268
  27783. }
  27784. },
  27785. },
  27786. [
  27787. {
  27788. name: "Normal",
  27789. height: math.unit(5 + 8 / 12, "feet"),
  27790. default: true
  27791. },
  27792. ]
  27793. ))
  27794. characterMakers.push(() => makeCharacter(
  27795. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27796. {
  27797. front: {
  27798. height: math.unit(2 + 11 / 12, "feet"),
  27799. weight: math.unit(30, "lb"),
  27800. name: "Front",
  27801. image: {
  27802. source: "./media/characters/weatley/front.svg",
  27803. bottom: 10.7 / 414,
  27804. extra: 403.5 / 362
  27805. }
  27806. },
  27807. back: {
  27808. height: math.unit(2 + 11 / 12, "feet"),
  27809. weight: math.unit(30, "lb"),
  27810. name: "Back",
  27811. image: {
  27812. source: "./media/characters/weatley/back.svg",
  27813. bottom: 10.7 / 414,
  27814. extra: 403.5 / 362
  27815. }
  27816. },
  27817. },
  27818. [
  27819. {
  27820. name: "Normal",
  27821. height: math.unit(2 + 11 / 12, "feet"),
  27822. default: true
  27823. },
  27824. ]
  27825. ))
  27826. characterMakers.push(() => makeCharacter(
  27827. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27828. {
  27829. front: {
  27830. height: math.unit(5 + 2 / 12, "feet"),
  27831. weight: math.unit(50, "kg"),
  27832. name: "Front",
  27833. image: {
  27834. source: "./media/characters/mercury-crescent/front.svg",
  27835. extra: 1088 / 1033,
  27836. bottom: 18.9 / 1109
  27837. }
  27838. },
  27839. },
  27840. [
  27841. {
  27842. name: "Normal",
  27843. height: math.unit(5 + 2 / 12, "feet"),
  27844. default: true
  27845. },
  27846. ]
  27847. ))
  27848. characterMakers.push(() => makeCharacter(
  27849. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27850. {
  27851. front: {
  27852. height: math.unit(2, "feet"),
  27853. weight: math.unit(15, "kg"),
  27854. name: "Front",
  27855. image: {
  27856. source: "./media/characters/diamond-jones/front.svg",
  27857. extra: 727/723,
  27858. bottom: 46/773
  27859. }
  27860. },
  27861. },
  27862. [
  27863. {
  27864. name: "Normal",
  27865. height: math.unit(2, "feet"),
  27866. default: true
  27867. },
  27868. ]
  27869. ))
  27870. characterMakers.push(() => makeCharacter(
  27871. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27872. {
  27873. front: {
  27874. height: math.unit(3, "feet"),
  27875. weight: math.unit(30, "kg"),
  27876. name: "Front",
  27877. image: {
  27878. source: "./media/characters/sweet-bit/front.svg",
  27879. extra: 675 / 567,
  27880. bottom: 27.7 / 703
  27881. }
  27882. },
  27883. },
  27884. [
  27885. {
  27886. name: "Normal",
  27887. height: math.unit(3, "feet"),
  27888. default: true
  27889. },
  27890. ]
  27891. ))
  27892. characterMakers.push(() => makeCharacter(
  27893. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27894. {
  27895. side: {
  27896. height: math.unit(9.178, "feet"),
  27897. weight: math.unit(500, "lb"),
  27898. name: "Side",
  27899. image: {
  27900. source: "./media/characters/umbrazen/side.svg",
  27901. extra: 1730 / 1473,
  27902. bottom: 34.6 / 1765
  27903. }
  27904. },
  27905. },
  27906. [
  27907. {
  27908. name: "Normal",
  27909. height: math.unit(9.178, "feet"),
  27910. default: true
  27911. },
  27912. ]
  27913. ))
  27914. characterMakers.push(() => makeCharacter(
  27915. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27916. {
  27917. front: {
  27918. height: math.unit(10, "feet"),
  27919. weight: math.unit(750, "lb"),
  27920. name: "Front",
  27921. image: {
  27922. source: "./media/characters/arlist/front.svg",
  27923. extra: 961 / 778,
  27924. bottom: 6.2 / 986
  27925. }
  27926. },
  27927. },
  27928. [
  27929. {
  27930. name: "Normal",
  27931. height: math.unit(10, "feet"),
  27932. default: true
  27933. },
  27934. ]
  27935. ))
  27936. characterMakers.push(() => makeCharacter(
  27937. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27938. {
  27939. front: {
  27940. height: math.unit(5 + 1 / 12, "feet"),
  27941. weight: math.unit(110, "lb"),
  27942. name: "Front",
  27943. image: {
  27944. source: "./media/characters/aradel/front.svg",
  27945. extra: 324 / 303,
  27946. bottom: 3.6 / 329.4
  27947. }
  27948. },
  27949. },
  27950. [
  27951. {
  27952. name: "Normal",
  27953. height: math.unit(5 + 1 / 12, "feet"),
  27954. default: true
  27955. },
  27956. ]
  27957. ))
  27958. characterMakers.push(() => makeCharacter(
  27959. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27960. {
  27961. dressed: {
  27962. height: math.unit(3 + 8 / 12, "feet"),
  27963. weight: math.unit(50, "lb"),
  27964. name: "Dressed",
  27965. image: {
  27966. source: "./media/characters/serryn/dressed.svg",
  27967. extra: 1792 / 1656,
  27968. bottom: 43.5 / 1840
  27969. }
  27970. },
  27971. nude: {
  27972. height: math.unit(3 + 8 / 12, "feet"),
  27973. weight: math.unit(50, "lb"),
  27974. name: "Nude",
  27975. image: {
  27976. source: "./media/characters/serryn/nude.svg",
  27977. extra: 1792 / 1656,
  27978. bottom: 43.5 / 1840
  27979. }
  27980. },
  27981. },
  27982. [
  27983. {
  27984. name: "Normal",
  27985. height: math.unit(3 + 8 / 12, "feet"),
  27986. default: true
  27987. },
  27988. ]
  27989. ))
  27990. characterMakers.push(() => makeCharacter(
  27991. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27992. {
  27993. front: {
  27994. height: math.unit(7 + 10 / 12, "feet"),
  27995. weight: math.unit(255, "lb"),
  27996. name: "Front",
  27997. image: {
  27998. source: "./media/characters/xavier-thyme/front.svg",
  27999. extra: 3733 / 3642,
  28000. bottom: 131 / 3869
  28001. }
  28002. },
  28003. frontRaven: {
  28004. height: math.unit(7 + 10 / 12, "feet"),
  28005. weight: math.unit(255, "lb"),
  28006. name: "Front (Raven)",
  28007. image: {
  28008. source: "./media/characters/xavier-thyme/front-raven.svg",
  28009. extra: 4385 / 3642,
  28010. bottom: 131 / 4517
  28011. }
  28012. },
  28013. },
  28014. [
  28015. {
  28016. name: "Normal",
  28017. height: math.unit(7 + 10 / 12, "feet"),
  28018. default: true
  28019. },
  28020. ]
  28021. ))
  28022. characterMakers.push(() => makeCharacter(
  28023. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28024. {
  28025. front: {
  28026. height: math.unit(1.6, "m"),
  28027. weight: math.unit(50, "kg"),
  28028. name: "Front",
  28029. image: {
  28030. source: "./media/characters/kiki/front.svg",
  28031. extra: 4682 / 3610,
  28032. bottom: 115 / 4777
  28033. }
  28034. },
  28035. },
  28036. [
  28037. {
  28038. name: "Normal",
  28039. height: math.unit(1.6, "meters"),
  28040. default: true
  28041. },
  28042. ]
  28043. ))
  28044. characterMakers.push(() => makeCharacter(
  28045. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28046. {
  28047. front: {
  28048. height: math.unit(50, "m"),
  28049. weight: math.unit(500, "tonnes"),
  28050. name: "Front",
  28051. image: {
  28052. source: "./media/characters/ryoko/front.svg",
  28053. extra: 4632 / 3926,
  28054. bottom: 193 / 4823
  28055. }
  28056. },
  28057. },
  28058. [
  28059. {
  28060. name: "Normal",
  28061. height: math.unit(50, "meters"),
  28062. default: true
  28063. },
  28064. ]
  28065. ))
  28066. characterMakers.push(() => makeCharacter(
  28067. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28068. {
  28069. front: {
  28070. height: math.unit(30, "m"),
  28071. weight: math.unit(22, "tonnes"),
  28072. name: "Front",
  28073. image: {
  28074. source: "./media/characters/elio/front.svg",
  28075. extra: 4582 / 3720,
  28076. bottom: 236 / 4828
  28077. }
  28078. },
  28079. },
  28080. [
  28081. {
  28082. name: "Normal",
  28083. height: math.unit(30, "meters"),
  28084. default: true
  28085. },
  28086. ]
  28087. ))
  28088. characterMakers.push(() => makeCharacter(
  28089. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28090. {
  28091. front: {
  28092. height: math.unit(6 + 3 / 12, "feet"),
  28093. weight: math.unit(120, "lb"),
  28094. name: "Front",
  28095. image: {
  28096. source: "./media/characters/azura/front.svg",
  28097. extra: 1149 / 1135,
  28098. bottom: 45 / 1194
  28099. }
  28100. },
  28101. frontClothed: {
  28102. height: math.unit(6 + 3 / 12, "feet"),
  28103. weight: math.unit(120, "lb"),
  28104. name: "Front (Clothed)",
  28105. image: {
  28106. source: "./media/characters/azura/front-clothed.svg",
  28107. extra: 1149 / 1135,
  28108. bottom: 45 / 1194
  28109. }
  28110. },
  28111. },
  28112. [
  28113. {
  28114. name: "Normal",
  28115. height: math.unit(6 + 3 / 12, "feet"),
  28116. default: true
  28117. },
  28118. {
  28119. name: "Macro",
  28120. height: math.unit(20 + 6 / 12, "feet")
  28121. },
  28122. {
  28123. name: "Megamacro",
  28124. height: math.unit(12, "miles")
  28125. },
  28126. {
  28127. name: "Gigamacro",
  28128. height: math.unit(10000, "miles")
  28129. },
  28130. {
  28131. name: "Teramacro",
  28132. height: math.unit(900000, "miles")
  28133. },
  28134. ]
  28135. ))
  28136. characterMakers.push(() => makeCharacter(
  28137. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28138. {
  28139. front: {
  28140. height: math.unit(12, "feet"),
  28141. weight: math.unit(1, "ton"),
  28142. capacity: math.unit(660000, "gallons"),
  28143. name: "Front",
  28144. image: {
  28145. source: "./media/characters/zeus/front.svg",
  28146. extra: 5005 / 4717,
  28147. bottom: 363 / 5388
  28148. }
  28149. },
  28150. },
  28151. [
  28152. {
  28153. name: "Normal",
  28154. height: math.unit(12, "feet")
  28155. },
  28156. {
  28157. name: "Preferred Size",
  28158. height: math.unit(0.5, "miles"),
  28159. default: true
  28160. },
  28161. {
  28162. name: "Giga Horse",
  28163. height: math.unit(300, "miles")
  28164. },
  28165. {
  28166. name: "Riding Planets",
  28167. height: math.unit(30, "megameters")
  28168. },
  28169. {
  28170. name: "Cosmic Giant",
  28171. height: math.unit(3, "zettameters")
  28172. },
  28173. {
  28174. name: "Breeding God",
  28175. height: math.unit(9.92e22, "yottameters")
  28176. },
  28177. ]
  28178. ))
  28179. characterMakers.push(() => makeCharacter(
  28180. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28181. {
  28182. side: {
  28183. height: math.unit(9, "feet"),
  28184. weight: math.unit(1500, "kg"),
  28185. name: "Side",
  28186. image: {
  28187. source: "./media/characters/fang/side.svg",
  28188. extra: 924 / 866,
  28189. bottom: 47.5 / 972.3
  28190. }
  28191. },
  28192. },
  28193. [
  28194. {
  28195. name: "Normal",
  28196. height: math.unit(9, "feet"),
  28197. default: true
  28198. },
  28199. {
  28200. name: "Macro",
  28201. height: math.unit(75 + 6 / 12, "feet")
  28202. },
  28203. {
  28204. name: "Teramacro",
  28205. height: math.unit(50000, "miles")
  28206. },
  28207. ]
  28208. ))
  28209. characterMakers.push(() => makeCharacter(
  28210. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28211. {
  28212. front: {
  28213. height: math.unit(10, "feet"),
  28214. weight: math.unit(2, "tons"),
  28215. name: "Front",
  28216. image: {
  28217. source: "./media/characters/rekhit/front.svg",
  28218. extra: 2796 / 2590,
  28219. bottom: 225 / 3022
  28220. }
  28221. },
  28222. },
  28223. [
  28224. {
  28225. name: "Normal",
  28226. height: math.unit(10, "feet"),
  28227. default: true
  28228. },
  28229. {
  28230. name: "Macro",
  28231. height: math.unit(500, "feet")
  28232. },
  28233. ]
  28234. ))
  28235. characterMakers.push(() => makeCharacter(
  28236. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28237. {
  28238. front: {
  28239. height: math.unit(7 + 6.451 / 12, "feet"),
  28240. weight: math.unit(310, "lb"),
  28241. name: "Front",
  28242. image: {
  28243. source: "./media/characters/dahlia-verrick/front.svg",
  28244. extra: 1488 / 1365,
  28245. bottom: 6.2 / 1495
  28246. }
  28247. },
  28248. back: {
  28249. height: math.unit(7 + 6.451 / 12, "feet"),
  28250. weight: math.unit(310, "lb"),
  28251. name: "Back",
  28252. image: {
  28253. source: "./media/characters/dahlia-verrick/back.svg",
  28254. extra: 1472 / 1351,
  28255. bottom: 5.28 / 1477
  28256. }
  28257. },
  28258. frontBusiness: {
  28259. height: math.unit(7 + 6.451 / 12, "feet"),
  28260. weight: math.unit(200, "lb"),
  28261. name: "Front (Business)",
  28262. image: {
  28263. source: "./media/characters/dahlia-verrick/front-business.svg",
  28264. extra: 1478 / 1381,
  28265. bottom: 5.5 / 1484
  28266. }
  28267. },
  28268. frontCasual: {
  28269. height: math.unit(7 + 6.451 / 12, "feet"),
  28270. weight: math.unit(200, "lb"),
  28271. name: "Front (Casual)",
  28272. image: {
  28273. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28274. extra: 1478 / 1381,
  28275. bottom: 5.5 / 1484
  28276. }
  28277. },
  28278. },
  28279. [
  28280. {
  28281. name: "Travel-Sized",
  28282. height: math.unit(7.45, "inches")
  28283. },
  28284. {
  28285. name: "Normal",
  28286. height: math.unit(7 + 6.451 / 12, "feet"),
  28287. default: true
  28288. },
  28289. {
  28290. name: "Hitting the Town",
  28291. height: math.unit(37 + 8 / 12, "feet")
  28292. },
  28293. {
  28294. name: "Stomp in the Suburbs",
  28295. height: math.unit(964 + 9.728 / 12, "feet")
  28296. },
  28297. {
  28298. name: "Sit on the City",
  28299. height: math.unit(61747 + 10.592 / 12, "feet")
  28300. },
  28301. {
  28302. name: "Glomp the Globe",
  28303. height: math.unit(252919327 + 4.832 / 12, "feet")
  28304. },
  28305. ]
  28306. ))
  28307. characterMakers.push(() => makeCharacter(
  28308. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28309. {
  28310. front: {
  28311. height: math.unit(6 + 4 / 12, "feet"),
  28312. weight: math.unit(320, "lb"),
  28313. name: "Front",
  28314. image: {
  28315. source: "./media/characters/balina-mahigan/front.svg",
  28316. extra: 447 / 428,
  28317. bottom: 18 / 466
  28318. }
  28319. },
  28320. back: {
  28321. height: math.unit(6 + 4 / 12, "feet"),
  28322. weight: math.unit(320, "lb"),
  28323. name: "Back",
  28324. image: {
  28325. source: "./media/characters/balina-mahigan/back.svg",
  28326. extra: 445 / 428,
  28327. bottom: 4.07 / 448
  28328. }
  28329. },
  28330. arm: {
  28331. height: math.unit(1.88, "feet"),
  28332. name: "Arm",
  28333. image: {
  28334. source: "./media/characters/balina-mahigan/arm.svg"
  28335. }
  28336. },
  28337. backPort: {
  28338. height: math.unit(0.685, "feet"),
  28339. name: "Back Port",
  28340. image: {
  28341. source: "./media/characters/balina-mahigan/back-port.svg"
  28342. }
  28343. },
  28344. hoofpaw: {
  28345. height: math.unit(1.41, "feet"),
  28346. name: "Hoofpaw",
  28347. image: {
  28348. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28349. }
  28350. },
  28351. leftHandBack: {
  28352. height: math.unit(0.938, "feet"),
  28353. name: "Left Hand (Back)",
  28354. image: {
  28355. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28356. }
  28357. },
  28358. leftHandFront: {
  28359. height: math.unit(0.938, "feet"),
  28360. name: "Left Hand (Front)",
  28361. image: {
  28362. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28363. }
  28364. },
  28365. rightHandBack: {
  28366. height: math.unit(0.95, "feet"),
  28367. name: "Right Hand (Back)",
  28368. image: {
  28369. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28370. }
  28371. },
  28372. rightHandFront: {
  28373. height: math.unit(0.95, "feet"),
  28374. name: "Right Hand (Front)",
  28375. image: {
  28376. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28377. }
  28378. },
  28379. },
  28380. [
  28381. {
  28382. name: "Normal",
  28383. height: math.unit(6 + 4 / 12, "feet"),
  28384. default: true
  28385. },
  28386. ]
  28387. ))
  28388. characterMakers.push(() => makeCharacter(
  28389. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28390. {
  28391. front: {
  28392. height: math.unit(6, "feet"),
  28393. weight: math.unit(320, "lb"),
  28394. name: "Front",
  28395. image: {
  28396. source: "./media/characters/balina-mejeri/front.svg",
  28397. extra: 517 / 488,
  28398. bottom: 44.2 / 561
  28399. }
  28400. },
  28401. },
  28402. [
  28403. {
  28404. name: "Normal",
  28405. height: math.unit(6 + 4 / 12, "feet")
  28406. },
  28407. {
  28408. name: "Business",
  28409. height: math.unit(155, "feet"),
  28410. default: true
  28411. },
  28412. ]
  28413. ))
  28414. characterMakers.push(() => makeCharacter(
  28415. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28416. {
  28417. kneeling: {
  28418. height: math.unit(6 + 4 / 12, "feet"),
  28419. weight: math.unit(300 * 20, "lb"),
  28420. name: "Kneeling",
  28421. image: {
  28422. source: "./media/characters/balbarian/kneeling.svg",
  28423. extra: 922 / 862,
  28424. bottom: 42.4 / 965
  28425. }
  28426. },
  28427. },
  28428. [
  28429. {
  28430. name: "Normal",
  28431. height: math.unit(6 + 4 / 12, "feet")
  28432. },
  28433. {
  28434. name: "Treasured",
  28435. height: math.unit(18 + 9 / 12, "feet"),
  28436. default: true
  28437. },
  28438. {
  28439. name: "Macro",
  28440. height: math.unit(900, "feet")
  28441. },
  28442. ]
  28443. ))
  28444. characterMakers.push(() => makeCharacter(
  28445. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28446. {
  28447. front: {
  28448. height: math.unit(6 + 4 / 12, "feet"),
  28449. weight: math.unit(325, "lb"),
  28450. name: "Front",
  28451. image: {
  28452. source: "./media/characters/balina-amarini/front.svg",
  28453. extra: 415 / 403,
  28454. bottom: 19 / 433.4
  28455. }
  28456. },
  28457. back: {
  28458. height: math.unit(6 + 4 / 12, "feet"),
  28459. weight: math.unit(325, "lb"),
  28460. name: "Back",
  28461. image: {
  28462. source: "./media/characters/balina-amarini/back.svg",
  28463. extra: 415 / 403,
  28464. bottom: 13.5 / 432
  28465. }
  28466. },
  28467. overdrive: {
  28468. height: math.unit(6 + 4 / 12, "feet"),
  28469. weight: math.unit(400, "lb"),
  28470. name: "Overdrive",
  28471. image: {
  28472. source: "./media/characters/balina-amarini/overdrive.svg",
  28473. extra: 269 / 259,
  28474. bottom: 12 / 282
  28475. }
  28476. },
  28477. },
  28478. [
  28479. {
  28480. name: "Boom",
  28481. height: math.unit(9 + 10 / 12, "feet"),
  28482. default: true
  28483. },
  28484. {
  28485. name: "Macro",
  28486. height: math.unit(280, "feet")
  28487. },
  28488. ]
  28489. ))
  28490. characterMakers.push(() => makeCharacter(
  28491. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28492. {
  28493. goddess: {
  28494. height: math.unit(600, "feet"),
  28495. weight: math.unit(2000000, "tons"),
  28496. name: "Goddess",
  28497. image: {
  28498. source: "./media/characters/lady-kubwa/goddess.svg",
  28499. extra: 1240.5 / 1223,
  28500. bottom: 22 / 1263
  28501. }
  28502. },
  28503. goddesser: {
  28504. height: math.unit(900, "feet"),
  28505. weight: math.unit(20000000, "lb"),
  28506. name: "Goddess-er",
  28507. image: {
  28508. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28509. extra: 899 / 888,
  28510. bottom: 12.6 / 912
  28511. }
  28512. },
  28513. },
  28514. [
  28515. {
  28516. name: "Macro",
  28517. height: math.unit(600, "feet"),
  28518. default: true
  28519. },
  28520. {
  28521. name: "Megamacro",
  28522. height: math.unit(250, "miles")
  28523. },
  28524. ]
  28525. ))
  28526. characterMakers.push(() => makeCharacter(
  28527. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28528. {
  28529. front: {
  28530. height: math.unit(7 + 7 / 12, "feet"),
  28531. weight: math.unit(250, "lb"),
  28532. name: "Front",
  28533. image: {
  28534. source: "./media/characters/tala-grovehorn/front.svg",
  28535. extra: 2636 / 2525,
  28536. bottom: 147 / 2781
  28537. }
  28538. },
  28539. back: {
  28540. height: math.unit(7 + 7 / 12, "feet"),
  28541. weight: math.unit(250, "lb"),
  28542. name: "Back",
  28543. image: {
  28544. source: "./media/characters/tala-grovehorn/back.svg",
  28545. extra: 2635 / 2539,
  28546. bottom: 100 / 2732.8
  28547. }
  28548. },
  28549. mouth: {
  28550. height: math.unit(1.15, "feet"),
  28551. name: "Mouth",
  28552. image: {
  28553. source: "./media/characters/tala-grovehorn/mouth.svg"
  28554. }
  28555. },
  28556. dick: {
  28557. height: math.unit(2.36, "feet"),
  28558. name: "Dick",
  28559. image: {
  28560. source: "./media/characters/tala-grovehorn/dick.svg"
  28561. }
  28562. },
  28563. slit: {
  28564. height: math.unit(0.61, "feet"),
  28565. name: "Slit",
  28566. image: {
  28567. source: "./media/characters/tala-grovehorn/slit.svg"
  28568. }
  28569. },
  28570. },
  28571. [
  28572. ]
  28573. ))
  28574. characterMakers.push(() => makeCharacter(
  28575. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28576. {
  28577. front: {
  28578. height: math.unit(7 + 7 / 12, "feet"),
  28579. weight: math.unit(225, "lb"),
  28580. name: "Front",
  28581. image: {
  28582. source: "./media/characters/epona/front.svg",
  28583. extra: 2445 / 2290,
  28584. bottom: 251 / 2696
  28585. }
  28586. },
  28587. back: {
  28588. height: math.unit(7 + 7 / 12, "feet"),
  28589. weight: math.unit(225, "lb"),
  28590. name: "Back",
  28591. image: {
  28592. source: "./media/characters/epona/back.svg",
  28593. extra: 2546 / 2408,
  28594. bottom: 44 / 2589
  28595. }
  28596. },
  28597. genitals: {
  28598. height: math.unit(1.5, "feet"),
  28599. name: "Genitals",
  28600. image: {
  28601. source: "./media/characters/epona/genitals.svg"
  28602. }
  28603. },
  28604. },
  28605. [
  28606. {
  28607. name: "Normal",
  28608. height: math.unit(7 + 7 / 12, "feet"),
  28609. default: true
  28610. },
  28611. ]
  28612. ))
  28613. characterMakers.push(() => makeCharacter(
  28614. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28615. {
  28616. front: {
  28617. height: math.unit(7, "feet"),
  28618. weight: math.unit(518, "lb"),
  28619. name: "Front",
  28620. image: {
  28621. source: "./media/characters/avia-bloodbourn/front.svg",
  28622. extra: 1466 / 1350,
  28623. bottom: 65 / 1527
  28624. }
  28625. },
  28626. },
  28627. [
  28628. ]
  28629. ))
  28630. characterMakers.push(() => makeCharacter(
  28631. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28632. {
  28633. front: {
  28634. height: math.unit(9.35, "feet"),
  28635. weight: math.unit(600, "lb"),
  28636. name: "Front",
  28637. image: {
  28638. source: "./media/characters/amera/front.svg",
  28639. extra: 891 / 818,
  28640. bottom: 30 / 922.7
  28641. }
  28642. },
  28643. back: {
  28644. height: math.unit(9.35, "feet"),
  28645. weight: math.unit(600, "lb"),
  28646. name: "Back",
  28647. image: {
  28648. source: "./media/characters/amera/back.svg",
  28649. extra: 876 / 824,
  28650. bottom: 6.8 / 884
  28651. }
  28652. },
  28653. dick: {
  28654. height: math.unit(2.14, "feet"),
  28655. name: "Dick",
  28656. image: {
  28657. source: "./media/characters/amera/dick.svg"
  28658. }
  28659. },
  28660. },
  28661. [
  28662. {
  28663. name: "Normal",
  28664. height: math.unit(9.35, "feet"),
  28665. default: true
  28666. },
  28667. ]
  28668. ))
  28669. characterMakers.push(() => makeCharacter(
  28670. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28671. {
  28672. kneeling: {
  28673. height: math.unit(3 + 4 / 12, "feet"),
  28674. weight: math.unit(90, "lb"),
  28675. name: "Kneeling",
  28676. image: {
  28677. source: "./media/characters/rosewen/kneeling.svg",
  28678. extra: 1835 / 1571,
  28679. bottom: 27.7 / 1862
  28680. }
  28681. },
  28682. },
  28683. [
  28684. {
  28685. name: "Normal",
  28686. height: math.unit(3 + 4 / 12, "feet"),
  28687. default: true
  28688. },
  28689. ]
  28690. ))
  28691. characterMakers.push(() => makeCharacter(
  28692. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28693. {
  28694. front: {
  28695. height: math.unit(5 + 10 / 12, "feet"),
  28696. weight: math.unit(200, "lb"),
  28697. name: "Front",
  28698. image: {
  28699. source: "./media/characters/sabah/front.svg",
  28700. extra: 849 / 763,
  28701. bottom: 33.9 / 881
  28702. }
  28703. },
  28704. },
  28705. [
  28706. {
  28707. name: "Normal",
  28708. height: math.unit(5 + 10 / 12, "feet"),
  28709. default: true
  28710. },
  28711. ]
  28712. ))
  28713. characterMakers.push(() => makeCharacter(
  28714. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28715. {
  28716. front: {
  28717. height: math.unit(3 + 5 / 12, "feet"),
  28718. weight: math.unit(40, "kg"),
  28719. name: "Front",
  28720. image: {
  28721. source: "./media/characters/purple-flame/front.svg",
  28722. extra: 1577 / 1412,
  28723. bottom: 97 / 1694
  28724. }
  28725. },
  28726. frontDressed: {
  28727. height: math.unit(3 + 5 / 12, "feet"),
  28728. weight: math.unit(40, "kg"),
  28729. name: "Front (Dressed)",
  28730. image: {
  28731. source: "./media/characters/purple-flame/front-dressed.svg",
  28732. extra: 1577 / 1412,
  28733. bottom: 97 / 1694
  28734. }
  28735. },
  28736. headphones: {
  28737. height: math.unit(0.85, "feet"),
  28738. name: "Headphones",
  28739. image: {
  28740. source: "./media/characters/purple-flame/headphones.svg"
  28741. }
  28742. },
  28743. },
  28744. [
  28745. {
  28746. name: "Really Small",
  28747. height: math.unit(5, "cm")
  28748. },
  28749. {
  28750. name: "Micro",
  28751. height: math.unit(1 + 5 / 12, "feet")
  28752. },
  28753. {
  28754. name: "Normal",
  28755. height: math.unit(3 + 5 / 12, "feet"),
  28756. default: true
  28757. },
  28758. {
  28759. name: "Minimacro",
  28760. height: math.unit(125, "feet")
  28761. },
  28762. {
  28763. name: "Macro",
  28764. height: math.unit(0.5, "miles")
  28765. },
  28766. {
  28767. name: "Megamacro",
  28768. height: math.unit(50, "miles")
  28769. },
  28770. {
  28771. name: "Gigantic",
  28772. height: math.unit(750, "miles")
  28773. },
  28774. {
  28775. name: "Planetary",
  28776. height: math.unit(15000, "miles")
  28777. },
  28778. ]
  28779. ))
  28780. characterMakers.push(() => makeCharacter(
  28781. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28782. {
  28783. front: {
  28784. height: math.unit(14, "feet"),
  28785. weight: math.unit(959, "lb"),
  28786. name: "Front",
  28787. image: {
  28788. source: "./media/characters/arsenal/front.svg",
  28789. extra: 2357 / 2157,
  28790. bottom: 93 / 2458
  28791. }
  28792. },
  28793. },
  28794. [
  28795. {
  28796. name: "Normal",
  28797. height: math.unit(14, "feet"),
  28798. default: true
  28799. },
  28800. ]
  28801. ))
  28802. characterMakers.push(() => makeCharacter(
  28803. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28804. {
  28805. front: {
  28806. height: math.unit(6, "feet"),
  28807. weight: math.unit(150, "lb"),
  28808. name: "Front",
  28809. image: {
  28810. source: "./media/characters/adira/front.svg",
  28811. extra: 1078 / 1029,
  28812. bottom: 87 / 1166
  28813. }
  28814. },
  28815. },
  28816. [
  28817. {
  28818. name: "Micro",
  28819. height: math.unit(4, "inches"),
  28820. default: true
  28821. },
  28822. {
  28823. name: "Macro",
  28824. height: math.unit(50, "feet")
  28825. },
  28826. ]
  28827. ))
  28828. characterMakers.push(() => makeCharacter(
  28829. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28830. {
  28831. front: {
  28832. height: math.unit(16, "feet"),
  28833. weight: math.unit(1000, "lb"),
  28834. name: "Front",
  28835. image: {
  28836. source: "./media/characters/grim/front.svg",
  28837. extra: 622 / 614,
  28838. bottom: 18.1 / 642
  28839. }
  28840. },
  28841. back: {
  28842. height: math.unit(16, "feet"),
  28843. weight: math.unit(1000, "lb"),
  28844. name: "Back",
  28845. image: {
  28846. source: "./media/characters/grim/back.svg",
  28847. extra: 610.6 / 602,
  28848. bottom: 40.8 / 652
  28849. }
  28850. },
  28851. hunched: {
  28852. height: math.unit(9.75, "feet"),
  28853. weight: math.unit(1000, "lb"),
  28854. name: "Hunched",
  28855. image: {
  28856. source: "./media/characters/grim/hunched.svg",
  28857. extra: 304 / 297,
  28858. bottom: 35.4 / 394
  28859. }
  28860. },
  28861. },
  28862. [
  28863. {
  28864. name: "Normal",
  28865. height: math.unit(16, "feet"),
  28866. default: true
  28867. },
  28868. ]
  28869. ))
  28870. characterMakers.push(() => makeCharacter(
  28871. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28872. {
  28873. front: {
  28874. height: math.unit(2.3, "meters"),
  28875. weight: math.unit(300, "lb"),
  28876. name: "Front",
  28877. image: {
  28878. source: "./media/characters/sinja/front-sfw.svg",
  28879. extra: 1393 / 1294,
  28880. bottom: 70 / 1463
  28881. }
  28882. },
  28883. frontNsfw: {
  28884. height: math.unit(2.3, "meters"),
  28885. weight: math.unit(300, "lb"),
  28886. name: "Front (NSFW)",
  28887. image: {
  28888. source: "./media/characters/sinja/front-nsfw.svg",
  28889. extra: 1393 / 1294,
  28890. bottom: 70 / 1463
  28891. }
  28892. },
  28893. back: {
  28894. height: math.unit(2.3, "meters"),
  28895. weight: math.unit(300, "lb"),
  28896. name: "Back",
  28897. image: {
  28898. source: "./media/characters/sinja/back.svg",
  28899. extra: 1393 / 1294,
  28900. bottom: 70 / 1463
  28901. }
  28902. },
  28903. head: {
  28904. height: math.unit(1.771, "feet"),
  28905. name: "Head",
  28906. image: {
  28907. source: "./media/characters/sinja/head.svg"
  28908. }
  28909. },
  28910. slit: {
  28911. height: math.unit(0.8, "feet"),
  28912. name: "Slit",
  28913. image: {
  28914. source: "./media/characters/sinja/slit.svg"
  28915. }
  28916. },
  28917. },
  28918. [
  28919. {
  28920. name: "Normal",
  28921. height: math.unit(2.3, "meters")
  28922. },
  28923. {
  28924. name: "Macro",
  28925. height: math.unit(91, "meters"),
  28926. default: true
  28927. },
  28928. {
  28929. name: "Megamacro",
  28930. height: math.unit(91440, "meters")
  28931. },
  28932. {
  28933. name: "Gigamacro",
  28934. height: math.unit(60960000, "meters")
  28935. },
  28936. {
  28937. name: "Teramacro",
  28938. height: math.unit(9144000000, "meters")
  28939. },
  28940. ]
  28941. ))
  28942. characterMakers.push(() => makeCharacter(
  28943. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28944. {
  28945. front: {
  28946. height: math.unit(1.7, "meters"),
  28947. weight: math.unit(130, "lb"),
  28948. name: "Front",
  28949. image: {
  28950. source: "./media/characters/kyu/front.svg",
  28951. extra: 415 / 395,
  28952. bottom: 5 / 420
  28953. }
  28954. },
  28955. head: {
  28956. height: math.unit(1.75, "feet"),
  28957. name: "Head",
  28958. image: {
  28959. source: "./media/characters/kyu/head.svg"
  28960. }
  28961. },
  28962. foot: {
  28963. height: math.unit(0.81, "feet"),
  28964. name: "Foot",
  28965. image: {
  28966. source: "./media/characters/kyu/foot.svg"
  28967. }
  28968. },
  28969. },
  28970. [
  28971. {
  28972. name: "Normal",
  28973. height: math.unit(1.7, "meters")
  28974. },
  28975. {
  28976. name: "Macro",
  28977. height: math.unit(131, "feet"),
  28978. default: true
  28979. },
  28980. {
  28981. name: "Megamacro",
  28982. height: math.unit(91440, "meters")
  28983. },
  28984. {
  28985. name: "Gigamacro",
  28986. height: math.unit(60960000, "meters")
  28987. },
  28988. {
  28989. name: "Teramacro",
  28990. height: math.unit(9144000000, "meters")
  28991. },
  28992. ]
  28993. ))
  28994. characterMakers.push(() => makeCharacter(
  28995. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28996. {
  28997. front: {
  28998. height: math.unit(7 + 1 / 12, "feet"),
  28999. weight: math.unit(250, "lb"),
  29000. name: "Front",
  29001. image: {
  29002. source: "./media/characters/joey/front.svg",
  29003. extra: 1791 / 1537,
  29004. bottom: 28 / 1816
  29005. }
  29006. },
  29007. },
  29008. [
  29009. {
  29010. name: "Micro",
  29011. height: math.unit(3, "inches")
  29012. },
  29013. {
  29014. name: "Normal",
  29015. height: math.unit(7 + 1 / 12, "feet"),
  29016. default: true
  29017. },
  29018. ]
  29019. ))
  29020. characterMakers.push(() => makeCharacter(
  29021. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29022. {
  29023. front: {
  29024. height: math.unit(165, "cm"),
  29025. weight: math.unit(140, "lb"),
  29026. name: "Front",
  29027. image: {
  29028. source: "./media/characters/sam-evans/front.svg",
  29029. extra: 3417 / 3230,
  29030. bottom: 41.3 / 3417
  29031. }
  29032. },
  29033. frontSixTails: {
  29034. height: math.unit(165, "cm"),
  29035. weight: math.unit(140, "lb"),
  29036. name: "Front-six-tails",
  29037. image: {
  29038. source: "./media/characters/sam-evans/front-six-tails.svg",
  29039. extra: 3417 / 3230,
  29040. bottom: 41.3 / 3417
  29041. }
  29042. },
  29043. back: {
  29044. height: math.unit(165, "cm"),
  29045. weight: math.unit(140, "lb"),
  29046. name: "Back",
  29047. image: {
  29048. source: "./media/characters/sam-evans/back.svg",
  29049. extra: 3227 / 3032,
  29050. bottom: 6.8 / 3234
  29051. }
  29052. },
  29053. face: {
  29054. height: math.unit(0.68, "feet"),
  29055. name: "Face",
  29056. image: {
  29057. source: "./media/characters/sam-evans/face.svg"
  29058. }
  29059. },
  29060. },
  29061. [
  29062. {
  29063. name: "Normal",
  29064. height: math.unit(165, "cm"),
  29065. default: true
  29066. },
  29067. {
  29068. name: "Macro",
  29069. height: math.unit(100, "meters")
  29070. },
  29071. {
  29072. name: "Macro+",
  29073. height: math.unit(800, "meters")
  29074. },
  29075. {
  29076. name: "Macro++",
  29077. height: math.unit(3, "km")
  29078. },
  29079. {
  29080. name: "Macro+++",
  29081. height: math.unit(30, "km")
  29082. },
  29083. ]
  29084. ))
  29085. characterMakers.push(() => makeCharacter(
  29086. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29087. {
  29088. front: {
  29089. height: math.unit(10, "feet"),
  29090. weight: math.unit(750, "lb"),
  29091. name: "Front",
  29092. image: {
  29093. source: "./media/characters/juliet-a/front.svg",
  29094. extra: 1766 / 1720,
  29095. bottom: 43 / 1809
  29096. }
  29097. },
  29098. back: {
  29099. height: math.unit(10, "feet"),
  29100. weight: math.unit(750, "lb"),
  29101. name: "Back",
  29102. image: {
  29103. source: "./media/characters/juliet-a/back.svg",
  29104. extra: 1781 / 1734,
  29105. bottom: 35 / 1810,
  29106. }
  29107. },
  29108. },
  29109. [
  29110. {
  29111. name: "Normal",
  29112. height: math.unit(10, "feet"),
  29113. default: true
  29114. },
  29115. {
  29116. name: "Dragon Form",
  29117. height: math.unit(250, "feet")
  29118. },
  29119. {
  29120. name: "Macro",
  29121. height: math.unit(1000, "feet")
  29122. },
  29123. {
  29124. name: "Megamacro",
  29125. height: math.unit(10000, "feet")
  29126. }
  29127. ]
  29128. ))
  29129. characterMakers.push(() => makeCharacter(
  29130. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29131. {
  29132. regular: {
  29133. height: math.unit(7 + 3 / 12, "feet"),
  29134. weight: math.unit(260, "lb"),
  29135. name: "Regular",
  29136. image: {
  29137. source: "./media/characters/wild/regular.svg",
  29138. extra: 97.45 / 92,
  29139. bottom: 6.8 / 104.3
  29140. }
  29141. },
  29142. biggums: {
  29143. height: math.unit(8 + 6 / 12, "feet"),
  29144. weight: math.unit(425, "lb"),
  29145. name: "Biggums",
  29146. image: {
  29147. source: "./media/characters/wild/biggums.svg",
  29148. extra: 97.45 / 92,
  29149. bottom: 7.5 / 132.34
  29150. }
  29151. },
  29152. mawRegular: {
  29153. height: math.unit(1.24, "feet"),
  29154. name: "Maw (Regular)",
  29155. image: {
  29156. source: "./media/characters/wild/maw.svg"
  29157. }
  29158. },
  29159. mawBiggums: {
  29160. height: math.unit(1.47, "feet"),
  29161. name: "Maw (Biggums)",
  29162. image: {
  29163. source: "./media/characters/wild/maw.svg"
  29164. }
  29165. },
  29166. },
  29167. [
  29168. {
  29169. name: "Normal",
  29170. height: math.unit(7 + 3 / 12, "feet"),
  29171. default: true
  29172. },
  29173. ]
  29174. ))
  29175. characterMakers.push(() => makeCharacter(
  29176. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29177. {
  29178. front: {
  29179. height: math.unit(2.5, "meters"),
  29180. weight: math.unit(200, "kg"),
  29181. name: "Front",
  29182. image: {
  29183. source: "./media/characters/vidar/front.svg",
  29184. extra: 2994 / 2795,
  29185. bottom: 56 / 3061
  29186. }
  29187. },
  29188. back: {
  29189. height: math.unit(2.5, "meters"),
  29190. weight: math.unit(200, "kg"),
  29191. name: "Back",
  29192. image: {
  29193. source: "./media/characters/vidar/back.svg",
  29194. extra: 3131 / 2928,
  29195. bottom: 13.5 / 3141.5
  29196. }
  29197. },
  29198. feral: {
  29199. height: math.unit(2.5, "meters"),
  29200. weight: math.unit(2000, "kg"),
  29201. name: "Feral",
  29202. image: {
  29203. source: "./media/characters/vidar/feral.svg",
  29204. extra: 2790 / 1765,
  29205. bottom: 6 / 2796
  29206. }
  29207. },
  29208. },
  29209. [
  29210. {
  29211. name: "Normal",
  29212. height: math.unit(2.5, "meters"),
  29213. default: true
  29214. },
  29215. {
  29216. name: "Macro",
  29217. height: math.unit(100, "meters")
  29218. },
  29219. ]
  29220. ))
  29221. characterMakers.push(() => makeCharacter(
  29222. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29223. {
  29224. front: {
  29225. height: math.unit(5 + 9 / 12, "feet"),
  29226. weight: math.unit(120, "lb"),
  29227. name: "Front",
  29228. image: {
  29229. source: "./media/characters/ash/front.svg",
  29230. extra: 2189 / 1961,
  29231. bottom: 5.2 / 2194
  29232. }
  29233. },
  29234. },
  29235. [
  29236. {
  29237. name: "Normal",
  29238. height: math.unit(5 + 9 / 12, "feet"),
  29239. default: true
  29240. },
  29241. ]
  29242. ))
  29243. characterMakers.push(() => makeCharacter(
  29244. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29245. {
  29246. front: {
  29247. height: math.unit(9, "feet"),
  29248. weight: math.unit(10000, "lb"),
  29249. name: "Front",
  29250. image: {
  29251. source: "./media/characters/gygabite/front.svg",
  29252. bottom: 31.7 / 537.8,
  29253. extra: 505 / 370
  29254. }
  29255. },
  29256. },
  29257. [
  29258. {
  29259. name: "Normal",
  29260. height: math.unit(9, "feet"),
  29261. default: true
  29262. },
  29263. ]
  29264. ))
  29265. characterMakers.push(() => makeCharacter(
  29266. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29267. {
  29268. front: {
  29269. height: math.unit(12, "feet"),
  29270. weight: math.unit(4000, "lb"),
  29271. name: "Front",
  29272. image: {
  29273. source: "./media/characters/p0tat0/front.svg",
  29274. extra: 1065 / 921,
  29275. bottom: 55.7 / 1121.25
  29276. }
  29277. },
  29278. },
  29279. [
  29280. {
  29281. name: "Normal",
  29282. height: math.unit(12, "feet"),
  29283. default: true
  29284. },
  29285. ]
  29286. ))
  29287. characterMakers.push(() => makeCharacter(
  29288. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29289. {
  29290. side: {
  29291. height: math.unit(6.5, "feet"),
  29292. weight: math.unit(800, "lb"),
  29293. name: "Side",
  29294. image: {
  29295. source: "./media/characters/dusk/side.svg",
  29296. extra: 615 / 373,
  29297. bottom: 53 / 664
  29298. }
  29299. },
  29300. sitting: {
  29301. height: math.unit(7, "feet"),
  29302. weight: math.unit(800, "lb"),
  29303. name: "Sitting",
  29304. image: {
  29305. source: "./media/characters/dusk/sitting.svg",
  29306. extra: 753 / 425,
  29307. bottom: 33 / 774
  29308. }
  29309. },
  29310. head: {
  29311. height: math.unit(6.1, "feet"),
  29312. name: "Head",
  29313. image: {
  29314. source: "./media/characters/dusk/head.svg"
  29315. }
  29316. },
  29317. },
  29318. [
  29319. {
  29320. name: "Normal",
  29321. height: math.unit(7, "feet"),
  29322. default: true
  29323. },
  29324. ]
  29325. ))
  29326. characterMakers.push(() => makeCharacter(
  29327. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29328. {
  29329. front: {
  29330. height: math.unit(15, "feet"),
  29331. weight: math.unit(7000, "lb"),
  29332. name: "Front",
  29333. image: {
  29334. source: "./media/characters/jay-direwolf/front.svg",
  29335. extra: 1810 / 1732,
  29336. bottom: 66 / 1892
  29337. }
  29338. },
  29339. },
  29340. [
  29341. {
  29342. name: "Normal",
  29343. height: math.unit(15, "feet"),
  29344. default: true
  29345. },
  29346. ]
  29347. ))
  29348. characterMakers.push(() => makeCharacter(
  29349. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29350. {
  29351. front: {
  29352. height: math.unit(4 + 9 / 12, "feet"),
  29353. weight: math.unit(130, "lb"),
  29354. name: "Front",
  29355. image: {
  29356. source: "./media/characters/anchovie/front.svg",
  29357. extra: 382 / 350,
  29358. bottom: 25 / 409
  29359. }
  29360. },
  29361. back: {
  29362. height: math.unit(4 + 9 / 12, "feet"),
  29363. weight: math.unit(130, "lb"),
  29364. name: "Back",
  29365. image: {
  29366. source: "./media/characters/anchovie/back.svg",
  29367. extra: 385 / 352,
  29368. bottom: 16.6 / 402
  29369. }
  29370. },
  29371. frontDressed: {
  29372. height: math.unit(4 + 9 / 12, "feet"),
  29373. weight: math.unit(130, "lb"),
  29374. name: "Front (Dressed)",
  29375. image: {
  29376. source: "./media/characters/anchovie/front-dressed.svg",
  29377. extra: 382 / 350,
  29378. bottom: 25 / 409
  29379. }
  29380. },
  29381. backDressed: {
  29382. height: math.unit(4 + 9 / 12, "feet"),
  29383. weight: math.unit(130, "lb"),
  29384. name: "Back (Dressed)",
  29385. image: {
  29386. source: "./media/characters/anchovie/back-dressed.svg",
  29387. extra: 385 / 352,
  29388. bottom: 16.6 / 402
  29389. }
  29390. },
  29391. },
  29392. [
  29393. {
  29394. name: "Micro",
  29395. height: math.unit(6.4, "inches")
  29396. },
  29397. {
  29398. name: "Normal",
  29399. height: math.unit(4 + 9 / 12, "feet"),
  29400. default: true
  29401. },
  29402. ]
  29403. ))
  29404. characterMakers.push(() => makeCharacter(
  29405. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29406. {
  29407. front: {
  29408. height: math.unit(2, "meters"),
  29409. weight: math.unit(180, "lb"),
  29410. name: "Front",
  29411. image: {
  29412. source: "./media/characters/acidrenamon/front.svg",
  29413. extra: 987 / 890,
  29414. bottom: 22.8 / 1009
  29415. }
  29416. },
  29417. back: {
  29418. height: math.unit(2, "meters"),
  29419. weight: math.unit(180, "lb"),
  29420. name: "Back",
  29421. image: {
  29422. source: "./media/characters/acidrenamon/back.svg",
  29423. extra: 983 / 891,
  29424. bottom: 8.4 / 992
  29425. }
  29426. },
  29427. head: {
  29428. height: math.unit(1.92, "feet"),
  29429. name: "Head",
  29430. image: {
  29431. source: "./media/characters/acidrenamon/head.svg"
  29432. }
  29433. },
  29434. rump: {
  29435. height: math.unit(1.72, "feet"),
  29436. name: "Rump",
  29437. image: {
  29438. source: "./media/characters/acidrenamon/rump.svg"
  29439. }
  29440. },
  29441. tail: {
  29442. height: math.unit(4.2, "feet"),
  29443. name: "Tail",
  29444. image: {
  29445. source: "./media/characters/acidrenamon/tail.svg"
  29446. }
  29447. },
  29448. },
  29449. [
  29450. {
  29451. name: "Normal",
  29452. height: math.unit(2, "meters"),
  29453. default: true
  29454. },
  29455. {
  29456. name: "Minimacro",
  29457. height: math.unit(7, "meters")
  29458. },
  29459. {
  29460. name: "Macro",
  29461. height: math.unit(200, "meters")
  29462. },
  29463. {
  29464. name: "Gigamacro",
  29465. height: math.unit(0.2, "earths")
  29466. },
  29467. ]
  29468. ))
  29469. characterMakers.push(() => makeCharacter(
  29470. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29471. {
  29472. front: {
  29473. height: math.unit(152, "feet"),
  29474. name: "Front",
  29475. image: {
  29476. source: "./media/characters/kenzie-lee/front.svg",
  29477. extra: 1869/1774,
  29478. bottom: 128/1997
  29479. }
  29480. },
  29481. side: {
  29482. height: math.unit(86, "feet"),
  29483. name: "Side",
  29484. image: {
  29485. source: "./media/characters/kenzie-lee/side.svg",
  29486. extra: 930/815,
  29487. bottom: 177/1107
  29488. }
  29489. },
  29490. paw: {
  29491. height: math.unit(15, "feet"),
  29492. name: "Paw",
  29493. image: {
  29494. source: "./media/characters/kenzie-lee/paw.svg"
  29495. }
  29496. },
  29497. },
  29498. [
  29499. {
  29500. name: "Kenzie Flea",
  29501. height: math.unit(2, "mm"),
  29502. default: true
  29503. },
  29504. {
  29505. name: "Micro",
  29506. height: math.unit(2, "inches")
  29507. },
  29508. {
  29509. name: "Normal",
  29510. height: math.unit(152, "feet")
  29511. },
  29512. {
  29513. name: "Megamacro",
  29514. height: math.unit(7, "miles")
  29515. },
  29516. {
  29517. name: "Gigamacro",
  29518. height: math.unit(8000, "miles")
  29519. },
  29520. ]
  29521. ))
  29522. characterMakers.push(() => makeCharacter(
  29523. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29524. {
  29525. front: {
  29526. height: math.unit(6, "feet"),
  29527. name: "Front",
  29528. image: {
  29529. source: "./media/characters/withers/front.svg",
  29530. extra: 1935/1760,
  29531. bottom: 72/2007
  29532. }
  29533. },
  29534. back: {
  29535. height: math.unit(6, "feet"),
  29536. name: "Back",
  29537. image: {
  29538. source: "./media/characters/withers/back.svg",
  29539. extra: 1944/1792,
  29540. bottom: 12/1956
  29541. }
  29542. },
  29543. dressed: {
  29544. height: math.unit(6, "feet"),
  29545. name: "Dressed",
  29546. image: {
  29547. source: "./media/characters/withers/dressed.svg",
  29548. extra: 1937/1765,
  29549. bottom: 73/2010
  29550. }
  29551. },
  29552. phase1: {
  29553. height: math.unit(1.1, "feet"),
  29554. name: "Phase 1",
  29555. image: {
  29556. source: "./media/characters/withers/phase-1.svg",
  29557. extra: 1885/1232,
  29558. bottom: 0/1885
  29559. }
  29560. },
  29561. phase2: {
  29562. height: math.unit(1.05, "feet"),
  29563. name: "Phase 2",
  29564. image: {
  29565. source: "./media/characters/withers/phase-2.svg",
  29566. extra: 1792/1090,
  29567. bottom: 0/1792
  29568. }
  29569. },
  29570. partyWipe: {
  29571. height: math.unit(1.1, "feet"),
  29572. name: "Party Wipe",
  29573. image: {
  29574. source: "./media/characters/withers/party-wipe.svg",
  29575. extra: 1864/1207,
  29576. bottom: 0/1864
  29577. }
  29578. },
  29579. },
  29580. [
  29581. {
  29582. name: "Macro",
  29583. height: math.unit(167, "feet"),
  29584. default: true
  29585. },
  29586. {
  29587. name: "Megamacro",
  29588. height: math.unit(15, "miles")
  29589. }
  29590. ]
  29591. ))
  29592. characterMakers.push(() => makeCharacter(
  29593. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29594. {
  29595. front: {
  29596. height: math.unit(6 + 7 / 12, "feet"),
  29597. weight: math.unit(250, "lb"),
  29598. name: "Front",
  29599. image: {
  29600. source: "./media/characters/nemoskii/front.svg",
  29601. extra: 2270 / 1734,
  29602. bottom: 86 / 2354
  29603. }
  29604. },
  29605. back: {
  29606. height: math.unit(6 + 7 / 12, "feet"),
  29607. weight: math.unit(250, "lb"),
  29608. name: "Back",
  29609. image: {
  29610. source: "./media/characters/nemoskii/back.svg",
  29611. extra: 1845 / 1788,
  29612. bottom: 10.5 / 1852
  29613. }
  29614. },
  29615. head: {
  29616. height: math.unit(1.31, "feet"),
  29617. name: "Head",
  29618. image: {
  29619. source: "./media/characters/nemoskii/head.svg"
  29620. }
  29621. },
  29622. },
  29623. [
  29624. {
  29625. name: "Micro",
  29626. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29627. },
  29628. {
  29629. name: "Normal",
  29630. height: math.unit(6 + 7 / 12, "feet"),
  29631. default: true
  29632. },
  29633. {
  29634. name: "Macro",
  29635. height: math.unit((6 + 7 / 12) * 150, "feet")
  29636. },
  29637. {
  29638. name: "Macro+",
  29639. height: math.unit((6 + 7 / 12) * 500, "feet")
  29640. },
  29641. {
  29642. name: "Megamacro",
  29643. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29644. },
  29645. ]
  29646. ))
  29647. characterMakers.push(() => makeCharacter(
  29648. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29649. {
  29650. front: {
  29651. height: math.unit(1, "mile"),
  29652. weight: math.unit(265261.9, "lb"),
  29653. name: "Front",
  29654. image: {
  29655. source: "./media/characters/shui/front.svg",
  29656. extra: 1633 / 1564,
  29657. bottom: 91.5 / 1726
  29658. }
  29659. },
  29660. },
  29661. [
  29662. {
  29663. name: "Macro",
  29664. height: math.unit(1, "mile"),
  29665. default: true
  29666. },
  29667. ]
  29668. ))
  29669. characterMakers.push(() => makeCharacter(
  29670. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29671. {
  29672. front: {
  29673. height: math.unit(12 + 6 / 12, "feet"),
  29674. weight: math.unit(1342, "lb"),
  29675. name: "Front",
  29676. image: {
  29677. source: "./media/characters/arokh-takakura/front.svg",
  29678. extra: 1089 / 1043,
  29679. bottom: 77.4 / 1176.7
  29680. }
  29681. },
  29682. back: {
  29683. height: math.unit(12 + 6 / 12, "feet"),
  29684. weight: math.unit(1342, "lb"),
  29685. name: "Back",
  29686. image: {
  29687. source: "./media/characters/arokh-takakura/back.svg",
  29688. extra: 1046 / 1019,
  29689. bottom: 102 / 1150
  29690. }
  29691. },
  29692. },
  29693. [
  29694. {
  29695. name: "Big",
  29696. height: math.unit(12 + 6 / 12, "feet"),
  29697. default: true
  29698. },
  29699. ]
  29700. ))
  29701. characterMakers.push(() => makeCharacter(
  29702. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29703. {
  29704. front: {
  29705. height: math.unit(5 + 6 / 12, "feet"),
  29706. weight: math.unit(150, "lb"),
  29707. name: "Front",
  29708. image: {
  29709. source: "./media/characters/theo/front.svg",
  29710. extra: 1184 / 1131,
  29711. bottom: 7.4 / 1191
  29712. }
  29713. },
  29714. },
  29715. [
  29716. {
  29717. name: "Micro",
  29718. height: math.unit(5, "inches")
  29719. },
  29720. {
  29721. name: "Normal",
  29722. height: math.unit(5 + 6 / 12, "feet"),
  29723. default: true
  29724. },
  29725. ]
  29726. ))
  29727. characterMakers.push(() => makeCharacter(
  29728. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29729. {
  29730. front: {
  29731. height: math.unit(5 + 9 / 12, "feet"),
  29732. weight: math.unit(130, "lb"),
  29733. name: "Front",
  29734. image: {
  29735. source: "./media/characters/cecelia-swift/front.svg",
  29736. extra: 502 / 484,
  29737. bottom: 23 / 523
  29738. }
  29739. },
  29740. back: {
  29741. height: math.unit(5 + 9 / 12, "feet"),
  29742. weight: math.unit(130, "lb"),
  29743. name: "Back",
  29744. image: {
  29745. source: "./media/characters/cecelia-swift/back.svg",
  29746. extra: 499 / 485,
  29747. bottom: 12 / 511
  29748. }
  29749. },
  29750. head: {
  29751. height: math.unit(0.90, "feet"),
  29752. name: "Head",
  29753. image: {
  29754. source: "./media/characters/cecelia-swift/head.svg"
  29755. }
  29756. },
  29757. rump: {
  29758. height: math.unit(1.75, "feet"),
  29759. name: "Rump",
  29760. image: {
  29761. source: "./media/characters/cecelia-swift/rump.svg"
  29762. }
  29763. },
  29764. },
  29765. [
  29766. {
  29767. name: "Normal",
  29768. height: math.unit(5 + 9 / 12, "feet"),
  29769. default: true
  29770. },
  29771. {
  29772. name: "Big",
  29773. height: math.unit(50, "feet")
  29774. },
  29775. {
  29776. name: "Macro",
  29777. height: math.unit(100, "feet")
  29778. },
  29779. {
  29780. name: "Macro+",
  29781. height: math.unit(500, "feet")
  29782. },
  29783. {
  29784. name: "Macro++",
  29785. height: math.unit(1000, "feet")
  29786. },
  29787. ]
  29788. ))
  29789. characterMakers.push(() => makeCharacter(
  29790. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29791. {
  29792. front: {
  29793. height: math.unit(6, "feet"),
  29794. weight: math.unit(150, "lb"),
  29795. name: "Front",
  29796. image: {
  29797. source: "./media/characters/kaunan/front.svg",
  29798. extra: 2890 / 2523,
  29799. bottom: 49 / 2939
  29800. }
  29801. },
  29802. },
  29803. [
  29804. {
  29805. name: "Macro",
  29806. height: math.unit(150, "feet"),
  29807. default: true
  29808. },
  29809. ]
  29810. ))
  29811. characterMakers.push(() => makeCharacter(
  29812. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29813. {
  29814. dressed: {
  29815. height: math.unit(175, "cm"),
  29816. weight: math.unit(60, "kg"),
  29817. name: "Dressed",
  29818. image: {
  29819. source: "./media/characters/fei/dressed.svg",
  29820. extra: 1402/1278,
  29821. bottom: 27/1429
  29822. }
  29823. },
  29824. nude: {
  29825. height: math.unit(175, "cm"),
  29826. weight: math.unit(60, "kg"),
  29827. name: "Nude",
  29828. image: {
  29829. source: "./media/characters/fei/nude.svg",
  29830. extra: 1402/1278,
  29831. bottom: 27/1429
  29832. }
  29833. },
  29834. heels: {
  29835. height: math.unit(0.466, "feet"),
  29836. name: "Heels",
  29837. image: {
  29838. source: "./media/characters/fei/heels.svg",
  29839. extra: 156/152,
  29840. bottom: 28/184
  29841. }
  29842. },
  29843. },
  29844. [
  29845. {
  29846. name: "Mortal",
  29847. height: math.unit(175, "cm")
  29848. },
  29849. {
  29850. name: "Normal",
  29851. height: math.unit(3500, "m")
  29852. },
  29853. {
  29854. name: "Stroll",
  29855. height: math.unit(18.4, "km"),
  29856. default: true
  29857. },
  29858. {
  29859. name: "Showoff",
  29860. height: math.unit(175, "km")
  29861. },
  29862. ]
  29863. ))
  29864. characterMakers.push(() => makeCharacter(
  29865. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29866. {
  29867. front: {
  29868. height: math.unit(7, "feet"),
  29869. weight: math.unit(1000, "kg"),
  29870. name: "Front",
  29871. image: {
  29872. source: "./media/characters/edrax/front.svg",
  29873. extra: 2838 / 2550,
  29874. bottom: 130 / 2968
  29875. }
  29876. },
  29877. },
  29878. [
  29879. {
  29880. name: "Small",
  29881. height: math.unit(7, "feet")
  29882. },
  29883. {
  29884. name: "Normal",
  29885. height: math.unit(1500, "meters")
  29886. },
  29887. {
  29888. name: "Mega",
  29889. height: math.unit(12000000, "km"),
  29890. default: true
  29891. },
  29892. {
  29893. name: "Megamacro",
  29894. height: math.unit(10600000, "lightyears")
  29895. },
  29896. {
  29897. name: "Hypermacro",
  29898. height: math.unit(256, "yottameters")
  29899. },
  29900. ]
  29901. ))
  29902. characterMakers.push(() => makeCharacter(
  29903. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29904. {
  29905. front: {
  29906. height: math.unit(10, "feet"),
  29907. weight: math.unit(750, "lb"),
  29908. name: "Front",
  29909. image: {
  29910. source: "./media/characters/clove/front.svg",
  29911. extra: 1918/1751,
  29912. bottom: 52/1970
  29913. }
  29914. },
  29915. back: {
  29916. height: math.unit(10, "feet"),
  29917. weight: math.unit(750, "lb"),
  29918. name: "Back",
  29919. image: {
  29920. source: "./media/characters/clove/back.svg",
  29921. extra: 1912/1747,
  29922. bottom: 50/1962
  29923. }
  29924. },
  29925. },
  29926. [
  29927. {
  29928. name: "Normal",
  29929. height: math.unit(10, "feet"),
  29930. default: true
  29931. },
  29932. ]
  29933. ))
  29934. characterMakers.push(() => makeCharacter(
  29935. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29936. {
  29937. front: {
  29938. height: math.unit(4, "feet"),
  29939. weight: math.unit(50, "lb"),
  29940. name: "Front",
  29941. image: {
  29942. source: "./media/characters/alex-rabbit/front.svg",
  29943. extra: 507 / 458,
  29944. bottom: 18.5 / 527
  29945. }
  29946. },
  29947. back: {
  29948. height: math.unit(4, "feet"),
  29949. weight: math.unit(50, "lb"),
  29950. name: "Back",
  29951. image: {
  29952. source: "./media/characters/alex-rabbit/back.svg",
  29953. extra: 502 / 460,
  29954. bottom: 18.9 / 521
  29955. }
  29956. },
  29957. },
  29958. [
  29959. {
  29960. name: "Normal",
  29961. height: math.unit(4, "feet"),
  29962. default: true
  29963. },
  29964. ]
  29965. ))
  29966. characterMakers.push(() => makeCharacter(
  29967. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29968. {
  29969. front: {
  29970. height: math.unit(1 + 3 / 12, "feet"),
  29971. weight: math.unit(80, "lb"),
  29972. name: "Front",
  29973. image: {
  29974. source: "./media/characters/zander-rose/front.svg",
  29975. extra: 916 / 797,
  29976. bottom: 17 / 933
  29977. }
  29978. },
  29979. back: {
  29980. height: math.unit(1 + 3 / 12, "feet"),
  29981. weight: math.unit(80, "lb"),
  29982. name: "Back",
  29983. image: {
  29984. source: "./media/characters/zander-rose/back.svg",
  29985. extra: 903 / 779,
  29986. bottom: 31 / 934
  29987. }
  29988. },
  29989. },
  29990. [
  29991. {
  29992. name: "Normal",
  29993. height: math.unit(1 + 3 / 12, "feet"),
  29994. default: true
  29995. },
  29996. ]
  29997. ))
  29998. characterMakers.push(() => makeCharacter(
  29999. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30000. {
  30001. anthro: {
  30002. height: math.unit(6, "feet"),
  30003. weight: math.unit(150, "lb"),
  30004. name: "Anthro",
  30005. image: {
  30006. source: "./media/characters/razz/anthro.svg",
  30007. extra: 1437 / 1343,
  30008. bottom: 48 / 1485
  30009. }
  30010. },
  30011. feral: {
  30012. height: math.unit(6, "feet"),
  30013. weight: math.unit(150, "lb"),
  30014. name: "Feral",
  30015. image: {
  30016. source: "./media/characters/razz/feral.svg",
  30017. extra: 2569 / 1385,
  30018. bottom: 95 / 2664
  30019. }
  30020. },
  30021. },
  30022. [
  30023. {
  30024. name: "Normal",
  30025. height: math.unit(6, "feet"),
  30026. default: true
  30027. },
  30028. ]
  30029. ))
  30030. characterMakers.push(() => makeCharacter(
  30031. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30032. {
  30033. front: {
  30034. height: math.unit(9 + 4 / 12, "feet"),
  30035. weight: math.unit(500, "lb"),
  30036. name: "Front",
  30037. image: {
  30038. source: "./media/characters/morrigan/front.svg",
  30039. extra: 2707 / 2579,
  30040. bottom: 156 / 2863
  30041. }
  30042. },
  30043. },
  30044. [
  30045. {
  30046. name: "Normal",
  30047. height: math.unit(9 + 4 / 12, "feet"),
  30048. default: true
  30049. },
  30050. ]
  30051. ))
  30052. characterMakers.push(() => makeCharacter(
  30053. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30054. {
  30055. front: {
  30056. height: math.unit(5, "stories"),
  30057. weight: math.unit(4000, "lb"),
  30058. name: "Front",
  30059. image: {
  30060. source: "./media/characters/jenene/front.svg",
  30061. extra: 1780 / 1710,
  30062. bottom: 57 / 1837
  30063. }
  30064. },
  30065. },
  30066. [
  30067. {
  30068. name: "Normal",
  30069. height: math.unit(5, "stories"),
  30070. default: true
  30071. },
  30072. ]
  30073. ))
  30074. characterMakers.push(() => makeCharacter(
  30075. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30076. {
  30077. taurSfw: {
  30078. height: math.unit(10, "meters"),
  30079. weight: math.unit(17500, "kg"),
  30080. name: "Taur",
  30081. image: {
  30082. source: "./media/characters/faey/taur-sfw.svg",
  30083. extra: 1200 / 968,
  30084. bottom: 41 / 1241
  30085. }
  30086. },
  30087. chestmaw: {
  30088. height: math.unit(2.01, "meters"),
  30089. name: "Chestmaw",
  30090. image: {
  30091. source: "./media/characters/faey/chestmaw.svg"
  30092. }
  30093. },
  30094. foot: {
  30095. height: math.unit(2.43, "meters"),
  30096. name: "Foot",
  30097. image: {
  30098. source: "./media/characters/faey/foot.svg"
  30099. }
  30100. },
  30101. jaws: {
  30102. height: math.unit(1.66, "meters"),
  30103. name: "Jaws",
  30104. image: {
  30105. source: "./media/characters/faey/jaws.svg"
  30106. }
  30107. },
  30108. tongues: {
  30109. height: math.unit(2.01, "meters"),
  30110. name: "Tongues",
  30111. image: {
  30112. source: "./media/characters/faey/tongues.svg"
  30113. }
  30114. },
  30115. },
  30116. [
  30117. {
  30118. name: "Small",
  30119. height: math.unit(10, "meters"),
  30120. default: true
  30121. },
  30122. {
  30123. name: "Big",
  30124. height: math.unit(500000, "km")
  30125. },
  30126. ]
  30127. ))
  30128. characterMakers.push(() => makeCharacter(
  30129. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30130. {
  30131. front: {
  30132. height: math.unit(7, "feet"),
  30133. weight: math.unit(275, "lb"),
  30134. name: "Front",
  30135. image: {
  30136. source: "./media/characters/roku/front.svg",
  30137. extra: 903 / 878,
  30138. bottom: 37 / 940
  30139. }
  30140. },
  30141. },
  30142. [
  30143. {
  30144. name: "Normal",
  30145. height: math.unit(7, "feet"),
  30146. default: true
  30147. },
  30148. {
  30149. name: "Macro",
  30150. height: math.unit(500, "feet")
  30151. },
  30152. {
  30153. name: "Megamacro",
  30154. height: math.unit(200, "miles")
  30155. },
  30156. ]
  30157. ))
  30158. characterMakers.push(() => makeCharacter(
  30159. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30160. {
  30161. front: {
  30162. height: math.unit(6 + 2 / 12, "feet"),
  30163. weight: math.unit(150, "lb"),
  30164. name: "Front",
  30165. image: {
  30166. source: "./media/characters/lira/front.svg",
  30167. extra: 1727 / 1605,
  30168. bottom: 26 / 1753
  30169. }
  30170. },
  30171. back: {
  30172. height: math.unit(6 + 2 / 12, "feet"),
  30173. weight: math.unit(150, "lb"),
  30174. name: "Back",
  30175. image: {
  30176. source: "./media/characters/lira/back.svg",
  30177. extra: 1713/1621,
  30178. bottom: 20/1733
  30179. }
  30180. },
  30181. hand: {
  30182. height: math.unit(0.75, "feet"),
  30183. name: "Hand",
  30184. image: {
  30185. source: "./media/characters/lira/hand.svg"
  30186. }
  30187. },
  30188. maw: {
  30189. height: math.unit(0.65, "feet"),
  30190. name: "Maw",
  30191. image: {
  30192. source: "./media/characters/lira/maw.svg"
  30193. }
  30194. },
  30195. pawDigi: {
  30196. height: math.unit(1.6, "feet"),
  30197. name: "Paw Digi",
  30198. image: {
  30199. source: "./media/characters/lira/paw-digi.svg"
  30200. }
  30201. },
  30202. pawPlanti: {
  30203. height: math.unit(1.4, "feet"),
  30204. name: "Paw Planti",
  30205. image: {
  30206. source: "./media/characters/lira/paw-planti.svg"
  30207. }
  30208. },
  30209. },
  30210. [
  30211. {
  30212. name: "Normal",
  30213. height: math.unit(6 + 2 / 12, "feet"),
  30214. default: true
  30215. },
  30216. {
  30217. name: "Macro",
  30218. height: math.unit(100, "feet")
  30219. },
  30220. {
  30221. name: "Macro²",
  30222. height: math.unit(1600, "feet")
  30223. },
  30224. {
  30225. name: "Planetary",
  30226. height: math.unit(20, "earths")
  30227. },
  30228. ]
  30229. ))
  30230. characterMakers.push(() => makeCharacter(
  30231. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30232. {
  30233. front: {
  30234. height: math.unit(6, "feet"),
  30235. weight: math.unit(150, "lb"),
  30236. name: "Front",
  30237. image: {
  30238. source: "./media/characters/hadjet/front.svg",
  30239. extra: 1480 / 1346,
  30240. bottom: 26 / 1506
  30241. }
  30242. },
  30243. frontNsfw: {
  30244. height: math.unit(6, "feet"),
  30245. weight: math.unit(150, "lb"),
  30246. name: "Front (NSFW)",
  30247. image: {
  30248. source: "./media/characters/hadjet/front-nsfw.svg",
  30249. extra: 1440 / 1358,
  30250. bottom: 52 / 1492
  30251. }
  30252. },
  30253. },
  30254. [
  30255. {
  30256. name: "Macro",
  30257. height: math.unit(10, "stories"),
  30258. default: true
  30259. },
  30260. {
  30261. name: "Megamacro",
  30262. height: math.unit(1.5, "miles")
  30263. },
  30264. {
  30265. name: "Megamacro+",
  30266. height: math.unit(5, "miles")
  30267. },
  30268. ]
  30269. ))
  30270. characterMakers.push(() => makeCharacter(
  30271. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30272. {
  30273. side: {
  30274. height: math.unit(106, "feet"),
  30275. weight: math.unit(500, "tonnes"),
  30276. name: "Side",
  30277. image: {
  30278. source: "./media/characters/kodran/side.svg",
  30279. extra: 553 / 480,
  30280. bottom: 33 / 586
  30281. }
  30282. },
  30283. front: {
  30284. height: math.unit(132, "feet"),
  30285. weight: math.unit(500, "tonnes"),
  30286. name: "Front",
  30287. image: {
  30288. source: "./media/characters/kodran/front.svg",
  30289. extra: 667 / 643,
  30290. bottom: 42 / 709
  30291. }
  30292. },
  30293. flying: {
  30294. height: math.unit(350, "feet"),
  30295. weight: math.unit(500, "tonnes"),
  30296. name: "Flying",
  30297. image: {
  30298. source: "./media/characters/kodran/flying.svg"
  30299. }
  30300. },
  30301. foot: {
  30302. height: math.unit(33, "feet"),
  30303. name: "Foot",
  30304. image: {
  30305. source: "./media/characters/kodran/foot.svg"
  30306. }
  30307. },
  30308. footFront: {
  30309. height: math.unit(19, "feet"),
  30310. name: "Foot (Front)",
  30311. image: {
  30312. source: "./media/characters/kodran/foot-front.svg",
  30313. extra: 261 / 261,
  30314. bottom: 91 / 352
  30315. }
  30316. },
  30317. headFront: {
  30318. height: math.unit(53, "feet"),
  30319. name: "Head (Front)",
  30320. image: {
  30321. source: "./media/characters/kodran/head-front.svg"
  30322. }
  30323. },
  30324. headSide: {
  30325. height: math.unit(65, "feet"),
  30326. name: "Head (Side)",
  30327. image: {
  30328. source: "./media/characters/kodran/head-side.svg"
  30329. }
  30330. },
  30331. throat: {
  30332. height: math.unit(79, "feet"),
  30333. name: "Throat",
  30334. image: {
  30335. source: "./media/characters/kodran/throat.svg"
  30336. }
  30337. },
  30338. },
  30339. [
  30340. {
  30341. name: "Large",
  30342. height: math.unit(106, "feet"),
  30343. default: true
  30344. },
  30345. ]
  30346. ))
  30347. characterMakers.push(() => makeCharacter(
  30348. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30349. {
  30350. side: {
  30351. height: math.unit(11, "feet"),
  30352. weight: math.unit(150, "lb"),
  30353. name: "Side",
  30354. image: {
  30355. source: "./media/characters/pyxaron/side.svg",
  30356. extra: 305 / 195,
  30357. bottom: 17 / 322
  30358. }
  30359. },
  30360. },
  30361. [
  30362. {
  30363. name: "Normal",
  30364. height: math.unit(11, "feet"),
  30365. default: true
  30366. },
  30367. ]
  30368. ))
  30369. characterMakers.push(() => makeCharacter(
  30370. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30371. {
  30372. front: {
  30373. height: math.unit(6, "feet"),
  30374. weight: math.unit(150, "lb"),
  30375. name: "Front",
  30376. image: {
  30377. source: "./media/characters/meep/front.svg",
  30378. extra: 88 / 80,
  30379. bottom: 6 / 94
  30380. }
  30381. },
  30382. },
  30383. [
  30384. {
  30385. name: "Fun Sized",
  30386. height: math.unit(2, "inches"),
  30387. default: true
  30388. },
  30389. {
  30390. name: "Friend Sized",
  30391. height: math.unit(8, "inches")
  30392. },
  30393. ]
  30394. ))
  30395. characterMakers.push(() => makeCharacter(
  30396. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30397. {
  30398. front: {
  30399. height: math.unit(15, "feet"),
  30400. weight: math.unit(2500, "lb"),
  30401. name: "Front",
  30402. image: {
  30403. source: "./media/characters/holly-rabbit/front.svg",
  30404. extra: 1433 / 1233,
  30405. bottom: 125 / 1558
  30406. }
  30407. },
  30408. dick: {
  30409. height: math.unit(4.6, "feet"),
  30410. name: "Dick",
  30411. image: {
  30412. source: "./media/characters/holly-rabbit/dick.svg"
  30413. }
  30414. },
  30415. },
  30416. [
  30417. {
  30418. name: "Normal",
  30419. height: math.unit(15, "feet"),
  30420. default: true
  30421. },
  30422. {
  30423. name: "Macro",
  30424. height: math.unit(250, "feet")
  30425. },
  30426. {
  30427. name: "Macro+",
  30428. height: math.unit(2500, "feet")
  30429. },
  30430. ]
  30431. ))
  30432. characterMakers.push(() => makeCharacter(
  30433. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30434. {
  30435. front: {
  30436. height: math.unit(3.02, "meters"),
  30437. weight: math.unit(500, "kg"),
  30438. name: "Front",
  30439. image: {
  30440. source: "./media/characters/drena/front.svg",
  30441. extra: 282 / 243,
  30442. bottom: 8 / 290
  30443. }
  30444. },
  30445. side: {
  30446. height: math.unit(3.02, "meters"),
  30447. weight: math.unit(500, "kg"),
  30448. name: "Side",
  30449. image: {
  30450. source: "./media/characters/drena/side.svg",
  30451. extra: 280 / 245,
  30452. bottom: 10 / 290
  30453. }
  30454. },
  30455. back: {
  30456. height: math.unit(3.02, "meters"),
  30457. weight: math.unit(500, "kg"),
  30458. name: "Back",
  30459. image: {
  30460. source: "./media/characters/drena/back.svg",
  30461. extra: 278 / 243,
  30462. bottom: 2 / 280
  30463. }
  30464. },
  30465. foot: {
  30466. height: math.unit(0.75, "meters"),
  30467. name: "Foot",
  30468. image: {
  30469. source: "./media/characters/drena/foot.svg"
  30470. }
  30471. },
  30472. maw: {
  30473. height: math.unit(0.82, "meters"),
  30474. name: "Maw",
  30475. image: {
  30476. source: "./media/characters/drena/maw.svg"
  30477. }
  30478. },
  30479. eating: {
  30480. height: math.unit(0.75, "meters"),
  30481. name: "Eating",
  30482. image: {
  30483. source: "./media/characters/drena/eating.svg"
  30484. }
  30485. },
  30486. rump: {
  30487. height: math.unit(0.93, "meters"),
  30488. name: "Rump",
  30489. image: {
  30490. source: "./media/characters/drena/rump.svg"
  30491. }
  30492. },
  30493. },
  30494. [
  30495. {
  30496. name: "Normal",
  30497. height: math.unit(3.02, "meters"),
  30498. default: true
  30499. },
  30500. ]
  30501. ))
  30502. characterMakers.push(() => makeCharacter(
  30503. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30504. {
  30505. front: {
  30506. height: math.unit(6 + 4 / 12, "feet"),
  30507. weight: math.unit(250, "lb"),
  30508. name: "Front",
  30509. image: {
  30510. source: "./media/characters/remmyzilla/front.svg",
  30511. extra: 4033 / 3588,
  30512. bottom: 123 / 4156
  30513. }
  30514. },
  30515. back: {
  30516. height: math.unit(6 + 4 / 12, "feet"),
  30517. weight: math.unit(250, "lb"),
  30518. name: "Back",
  30519. image: {
  30520. source: "./media/characters/remmyzilla/back.svg",
  30521. extra: 2687 / 2555,
  30522. bottom: 48 / 2735
  30523. }
  30524. },
  30525. paw: {
  30526. height: math.unit(1.73, "feet"),
  30527. name: "Paw",
  30528. image: {
  30529. source: "./media/characters/remmyzilla/paw.svg"
  30530. },
  30531. extraAttributes: {
  30532. "toeSize": {
  30533. name: "Toe Size",
  30534. power: 2,
  30535. type: "area",
  30536. base: math.unit(0.0035, "m^2")
  30537. },
  30538. "padSize": {
  30539. name: "Pad Size",
  30540. power: 2,
  30541. type: "area",
  30542. base: math.unit(0.015, "m^2")
  30543. },
  30544. "pawsize": {
  30545. name: "Paw Size",
  30546. power: 2,
  30547. type: "area",
  30548. base: math.unit(0.072, "m^2")
  30549. },
  30550. }
  30551. },
  30552. maw: {
  30553. height: math.unit(1.73, "feet"),
  30554. name: "Maw",
  30555. image: {
  30556. source: "./media/characters/remmyzilla/maw.svg"
  30557. }
  30558. },
  30559. },
  30560. [
  30561. {
  30562. name: "Normal",
  30563. height: math.unit(6 + 4 / 12, "feet")
  30564. },
  30565. {
  30566. name: "Minimacro",
  30567. height: math.unit(12 + 8 / 12, "feet")
  30568. },
  30569. {
  30570. name: "Normal",
  30571. height: math.unit(640, "feet"),
  30572. default: true
  30573. },
  30574. {
  30575. name: "Megamacro",
  30576. height: math.unit(6400, "feet")
  30577. },
  30578. {
  30579. name: "Gigamacro",
  30580. height: math.unit(64000, "miles")
  30581. },
  30582. ]
  30583. ))
  30584. characterMakers.push(() => makeCharacter(
  30585. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30586. {
  30587. front: {
  30588. height: math.unit(2.5, "meters"),
  30589. weight: math.unit(300, "lb"),
  30590. name: "Front",
  30591. image: {
  30592. source: "./media/characters/lawrence/front.svg",
  30593. extra: 357 / 335,
  30594. bottom: 30 / 387
  30595. }
  30596. },
  30597. back: {
  30598. height: math.unit(2.5, "meters"),
  30599. weight: math.unit(300, "lb"),
  30600. name: "Back",
  30601. image: {
  30602. source: "./media/characters/lawrence/back.svg",
  30603. extra: 357 / 338,
  30604. bottom: 16 / 373
  30605. }
  30606. },
  30607. head: {
  30608. height: math.unit(0.9, "meter"),
  30609. name: "Head",
  30610. image: {
  30611. source: "./media/characters/lawrence/head.svg"
  30612. }
  30613. },
  30614. maw: {
  30615. height: math.unit(0.7, "meter"),
  30616. name: "Maw",
  30617. image: {
  30618. source: "./media/characters/lawrence/maw.svg"
  30619. }
  30620. },
  30621. footBottom: {
  30622. height: math.unit(0.5, "meter"),
  30623. name: "Foot (Bottom)",
  30624. image: {
  30625. source: "./media/characters/lawrence/foot-bottom.svg"
  30626. }
  30627. },
  30628. footTop: {
  30629. height: math.unit(0.5, "meter"),
  30630. name: "Foot (Top)",
  30631. image: {
  30632. source: "./media/characters/lawrence/foot-top.svg"
  30633. }
  30634. },
  30635. },
  30636. [
  30637. {
  30638. name: "Normal",
  30639. height: math.unit(2.5, "meters"),
  30640. default: true
  30641. },
  30642. {
  30643. name: "Macro",
  30644. height: math.unit(95, "meters")
  30645. },
  30646. {
  30647. name: "Megamacro",
  30648. height: math.unit(150, "km")
  30649. },
  30650. ]
  30651. ))
  30652. characterMakers.push(() => makeCharacter(
  30653. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30654. {
  30655. front: {
  30656. height: math.unit(4.2, "meters"),
  30657. name: "Front",
  30658. image: {
  30659. source: "./media/characters/sydney/front.svg",
  30660. extra: 1323 / 1277,
  30661. bottom: 111 / 1434
  30662. }
  30663. },
  30664. },
  30665. [
  30666. {
  30667. name: "Normal",
  30668. height: math.unit(4.2, "meters"),
  30669. default: true
  30670. },
  30671. ]
  30672. ))
  30673. characterMakers.push(() => makeCharacter(
  30674. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30675. {
  30676. back: {
  30677. height: math.unit(201, "feet"),
  30678. name: "Back",
  30679. image: {
  30680. source: "./media/characters/jessica/back.svg",
  30681. extra: 273 / 259,
  30682. bottom: 7 / 280
  30683. }
  30684. },
  30685. },
  30686. [
  30687. {
  30688. name: "Normal",
  30689. height: math.unit(201, "feet"),
  30690. default: true
  30691. },
  30692. {
  30693. name: "Megamacro",
  30694. height: math.unit(8, "miles")
  30695. },
  30696. ]
  30697. ))
  30698. characterMakers.push(() => makeCharacter(
  30699. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30700. {
  30701. side: {
  30702. height: math.unit(5.6, "m"),
  30703. weight: math.unit(8000, "kg"),
  30704. name: "Side",
  30705. image: {
  30706. source: "./media/characters/victoria/side.svg",
  30707. extra: 1542/1229,
  30708. bottom: 124/1666
  30709. }
  30710. },
  30711. maw: {
  30712. height: math.unit(7.14, "feet"),
  30713. name: "Maw",
  30714. image: {
  30715. source: "./media/characters/victoria/maw.svg"
  30716. }
  30717. },
  30718. },
  30719. [
  30720. {
  30721. name: "Normal",
  30722. height: math.unit(5.6, "m"),
  30723. default: true
  30724. },
  30725. ]
  30726. ))
  30727. characterMakers.push(() => makeCharacter(
  30728. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30729. {
  30730. front: {
  30731. height: math.unit(5 + 6 / 12, "feet"),
  30732. name: "Front",
  30733. image: {
  30734. source: "./media/characters/cat/front.svg",
  30735. extra: 1449/1295,
  30736. bottom: 34/1483
  30737. },
  30738. form: "cat",
  30739. default: true
  30740. },
  30741. back: {
  30742. height: math.unit(5 + 6 / 12, "feet"),
  30743. name: "Back",
  30744. image: {
  30745. source: "./media/characters/cat/back.svg",
  30746. extra: 1466/1301,
  30747. bottom: 19/1485
  30748. },
  30749. form: "cat"
  30750. },
  30751. taur: {
  30752. height: math.unit(7, "feet"),
  30753. name: "Taur",
  30754. image: {
  30755. source: "./media/characters/cat/taur.svg",
  30756. extra: 1389/1233,
  30757. bottom: 83/1472
  30758. },
  30759. form: "taur",
  30760. default: true
  30761. },
  30762. lucarioFront: {
  30763. height: math.unit(4, "feet"),
  30764. name: "Lucario (Front)",
  30765. image: {
  30766. source: "./media/characters/cat/lucario-front.svg",
  30767. extra: 1149/1019,
  30768. bottom: 84/1233
  30769. },
  30770. form: "lucario",
  30771. default: true
  30772. },
  30773. lucarioBack: {
  30774. height: math.unit(4, "feet"),
  30775. name: "Lucario (Back)",
  30776. image: {
  30777. source: "./media/characters/cat/lucario-back.svg",
  30778. extra: 1190/1059,
  30779. bottom: 33/1223
  30780. },
  30781. form: "lucario"
  30782. },
  30783. megaLucario: {
  30784. height: math.unit(4, "feet"),
  30785. name: "Mega Lucario",
  30786. image: {
  30787. source: "./media/characters/cat/mega-lucario.svg",
  30788. extra: 1515 / 1319,
  30789. bottom: 63 / 1578
  30790. },
  30791. form: "lucario"
  30792. },
  30793. nickit: {
  30794. height: math.unit(2, "feet"),
  30795. name: "Nickit",
  30796. image: {
  30797. source: "./media/characters/cat/nickit.svg",
  30798. extra: 1980 / 1585,
  30799. bottom: 102 / 2082
  30800. },
  30801. form: "nickit",
  30802. default: true
  30803. },
  30804. lopunnyFront: {
  30805. height: math.unit(5, "feet"),
  30806. name: "Lopunny (Front)",
  30807. image: {
  30808. source: "./media/characters/cat/lopunny-front.svg",
  30809. extra: 1782 / 1469,
  30810. bottom: 38 / 1820
  30811. },
  30812. form: "lopunny",
  30813. default: true
  30814. },
  30815. lopunnyBack: {
  30816. height: math.unit(5, "feet"),
  30817. name: "Lopunny (Back)",
  30818. image: {
  30819. source: "./media/characters/cat/lopunny-back.svg",
  30820. extra: 1660 / 1490,
  30821. bottom: 25 / 1685
  30822. },
  30823. form: "lopunny"
  30824. },
  30825. },
  30826. [
  30827. {
  30828. name: "Really small",
  30829. height: math.unit(1, "nm")
  30830. },
  30831. {
  30832. name: "Micro",
  30833. height: math.unit(5, "inches")
  30834. },
  30835. {
  30836. name: "Normal",
  30837. height: math.unit(5 + 6 / 12, "feet"),
  30838. default: true
  30839. },
  30840. {
  30841. name: "Macro",
  30842. height: math.unit(50, "feet")
  30843. },
  30844. {
  30845. name: "Macro+",
  30846. height: math.unit(150, "feet")
  30847. },
  30848. {
  30849. name: "Megamacro",
  30850. height: math.unit(100, "miles")
  30851. },
  30852. ]
  30853. ))
  30854. characterMakers.push(() => makeCharacter(
  30855. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30856. {
  30857. front: {
  30858. height: math.unit(63.4, "meters"),
  30859. weight: math.unit(3.28349e+6, "kilograms"),
  30860. name: "Front",
  30861. image: {
  30862. source: "./media/characters/kirina-violet/front.svg",
  30863. extra: 2812 / 2725,
  30864. bottom: 0 / 2812
  30865. }
  30866. },
  30867. back: {
  30868. height: math.unit(63.4, "meters"),
  30869. weight: math.unit(3.28349e+6, "kilograms"),
  30870. name: "Back",
  30871. image: {
  30872. source: "./media/characters/kirina-violet/back.svg",
  30873. extra: 2812 / 2725,
  30874. bottom: 0 / 2812
  30875. }
  30876. },
  30877. mouth: {
  30878. height: math.unit(4.35, "meters"),
  30879. name: "Mouth",
  30880. image: {
  30881. source: "./media/characters/kirina-violet/mouth.svg"
  30882. }
  30883. },
  30884. paw: {
  30885. height: math.unit(5.6, "meters"),
  30886. name: "Paw",
  30887. image: {
  30888. source: "./media/characters/kirina-violet/paw.svg"
  30889. }
  30890. },
  30891. tail: {
  30892. height: math.unit(18, "meters"),
  30893. name: "Tail",
  30894. image: {
  30895. source: "./media/characters/kirina-violet/tail.svg"
  30896. }
  30897. },
  30898. },
  30899. [
  30900. {
  30901. name: "Macro",
  30902. height: math.unit(63.4, "meters"),
  30903. default: true
  30904. },
  30905. ]
  30906. ))
  30907. characterMakers.push(() => makeCharacter(
  30908. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30909. {
  30910. front: {
  30911. height: math.unit(75, "feet"),
  30912. name: "Front",
  30913. image: {
  30914. source: "./media/characters/cat-gigachu/front.svg",
  30915. extra: 1239/1027,
  30916. bottom: 32/1271
  30917. }
  30918. },
  30919. back: {
  30920. height: math.unit(75, "feet"),
  30921. name: "Back",
  30922. image: {
  30923. source: "./media/characters/cat-gigachu/back.svg",
  30924. extra: 1229/1030,
  30925. bottom: 9/1238
  30926. }
  30927. },
  30928. },
  30929. [
  30930. {
  30931. name: "Dynamax",
  30932. height: math.unit(75, "feet"),
  30933. default: true
  30934. },
  30935. ]
  30936. ))
  30937. characterMakers.push(() => makeCharacter(
  30938. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30939. {
  30940. front: {
  30941. height: math.unit(6, "feet"),
  30942. weight: math.unit(150, "lb"),
  30943. name: "Front",
  30944. image: {
  30945. source: "./media/characters/sfaiyan/front.svg",
  30946. extra: 999 / 978,
  30947. bottom: 5 / 1004
  30948. }
  30949. },
  30950. },
  30951. [
  30952. {
  30953. name: "Normal",
  30954. height: math.unit(1.82, "meters")
  30955. },
  30956. {
  30957. name: "Giant",
  30958. height: math.unit(2.27, "km"),
  30959. default: true
  30960. },
  30961. ]
  30962. ))
  30963. characterMakers.push(() => makeCharacter(
  30964. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30965. {
  30966. front: {
  30967. height: math.unit(179, "cm"),
  30968. weight: math.unit(100, "kg"),
  30969. name: "Front",
  30970. image: {
  30971. source: "./media/characters/raunehkeli/front.svg",
  30972. extra: 1934 / 1926,
  30973. bottom: 0 / 1934
  30974. }
  30975. },
  30976. },
  30977. [
  30978. {
  30979. name: "Normal",
  30980. height: math.unit(179, "cm")
  30981. },
  30982. {
  30983. name: "Maximum",
  30984. height: math.unit(575, "meters"),
  30985. default: true
  30986. },
  30987. ]
  30988. ))
  30989. characterMakers.push(() => makeCharacter(
  30990. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30991. {
  30992. front: {
  30993. height: math.unit(6, "feet"),
  30994. weight: math.unit(150, "lb"),
  30995. name: "Front",
  30996. image: {
  30997. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30998. extra: 2625 / 2518,
  30999. bottom: 60 / 2685
  31000. }
  31001. },
  31002. },
  31003. [
  31004. {
  31005. name: "Normal",
  31006. height: math.unit(6 + 2 / 12, "feet")
  31007. },
  31008. {
  31009. name: "Macro",
  31010. height: math.unit(1180, "feet"),
  31011. default: true
  31012. },
  31013. ]
  31014. ))
  31015. characterMakers.push(() => makeCharacter(
  31016. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31017. {
  31018. front: {
  31019. height: math.unit(5 + 6 / 12, "feet"),
  31020. weight: math.unit(108, "lb"),
  31021. name: "Front",
  31022. image: {
  31023. source: "./media/characters/lilith-zott/front.svg",
  31024. extra: 2510 / 2238,
  31025. bottom: 100 / 2610
  31026. }
  31027. },
  31028. frontDressed: {
  31029. height: math.unit(5 + 6 / 12, "feet"),
  31030. weight: math.unit(108, "lb"),
  31031. name: "Front (Dressed)",
  31032. image: {
  31033. source: "./media/characters/lilith-zott/front-dressed.svg",
  31034. extra: 2510 / 2238,
  31035. bottom: 100 / 2610
  31036. }
  31037. },
  31038. },
  31039. [
  31040. {
  31041. name: "Normal",
  31042. height: math.unit(5 + 6 / 12, "feet")
  31043. },
  31044. {
  31045. name: "Macro",
  31046. height: math.unit(1030, "feet"),
  31047. default: true
  31048. },
  31049. ]
  31050. ))
  31051. characterMakers.push(() => makeCharacter(
  31052. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31053. {
  31054. front: {
  31055. height: math.unit(6, "feet"),
  31056. weight: math.unit(150, "lb"),
  31057. name: "Front",
  31058. image: {
  31059. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31060. extra: 2567 / 2435,
  31061. bottom: 39 / 2606
  31062. }
  31063. },
  31064. frontSuper: {
  31065. height: math.unit(6, "feet"),
  31066. name: "Front (Super)",
  31067. image: {
  31068. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31069. extra: 2567 / 2435,
  31070. bottom: 39 / 2606
  31071. }
  31072. },
  31073. },
  31074. [
  31075. {
  31076. name: "Normal",
  31077. height: math.unit(5 + 10 / 12, "feet")
  31078. },
  31079. {
  31080. name: "Macro",
  31081. height: math.unit(1100, "feet"),
  31082. default: true
  31083. },
  31084. ]
  31085. ))
  31086. characterMakers.push(() => makeCharacter(
  31087. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31088. {
  31089. front: {
  31090. height: math.unit(100, "miles"),
  31091. name: "Front",
  31092. image: {
  31093. source: "./media/characters/sona/front.svg",
  31094. extra: 2433 / 2201,
  31095. bottom: 53 / 2486
  31096. }
  31097. },
  31098. foot: {
  31099. height: math.unit(16.1, "miles"),
  31100. name: "Foot",
  31101. image: {
  31102. source: "./media/characters/sona/foot.svg"
  31103. }
  31104. },
  31105. },
  31106. [
  31107. {
  31108. name: "Macro",
  31109. height: math.unit(100, "miles"),
  31110. default: true
  31111. },
  31112. ]
  31113. ))
  31114. characterMakers.push(() => makeCharacter(
  31115. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31116. {
  31117. front: {
  31118. height: math.unit(6, "feet"),
  31119. weight: math.unit(150, "lb"),
  31120. name: "Front",
  31121. image: {
  31122. source: "./media/characters/bailey/front.svg",
  31123. extra: 1778 / 1724,
  31124. bottom: 30 / 1808
  31125. }
  31126. },
  31127. },
  31128. [
  31129. {
  31130. name: "Micro",
  31131. height: math.unit(4, "inches")
  31132. },
  31133. {
  31134. name: "Normal",
  31135. height: math.unit(5 + 5 / 12, "feet"),
  31136. default: true
  31137. },
  31138. {
  31139. name: "Macro",
  31140. height: math.unit(250, "feet")
  31141. },
  31142. {
  31143. name: "Megamacro",
  31144. height: math.unit(100, "miles")
  31145. },
  31146. ]
  31147. ))
  31148. characterMakers.push(() => makeCharacter(
  31149. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31150. {
  31151. front: {
  31152. height: math.unit(5 + 2 / 12, "feet"),
  31153. weight: math.unit(120, "lb"),
  31154. name: "Front",
  31155. image: {
  31156. source: "./media/characters/snaps/front.svg",
  31157. extra: 2370 / 2177,
  31158. bottom: 48 / 2418
  31159. }
  31160. },
  31161. back: {
  31162. height: math.unit(5 + 2 / 12, "feet"),
  31163. weight: math.unit(120, "lb"),
  31164. name: "Back",
  31165. image: {
  31166. source: "./media/characters/snaps/back.svg",
  31167. extra: 2408 / 2258,
  31168. bottom: 15 / 2423
  31169. }
  31170. },
  31171. },
  31172. [
  31173. {
  31174. name: "Micro",
  31175. height: math.unit(9, "inches")
  31176. },
  31177. {
  31178. name: "Normal",
  31179. height: math.unit(5 + 2 / 12, "feet"),
  31180. default: true
  31181. },
  31182. {
  31183. name: "Mini Macro",
  31184. height: math.unit(10, "feet")
  31185. },
  31186. ]
  31187. ))
  31188. characterMakers.push(() => makeCharacter(
  31189. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31190. {
  31191. front: {
  31192. height: math.unit(1.8, "meters"),
  31193. weight: math.unit(85, "kg"),
  31194. name: "Front",
  31195. image: {
  31196. source: "./media/characters/azteck/front.svg",
  31197. extra: 2815 / 2625,
  31198. bottom: 89 / 2904
  31199. }
  31200. },
  31201. back: {
  31202. height: math.unit(1.8, "meters"),
  31203. weight: math.unit(85, "kg"),
  31204. name: "Back",
  31205. image: {
  31206. source: "./media/characters/azteck/back.svg",
  31207. extra: 2856 / 2648,
  31208. bottom: 85 / 2941
  31209. }
  31210. },
  31211. frontDressed: {
  31212. height: math.unit(1.8, "meters"),
  31213. weight: math.unit(85, "kg"),
  31214. name: "Front (Dressed)",
  31215. image: {
  31216. source: "./media/characters/azteck/front-dressed.svg",
  31217. extra: 2147 / 2003,
  31218. bottom: 68 / 2215
  31219. }
  31220. },
  31221. head: {
  31222. height: math.unit(0.47, "meters"),
  31223. weight: math.unit(85, "kg"),
  31224. name: "Head",
  31225. image: {
  31226. source: "./media/characters/azteck/head.svg"
  31227. }
  31228. },
  31229. },
  31230. [
  31231. {
  31232. name: "Bite sized",
  31233. height: math.unit(16, "cm")
  31234. },
  31235. {
  31236. name: "Normal",
  31237. height: math.unit(1.8, "meters"),
  31238. default: true
  31239. },
  31240. ]
  31241. ))
  31242. characterMakers.push(() => makeCharacter(
  31243. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31244. {
  31245. front: {
  31246. height: math.unit(6, "feet"),
  31247. weight: math.unit(150, "lb"),
  31248. name: "Front",
  31249. image: {
  31250. source: "./media/characters/pidge/front.svg",
  31251. extra: 1936/1820,
  31252. bottom: 0/1936
  31253. }
  31254. },
  31255. back: {
  31256. height: math.unit(6, "feet"),
  31257. weight: math.unit(150, "lb"),
  31258. name: "Back",
  31259. image: {
  31260. source: "./media/characters/pidge/back.svg",
  31261. extra: 1938/1843,
  31262. bottom: 0/1938
  31263. }
  31264. },
  31265. casual: {
  31266. height: math.unit(6, "feet"),
  31267. weight: math.unit(150, "lb"),
  31268. name: "Casual",
  31269. image: {
  31270. source: "./media/characters/pidge/casual.svg",
  31271. extra: 1936/1820,
  31272. bottom: 0/1936
  31273. }
  31274. },
  31275. tech: {
  31276. height: math.unit(6, "feet"),
  31277. weight: math.unit(150, "lb"),
  31278. name: "Tech",
  31279. image: {
  31280. source: "./media/characters/pidge/tech.svg",
  31281. extra: 1802/1682,
  31282. bottom: 0/1802
  31283. }
  31284. },
  31285. head: {
  31286. height: math.unit(1.61, "feet"),
  31287. name: "Head",
  31288. image: {
  31289. source: "./media/characters/pidge/head.svg"
  31290. }
  31291. },
  31292. collar: {
  31293. height: math.unit(0.82, "feet"),
  31294. name: "Collar",
  31295. image: {
  31296. source: "./media/characters/pidge/collar.svg"
  31297. }
  31298. },
  31299. },
  31300. [
  31301. {
  31302. name: "Macro",
  31303. height: math.unit(2, "mile"),
  31304. default: true
  31305. },
  31306. {
  31307. name: "PUPPY",
  31308. height: math.unit(20, "miles")
  31309. },
  31310. ]
  31311. ))
  31312. characterMakers.push(() => makeCharacter(
  31313. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31314. {
  31315. front: {
  31316. height: math.unit(6, "feet"),
  31317. weight: math.unit(150, "lb"),
  31318. name: "Front",
  31319. image: {
  31320. source: "./media/characters/en/front.svg",
  31321. extra: 1697 / 1563,
  31322. bottom: 103 / 1800
  31323. }
  31324. },
  31325. back: {
  31326. height: math.unit(6, "feet"),
  31327. weight: math.unit(150, "lb"),
  31328. name: "Back",
  31329. image: {
  31330. source: "./media/characters/en/back.svg",
  31331. extra: 1700 / 1570,
  31332. bottom: 51 / 1751
  31333. }
  31334. },
  31335. frontDressed: {
  31336. height: math.unit(6, "feet"),
  31337. weight: math.unit(150, "lb"),
  31338. name: "Front (Dressed)",
  31339. image: {
  31340. source: "./media/characters/en/front-dressed.svg",
  31341. extra: 1697 / 1563,
  31342. bottom: 103 / 1800
  31343. }
  31344. },
  31345. backDressed: {
  31346. height: math.unit(6, "feet"),
  31347. weight: math.unit(150, "lb"),
  31348. name: "Back (Dressed)",
  31349. image: {
  31350. source: "./media/characters/en/back-dressed.svg",
  31351. extra: 1700 / 1570,
  31352. bottom: 51 / 1751
  31353. }
  31354. },
  31355. },
  31356. [
  31357. {
  31358. name: "Macro",
  31359. height: math.unit(210, "feet"),
  31360. default: true
  31361. },
  31362. ]
  31363. ))
  31364. characterMakers.push(() => makeCharacter(
  31365. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31366. {
  31367. front: {
  31368. height: math.unit(6, "feet"),
  31369. weight: math.unit(150, "lb"),
  31370. name: "Front",
  31371. image: {
  31372. source: "./media/characters/haze-orris/front.svg",
  31373. extra: 3975 / 3525,
  31374. bottom: 137 / 4112
  31375. }
  31376. },
  31377. },
  31378. [
  31379. {
  31380. name: "Micro",
  31381. height: math.unit(150, "mm"),
  31382. default: true
  31383. },
  31384. ]
  31385. ))
  31386. characterMakers.push(() => makeCharacter(
  31387. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31388. {
  31389. front: {
  31390. height: math.unit(6, "feet"),
  31391. weight: math.unit(150, "lb"),
  31392. name: "Front",
  31393. image: {
  31394. source: "./media/characters/casselene-yaro/front.svg",
  31395. extra: 4721 / 4541,
  31396. bottom: 82 / 4803
  31397. }
  31398. },
  31399. back: {
  31400. height: math.unit(6, "feet"),
  31401. weight: math.unit(150, "lb"),
  31402. name: "Back",
  31403. image: {
  31404. source: "./media/characters/casselene-yaro/back.svg",
  31405. extra: 4569 / 4377,
  31406. bottom: 69 / 4638
  31407. }
  31408. },
  31409. dressed: {
  31410. height: math.unit(6, "feet"),
  31411. weight: math.unit(150, "lb"),
  31412. name: "Dressed",
  31413. image: {
  31414. source: "./media/characters/casselene-yaro/dressed.svg",
  31415. extra: 4721 / 4541,
  31416. bottom: 82 / 4803
  31417. }
  31418. },
  31419. maw: {
  31420. height: math.unit(1, "feet"),
  31421. name: "Maw",
  31422. image: {
  31423. source: "./media/characters/casselene-yaro/maw.svg"
  31424. }
  31425. },
  31426. },
  31427. [
  31428. {
  31429. name: "Macro",
  31430. height: math.unit(190, "feet"),
  31431. default: true
  31432. },
  31433. ]
  31434. ))
  31435. characterMakers.push(() => makeCharacter(
  31436. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31437. {
  31438. front: {
  31439. height: math.unit(10, "feet"),
  31440. weight: math.unit(15015, "lb"),
  31441. name: "Front",
  31442. image: {
  31443. source: "./media/characters/platine/front.svg",
  31444. extra: 1741/1650,
  31445. bottom: 84/1825
  31446. }
  31447. },
  31448. side: {
  31449. height: math.unit(10, "feet"),
  31450. weight: math.unit(15015, "lb"),
  31451. name: "Side",
  31452. image: {
  31453. source: "./media/characters/platine/side.svg",
  31454. extra: 1790/1705,
  31455. bottom: 29/1819
  31456. }
  31457. },
  31458. },
  31459. [
  31460. {
  31461. name: "Normal",
  31462. height: math.unit(10, "feet"),
  31463. default: true
  31464. },
  31465. {
  31466. name: "Macro",
  31467. height: math.unit(100, "feet")
  31468. },
  31469. {
  31470. name: "Megamacro",
  31471. height: math.unit(1000, "feet")
  31472. },
  31473. ]
  31474. ))
  31475. characterMakers.push(() => makeCharacter(
  31476. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31477. {
  31478. front: {
  31479. height: math.unit(15 + 5 / 12, "feet"),
  31480. weight: math.unit(4600, "lb"),
  31481. name: "Front",
  31482. image: {
  31483. source: "./media/characters/neapolitan-ananassa/front.svg",
  31484. extra: 2903 / 2736,
  31485. bottom: 0 / 2903
  31486. }
  31487. },
  31488. side: {
  31489. height: math.unit(15 + 5 / 12, "feet"),
  31490. weight: math.unit(4600, "lb"),
  31491. name: "Side",
  31492. image: {
  31493. source: "./media/characters/neapolitan-ananassa/side.svg",
  31494. extra: 2925 / 2719,
  31495. bottom: 0 / 2925
  31496. }
  31497. },
  31498. back: {
  31499. height: math.unit(15 + 5 / 12, "feet"),
  31500. weight: math.unit(4600, "lb"),
  31501. name: "Back",
  31502. image: {
  31503. source: "./media/characters/neapolitan-ananassa/back.svg",
  31504. extra: 2903 / 2736,
  31505. bottom: 0 / 2903
  31506. }
  31507. },
  31508. },
  31509. [
  31510. {
  31511. name: "Normal",
  31512. height: math.unit(15 + 5 / 12, "feet"),
  31513. default: true
  31514. },
  31515. {
  31516. name: "Post-Millenium",
  31517. height: math.unit(35 + 5 / 12, "feet")
  31518. },
  31519. {
  31520. name: "Post-Era",
  31521. height: math.unit(450 + 5 / 12, "feet")
  31522. },
  31523. ]
  31524. ))
  31525. characterMakers.push(() => makeCharacter(
  31526. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31527. {
  31528. front: {
  31529. height: math.unit(300, "meters"),
  31530. weight: math.unit(125000, "tonnes"),
  31531. name: "Front",
  31532. image: {
  31533. source: "./media/characters/pazuzu/front.svg",
  31534. extra: 877 / 794,
  31535. bottom: 47 / 924
  31536. }
  31537. },
  31538. },
  31539. [
  31540. {
  31541. name: "Macro",
  31542. height: math.unit(300, "meters"),
  31543. default: true
  31544. },
  31545. ]
  31546. ))
  31547. characterMakers.push(() => makeCharacter(
  31548. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31549. {
  31550. side: {
  31551. height: math.unit(10 + 7 / 12, "feet"),
  31552. weight: math.unit(2.5, "tons"),
  31553. name: "Side",
  31554. image: {
  31555. source: "./media/characters/aasha/side.svg",
  31556. extra: 1345 / 1245,
  31557. bottom: 111 / 1456
  31558. }
  31559. },
  31560. back: {
  31561. height: math.unit(10 + 7 / 12, "feet"),
  31562. weight: math.unit(2.5, "tons"),
  31563. name: "Back",
  31564. image: {
  31565. source: "./media/characters/aasha/back.svg",
  31566. extra: 1133 / 1057,
  31567. bottom: 257 / 1390
  31568. }
  31569. },
  31570. },
  31571. [
  31572. {
  31573. name: "Normal",
  31574. height: math.unit(10 + 7 / 12, "feet"),
  31575. default: true
  31576. },
  31577. ]
  31578. ))
  31579. characterMakers.push(() => makeCharacter(
  31580. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31581. {
  31582. front: {
  31583. height: math.unit(6 + 3 / 12, "feet"),
  31584. name: "Front",
  31585. image: {
  31586. source: "./media/characters/nevan/front.svg",
  31587. extra: 704 / 704,
  31588. bottom: 28 / 732
  31589. }
  31590. },
  31591. back: {
  31592. height: math.unit(6 + 3 / 12, "feet"),
  31593. name: "Back",
  31594. image: {
  31595. source: "./media/characters/nevan/back.svg",
  31596. extra: 714 / 714,
  31597. bottom: 21 / 735
  31598. }
  31599. },
  31600. frontFlaccid: {
  31601. height: math.unit(6 + 3 / 12, "feet"),
  31602. name: "Front (Flaccid)",
  31603. image: {
  31604. source: "./media/characters/nevan/front-flaccid.svg",
  31605. extra: 704 / 704,
  31606. bottom: 28 / 732
  31607. }
  31608. },
  31609. frontErect: {
  31610. height: math.unit(6 + 3 / 12, "feet"),
  31611. name: "Front (Erect)",
  31612. image: {
  31613. source: "./media/characters/nevan/front-erect.svg",
  31614. extra: 704 / 704,
  31615. bottom: 28 / 732
  31616. }
  31617. },
  31618. backFlaccid: {
  31619. height: math.unit(6 + 3 / 12, "feet"),
  31620. name: "Back (Flaccid)",
  31621. image: {
  31622. source: "./media/characters/nevan/back-flaccid.svg",
  31623. extra: 714 / 714,
  31624. bottom: 21 / 735
  31625. }
  31626. },
  31627. },
  31628. [
  31629. {
  31630. name: "Normal",
  31631. height: math.unit(6 + 3 / 12, "feet"),
  31632. default: true
  31633. },
  31634. ]
  31635. ))
  31636. characterMakers.push(() => makeCharacter(
  31637. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31638. {
  31639. front: {
  31640. height: math.unit(4, "feet"),
  31641. name: "Front",
  31642. image: {
  31643. source: "./media/characters/arhan/front.svg",
  31644. extra: 3368 / 3133,
  31645. bottom: 0 / 3368
  31646. }
  31647. },
  31648. side: {
  31649. height: math.unit(4, "feet"),
  31650. name: "Side",
  31651. image: {
  31652. source: "./media/characters/arhan/side.svg",
  31653. extra: 3347 / 3105,
  31654. bottom: 0 / 3347
  31655. }
  31656. },
  31657. tongue: {
  31658. height: math.unit(1.42, "feet"),
  31659. name: "Tongue",
  31660. image: {
  31661. source: "./media/characters/arhan/tongue.svg"
  31662. }
  31663. },
  31664. head: {
  31665. height: math.unit(0.85, "feet"),
  31666. name: "Head",
  31667. image: {
  31668. source: "./media/characters/arhan/head.svg"
  31669. }
  31670. },
  31671. },
  31672. [
  31673. {
  31674. name: "Normal",
  31675. height: math.unit(4, "feet"),
  31676. default: true
  31677. },
  31678. ]
  31679. ))
  31680. characterMakers.push(() => makeCharacter(
  31681. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31682. {
  31683. front: {
  31684. height: math.unit(5 + 7.5 / 12, "feet"),
  31685. weight: math.unit(120, "lb"),
  31686. name: "Front",
  31687. image: {
  31688. source: "./media/characters/digi-duncan/front.svg",
  31689. extra: 330 / 326,
  31690. bottom: 16 / 346
  31691. }
  31692. },
  31693. side: {
  31694. height: math.unit(5 + 7.5 / 12, "feet"),
  31695. weight: math.unit(120, "lb"),
  31696. name: "Side",
  31697. image: {
  31698. source: "./media/characters/digi-duncan/side.svg",
  31699. extra: 341 / 337,
  31700. bottom: 1 / 342
  31701. }
  31702. },
  31703. back: {
  31704. height: math.unit(5 + 7.5 / 12, "feet"),
  31705. weight: math.unit(120, "lb"),
  31706. name: "Back",
  31707. image: {
  31708. source: "./media/characters/digi-duncan/back.svg",
  31709. extra: 330 / 326,
  31710. bottom: 12 / 342
  31711. }
  31712. },
  31713. },
  31714. [
  31715. {
  31716. name: "Speck",
  31717. height: math.unit(0.25, "mm")
  31718. },
  31719. {
  31720. name: "Micro",
  31721. height: math.unit(5, "mm")
  31722. },
  31723. {
  31724. name: "Tiny",
  31725. height: math.unit(0.5, "inches"),
  31726. default: true
  31727. },
  31728. {
  31729. name: "Human",
  31730. height: math.unit(5 + 7.5 / 12, "feet")
  31731. },
  31732. {
  31733. name: "Minigiant",
  31734. height: math.unit(8 + 5.25, "feet")
  31735. },
  31736. {
  31737. name: "Giant",
  31738. height: math.unit(2000, "feet")
  31739. },
  31740. {
  31741. name: "Mega",
  31742. height: math.unit(371.1, "miles")
  31743. },
  31744. ]
  31745. ))
  31746. characterMakers.push(() => makeCharacter(
  31747. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31748. {
  31749. front: {
  31750. height: math.unit(2, "meters"),
  31751. weight: math.unit(350, "kg"),
  31752. name: "Front",
  31753. image: {
  31754. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31755. extra: 898 / 838,
  31756. bottom: 9 / 907
  31757. }
  31758. },
  31759. },
  31760. [
  31761. {
  31762. name: "Micro",
  31763. height: math.unit(8, "meters")
  31764. },
  31765. {
  31766. name: "Normal",
  31767. height: math.unit(50, "meters"),
  31768. default: true
  31769. },
  31770. {
  31771. name: "Macro",
  31772. height: math.unit(500, "meters")
  31773. },
  31774. ]
  31775. ))
  31776. characterMakers.push(() => makeCharacter(
  31777. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31778. {
  31779. front: {
  31780. height: math.unit(6 + 6 / 12, "feet"),
  31781. name: "Front",
  31782. image: {
  31783. source: "./media/characters/khardesh/front.svg",
  31784. extra: 1788/1596,
  31785. bottom: 66/1854
  31786. }
  31787. },
  31788. back: {
  31789. height: math.unit(6 + 6 / 12, "feet"),
  31790. name: "Back",
  31791. image: {
  31792. source: "./media/characters/khardesh/back.svg",
  31793. extra: 1781/1584,
  31794. bottom: 68/1849
  31795. }
  31796. },
  31797. },
  31798. [
  31799. {
  31800. name: "Normal",
  31801. height: math.unit(6 + 6 / 12, "feet"),
  31802. default: true
  31803. },
  31804. {
  31805. name: "Normal+",
  31806. height: math.unit(4, "meters")
  31807. },
  31808. {
  31809. name: "Macro",
  31810. height: math.unit(50, "meters")
  31811. },
  31812. {
  31813. name: "Macro+",
  31814. height: math.unit(100, "meters")
  31815. },
  31816. {
  31817. name: "Megamacro",
  31818. height: math.unit(20, "km")
  31819. },
  31820. ]
  31821. ))
  31822. characterMakers.push(() => makeCharacter(
  31823. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31824. {
  31825. front: {
  31826. height: math.unit(6, "feet"),
  31827. weight: math.unit(150, "lb"),
  31828. name: "Front",
  31829. image: {
  31830. source: "./media/characters/kosho/front.svg",
  31831. extra: 1847 / 1847,
  31832. bottom: 86 / 1933
  31833. }
  31834. },
  31835. },
  31836. [
  31837. {
  31838. name: "Second-stage micro",
  31839. height: math.unit(0.5, "inches")
  31840. },
  31841. {
  31842. name: "First-stage micro",
  31843. height: math.unit(6, "inches")
  31844. },
  31845. {
  31846. name: "Normal",
  31847. height: math.unit(6, "feet"),
  31848. default: true
  31849. },
  31850. {
  31851. name: "First-stage macro",
  31852. height: math.unit(72, "feet")
  31853. },
  31854. {
  31855. name: "Second-stage macro",
  31856. height: math.unit(864, "feet")
  31857. },
  31858. ]
  31859. ))
  31860. characterMakers.push(() => makeCharacter(
  31861. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31862. {
  31863. normal: {
  31864. height: math.unit(4 + 6 / 12, "feet"),
  31865. name: "Normal",
  31866. image: {
  31867. source: "./media/characters/hydra/normal.svg",
  31868. extra: 2833 / 2634,
  31869. bottom: 68 / 2901
  31870. }
  31871. },
  31872. smol: {
  31873. height: math.unit(0.705, "inches"),
  31874. name: "Smol",
  31875. image: {
  31876. source: "./media/characters/hydra/smol.svg",
  31877. extra: 2715 / 2540,
  31878. bottom: 0 / 2715
  31879. }
  31880. },
  31881. },
  31882. [
  31883. {
  31884. name: "Normal",
  31885. height: math.unit(4 + 6 / 12, "feet"),
  31886. default: true
  31887. }
  31888. ]
  31889. ))
  31890. characterMakers.push(() => makeCharacter(
  31891. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31892. {
  31893. front: {
  31894. height: math.unit(0.6, "cm"),
  31895. name: "Front",
  31896. image: {
  31897. source: "./media/characters/daz/front.svg",
  31898. extra: 1682 / 1164,
  31899. bottom: 42 / 1724
  31900. }
  31901. },
  31902. },
  31903. [
  31904. {
  31905. name: "Normal",
  31906. height: math.unit(0.6, "cm"),
  31907. default: true
  31908. },
  31909. ]
  31910. ))
  31911. characterMakers.push(() => makeCharacter(
  31912. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31913. {
  31914. front: {
  31915. height: math.unit(6, "feet"),
  31916. weight: math.unit(235, "lb"),
  31917. name: "Front",
  31918. image: {
  31919. source: "./media/characters/theo-pangolin/front.svg",
  31920. extra: 1996 / 1969,
  31921. bottom: 115 / 2111
  31922. }
  31923. },
  31924. back: {
  31925. height: math.unit(6, "feet"),
  31926. weight: math.unit(235, "lb"),
  31927. name: "Back",
  31928. image: {
  31929. source: "./media/characters/theo-pangolin/back.svg",
  31930. extra: 1979 / 1979,
  31931. bottom: 40 / 2019
  31932. }
  31933. },
  31934. feral: {
  31935. height: math.unit(2, "feet"),
  31936. weight: math.unit(30, "lb"),
  31937. name: "Feral",
  31938. image: {
  31939. source: "./media/characters/theo-pangolin/feral.svg",
  31940. extra: 803 / 791,
  31941. bottom: 181 / 984
  31942. }
  31943. },
  31944. footFive: {
  31945. height: math.unit(1.43, "feet"),
  31946. name: "Foot (Five Toes)",
  31947. image: {
  31948. source: "./media/characters/theo-pangolin/foot-five.svg"
  31949. }
  31950. },
  31951. footFour: {
  31952. height: math.unit(1.43, "feet"),
  31953. name: "Foot (Four Toes)",
  31954. image: {
  31955. source: "./media/characters/theo-pangolin/foot-four.svg"
  31956. }
  31957. },
  31958. handFour: {
  31959. height: math.unit(0.81, "feet"),
  31960. name: "Hand (Four Fingers)",
  31961. image: {
  31962. source: "./media/characters/theo-pangolin/hand-four.svg"
  31963. }
  31964. },
  31965. handThree: {
  31966. height: math.unit(0.81, "feet"),
  31967. name: "Hand (Three Fingers)",
  31968. image: {
  31969. source: "./media/characters/theo-pangolin/hand-three.svg"
  31970. }
  31971. },
  31972. headFront: {
  31973. height: math.unit(1.37, "feet"),
  31974. name: "Head (Front)",
  31975. image: {
  31976. source: "./media/characters/theo-pangolin/head-front.svg"
  31977. }
  31978. },
  31979. headSide: {
  31980. height: math.unit(1.43, "feet"),
  31981. name: "Head (Side)",
  31982. image: {
  31983. source: "./media/characters/theo-pangolin/head-side.svg"
  31984. }
  31985. },
  31986. tongue: {
  31987. height: math.unit(2.29, "feet"),
  31988. name: "Tongue",
  31989. image: {
  31990. source: "./media/characters/theo-pangolin/tongue.svg"
  31991. }
  31992. },
  31993. },
  31994. [
  31995. {
  31996. name: "Normal",
  31997. height: math.unit(6, "feet")
  31998. },
  31999. {
  32000. name: "Macro",
  32001. height: math.unit(400, "feet"),
  32002. default: true
  32003. },
  32004. ]
  32005. ))
  32006. characterMakers.push(() => makeCharacter(
  32007. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32008. {
  32009. front: {
  32010. height: math.unit(6, "inches"),
  32011. weight: math.unit(0.036, "kg"),
  32012. name: "Front",
  32013. image: {
  32014. source: "./media/characters/renée/front.svg",
  32015. extra: 900 / 886,
  32016. bottom: 8 / 908
  32017. }
  32018. },
  32019. },
  32020. [
  32021. {
  32022. name: "Nano",
  32023. height: math.unit(1, "nm")
  32024. },
  32025. {
  32026. name: "Micro",
  32027. height: math.unit(1, "mm")
  32028. },
  32029. {
  32030. name: "Normal",
  32031. height: math.unit(6, "inches")
  32032. },
  32033. {
  32034. name: "Macro",
  32035. height: math.unit(2000, "feet"),
  32036. default: true
  32037. },
  32038. {
  32039. name: "Megamacro",
  32040. height: math.unit(2, "km")
  32041. },
  32042. {
  32043. name: "Gigamacro",
  32044. height: math.unit(2000, "km")
  32045. },
  32046. {
  32047. name: "Teramacro",
  32048. height: math.unit(250000, "km")
  32049. },
  32050. ]
  32051. ))
  32052. characterMakers.push(() => makeCharacter(
  32053. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32054. {
  32055. front: {
  32056. height: math.unit(4, "meters"),
  32057. weight: math.unit(150, "kg"),
  32058. name: "Front",
  32059. image: {
  32060. source: "./media/characters/caledvwlch/front.svg",
  32061. extra: 1757/1537,
  32062. bottom: 31/1788
  32063. }
  32064. },
  32065. side: {
  32066. height: math.unit(4, "meters"),
  32067. weight: math.unit(150, "kg"),
  32068. name: "Side",
  32069. image: {
  32070. source: "./media/characters/caledvwlch/side.svg",
  32071. extra: 1605 / 1536,
  32072. bottom: 31 / 1636
  32073. }
  32074. },
  32075. back: {
  32076. height: math.unit(4, "meters"),
  32077. weight: math.unit(150, "kg"),
  32078. name: "Back",
  32079. image: {
  32080. source: "./media/characters/caledvwlch/back.svg",
  32081. extra: 1635 / 1565,
  32082. bottom: 27 / 1662
  32083. }
  32084. },
  32085. },
  32086. [
  32087. {
  32088. name: "\"Incognito\"",
  32089. height: math.unit(4, "meters")
  32090. },
  32091. {
  32092. name: "Small rampage",
  32093. height: math.unit(600, "meters")
  32094. },
  32095. {
  32096. name: "Mega",
  32097. height: math.unit(30, "km")
  32098. },
  32099. {
  32100. name: "Home-size",
  32101. height: math.unit(50, "km"),
  32102. default: true
  32103. },
  32104. {
  32105. name: "Giga",
  32106. height: math.unit(300, "km")
  32107. },
  32108. {
  32109. name: "Lounging",
  32110. height: math.unit(11000, "km")
  32111. },
  32112. {
  32113. name: "Planet snacking",
  32114. height: math.unit(2000000, "km")
  32115. },
  32116. ]
  32117. ))
  32118. characterMakers.push(() => makeCharacter(
  32119. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32120. {
  32121. front: {
  32122. height: math.unit(6, "feet"),
  32123. weight: math.unit(215, "lb"),
  32124. name: "Front",
  32125. image: {
  32126. source: "./media/characters/sapphire-svell/front.svg",
  32127. extra: 495 / 455,
  32128. bottom: 20 / 515
  32129. }
  32130. },
  32131. back: {
  32132. height: math.unit(6, "feet"),
  32133. weight: math.unit(216, "lb"),
  32134. name: "Back",
  32135. image: {
  32136. source: "./media/characters/sapphire-svell/back.svg",
  32137. extra: 497 / 477,
  32138. bottom: 7 / 504
  32139. }
  32140. },
  32141. maw: {
  32142. height: math.unit(1.57, "feet"),
  32143. name: "Maw",
  32144. image: {
  32145. source: "./media/characters/sapphire-svell/maw.svg"
  32146. }
  32147. },
  32148. foot: {
  32149. height: math.unit(1.07, "feet"),
  32150. name: "Foot",
  32151. image: {
  32152. source: "./media/characters/sapphire-svell/foot.svg"
  32153. }
  32154. },
  32155. toering: {
  32156. height: math.unit(1.7, "inch"),
  32157. name: "Toering",
  32158. image: {
  32159. source: "./media/characters/sapphire-svell/toering.svg"
  32160. }
  32161. },
  32162. },
  32163. [
  32164. {
  32165. name: "Normal",
  32166. height: math.unit(300, "feet"),
  32167. default: true
  32168. },
  32169. {
  32170. name: "Augmented",
  32171. height: math.unit(1250, "feet")
  32172. },
  32173. {
  32174. name: "Unleashed",
  32175. height: math.unit(3000, "feet")
  32176. },
  32177. ]
  32178. ))
  32179. characterMakers.push(() => makeCharacter(
  32180. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32181. {
  32182. side: {
  32183. height: math.unit(2 + 3 / 12, "feet"),
  32184. weight: math.unit(110, "lb"),
  32185. name: "Side",
  32186. image: {
  32187. source: "./media/characters/glitch-flux/side.svg",
  32188. extra: 997 / 805,
  32189. bottom: 20 / 1017
  32190. }
  32191. },
  32192. },
  32193. [
  32194. {
  32195. name: "Normal",
  32196. height: math.unit(2 + 3 / 12, "feet"),
  32197. default: true
  32198. },
  32199. ]
  32200. ))
  32201. characterMakers.push(() => makeCharacter(
  32202. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32203. {
  32204. front: {
  32205. height: math.unit(4, "meters"),
  32206. name: "Front",
  32207. image: {
  32208. source: "./media/characters/mid/front.svg",
  32209. extra: 507 / 476,
  32210. bottom: 17 / 524
  32211. }
  32212. },
  32213. back: {
  32214. height: math.unit(4, "meters"),
  32215. name: "Back",
  32216. image: {
  32217. source: "./media/characters/mid/back.svg",
  32218. extra: 519 / 487,
  32219. bottom: 7 / 526
  32220. }
  32221. },
  32222. stuck: {
  32223. height: math.unit(2.2, "meters"),
  32224. name: "Stuck",
  32225. image: {
  32226. source: "./media/characters/mid/stuck.svg",
  32227. extra: 1951 / 1869,
  32228. bottom: 88 / 2039
  32229. }
  32230. }
  32231. },
  32232. [
  32233. {
  32234. name: "Normal",
  32235. height: math.unit(4, "meters"),
  32236. default: true
  32237. },
  32238. {
  32239. name: "Big",
  32240. height: math.unit(10, "meters")
  32241. },
  32242. {
  32243. name: "Macro",
  32244. height: math.unit(800, "meters")
  32245. },
  32246. {
  32247. name: "Megamacro",
  32248. height: math.unit(100, "km")
  32249. },
  32250. {
  32251. name: "Overgrown",
  32252. height: math.unit(1, "parsec")
  32253. },
  32254. ]
  32255. ))
  32256. characterMakers.push(() => makeCharacter(
  32257. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32258. {
  32259. front: {
  32260. height: math.unit(2.5, "meters"),
  32261. weight: math.unit(225, "kg"),
  32262. name: "Front",
  32263. image: {
  32264. source: "./media/characters/iris/front.svg",
  32265. extra: 3348 / 3251,
  32266. bottom: 205 / 3553
  32267. }
  32268. },
  32269. maw: {
  32270. height: math.unit(0.56, "meter"),
  32271. name: "Maw",
  32272. image: {
  32273. source: "./media/characters/iris/maw.svg"
  32274. }
  32275. },
  32276. },
  32277. [
  32278. {
  32279. name: "Mewter cat",
  32280. height: math.unit(1.2, "meters")
  32281. },
  32282. {
  32283. name: "Normal",
  32284. height: math.unit(2.5, "meters"),
  32285. default: true
  32286. },
  32287. {
  32288. name: "Minimacro",
  32289. height: math.unit(18, "feet")
  32290. },
  32291. {
  32292. name: "Macro",
  32293. height: math.unit(140, "feet")
  32294. },
  32295. {
  32296. name: "Macro+",
  32297. height: math.unit(180, "meters")
  32298. },
  32299. {
  32300. name: "Megamacro",
  32301. height: math.unit(2746, "meters")
  32302. },
  32303. ]
  32304. ))
  32305. characterMakers.push(() => makeCharacter(
  32306. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32307. {
  32308. front: {
  32309. height: math.unit(6, "feet"),
  32310. weight: math.unit(135, "lb"),
  32311. name: "Front",
  32312. image: {
  32313. source: "./media/characters/axel/front.svg",
  32314. extra: 908 / 908,
  32315. bottom: 58 / 966
  32316. }
  32317. },
  32318. side: {
  32319. height: math.unit(6, "feet"),
  32320. weight: math.unit(135, "lb"),
  32321. name: "Side",
  32322. image: {
  32323. source: "./media/characters/axel/side.svg",
  32324. extra: 958 / 958,
  32325. bottom: 11 / 969
  32326. }
  32327. },
  32328. back: {
  32329. height: math.unit(6, "feet"),
  32330. weight: math.unit(135, "lb"),
  32331. name: "Back",
  32332. image: {
  32333. source: "./media/characters/axel/back.svg",
  32334. extra: 887 / 887,
  32335. bottom: 34 / 921
  32336. }
  32337. },
  32338. head: {
  32339. height: math.unit(1.07, "feet"),
  32340. name: "Head",
  32341. image: {
  32342. source: "./media/characters/axel/head.svg"
  32343. }
  32344. },
  32345. beak: {
  32346. height: math.unit(1.4, "feet"),
  32347. name: "Beak",
  32348. image: {
  32349. source: "./media/characters/axel/beak.svg"
  32350. }
  32351. },
  32352. beakSide: {
  32353. height: math.unit(1.4, "feet"),
  32354. name: "Beak Side",
  32355. image: {
  32356. source: "./media/characters/axel/beak-side.svg"
  32357. }
  32358. },
  32359. sheath: {
  32360. height: math.unit(0.5, "feet"),
  32361. name: "Sheath",
  32362. image: {
  32363. source: "./media/characters/axel/sheath.svg"
  32364. }
  32365. },
  32366. dick: {
  32367. height: math.unit(0.98, "feet"),
  32368. name: "Dick",
  32369. image: {
  32370. source: "./media/characters/axel/dick.svg"
  32371. }
  32372. },
  32373. },
  32374. [
  32375. {
  32376. name: "Macro",
  32377. height: math.unit(68, "meters"),
  32378. default: true
  32379. },
  32380. ]
  32381. ))
  32382. characterMakers.push(() => makeCharacter(
  32383. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32384. {
  32385. front: {
  32386. height: math.unit(3.5, "meters"),
  32387. weight: math.unit(1200, "kg"),
  32388. name: "Front",
  32389. image: {
  32390. source: "./media/characters/joanna/front.svg",
  32391. extra: 1596 / 1488,
  32392. bottom: 29 / 1625
  32393. }
  32394. },
  32395. back: {
  32396. height: math.unit(3.5, "meters"),
  32397. weight: math.unit(1200, "kg"),
  32398. name: "Back",
  32399. image: {
  32400. source: "./media/characters/joanna/back.svg",
  32401. extra: 1594 / 1495,
  32402. bottom: 26 / 1620
  32403. }
  32404. },
  32405. frontShorts: {
  32406. height: math.unit(3.5, "meters"),
  32407. weight: math.unit(1200, "kg"),
  32408. name: "Front (Shorts)",
  32409. image: {
  32410. source: "./media/characters/joanna/front-shorts.svg",
  32411. extra: 1596 / 1488,
  32412. bottom: 29 / 1625
  32413. }
  32414. },
  32415. frontBiker: {
  32416. height: math.unit(3.5, "meters"),
  32417. weight: math.unit(1200, "kg"),
  32418. name: "Front (Biker)",
  32419. image: {
  32420. source: "./media/characters/joanna/front-biker.svg",
  32421. extra: 1596 / 1488,
  32422. bottom: 29 / 1625
  32423. }
  32424. },
  32425. backBiker: {
  32426. height: math.unit(3.5, "meters"),
  32427. weight: math.unit(1200, "kg"),
  32428. name: "Back (Biker)",
  32429. image: {
  32430. source: "./media/characters/joanna/back-biker.svg",
  32431. extra: 1594 / 1495,
  32432. bottom: 88 / 1682
  32433. }
  32434. },
  32435. bikeLeft: {
  32436. height: math.unit(2.4, "meters"),
  32437. weight: math.unit(1600, "kg"),
  32438. name: "Bike (Left)",
  32439. image: {
  32440. source: "./media/characters/joanna/bike-left.svg",
  32441. extra: 720 / 720,
  32442. bottom: 8 / 728
  32443. }
  32444. },
  32445. bikeRight: {
  32446. height: math.unit(2.4, "meters"),
  32447. weight: math.unit(1600, "kg"),
  32448. name: "Bike (Right)",
  32449. image: {
  32450. source: "./media/characters/joanna/bike-right.svg",
  32451. extra: 720 / 720,
  32452. bottom: 8 / 728
  32453. }
  32454. },
  32455. },
  32456. [
  32457. {
  32458. name: "Incognito",
  32459. height: math.unit(3.5, "meters")
  32460. },
  32461. {
  32462. name: "Casual Big",
  32463. height: math.unit(200, "meters")
  32464. },
  32465. {
  32466. name: "Macro",
  32467. height: math.unit(600, "meters")
  32468. },
  32469. {
  32470. name: "Original",
  32471. height: math.unit(20, "km"),
  32472. default: true
  32473. },
  32474. {
  32475. name: "Giga",
  32476. height: math.unit(400, "km")
  32477. },
  32478. {
  32479. name: "Lounging",
  32480. height: math.unit(1500, "km")
  32481. },
  32482. {
  32483. name: "Planetary",
  32484. height: math.unit(200000, "km")
  32485. },
  32486. ]
  32487. ))
  32488. characterMakers.push(() => makeCharacter(
  32489. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32490. {
  32491. front: {
  32492. height: math.unit(6, "feet"),
  32493. weight: math.unit(150, "lb"),
  32494. name: "Front",
  32495. image: {
  32496. source: "./media/characters/hugo-sigil/front.svg",
  32497. extra: 522 / 500,
  32498. bottom: 2 / 524
  32499. }
  32500. },
  32501. back: {
  32502. height: math.unit(6, "feet"),
  32503. weight: math.unit(150, "lb"),
  32504. name: "Back",
  32505. image: {
  32506. source: "./media/characters/hugo-sigil/back.svg",
  32507. extra: 519 / 495,
  32508. bottom: 5 / 524
  32509. }
  32510. },
  32511. maw: {
  32512. height: math.unit(1.4, "feet"),
  32513. weight: math.unit(150, "lb"),
  32514. name: "Maw",
  32515. image: {
  32516. source: "./media/characters/hugo-sigil/maw.svg"
  32517. }
  32518. },
  32519. feet: {
  32520. height: math.unit(1.56, "feet"),
  32521. weight: math.unit(150, "lb"),
  32522. name: "Feet",
  32523. image: {
  32524. source: "./media/characters/hugo-sigil/feet.svg",
  32525. extra: 177 / 177,
  32526. bottom: 12 / 189
  32527. }
  32528. },
  32529. },
  32530. [
  32531. {
  32532. name: "Normal",
  32533. height: math.unit(6, "feet")
  32534. },
  32535. {
  32536. name: "Macro",
  32537. height: math.unit(200, "feet"),
  32538. default: true
  32539. },
  32540. ]
  32541. ))
  32542. characterMakers.push(() => makeCharacter(
  32543. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32544. {
  32545. front: {
  32546. height: math.unit(6, "feet"),
  32547. weight: math.unit(150, "lb"),
  32548. name: "Front",
  32549. image: {
  32550. source: "./media/characters/peri/front.svg",
  32551. extra: 2354 / 2233,
  32552. bottom: 49 / 2403
  32553. }
  32554. },
  32555. },
  32556. [
  32557. {
  32558. name: "Really Small",
  32559. height: math.unit(1, "nm")
  32560. },
  32561. {
  32562. name: "Micro",
  32563. height: math.unit(4, "inches")
  32564. },
  32565. {
  32566. name: "Normal",
  32567. height: math.unit(7, "inches"),
  32568. default: true
  32569. },
  32570. {
  32571. name: "Macro",
  32572. height: math.unit(400, "feet")
  32573. },
  32574. {
  32575. name: "Megamacro",
  32576. height: math.unit(100, "miles")
  32577. },
  32578. ]
  32579. ))
  32580. characterMakers.push(() => makeCharacter(
  32581. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32582. {
  32583. frontSlim: {
  32584. height: math.unit(7, "feet"),
  32585. name: "Front (Slim)",
  32586. image: {
  32587. source: "./media/characters/issilora/front-slim.svg",
  32588. extra: 529 / 449,
  32589. bottom: 53 / 582
  32590. }
  32591. },
  32592. sideSlim: {
  32593. height: math.unit(7, "feet"),
  32594. name: "Side (Slim)",
  32595. image: {
  32596. source: "./media/characters/issilora/side-slim.svg",
  32597. extra: 570 / 480,
  32598. bottom: 30 / 600
  32599. }
  32600. },
  32601. backSlim: {
  32602. height: math.unit(7, "feet"),
  32603. name: "Back (Slim)",
  32604. image: {
  32605. source: "./media/characters/issilora/back-slim.svg",
  32606. extra: 537 / 455,
  32607. bottom: 46 / 583
  32608. }
  32609. },
  32610. frontBuff: {
  32611. height: math.unit(7, "feet"),
  32612. name: "Front (Buff)",
  32613. image: {
  32614. source: "./media/characters/issilora/front-buff.svg",
  32615. extra: 2310 / 2035,
  32616. bottom: 335 / 2645
  32617. }
  32618. },
  32619. head: {
  32620. height: math.unit(1.94, "feet"),
  32621. name: "Head",
  32622. image: {
  32623. source: "./media/characters/issilora/head.svg"
  32624. }
  32625. },
  32626. },
  32627. [
  32628. {
  32629. name: "Minimum",
  32630. height: math.unit(7, "feet")
  32631. },
  32632. {
  32633. name: "Comfortable",
  32634. height: math.unit(17, "feet")
  32635. },
  32636. {
  32637. name: "Fun Size",
  32638. height: math.unit(47, "feet")
  32639. },
  32640. {
  32641. name: "Natural Macro",
  32642. height: math.unit(137, "feet"),
  32643. default: true
  32644. },
  32645. {
  32646. name: "Maximum Kaiju",
  32647. height: math.unit(397, "feet")
  32648. },
  32649. ]
  32650. ))
  32651. characterMakers.push(() => makeCharacter(
  32652. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32653. {
  32654. front: {
  32655. height: math.unit(50 + 9/12, "feet"),
  32656. weight: math.unit(32.8, "tons"),
  32657. name: "Front",
  32658. image: {
  32659. source: "./media/characters/irb'iiritaahn/front.svg",
  32660. extra: 1878/1826,
  32661. bottom: 326/2204
  32662. }
  32663. },
  32664. back: {
  32665. height: math.unit(50 + 9/12, "feet"),
  32666. weight: math.unit(32.8, "tons"),
  32667. name: "Back",
  32668. image: {
  32669. source: "./media/characters/irb'iiritaahn/back.svg",
  32670. extra: 2052/2018,
  32671. bottom: 152/2204
  32672. }
  32673. },
  32674. head: {
  32675. height: math.unit(12.86, "feet"),
  32676. name: "Head",
  32677. image: {
  32678. source: "./media/characters/irb'iiritaahn/head.svg"
  32679. }
  32680. },
  32681. maw: {
  32682. height: math.unit(9.66, "feet"),
  32683. name: "Maw",
  32684. image: {
  32685. source: "./media/characters/irb'iiritaahn/maw.svg"
  32686. }
  32687. },
  32688. frontDick: {
  32689. height: math.unit(8.78461, "feet"),
  32690. name: "Front Dick",
  32691. image: {
  32692. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32693. }
  32694. },
  32695. rearDick: {
  32696. height: math.unit(8.78461, "feet"),
  32697. name: "Rear Dick",
  32698. image: {
  32699. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32700. }
  32701. },
  32702. rearDickUnfolded: {
  32703. height: math.unit(8.78, "feet"),
  32704. name: "Rear Dick (Unfolded)",
  32705. image: {
  32706. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32707. }
  32708. },
  32709. wings: {
  32710. height: math.unit(43, "feet"),
  32711. name: "Wings",
  32712. image: {
  32713. source: "./media/characters/irb'iiritaahn/wings.svg"
  32714. }
  32715. },
  32716. },
  32717. [
  32718. {
  32719. name: "Macro",
  32720. height: math.unit(50 + 9/12, "feet"),
  32721. default: true
  32722. },
  32723. ]
  32724. ))
  32725. characterMakers.push(() => makeCharacter(
  32726. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32727. {
  32728. front: {
  32729. height: math.unit(205, "cm"),
  32730. weight: math.unit(102, "kg"),
  32731. name: "Front",
  32732. image: {
  32733. source: "./media/characters/irbisgreif/front.svg",
  32734. extra: 785/706,
  32735. bottom: 13/798
  32736. }
  32737. },
  32738. back: {
  32739. height: math.unit(205, "cm"),
  32740. weight: math.unit(102, "kg"),
  32741. name: "Back",
  32742. image: {
  32743. source: "./media/characters/irbisgreif/back.svg",
  32744. extra: 713/701,
  32745. bottom: 26/739
  32746. }
  32747. },
  32748. frontDressed: {
  32749. height: math.unit(216, "cm"),
  32750. weight: math.unit(102, "kg"),
  32751. name: "Front-dressed",
  32752. image: {
  32753. source: "./media/characters/irbisgreif/front-dressed.svg",
  32754. extra: 902/776,
  32755. bottom: 14/916
  32756. }
  32757. },
  32758. sideDressed: {
  32759. height: math.unit(195, "cm"),
  32760. weight: math.unit(102, "kg"),
  32761. name: "Side-dressed",
  32762. image: {
  32763. source: "./media/characters/irbisgreif/side-dressed.svg",
  32764. extra: 788/688,
  32765. bottom: 21/809
  32766. }
  32767. },
  32768. backDressed: {
  32769. height: math.unit(216, "cm"),
  32770. weight: math.unit(102, "kg"),
  32771. name: "Back-dressed",
  32772. image: {
  32773. source: "./media/characters/irbisgreif/back-dressed.svg",
  32774. extra: 901/783,
  32775. bottom: 10/911
  32776. }
  32777. },
  32778. dick: {
  32779. height: math.unit(0.49, "feet"),
  32780. name: "Dick",
  32781. image: {
  32782. source: "./media/characters/irbisgreif/dick.svg"
  32783. }
  32784. },
  32785. wingTop: {
  32786. height: math.unit(1.93 , "feet"),
  32787. name: "Wing-top",
  32788. image: {
  32789. source: "./media/characters/irbisgreif/wing-top.svg"
  32790. }
  32791. },
  32792. wingBottom: {
  32793. height: math.unit(1.93 , "feet"),
  32794. name: "Wing-bottom",
  32795. image: {
  32796. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32797. }
  32798. },
  32799. },
  32800. [
  32801. {
  32802. name: "Normal",
  32803. height: math.unit(216, "cm"),
  32804. default: true
  32805. },
  32806. ]
  32807. ))
  32808. characterMakers.push(() => makeCharacter(
  32809. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32810. {
  32811. front: {
  32812. height: math.unit(6, "feet"),
  32813. weight: math.unit(150, "lb"),
  32814. name: "Front",
  32815. image: {
  32816. source: "./media/characters/pride/front.svg",
  32817. extra: 1299/1230,
  32818. bottom: 18/1317
  32819. }
  32820. },
  32821. },
  32822. [
  32823. {
  32824. name: "Normal",
  32825. height: math.unit(7, "feet")
  32826. },
  32827. {
  32828. name: "Mini-macro",
  32829. height: math.unit(11, "feet")
  32830. },
  32831. {
  32832. name: "Macro",
  32833. height: math.unit(15, "meters"),
  32834. default: true
  32835. },
  32836. {
  32837. name: "Macro+",
  32838. height: math.unit(40, "meters")
  32839. },
  32840. ]
  32841. ))
  32842. characterMakers.push(() => makeCharacter(
  32843. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32844. {
  32845. front: {
  32846. height: math.unit(4 + 2 / 12, "feet"),
  32847. weight: math.unit(95, "lb"),
  32848. name: "Front",
  32849. image: {
  32850. source: "./media/characters/vaelophis-nyx/front.svg",
  32851. extra: 2532/2330,
  32852. bottom: 0/2532
  32853. }
  32854. },
  32855. back: {
  32856. height: math.unit(4 + 2 / 12, "feet"),
  32857. weight: math.unit(95, "lb"),
  32858. name: "Back",
  32859. image: {
  32860. source: "./media/characters/vaelophis-nyx/back.svg",
  32861. extra: 2484/2361,
  32862. bottom: 0/2484
  32863. }
  32864. },
  32865. feralSide: {
  32866. height: math.unit(2 + 1/12, "feet"),
  32867. weight: math.unit(20, "lb"),
  32868. name: "Feral (Side)",
  32869. image: {
  32870. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32871. extra: 1721/1581,
  32872. bottom: 70/1791
  32873. }
  32874. },
  32875. feralLazing: {
  32876. height: math.unit(1.08, "feet"),
  32877. weight: math.unit(20, "lb"),
  32878. name: "Feral (Lazing)",
  32879. image: {
  32880. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32881. extra: 822/822,
  32882. bottom: 248/1070
  32883. }
  32884. },
  32885. ear: {
  32886. height: math.unit(0.416, "feet"),
  32887. name: "Ear",
  32888. image: {
  32889. source: "./media/characters/vaelophis-nyx/ear.svg"
  32890. }
  32891. },
  32892. eye: {
  32893. height: math.unit(0.0748, "feet"),
  32894. name: "Eye",
  32895. image: {
  32896. source: "./media/characters/vaelophis-nyx/eye.svg"
  32897. }
  32898. },
  32899. mouth: {
  32900. height: math.unit(0.378, "feet"),
  32901. name: "Mouth",
  32902. image: {
  32903. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32904. }
  32905. },
  32906. spade: {
  32907. height: math.unit(0.55, "feet"),
  32908. name: "Spade",
  32909. image: {
  32910. source: "./media/characters/vaelophis-nyx/spade.svg"
  32911. }
  32912. },
  32913. },
  32914. [
  32915. {
  32916. name: "Normal",
  32917. height: math.unit(4 + 2/12, "feet"),
  32918. default: true
  32919. },
  32920. ]
  32921. ))
  32922. characterMakers.push(() => makeCharacter(
  32923. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32924. {
  32925. front: {
  32926. height: math.unit(7, "feet"),
  32927. weight: math.unit(231, "lb"),
  32928. name: "Front",
  32929. image: {
  32930. source: "./media/characters/flux/front.svg",
  32931. extra: 919/871,
  32932. bottom: 0/919
  32933. }
  32934. },
  32935. back: {
  32936. height: math.unit(7, "feet"),
  32937. weight: math.unit(231, "lb"),
  32938. name: "Back",
  32939. image: {
  32940. source: "./media/characters/flux/back.svg",
  32941. extra: 1040/992,
  32942. bottom: 0/1040
  32943. }
  32944. },
  32945. frontDressed: {
  32946. height: math.unit(7, "feet"),
  32947. weight: math.unit(231, "lb"),
  32948. name: "Front (Dressed)",
  32949. image: {
  32950. source: "./media/characters/flux/front-dressed.svg",
  32951. extra: 919/871,
  32952. bottom: 0/919
  32953. }
  32954. },
  32955. feralSide: {
  32956. height: math.unit(5, "feet"),
  32957. weight: math.unit(150, "lb"),
  32958. name: "Feral (Side)",
  32959. image: {
  32960. source: "./media/characters/flux/feral-side.svg",
  32961. extra: 598/528,
  32962. bottom: 28/626
  32963. }
  32964. },
  32965. head: {
  32966. height: math.unit(1.585, "feet"),
  32967. name: "Head",
  32968. image: {
  32969. source: "./media/characters/flux/head.svg"
  32970. }
  32971. },
  32972. headSide: {
  32973. height: math.unit(1.74, "feet"),
  32974. name: "Head (Side)",
  32975. image: {
  32976. source: "./media/characters/flux/head-side.svg"
  32977. }
  32978. },
  32979. headSideFire: {
  32980. height: math.unit(1.76, "feet"),
  32981. name: "Head (Side, Fire)",
  32982. image: {
  32983. source: "./media/characters/flux/head-side-fire.svg"
  32984. }
  32985. },
  32986. },
  32987. [
  32988. {
  32989. name: "Normal",
  32990. height: math.unit(7, "feet"),
  32991. default: true
  32992. },
  32993. ]
  32994. ))
  32995. characterMakers.push(() => makeCharacter(
  32996. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32997. {
  32998. front: {
  32999. height: math.unit(9, "feet"),
  33000. weight: math.unit(1012, "lb"),
  33001. name: "Front",
  33002. image: {
  33003. source: "./media/characters/ulfra-lupae/front.svg",
  33004. extra: 1083/1011,
  33005. bottom: 67/1150
  33006. }
  33007. },
  33008. },
  33009. [
  33010. {
  33011. name: "Micro",
  33012. height: math.unit(6, "inches")
  33013. },
  33014. {
  33015. name: "Socializing",
  33016. height: math.unit(6 + 5/12, "feet")
  33017. },
  33018. {
  33019. name: "Normal",
  33020. height: math.unit(9, "feet"),
  33021. default: true
  33022. },
  33023. {
  33024. name: "Macro",
  33025. height: math.unit(150, "feet")
  33026. },
  33027. ]
  33028. ))
  33029. characterMakers.push(() => makeCharacter(
  33030. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33031. {
  33032. front: {
  33033. height: math.unit(5 + 2/12, "feet"),
  33034. weight: math.unit(120, "lb"),
  33035. name: "Front",
  33036. image: {
  33037. source: "./media/characters/timber/front.svg",
  33038. extra: 2814/2705,
  33039. bottom: 181/2995
  33040. }
  33041. },
  33042. },
  33043. [
  33044. {
  33045. name: "Normal",
  33046. height: math.unit(5 + 2/12, "feet"),
  33047. default: true
  33048. },
  33049. ]
  33050. ))
  33051. characterMakers.push(() => makeCharacter(
  33052. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33053. {
  33054. front: {
  33055. height: math.unit(9, "feet"),
  33056. name: "Front",
  33057. image: {
  33058. source: "./media/characters/nicki/front.svg",
  33059. extra: 1240/990,
  33060. bottom: 45/1285
  33061. },
  33062. form: "anthro",
  33063. default: true
  33064. },
  33065. side: {
  33066. height: math.unit(9, "feet"),
  33067. name: "Side",
  33068. image: {
  33069. source: "./media/characters/nicki/side.svg",
  33070. extra: 1047/973,
  33071. bottom: 61/1108
  33072. },
  33073. form: "anthro"
  33074. },
  33075. back: {
  33076. height: math.unit(9, "feet"),
  33077. name: "Back",
  33078. image: {
  33079. source: "./media/characters/nicki/back.svg",
  33080. extra: 1006/965,
  33081. bottom: 39/1045
  33082. },
  33083. form: "anthro"
  33084. },
  33085. taur: {
  33086. height: math.unit(15, "feet"),
  33087. name: "Taur",
  33088. image: {
  33089. source: "./media/characters/nicki/taur.svg",
  33090. extra: 1592/1347,
  33091. bottom: 0/1592
  33092. },
  33093. form: "taur",
  33094. default: true
  33095. },
  33096. },
  33097. [
  33098. {
  33099. name: "Normal",
  33100. height: math.unit(9, "feet"),
  33101. form: "anthro",
  33102. default: true
  33103. },
  33104. {
  33105. name: "Normal",
  33106. height: math.unit(15, "feet"),
  33107. form: "taur",
  33108. default: true
  33109. }
  33110. ],
  33111. {
  33112. "anthro": {
  33113. name: "Anthro",
  33114. default: true
  33115. },
  33116. "taur": {
  33117. name: "Taur"
  33118. }
  33119. }
  33120. ))
  33121. characterMakers.push(() => makeCharacter(
  33122. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33123. {
  33124. front: {
  33125. height: math.unit(7 + 10/12, "feet"),
  33126. weight: math.unit(3.5, "tons"),
  33127. name: "Front",
  33128. image: {
  33129. source: "./media/characters/lee/front.svg",
  33130. extra: 1773/1615,
  33131. bottom: 86/1859
  33132. }
  33133. },
  33134. hand: {
  33135. height: math.unit(1.78, "feet"),
  33136. name: "Hand",
  33137. image: {
  33138. source: "./media/characters/lee/hand.svg"
  33139. }
  33140. },
  33141. maw: {
  33142. height: math.unit(1.18, "feet"),
  33143. name: "Maw",
  33144. image: {
  33145. source: "./media/characters/lee/maw.svg"
  33146. }
  33147. },
  33148. },
  33149. [
  33150. {
  33151. name: "Normal",
  33152. height: math.unit(7 + 10/12, "feet"),
  33153. default: true
  33154. },
  33155. ]
  33156. ))
  33157. characterMakers.push(() => makeCharacter(
  33158. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33159. {
  33160. front: {
  33161. height: math.unit(9, "feet"),
  33162. name: "Front",
  33163. image: {
  33164. source: "./media/characters/guti/front.svg",
  33165. extra: 4551/4355,
  33166. bottom: 123/4674
  33167. }
  33168. },
  33169. tongue: {
  33170. height: math.unit(1, "feet"),
  33171. name: "Tongue",
  33172. image: {
  33173. source: "./media/characters/guti/tongue.svg"
  33174. }
  33175. },
  33176. paw: {
  33177. height: math.unit(1.18, "feet"),
  33178. name: "Paw",
  33179. image: {
  33180. source: "./media/characters/guti/paw.svg"
  33181. }
  33182. },
  33183. },
  33184. [
  33185. {
  33186. name: "Normal",
  33187. height: math.unit(9, "feet"),
  33188. default: true
  33189. },
  33190. ]
  33191. ))
  33192. characterMakers.push(() => makeCharacter(
  33193. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33194. {
  33195. side: {
  33196. height: math.unit(5, "meters"),
  33197. name: "Side",
  33198. image: {
  33199. source: "./media/characters/vesper/side.svg",
  33200. extra: 1605/1518,
  33201. bottom: 0/1605
  33202. }
  33203. },
  33204. },
  33205. [
  33206. {
  33207. name: "Small",
  33208. height: math.unit(5, "meters")
  33209. },
  33210. {
  33211. name: "Sage",
  33212. height: math.unit(100, "meters"),
  33213. default: true
  33214. },
  33215. {
  33216. name: "Fun Size",
  33217. height: math.unit(600, "meters")
  33218. },
  33219. {
  33220. name: "Goddess",
  33221. height: math.unit(20000, "km")
  33222. },
  33223. {
  33224. name: "Maximum",
  33225. height: math.unit(5, "galaxies")
  33226. },
  33227. ]
  33228. ))
  33229. characterMakers.push(() => makeCharacter(
  33230. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33231. {
  33232. front: {
  33233. height: math.unit(6 + 3/12, "feet"),
  33234. weight: math.unit(190, "lb"),
  33235. name: "Front",
  33236. image: {
  33237. source: "./media/characters/gawain/front.svg",
  33238. extra: 2222/2139,
  33239. bottom: 90/2312
  33240. }
  33241. },
  33242. back: {
  33243. height: math.unit(6 + 3/12, "feet"),
  33244. weight: math.unit(190, "lb"),
  33245. name: "Back",
  33246. image: {
  33247. source: "./media/characters/gawain/back.svg",
  33248. extra: 2199/2111,
  33249. bottom: 73/2272
  33250. }
  33251. },
  33252. },
  33253. [
  33254. {
  33255. name: "Normal",
  33256. height: math.unit(6 + 3/12, "feet"),
  33257. default: true
  33258. },
  33259. ]
  33260. ))
  33261. characterMakers.push(() => makeCharacter(
  33262. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33263. {
  33264. side: {
  33265. height: math.unit(3.5, "meters"),
  33266. weight: math.unit(16000, "lb"),
  33267. name: "Side",
  33268. image: {
  33269. source: "./media/characters/dascalti/side.svg",
  33270. extra: 392/273,
  33271. bottom: 47/439
  33272. }
  33273. },
  33274. breath: {
  33275. height: math.unit(7.4, "feet"),
  33276. name: "Breath",
  33277. image: {
  33278. source: "./media/characters/dascalti/breath.svg"
  33279. }
  33280. },
  33281. fed: {
  33282. height: math.unit(3.6, "meters"),
  33283. weight: math.unit(16000, "lb"),
  33284. name: "Fed",
  33285. image: {
  33286. source: "./media/characters/dascalti/fed.svg",
  33287. extra: 1419/820,
  33288. bottom: 95/1514
  33289. }
  33290. },
  33291. },
  33292. [
  33293. {
  33294. name: "Normal",
  33295. height: math.unit(3.5, "meters"),
  33296. default: true
  33297. },
  33298. ]
  33299. ))
  33300. characterMakers.push(() => makeCharacter(
  33301. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33302. {
  33303. front: {
  33304. height: math.unit(3 + 5/12, "feet"),
  33305. name: "Front",
  33306. image: {
  33307. source: "./media/characters/mauve/front.svg",
  33308. extra: 1126/1033,
  33309. bottom: 65/1191
  33310. }
  33311. },
  33312. side: {
  33313. height: math.unit(3 + 5/12, "feet"),
  33314. name: "Side",
  33315. image: {
  33316. source: "./media/characters/mauve/side.svg",
  33317. extra: 1089/1001,
  33318. bottom: 29/1118
  33319. }
  33320. },
  33321. back: {
  33322. height: math.unit(3 + 5/12, "feet"),
  33323. name: "Back",
  33324. image: {
  33325. source: "./media/characters/mauve/back.svg",
  33326. extra: 1173/1053,
  33327. bottom: 109/1282
  33328. }
  33329. },
  33330. },
  33331. [
  33332. {
  33333. name: "Normal",
  33334. height: math.unit(3 + 5/12, "feet"),
  33335. default: true
  33336. },
  33337. ]
  33338. ))
  33339. characterMakers.push(() => makeCharacter(
  33340. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33341. {
  33342. front: {
  33343. height: math.unit(6 + 3/12, "feet"),
  33344. weight: math.unit(430, "lb"),
  33345. name: "Front",
  33346. image: {
  33347. source: "./media/characters/carlos/front.svg",
  33348. extra: 1964/1913,
  33349. bottom: 70/2034
  33350. }
  33351. },
  33352. },
  33353. [
  33354. {
  33355. name: "Normal",
  33356. height: math.unit(6 + 3/12, "feet"),
  33357. default: true
  33358. },
  33359. ]
  33360. ))
  33361. characterMakers.push(() => makeCharacter(
  33362. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33363. {
  33364. back: {
  33365. height: math.unit(5 + 10/12, "feet"),
  33366. weight: math.unit(200, "lb"),
  33367. name: "Back",
  33368. image: {
  33369. source: "./media/characters/jax/back.svg",
  33370. extra: 764/739,
  33371. bottom: 25/789
  33372. }
  33373. },
  33374. },
  33375. [
  33376. {
  33377. name: "Normal",
  33378. height: math.unit(5 + 10/12, "feet"),
  33379. default: true
  33380. },
  33381. ]
  33382. ))
  33383. characterMakers.push(() => makeCharacter(
  33384. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33385. {
  33386. front: {
  33387. height: math.unit(8, "feet"),
  33388. weight: math.unit(250, "lb"),
  33389. name: "Front",
  33390. image: {
  33391. source: "./media/characters/eikthynir/front.svg",
  33392. extra: 1332/1166,
  33393. bottom: 82/1414
  33394. }
  33395. },
  33396. back: {
  33397. height: math.unit(8, "feet"),
  33398. weight: math.unit(250, "lb"),
  33399. name: "Back",
  33400. image: {
  33401. source: "./media/characters/eikthynir/back.svg",
  33402. extra: 1342/1190,
  33403. bottom: 19/1361
  33404. }
  33405. },
  33406. dick: {
  33407. height: math.unit(2.35, "feet"),
  33408. name: "Dick",
  33409. image: {
  33410. source: "./media/characters/eikthynir/dick.svg"
  33411. }
  33412. },
  33413. },
  33414. [
  33415. {
  33416. name: "Normal",
  33417. height: math.unit(8, "feet"),
  33418. default: true
  33419. },
  33420. ]
  33421. ))
  33422. characterMakers.push(() => makeCharacter(
  33423. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33424. {
  33425. front: {
  33426. height: math.unit(99, "meters"),
  33427. weight: math.unit(13000, "tons"),
  33428. name: "Front",
  33429. image: {
  33430. source: "./media/characters/zlmos/front.svg",
  33431. extra: 2202/1992,
  33432. bottom: 315/2517
  33433. }
  33434. },
  33435. },
  33436. [
  33437. {
  33438. name: "Macro",
  33439. height: math.unit(99, "meters"),
  33440. default: true
  33441. },
  33442. ]
  33443. ))
  33444. characterMakers.push(() => makeCharacter(
  33445. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33446. {
  33447. front: {
  33448. height: math.unit(6 + 5/12, "feet"),
  33449. name: "Front",
  33450. image: {
  33451. source: "./media/characters/purri/front.svg",
  33452. extra: 1698/1610,
  33453. bottom: 32/1730
  33454. }
  33455. },
  33456. frontAlt: {
  33457. height: math.unit(6 + 5/12, "feet"),
  33458. name: "Front (Alt)",
  33459. image: {
  33460. source: "./media/characters/purri/front-alt.svg",
  33461. extra: 450/420,
  33462. bottom: 26/476
  33463. }
  33464. },
  33465. boots: {
  33466. height: math.unit(5.5, "feet"),
  33467. name: "Boots",
  33468. image: {
  33469. source: "./media/characters/purri/boots.svg",
  33470. extra: 905/853,
  33471. bottom: 18/923
  33472. }
  33473. },
  33474. lying: {
  33475. height: math.unit(2, "feet"),
  33476. name: "Lying",
  33477. image: {
  33478. source: "./media/characters/purri/lying.svg",
  33479. extra: 940/843,
  33480. bottom: 146/1086
  33481. }
  33482. },
  33483. devious: {
  33484. height: math.unit(1.77, "feet"),
  33485. name: "Devious",
  33486. image: {
  33487. source: "./media/characters/purri/devious.svg",
  33488. extra: 1440/1155,
  33489. bottom: 147/1587
  33490. }
  33491. },
  33492. bean: {
  33493. height: math.unit(1.94, "feet"),
  33494. name: "Bean",
  33495. image: {
  33496. source: "./media/characters/purri/bean.svg"
  33497. }
  33498. },
  33499. },
  33500. [
  33501. {
  33502. name: "Micro",
  33503. height: math.unit(1, "mm")
  33504. },
  33505. {
  33506. name: "Normal",
  33507. height: math.unit(6 + 5/12, "feet"),
  33508. default: true
  33509. },
  33510. {
  33511. name: "Macro :3c",
  33512. height: math.unit(2, "miles")
  33513. },
  33514. ]
  33515. ))
  33516. characterMakers.push(() => makeCharacter(
  33517. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33518. {
  33519. front: {
  33520. height: math.unit(6 + 2/12, "feet"),
  33521. weight: math.unit(250, "lb"),
  33522. name: "Front",
  33523. image: {
  33524. source: "./media/characters/moonlight/front.svg",
  33525. extra: 1044/908,
  33526. bottom: 56/1100
  33527. }
  33528. },
  33529. feral: {
  33530. height: math.unit(3 + 1/12, "feet"),
  33531. weight: math.unit(50, "kg"),
  33532. name: "Feral",
  33533. image: {
  33534. source: "./media/characters/moonlight/feral.svg",
  33535. extra: 3705/2791,
  33536. bottom: 145/3850
  33537. }
  33538. },
  33539. paw: {
  33540. height: math.unit(1, "feet"),
  33541. name: "Paw",
  33542. image: {
  33543. source: "./media/characters/moonlight/paw.svg"
  33544. }
  33545. },
  33546. paws: {
  33547. height: math.unit(0.98, "feet"),
  33548. name: "Paws",
  33549. image: {
  33550. source: "./media/characters/moonlight/paws.svg",
  33551. extra: 939/939,
  33552. bottom: 50/989
  33553. }
  33554. },
  33555. mouth: {
  33556. height: math.unit(0.48, "feet"),
  33557. name: "Mouth",
  33558. image: {
  33559. source: "./media/characters/moonlight/mouth.svg"
  33560. }
  33561. },
  33562. dick: {
  33563. height: math.unit(1.46, "feet"),
  33564. name: "Dick",
  33565. image: {
  33566. source: "./media/characters/moonlight/dick.svg"
  33567. }
  33568. },
  33569. },
  33570. [
  33571. {
  33572. name: "Normal",
  33573. height: math.unit(6 + 2/12, "feet"),
  33574. default: true
  33575. },
  33576. {
  33577. name: "Macro",
  33578. height: math.unit(300, "feet")
  33579. },
  33580. {
  33581. name: "Macro+",
  33582. height: math.unit(1, "mile")
  33583. },
  33584. {
  33585. name: "Mt. Moon",
  33586. height: math.unit(5, "miles")
  33587. },
  33588. {
  33589. name: "Megamacro",
  33590. height: math.unit(15, "miles")
  33591. },
  33592. ]
  33593. ))
  33594. characterMakers.push(() => makeCharacter(
  33595. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33596. {
  33597. back: {
  33598. height: math.unit(6, "feet"),
  33599. weight: math.unit(150, "lb"),
  33600. name: "Back",
  33601. image: {
  33602. source: "./media/characters/sylen/back.svg",
  33603. extra: 1335/1273,
  33604. bottom: 107/1442
  33605. }
  33606. },
  33607. },
  33608. [
  33609. {
  33610. name: "Normal",
  33611. height: math.unit(5 + 5/12, "feet")
  33612. },
  33613. {
  33614. name: "Megamacro",
  33615. height: math.unit(3, "miles"),
  33616. default: true
  33617. },
  33618. ]
  33619. ))
  33620. characterMakers.push(() => makeCharacter(
  33621. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33622. {
  33623. front: {
  33624. height: math.unit(6, "feet"),
  33625. weight: math.unit(190, "lb"),
  33626. name: "Front",
  33627. image: {
  33628. source: "./media/characters/huttser/front.svg",
  33629. extra: 1152/1058,
  33630. bottom: 23/1175
  33631. }
  33632. },
  33633. side: {
  33634. height: math.unit(6, "feet"),
  33635. weight: math.unit(190, "lb"),
  33636. name: "Side",
  33637. image: {
  33638. source: "./media/characters/huttser/side.svg",
  33639. extra: 1174/1065,
  33640. bottom: 18/1192
  33641. }
  33642. },
  33643. back: {
  33644. height: math.unit(6, "feet"),
  33645. weight: math.unit(190, "lb"),
  33646. name: "Back",
  33647. image: {
  33648. source: "./media/characters/huttser/back.svg",
  33649. extra: 1158/1056,
  33650. bottom: 12/1170
  33651. }
  33652. },
  33653. },
  33654. [
  33655. ]
  33656. ))
  33657. characterMakers.push(() => makeCharacter(
  33658. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33659. {
  33660. side: {
  33661. height: math.unit(12 + 9/12, "feet"),
  33662. weight: math.unit(15000, "lb"),
  33663. name: "Side",
  33664. image: {
  33665. source: "./media/characters/faan/side.svg",
  33666. extra: 2747/2697,
  33667. bottom: 0/2747
  33668. }
  33669. },
  33670. front: {
  33671. height: math.unit(12 + 9/12, "feet"),
  33672. weight: math.unit(15000, "lb"),
  33673. name: "Front",
  33674. image: {
  33675. source: "./media/characters/faan/front.svg",
  33676. extra: 607/571,
  33677. bottom: 24/631
  33678. }
  33679. },
  33680. head: {
  33681. height: math.unit(2.85, "feet"),
  33682. name: "Head",
  33683. image: {
  33684. source: "./media/characters/faan/head.svg"
  33685. }
  33686. },
  33687. headAlt: {
  33688. height: math.unit(3.13, "feet"),
  33689. name: "Head-alt",
  33690. image: {
  33691. source: "./media/characters/faan/head-alt.svg"
  33692. }
  33693. },
  33694. },
  33695. [
  33696. {
  33697. name: "Normal",
  33698. height: math.unit(12 + 9/12, "feet"),
  33699. default: true
  33700. },
  33701. ]
  33702. ))
  33703. characterMakers.push(() => makeCharacter(
  33704. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33705. {
  33706. front: {
  33707. height: math.unit(6, "feet"),
  33708. weight: math.unit(300, "lb"),
  33709. name: "Front",
  33710. image: {
  33711. source: "./media/characters/tanio/front.svg",
  33712. extra: 711/673,
  33713. bottom: 25/736
  33714. }
  33715. },
  33716. },
  33717. [
  33718. {
  33719. name: "Normal",
  33720. height: math.unit(6, "feet"),
  33721. default: true
  33722. },
  33723. ]
  33724. ))
  33725. characterMakers.push(() => makeCharacter(
  33726. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33727. {
  33728. front: {
  33729. height: math.unit(3, "inches"),
  33730. name: "Front",
  33731. image: {
  33732. source: "./media/characters/noboru/front.svg",
  33733. extra: 1039/932,
  33734. bottom: 18/1057
  33735. }
  33736. },
  33737. },
  33738. [
  33739. {
  33740. name: "Micro",
  33741. height: math.unit(3, "inches"),
  33742. default: true
  33743. },
  33744. ]
  33745. ))
  33746. characterMakers.push(() => makeCharacter(
  33747. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33748. {
  33749. front: {
  33750. height: math.unit(1.85, "meters"),
  33751. weight: math.unit(80, "kg"),
  33752. name: "Front",
  33753. image: {
  33754. source: "./media/characters/daniel-barrett/front.svg",
  33755. extra: 355/337,
  33756. bottom: 9/364
  33757. }
  33758. },
  33759. },
  33760. [
  33761. {
  33762. name: "Pico",
  33763. height: math.unit(0.0433, "mm")
  33764. },
  33765. {
  33766. name: "Nano",
  33767. height: math.unit(1.5, "mm")
  33768. },
  33769. {
  33770. name: "Micro",
  33771. height: math.unit(5.3, "cm"),
  33772. default: true
  33773. },
  33774. {
  33775. name: "Normal",
  33776. height: math.unit(1.85, "meters")
  33777. },
  33778. {
  33779. name: "Macro",
  33780. height: math.unit(64.7, "meters")
  33781. },
  33782. {
  33783. name: "Megamacro",
  33784. height: math.unit(2.26, "km")
  33785. },
  33786. {
  33787. name: "Gigamacro",
  33788. height: math.unit(79, "km")
  33789. },
  33790. {
  33791. name: "Teramacro",
  33792. height: math.unit(2765, "km")
  33793. },
  33794. {
  33795. name: "Petamacro",
  33796. height: math.unit(96678, "km")
  33797. },
  33798. ]
  33799. ))
  33800. characterMakers.push(() => makeCharacter(
  33801. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33802. {
  33803. front: {
  33804. height: math.unit(30, "meters"),
  33805. weight: math.unit(400, "tons"),
  33806. name: "Front",
  33807. image: {
  33808. source: "./media/characters/zeel/front.svg",
  33809. extra: 2599/2599,
  33810. bottom: 226/2825
  33811. }
  33812. },
  33813. },
  33814. [
  33815. {
  33816. name: "Macro",
  33817. height: math.unit(30, "meters"),
  33818. default: true
  33819. },
  33820. ]
  33821. ))
  33822. characterMakers.push(() => makeCharacter(
  33823. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33824. {
  33825. front: {
  33826. height: math.unit(6 + 7/12, "feet"),
  33827. weight: math.unit(210, "lb"),
  33828. name: "Front",
  33829. image: {
  33830. source: "./media/characters/tarn/front.svg",
  33831. extra: 3517/3220,
  33832. bottom: 91/3608
  33833. }
  33834. },
  33835. back: {
  33836. height: math.unit(6 + 7/12, "feet"),
  33837. weight: math.unit(210, "lb"),
  33838. name: "Back",
  33839. image: {
  33840. source: "./media/characters/tarn/back.svg",
  33841. extra: 3566/3241,
  33842. bottom: 34/3600
  33843. }
  33844. },
  33845. dick: {
  33846. height: math.unit(1.65, "feet"),
  33847. name: "Dick",
  33848. image: {
  33849. source: "./media/characters/tarn/dick.svg"
  33850. }
  33851. },
  33852. paw: {
  33853. height: math.unit(1.80, "feet"),
  33854. name: "Paw",
  33855. image: {
  33856. source: "./media/characters/tarn/paw.svg"
  33857. }
  33858. },
  33859. tongue: {
  33860. height: math.unit(0.97, "feet"),
  33861. name: "Tongue",
  33862. image: {
  33863. source: "./media/characters/tarn/tongue.svg"
  33864. }
  33865. },
  33866. },
  33867. [
  33868. {
  33869. name: "Micro",
  33870. height: math.unit(4, "inches")
  33871. },
  33872. {
  33873. name: "Normal",
  33874. height: math.unit(6 + 7/12, "feet"),
  33875. default: true
  33876. },
  33877. {
  33878. name: "Macro",
  33879. height: math.unit(300, "feet")
  33880. },
  33881. ]
  33882. ))
  33883. characterMakers.push(() => makeCharacter(
  33884. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33885. {
  33886. front: {
  33887. height: math.unit(5 + 7/12, "feet"),
  33888. weight: math.unit(80, "kg"),
  33889. name: "Front",
  33890. image: {
  33891. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33892. extra: 3023/2865,
  33893. bottom: 33/3056
  33894. }
  33895. },
  33896. back: {
  33897. height: math.unit(5 + 7/12, "feet"),
  33898. weight: math.unit(80, "kg"),
  33899. name: "Back",
  33900. image: {
  33901. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33902. extra: 3020/2886,
  33903. bottom: 30/3050
  33904. }
  33905. },
  33906. dick: {
  33907. height: math.unit(0.98, "feet"),
  33908. name: "Dick",
  33909. image: {
  33910. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33911. }
  33912. },
  33913. anatomy: {
  33914. height: math.unit(2.86, "feet"),
  33915. name: "Anatomy",
  33916. image: {
  33917. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33918. }
  33919. },
  33920. },
  33921. [
  33922. {
  33923. name: "Really Small",
  33924. height: math.unit(2, "inches")
  33925. },
  33926. {
  33927. name: "Micro",
  33928. height: math.unit(5.583, "inches")
  33929. },
  33930. {
  33931. name: "Normal",
  33932. height: math.unit(5 + 7/12, "feet"),
  33933. default: true
  33934. },
  33935. {
  33936. name: "Macro",
  33937. height: math.unit(67, "feet")
  33938. },
  33939. {
  33940. name: "Megamacro",
  33941. height: math.unit(134, "feet")
  33942. },
  33943. ]
  33944. ))
  33945. characterMakers.push(() => makeCharacter(
  33946. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33947. {
  33948. front: {
  33949. height: math.unit(9, "feet"),
  33950. weight: math.unit(120, "lb"),
  33951. name: "Front",
  33952. image: {
  33953. source: "./media/characters/sally/front.svg",
  33954. extra: 1506/1349,
  33955. bottom: 66/1572
  33956. }
  33957. },
  33958. },
  33959. [
  33960. {
  33961. name: "Normal",
  33962. height: math.unit(9, "feet"),
  33963. default: true
  33964. },
  33965. ]
  33966. ))
  33967. characterMakers.push(() => makeCharacter(
  33968. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33969. {
  33970. front: {
  33971. height: math.unit(8, "feet"),
  33972. weight: math.unit(900, "lb"),
  33973. name: "Front",
  33974. image: {
  33975. source: "./media/characters/owen/front.svg",
  33976. extra: 1761/1657,
  33977. bottom: 74/1835
  33978. }
  33979. },
  33980. side: {
  33981. height: math.unit(8, "feet"),
  33982. weight: math.unit(900, "lb"),
  33983. name: "Side",
  33984. image: {
  33985. source: "./media/characters/owen/side.svg",
  33986. extra: 1797/1734,
  33987. bottom: 30/1827
  33988. }
  33989. },
  33990. back: {
  33991. height: math.unit(8, "feet"),
  33992. weight: math.unit(900, "lb"),
  33993. name: "Back",
  33994. image: {
  33995. source: "./media/characters/owen/back.svg",
  33996. extra: 1796/1706,
  33997. bottom: 59/1855
  33998. }
  33999. },
  34000. maw: {
  34001. height: math.unit(1.76, "feet"),
  34002. name: "Maw",
  34003. image: {
  34004. source: "./media/characters/owen/maw.svg"
  34005. }
  34006. },
  34007. },
  34008. [
  34009. {
  34010. name: "Normal",
  34011. height: math.unit(8, "feet"),
  34012. default: true
  34013. },
  34014. ]
  34015. ))
  34016. characterMakers.push(() => makeCharacter(
  34017. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34018. {
  34019. front: {
  34020. height: math.unit(4, "feet"),
  34021. weight: math.unit(400, "lb"),
  34022. name: "Front",
  34023. image: {
  34024. source: "./media/characters/ryth/front.svg",
  34025. extra: 1920/1748,
  34026. bottom: 42/1962
  34027. }
  34028. },
  34029. back: {
  34030. height: math.unit(4, "feet"),
  34031. weight: math.unit(400, "lb"),
  34032. name: "Back",
  34033. image: {
  34034. source: "./media/characters/ryth/back.svg",
  34035. extra: 1897/1690,
  34036. bottom: 89/1986
  34037. }
  34038. },
  34039. mouth: {
  34040. height: math.unit(1.39, "feet"),
  34041. name: "Mouth",
  34042. image: {
  34043. source: "./media/characters/ryth/mouth.svg"
  34044. }
  34045. },
  34046. tailmaw: {
  34047. height: math.unit(1.23, "feet"),
  34048. name: "Tailmaw",
  34049. image: {
  34050. source: "./media/characters/ryth/tailmaw.svg"
  34051. }
  34052. },
  34053. goia: {
  34054. height: math.unit(4, "meters"),
  34055. weight: math.unit(10800, "lb"),
  34056. name: "Goia",
  34057. image: {
  34058. source: "./media/characters/ryth/goia.svg",
  34059. extra: 745/640,
  34060. bottom: 107/852
  34061. }
  34062. },
  34063. goiaFront: {
  34064. height: math.unit(4, "meters"),
  34065. weight: math.unit(10800, "lb"),
  34066. name: "Goia (Front)",
  34067. image: {
  34068. source: "./media/characters/ryth/goia-front.svg",
  34069. extra: 750/586,
  34070. bottom: 114/864
  34071. }
  34072. },
  34073. goiaMaw: {
  34074. height: math.unit(5.55, "feet"),
  34075. name: "Goia Maw",
  34076. image: {
  34077. source: "./media/characters/ryth/goia-maw.svg"
  34078. }
  34079. },
  34080. goiaForepaw: {
  34081. height: math.unit(3.5, "feet"),
  34082. name: "Goia Forepaw",
  34083. image: {
  34084. source: "./media/characters/ryth/goia-forepaw.svg"
  34085. }
  34086. },
  34087. goiaHindpaw: {
  34088. height: math.unit(5.55, "feet"),
  34089. name: "Goia Hindpaw",
  34090. image: {
  34091. source: "./media/characters/ryth/goia-hindpaw.svg"
  34092. }
  34093. },
  34094. },
  34095. [
  34096. {
  34097. name: "Normal",
  34098. height: math.unit(4, "feet"),
  34099. default: true
  34100. },
  34101. ]
  34102. ))
  34103. characterMakers.push(() => makeCharacter(
  34104. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34105. {
  34106. front: {
  34107. height: math.unit(7, "feet"),
  34108. weight: math.unit(180, "lb"),
  34109. name: "Front",
  34110. image: {
  34111. source: "./media/characters/necrolance/front.svg",
  34112. extra: 1062/947,
  34113. bottom: 41/1103
  34114. }
  34115. },
  34116. back: {
  34117. height: math.unit(7, "feet"),
  34118. weight: math.unit(180, "lb"),
  34119. name: "Back",
  34120. image: {
  34121. source: "./media/characters/necrolance/back.svg",
  34122. extra: 1045/984,
  34123. bottom: 14/1059
  34124. }
  34125. },
  34126. wing: {
  34127. height: math.unit(2.67, "feet"),
  34128. name: "Wing",
  34129. image: {
  34130. source: "./media/characters/necrolance/wing.svg"
  34131. }
  34132. },
  34133. },
  34134. [
  34135. {
  34136. name: "Normal",
  34137. height: math.unit(7, "feet"),
  34138. default: true
  34139. },
  34140. ]
  34141. ))
  34142. characterMakers.push(() => makeCharacter(
  34143. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34144. {
  34145. front: {
  34146. height: math.unit(76, "meters"),
  34147. weight: math.unit(30000, "tons"),
  34148. name: "Front",
  34149. image: {
  34150. source: "./media/characters/tyler/front.svg",
  34151. extra: 1640/1640,
  34152. bottom: 114/1754
  34153. }
  34154. },
  34155. },
  34156. [
  34157. {
  34158. name: "Macro",
  34159. height: math.unit(76, "meters"),
  34160. default: true
  34161. },
  34162. ]
  34163. ))
  34164. characterMakers.push(() => makeCharacter(
  34165. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34166. {
  34167. front: {
  34168. height: math.unit(4 + 11/12, "feet"),
  34169. weight: math.unit(132, "lb"),
  34170. name: "Front",
  34171. image: {
  34172. source: "./media/characters/icey/front.svg",
  34173. extra: 2750/2550,
  34174. bottom: 33/2783
  34175. }
  34176. },
  34177. back: {
  34178. height: math.unit(4 + 11/12, "feet"),
  34179. weight: math.unit(132, "lb"),
  34180. name: "Back",
  34181. image: {
  34182. source: "./media/characters/icey/back.svg",
  34183. extra: 2624/2481,
  34184. bottom: 35/2659
  34185. }
  34186. },
  34187. },
  34188. [
  34189. {
  34190. name: "Normal",
  34191. height: math.unit(4 + 11/12, "feet"),
  34192. default: true
  34193. },
  34194. ]
  34195. ))
  34196. characterMakers.push(() => makeCharacter(
  34197. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34198. {
  34199. front: {
  34200. height: math.unit(100, "feet"),
  34201. weight: math.unit(0, "lb"),
  34202. name: "Front",
  34203. image: {
  34204. source: "./media/characters/smile/front.svg",
  34205. extra: 2983/2912,
  34206. bottom: 162/3145
  34207. }
  34208. },
  34209. back: {
  34210. height: math.unit(100, "feet"),
  34211. weight: math.unit(0, "lb"),
  34212. name: "Back",
  34213. image: {
  34214. source: "./media/characters/smile/back.svg",
  34215. extra: 3143/3031,
  34216. bottom: 91/3234
  34217. }
  34218. },
  34219. head: {
  34220. height: math.unit(26.3, "feet"),
  34221. weight: math.unit(0, "lb"),
  34222. name: "Head",
  34223. image: {
  34224. source: "./media/characters/smile/head.svg"
  34225. }
  34226. },
  34227. collar: {
  34228. height: math.unit(5.3, "feet"),
  34229. weight: math.unit(0, "lb"),
  34230. name: "Collar",
  34231. image: {
  34232. source: "./media/characters/smile/collar.svg"
  34233. }
  34234. },
  34235. },
  34236. [
  34237. {
  34238. name: "Macro",
  34239. height: math.unit(100, "feet"),
  34240. default: true
  34241. },
  34242. ]
  34243. ))
  34244. characterMakers.push(() => makeCharacter(
  34245. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34246. {
  34247. dragon: {
  34248. height: math.unit(26, "feet"),
  34249. weight: math.unit(36, "tons"),
  34250. name: "Dragon",
  34251. image: {
  34252. source: "./media/characters/arimphae/dragon.svg",
  34253. extra: 1574/983,
  34254. bottom: 357/1931
  34255. }
  34256. },
  34257. drake: {
  34258. height: math.unit(9, "feet"),
  34259. weight: math.unit(1.5, "tons"),
  34260. name: "Drake",
  34261. image: {
  34262. source: "./media/characters/arimphae/drake.svg",
  34263. extra: 1120/925,
  34264. bottom: 435/1555
  34265. }
  34266. },
  34267. },
  34268. [
  34269. {
  34270. name: "Small",
  34271. height: math.unit(26*5/9, "feet")
  34272. },
  34273. {
  34274. name: "Normal",
  34275. height: math.unit(26, "feet"),
  34276. default: true
  34277. },
  34278. ]
  34279. ))
  34280. characterMakers.push(() => makeCharacter(
  34281. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34282. {
  34283. front: {
  34284. height: math.unit(8 + 9/12, "feet"),
  34285. name: "Front",
  34286. image: {
  34287. source: "./media/characters/xander/front.svg",
  34288. extra: 1237/974,
  34289. bottom: 94/1331
  34290. }
  34291. },
  34292. },
  34293. [
  34294. {
  34295. name: "Normal",
  34296. height: math.unit(8 + 9/12, "feet"),
  34297. default: true
  34298. },
  34299. {
  34300. name: "Gaze Grabber",
  34301. height: math.unit(13 + 8/12, "feet")
  34302. },
  34303. {
  34304. name: "Jaw Dropper",
  34305. height: math.unit(27, "feet")
  34306. },
  34307. {
  34308. name: "Show Stopper",
  34309. height: math.unit(136, "feet")
  34310. },
  34311. {
  34312. name: "Superstar",
  34313. height: math.unit(1.9e6, "miles")
  34314. },
  34315. ]
  34316. ))
  34317. characterMakers.push(() => makeCharacter(
  34318. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34319. {
  34320. side: {
  34321. height: math.unit(2100, "feet"),
  34322. name: "Side",
  34323. image: {
  34324. source: "./media/characters/osiris/side.svg",
  34325. extra: 1105/939,
  34326. bottom: 167/1272
  34327. }
  34328. },
  34329. },
  34330. [
  34331. {
  34332. name: "Macro",
  34333. height: math.unit(2100, "feet"),
  34334. default: true
  34335. },
  34336. ]
  34337. ))
  34338. characterMakers.push(() => makeCharacter(
  34339. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34340. {
  34341. front: {
  34342. height: math.unit(6 + 8/12, "feet"),
  34343. weight: math.unit(225, "lb"),
  34344. name: "Front",
  34345. image: {
  34346. source: "./media/characters/rhys-londe/front.svg",
  34347. extra: 2258/2141,
  34348. bottom: 188/2446
  34349. }
  34350. },
  34351. back: {
  34352. height: math.unit(6 + 8/12, "feet"),
  34353. weight: math.unit(225, "lb"),
  34354. name: "Back",
  34355. image: {
  34356. source: "./media/characters/rhys-londe/back.svg",
  34357. extra: 2237/2137,
  34358. bottom: 63/2300
  34359. }
  34360. },
  34361. frontNsfw: {
  34362. height: math.unit(6 + 8/12, "feet"),
  34363. weight: math.unit(225, "lb"),
  34364. name: "Front (NSFW)",
  34365. image: {
  34366. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34367. extra: 2258/2141,
  34368. bottom: 188/2446
  34369. }
  34370. },
  34371. backNsfw: {
  34372. height: math.unit(6 + 8/12, "feet"),
  34373. weight: math.unit(225, "lb"),
  34374. name: "Back (NSFW)",
  34375. image: {
  34376. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34377. extra: 2237/2137,
  34378. bottom: 63/2300
  34379. }
  34380. },
  34381. dick: {
  34382. height: math.unit(30, "inches"),
  34383. name: "Dick",
  34384. image: {
  34385. source: "./media/characters/rhys-londe/dick.svg"
  34386. }
  34387. },
  34388. maw: {
  34389. height: math.unit(1.6, "feet"),
  34390. name: "Maw",
  34391. image: {
  34392. source: "./media/characters/rhys-londe/maw.svg"
  34393. }
  34394. },
  34395. },
  34396. [
  34397. {
  34398. name: "Normal",
  34399. height: math.unit(6 + 8/12, "feet"),
  34400. default: true
  34401. },
  34402. ]
  34403. ))
  34404. characterMakers.push(() => makeCharacter(
  34405. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34406. {
  34407. front: {
  34408. height: math.unit(3 + 10/12, "feet"),
  34409. weight: math.unit(90, "lb"),
  34410. name: "Front",
  34411. image: {
  34412. source: "./media/characters/taivas-ensim/front.svg",
  34413. extra: 1327/1216,
  34414. bottom: 96/1423
  34415. }
  34416. },
  34417. back: {
  34418. height: math.unit(3 + 10/12, "feet"),
  34419. weight: math.unit(90, "lb"),
  34420. name: "Back",
  34421. image: {
  34422. source: "./media/characters/taivas-ensim/back.svg",
  34423. extra: 1355/1247,
  34424. bottom: 11/1366
  34425. }
  34426. },
  34427. frontNsfw: {
  34428. height: math.unit(3 + 10/12, "feet"),
  34429. weight: math.unit(90, "lb"),
  34430. name: "Front (NSFW)",
  34431. image: {
  34432. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34433. extra: 1327/1216,
  34434. bottom: 96/1423
  34435. }
  34436. },
  34437. backNsfw: {
  34438. height: math.unit(3 + 10/12, "feet"),
  34439. weight: math.unit(90, "lb"),
  34440. name: "Back (NSFW)",
  34441. image: {
  34442. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34443. extra: 1355/1247,
  34444. bottom: 11/1366
  34445. }
  34446. },
  34447. },
  34448. [
  34449. {
  34450. name: "Normal",
  34451. height: math.unit(3 + 10/12, "feet"),
  34452. default: true
  34453. },
  34454. ]
  34455. ))
  34456. characterMakers.push(() => makeCharacter(
  34457. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34458. {
  34459. front: {
  34460. height: math.unit(9 + 6/12, "feet"),
  34461. weight: math.unit(940, "lb"),
  34462. name: "Front",
  34463. image: {
  34464. source: "./media/characters/byliss/front.svg",
  34465. extra: 1327/1290,
  34466. bottom: 82/1409
  34467. }
  34468. },
  34469. back: {
  34470. height: math.unit(9 + 6/12, "feet"),
  34471. weight: math.unit(940, "lb"),
  34472. name: "Back",
  34473. image: {
  34474. source: "./media/characters/byliss/back.svg",
  34475. extra: 1376/1349,
  34476. bottom: 9/1385
  34477. }
  34478. },
  34479. frontNsfw: {
  34480. height: math.unit(9 + 6/12, "feet"),
  34481. weight: math.unit(940, "lb"),
  34482. name: "Front (NSFW)",
  34483. image: {
  34484. source: "./media/characters/byliss/front-nsfw.svg",
  34485. extra: 1327/1290,
  34486. bottom: 82/1409
  34487. }
  34488. },
  34489. backNsfw: {
  34490. height: math.unit(9 + 6/12, "feet"),
  34491. weight: math.unit(940, "lb"),
  34492. name: "Back (NSFW)",
  34493. image: {
  34494. source: "./media/characters/byliss/back-nsfw.svg",
  34495. extra: 1376/1349,
  34496. bottom: 9/1385
  34497. }
  34498. },
  34499. },
  34500. [
  34501. {
  34502. name: "Normal",
  34503. height: math.unit(9 + 6/12, "feet"),
  34504. default: true
  34505. },
  34506. ]
  34507. ))
  34508. characterMakers.push(() => makeCharacter(
  34509. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34510. {
  34511. front: {
  34512. height: math.unit(5 + 2/12, "feet"),
  34513. weight: math.unit(200, "lb"),
  34514. name: "Front",
  34515. image: {
  34516. source: "./media/characters/noraly/front.svg",
  34517. extra: 4985/4773,
  34518. bottom: 150/5135
  34519. }
  34520. },
  34521. full: {
  34522. height: math.unit(5 + 2/12, "feet"),
  34523. weight: math.unit(164, "lb"),
  34524. name: "Full",
  34525. image: {
  34526. source: "./media/characters/noraly/full.svg",
  34527. extra: 1114/1059,
  34528. bottom: 35/1149
  34529. }
  34530. },
  34531. fuller: {
  34532. height: math.unit(5 + 2/12, "feet"),
  34533. weight: math.unit(230, "lb"),
  34534. name: "Fuller",
  34535. image: {
  34536. source: "./media/characters/noraly/fuller.svg",
  34537. extra: 1114/1059,
  34538. bottom: 35/1149
  34539. }
  34540. },
  34541. fullest: {
  34542. height: math.unit(5 + 2/12, "feet"),
  34543. weight: math.unit(300, "lb"),
  34544. name: "Fullest",
  34545. image: {
  34546. source: "./media/characters/noraly/fullest.svg",
  34547. extra: 1114/1059,
  34548. bottom: 35/1149
  34549. }
  34550. },
  34551. },
  34552. [
  34553. {
  34554. name: "Normal",
  34555. height: math.unit(5 + 2/12, "feet"),
  34556. default: true
  34557. },
  34558. ]
  34559. ))
  34560. characterMakers.push(() => makeCharacter(
  34561. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34562. {
  34563. front: {
  34564. height: math.unit(5 + 2/12, "feet"),
  34565. weight: math.unit(210, "lb"),
  34566. name: "Front",
  34567. image: {
  34568. source: "./media/characters/pera/front.svg",
  34569. extra: 1560/1531,
  34570. bottom: 165/1725
  34571. }
  34572. },
  34573. back: {
  34574. height: math.unit(5 + 2/12, "feet"),
  34575. weight: math.unit(210, "lb"),
  34576. name: "Back",
  34577. image: {
  34578. source: "./media/characters/pera/back.svg",
  34579. extra: 1523/1493,
  34580. bottom: 152/1675
  34581. }
  34582. },
  34583. dick: {
  34584. height: math.unit(2.4, "feet"),
  34585. name: "Dick",
  34586. image: {
  34587. source: "./media/characters/pera/dick.svg"
  34588. }
  34589. },
  34590. },
  34591. [
  34592. {
  34593. name: "Normal",
  34594. height: math.unit(5 + 2/12, "feet"),
  34595. default: true
  34596. },
  34597. ]
  34598. ))
  34599. characterMakers.push(() => makeCharacter(
  34600. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34601. {
  34602. front: {
  34603. height: math.unit(12, "feet"),
  34604. weight: math.unit(3200, "lb"),
  34605. name: "Front",
  34606. image: {
  34607. source: "./media/characters/julian/front.svg",
  34608. extra: 2962/2701,
  34609. bottom: 184/3146
  34610. }
  34611. },
  34612. maw: {
  34613. height: math.unit(5.35, "feet"),
  34614. name: "Maw",
  34615. image: {
  34616. source: "./media/characters/julian/maw.svg"
  34617. }
  34618. },
  34619. paw: {
  34620. height: math.unit(3.07, "feet"),
  34621. name: "Paw",
  34622. image: {
  34623. source: "./media/characters/julian/paw.svg"
  34624. }
  34625. },
  34626. },
  34627. [
  34628. {
  34629. name: "Default",
  34630. height: math.unit(12, "feet"),
  34631. default: true
  34632. },
  34633. {
  34634. name: "Big",
  34635. height: math.unit(50, "feet")
  34636. },
  34637. {
  34638. name: "Really Big",
  34639. height: math.unit(1, "mile")
  34640. },
  34641. {
  34642. name: "Extremely Big",
  34643. height: math.unit(100, "miles")
  34644. },
  34645. {
  34646. name: "Planet Hugger",
  34647. height: math.unit(200, "megameters")
  34648. },
  34649. {
  34650. name: "Unreasonably Big",
  34651. height: math.unit(1e300, "meters")
  34652. },
  34653. ]
  34654. ))
  34655. characterMakers.push(() => makeCharacter(
  34656. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34657. {
  34658. solgooleo: {
  34659. height: math.unit(4, "meters"),
  34660. weight: math.unit(6000*1.5, "kg"),
  34661. volume: math.unit(6000, "liters"),
  34662. name: "Solgooleo",
  34663. image: {
  34664. source: "./media/characters/pi/solgooleo.svg",
  34665. extra: 388/331,
  34666. bottom: 29/417
  34667. }
  34668. },
  34669. },
  34670. [
  34671. {
  34672. name: "Normal",
  34673. height: math.unit(4, "meters"),
  34674. default: true
  34675. },
  34676. ]
  34677. ))
  34678. characterMakers.push(() => makeCharacter(
  34679. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34680. {
  34681. front: {
  34682. height: math.unit(8, "feet"),
  34683. weight: math.unit(4, "tons"),
  34684. name: "Front",
  34685. image: {
  34686. source: "./media/characters/shaun/front.svg",
  34687. extra: 503/495,
  34688. bottom: 20/523
  34689. }
  34690. },
  34691. back: {
  34692. height: math.unit(8, "feet"),
  34693. weight: math.unit(4, "tons"),
  34694. name: "Back",
  34695. image: {
  34696. source: "./media/characters/shaun/back.svg",
  34697. extra: 487/480,
  34698. bottom: 20/507
  34699. }
  34700. },
  34701. },
  34702. [
  34703. {
  34704. name: "Lorg",
  34705. height: math.unit(8, "feet"),
  34706. default: true
  34707. },
  34708. ]
  34709. ))
  34710. characterMakers.push(() => makeCharacter(
  34711. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34712. {
  34713. frontAnthro: {
  34714. height: math.unit(7, "feet"),
  34715. name: "Front",
  34716. image: {
  34717. source: "./media/characters/sini/front-anthro.svg",
  34718. extra: 726/678,
  34719. bottom: 35/761
  34720. },
  34721. form: "anthro",
  34722. default: true
  34723. },
  34724. backAnthro: {
  34725. height: math.unit(7, "feet"),
  34726. name: "Back",
  34727. image: {
  34728. source: "./media/characters/sini/back-anthro.svg",
  34729. extra: 743/701,
  34730. bottom: 12/755
  34731. },
  34732. form: "anthro",
  34733. },
  34734. frontAnthroNsfw: {
  34735. height: math.unit(7, "feet"),
  34736. name: "Front (NSFW)",
  34737. image: {
  34738. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34739. extra: 726/678,
  34740. bottom: 35/761
  34741. },
  34742. form: "anthro"
  34743. },
  34744. backAnthroNsfw: {
  34745. height: math.unit(7, "feet"),
  34746. name: "Back (NSFW)",
  34747. image: {
  34748. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34749. extra: 743/701,
  34750. bottom: 12/755
  34751. },
  34752. form: "anthro",
  34753. },
  34754. mawAnthro: {
  34755. height: math.unit(2.14, "feet"),
  34756. name: "Maw",
  34757. image: {
  34758. source: "./media/characters/sini/maw-anthro.svg"
  34759. },
  34760. form: "anthro"
  34761. },
  34762. dick: {
  34763. height: math.unit(1.45, "feet"),
  34764. name: "Dick",
  34765. image: {
  34766. source: "./media/characters/sini/dick-anthro.svg"
  34767. },
  34768. form: "anthro"
  34769. },
  34770. feral: {
  34771. height: math.unit(16, "feet"),
  34772. name: "Feral",
  34773. image: {
  34774. source: "./media/characters/sini/feral.svg",
  34775. extra: 814/605,
  34776. bottom: 11/825
  34777. },
  34778. form: "feral",
  34779. default: true
  34780. },
  34781. feralNsfw: {
  34782. height: math.unit(16, "feet"),
  34783. name: "Feral (NSFW)",
  34784. image: {
  34785. source: "./media/characters/sini/feral-nsfw.svg",
  34786. extra: 814/605,
  34787. bottom: 11/825
  34788. },
  34789. form: "feral"
  34790. },
  34791. mawFeral: {
  34792. height: math.unit(5.66, "feet"),
  34793. name: "Maw",
  34794. image: {
  34795. source: "./media/characters/sini/maw-feral.svg"
  34796. },
  34797. form: "feral",
  34798. },
  34799. pawFeral: {
  34800. height: math.unit(5.17, "feet"),
  34801. name: "Paw",
  34802. image: {
  34803. source: "./media/characters/sini/paw-feral.svg"
  34804. },
  34805. form: "feral",
  34806. },
  34807. rumpFeral: {
  34808. height: math.unit(13.11, "feet"),
  34809. name: "Rump",
  34810. image: {
  34811. source: "./media/characters/sini/rump-feral.svg"
  34812. },
  34813. form: "feral",
  34814. },
  34815. dickFeral: {
  34816. height: math.unit(1, "feet"),
  34817. name: "Dick",
  34818. image: {
  34819. source: "./media/characters/sini/dick-feral.svg"
  34820. },
  34821. form: "feral",
  34822. },
  34823. eyeFeral: {
  34824. height: math.unit(1.23, "feet"),
  34825. name: "Eye",
  34826. image: {
  34827. source: "./media/characters/sini/eye-feral.svg"
  34828. },
  34829. form: "feral",
  34830. },
  34831. },
  34832. [
  34833. {
  34834. name: "Normal",
  34835. height: math.unit(7, "feet"),
  34836. default: true,
  34837. form: "anthro"
  34838. },
  34839. {
  34840. name: "Normal",
  34841. height: math.unit(16, "feet"),
  34842. default: true,
  34843. form: "feral"
  34844. },
  34845. ],
  34846. {
  34847. "anthro": {
  34848. name: "Anthro",
  34849. default: true
  34850. },
  34851. "feral": {
  34852. name: "Feral",
  34853. }
  34854. }
  34855. ))
  34856. characterMakers.push(() => makeCharacter(
  34857. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34858. {
  34859. side: {
  34860. height: math.unit(47.2, "meters"),
  34861. weight: math.unit(10000, "tons"),
  34862. name: "Side",
  34863. image: {
  34864. source: "./media/characters/raylldo/side.svg",
  34865. extra: 2363/642,
  34866. bottom: 221/2584
  34867. }
  34868. },
  34869. top: {
  34870. height: math.unit(240, "meters"),
  34871. weight: math.unit(10000, "tons"),
  34872. name: "Top",
  34873. image: {
  34874. source: "./media/characters/raylldo/top.svg"
  34875. }
  34876. },
  34877. bottom: {
  34878. height: math.unit(240, "meters"),
  34879. weight: math.unit(10000, "tons"),
  34880. name: "Bottom",
  34881. image: {
  34882. source: "./media/characters/raylldo/bottom.svg"
  34883. }
  34884. },
  34885. head: {
  34886. height: math.unit(38.6, "meters"),
  34887. name: "Head",
  34888. image: {
  34889. source: "./media/characters/raylldo/head.svg",
  34890. extra: 1335/1112,
  34891. bottom: 0/1335
  34892. }
  34893. },
  34894. maw: {
  34895. height: math.unit(16.37, "meters"),
  34896. name: "Maw",
  34897. image: {
  34898. source: "./media/characters/raylldo/maw.svg",
  34899. extra: 883/660,
  34900. bottom: 0/883
  34901. },
  34902. extraAttributes: {
  34903. preyCapacity: {
  34904. name: "Capacity",
  34905. power: 3,
  34906. type: "volume",
  34907. base: math.unit(1000, "people")
  34908. },
  34909. tongueSize: {
  34910. name: "Tongue Size",
  34911. power: 2,
  34912. type: "area",
  34913. base: math.unit(21, "m^2")
  34914. }
  34915. }
  34916. },
  34917. forepaw: {
  34918. height: math.unit(18, "meters"),
  34919. name: "Forepaw",
  34920. image: {
  34921. source: "./media/characters/raylldo/forepaw.svg"
  34922. }
  34923. },
  34924. hindpaw: {
  34925. height: math.unit(23, "meters"),
  34926. name: "Hindpaw",
  34927. image: {
  34928. source: "./media/characters/raylldo/hindpaw.svg"
  34929. }
  34930. },
  34931. genitals: {
  34932. height: math.unit(42, "meters"),
  34933. name: "Genitals",
  34934. image: {
  34935. source: "./media/characters/raylldo/genitals.svg"
  34936. }
  34937. },
  34938. },
  34939. [
  34940. {
  34941. name: "Normal",
  34942. height: math.unit(47.2, "meters"),
  34943. default: true
  34944. },
  34945. ]
  34946. ))
  34947. characterMakers.push(() => makeCharacter(
  34948. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34949. {
  34950. anthroFront: {
  34951. height: math.unit(9, "feet"),
  34952. weight: math.unit(600, "lb"),
  34953. name: "Anthro (Front)",
  34954. image: {
  34955. source: "./media/characters/glint/anthro-front.svg",
  34956. extra: 1097/1018,
  34957. bottom: 28/1125
  34958. }
  34959. },
  34960. anthroBack: {
  34961. height: math.unit(9, "feet"),
  34962. weight: math.unit(600, "lb"),
  34963. name: "Anthro (Back)",
  34964. image: {
  34965. source: "./media/characters/glint/anthro-back.svg",
  34966. extra: 1154/997,
  34967. bottom: 36/1190
  34968. }
  34969. },
  34970. feral: {
  34971. height: math.unit(11, "feet"),
  34972. weight: math.unit(50000, "lb"),
  34973. name: "Feral",
  34974. image: {
  34975. source: "./media/characters/glint/feral.svg",
  34976. extra: 3035/1585,
  34977. bottom: 1169/4204
  34978. }
  34979. },
  34980. dickAnthro: {
  34981. height: math.unit(0.7, "meters"),
  34982. name: "Dick (Anthro)",
  34983. image: {
  34984. source: "./media/characters/glint/dick-anthro.svg"
  34985. }
  34986. },
  34987. dickFeral: {
  34988. height: math.unit(2.65, "meters"),
  34989. name: "Dick (Feral)",
  34990. image: {
  34991. source: "./media/characters/glint/dick-feral.svg"
  34992. }
  34993. },
  34994. slitHidden: {
  34995. height: math.unit(5.85, "meters"),
  34996. name: "Slit (Hidden)",
  34997. image: {
  34998. source: "./media/characters/glint/slit-hidden.svg"
  34999. }
  35000. },
  35001. slitErect: {
  35002. height: math.unit(5.85, "meters"),
  35003. name: "Slit (Erect)",
  35004. image: {
  35005. source: "./media/characters/glint/slit-erect.svg"
  35006. }
  35007. },
  35008. mawAnthro: {
  35009. height: math.unit(0.63, "meters"),
  35010. name: "Maw (Anthro)",
  35011. image: {
  35012. source: "./media/characters/glint/maw.svg"
  35013. }
  35014. },
  35015. mawFeral: {
  35016. height: math.unit(2.89, "meters"),
  35017. name: "Maw (Feral)",
  35018. image: {
  35019. source: "./media/characters/glint/maw.svg"
  35020. }
  35021. },
  35022. },
  35023. [
  35024. {
  35025. name: "Normal",
  35026. height: math.unit(9, "feet"),
  35027. default: true
  35028. },
  35029. ]
  35030. ))
  35031. characterMakers.push(() => makeCharacter(
  35032. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35033. {
  35034. side: {
  35035. height: math.unit(15, "feet"),
  35036. weight: math.unit(5000, "kg"),
  35037. name: "Side",
  35038. image: {
  35039. source: "./media/characters/kairne/side.svg",
  35040. extra: 979/811,
  35041. bottom: 13/992
  35042. }
  35043. },
  35044. front: {
  35045. height: math.unit(15, "feet"),
  35046. weight: math.unit(5000, "kg"),
  35047. name: "Front",
  35048. image: {
  35049. source: "./media/characters/kairne/front.svg",
  35050. extra: 908/814,
  35051. bottom: 26/934
  35052. }
  35053. },
  35054. sideNsfw: {
  35055. height: math.unit(15, "feet"),
  35056. weight: math.unit(5000, "kg"),
  35057. name: "Side (NSFW)",
  35058. image: {
  35059. source: "./media/characters/kairne/side-nsfw.svg",
  35060. extra: 979/811,
  35061. bottom: 13/992
  35062. }
  35063. },
  35064. frontNsfw: {
  35065. height: math.unit(15, "feet"),
  35066. weight: math.unit(5000, "kg"),
  35067. name: "Front (NSFW)",
  35068. image: {
  35069. source: "./media/characters/kairne/front-nsfw.svg",
  35070. extra: 908/814,
  35071. bottom: 26/934
  35072. }
  35073. },
  35074. dickCaged: {
  35075. height: math.unit(0.65, "meters"),
  35076. name: "Dick-caged",
  35077. image: {
  35078. source: "./media/characters/kairne/dick-caged.svg"
  35079. }
  35080. },
  35081. dick: {
  35082. height: math.unit(0.79, "meters"),
  35083. name: "Dick",
  35084. image: {
  35085. source: "./media/characters/kairne/dick.svg"
  35086. }
  35087. },
  35088. genitals: {
  35089. height: math.unit(1.29, "meters"),
  35090. name: "Genitals",
  35091. image: {
  35092. source: "./media/characters/kairne/genitals.svg"
  35093. }
  35094. },
  35095. maw: {
  35096. height: math.unit(1.73, "meters"),
  35097. name: "Maw",
  35098. image: {
  35099. source: "./media/characters/kairne/maw.svg"
  35100. }
  35101. },
  35102. },
  35103. [
  35104. {
  35105. name: "Normal",
  35106. height: math.unit(15, "feet"),
  35107. default: true
  35108. },
  35109. ]
  35110. ))
  35111. characterMakers.push(() => makeCharacter(
  35112. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35113. {
  35114. front: {
  35115. height: math.unit(5 + 8/12, "feet"),
  35116. weight: math.unit(139, "lb"),
  35117. name: "Front",
  35118. image: {
  35119. source: "./media/characters/biscuit-jackal/front.svg",
  35120. extra: 2106/1961,
  35121. bottom: 58/2164
  35122. }
  35123. },
  35124. back: {
  35125. height: math.unit(5 + 8/12, "feet"),
  35126. weight: math.unit(139, "lb"),
  35127. name: "Back",
  35128. image: {
  35129. source: "./media/characters/biscuit-jackal/back.svg",
  35130. extra: 2132/1976,
  35131. bottom: 57/2189
  35132. }
  35133. },
  35134. werejackal: {
  35135. height: math.unit(6 + 3/12, "feet"),
  35136. weight: math.unit(188, "lb"),
  35137. name: "Werejackal",
  35138. image: {
  35139. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35140. extra: 2373/2178,
  35141. bottom: 53/2426
  35142. }
  35143. },
  35144. },
  35145. [
  35146. {
  35147. name: "Normal",
  35148. height: math.unit(5 + 8/12, "feet"),
  35149. default: true
  35150. },
  35151. ]
  35152. ))
  35153. characterMakers.push(() => makeCharacter(
  35154. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35155. {
  35156. front: {
  35157. height: math.unit(140, "cm"),
  35158. weight: math.unit(45, "kg"),
  35159. name: "Front",
  35160. image: {
  35161. source: "./media/characters/tayra-white/front.svg",
  35162. extra: 2229/2192,
  35163. bottom: 75/2304
  35164. }
  35165. },
  35166. },
  35167. [
  35168. {
  35169. name: "Normal",
  35170. height: math.unit(140, "cm"),
  35171. default: true
  35172. },
  35173. ]
  35174. ))
  35175. characterMakers.push(() => makeCharacter(
  35176. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35177. {
  35178. front: {
  35179. height: math.unit(4 + 5/12, "feet"),
  35180. name: "Front",
  35181. image: {
  35182. source: "./media/characters/scoop/front.svg",
  35183. extra: 1257/1136,
  35184. bottom: 69/1326
  35185. }
  35186. },
  35187. back: {
  35188. height: math.unit(4 + 5/12, "feet"),
  35189. name: "Back",
  35190. image: {
  35191. source: "./media/characters/scoop/back.svg",
  35192. extra: 1321/1152,
  35193. bottom: 32/1353
  35194. }
  35195. },
  35196. maw: {
  35197. height: math.unit(0.68, "feet"),
  35198. name: "Maw",
  35199. image: {
  35200. source: "./media/characters/scoop/maw.svg"
  35201. }
  35202. },
  35203. },
  35204. [
  35205. {
  35206. name: "Really Small",
  35207. height: math.unit(1, "mm")
  35208. },
  35209. {
  35210. name: "Micro",
  35211. height: math.unit(1, "inch")
  35212. },
  35213. {
  35214. name: "Normal",
  35215. height: math.unit(4 + 5/12, "feet"),
  35216. default: true
  35217. },
  35218. {
  35219. name: "Macro",
  35220. height: math.unit(200, "feet")
  35221. },
  35222. {
  35223. name: "Megamacro",
  35224. height: math.unit(3240, "feet")
  35225. },
  35226. {
  35227. name: "Teramacro",
  35228. height: math.unit(2500, "miles")
  35229. },
  35230. ]
  35231. ))
  35232. characterMakers.push(() => makeCharacter(
  35233. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35234. {
  35235. front: {
  35236. height: math.unit(15 + 7/12, "feet"),
  35237. weight: math.unit(1150, "tons"),
  35238. name: "Front",
  35239. image: {
  35240. source: "./media/characters/saphinara/front.svg",
  35241. extra: 1837/1643,
  35242. bottom: 84/1921
  35243. },
  35244. form: "normal",
  35245. default: true
  35246. },
  35247. side: {
  35248. height: math.unit(15 + 7/12, "feet"),
  35249. weight: math.unit(1150, "tons"),
  35250. name: "Side",
  35251. image: {
  35252. source: "./media/characters/saphinara/side.svg",
  35253. extra: 605/547,
  35254. bottom: 6/611
  35255. },
  35256. form: "normal"
  35257. },
  35258. back: {
  35259. height: math.unit(15 + 7/12, "feet"),
  35260. weight: math.unit(1150, "tons"),
  35261. name: "Back",
  35262. image: {
  35263. source: "./media/characters/saphinara/back.svg",
  35264. extra: 591/531,
  35265. bottom: 13/604
  35266. },
  35267. form: "normal"
  35268. },
  35269. frontTail: {
  35270. height: math.unit(15 + 7/12, "feet"),
  35271. weight: math.unit(1150, "tons"),
  35272. name: "Front (Full Tail)",
  35273. image: {
  35274. source: "./media/characters/saphinara/front-tail.svg",
  35275. extra: 2256/1630,
  35276. bottom: 261/2517
  35277. },
  35278. form: "normal"
  35279. },
  35280. insides: {
  35281. height: math.unit(11.92, "feet"),
  35282. name: "Insides",
  35283. image: {
  35284. source: "./media/characters/saphinara/insides.svg"
  35285. },
  35286. form: "normal"
  35287. },
  35288. head: {
  35289. height: math.unit(4.17, "feet"),
  35290. name: "Head",
  35291. image: {
  35292. source: "./media/characters/saphinara/head.svg"
  35293. },
  35294. form: "normal"
  35295. },
  35296. tongue: {
  35297. height: math.unit(4.60, "feet"),
  35298. name: "Tongue",
  35299. image: {
  35300. source: "./media/characters/saphinara/tongue.svg"
  35301. },
  35302. form: "normal"
  35303. },
  35304. headEnraged: {
  35305. height: math.unit(5.55, "feet"),
  35306. name: "Head (Enraged)",
  35307. image: {
  35308. source: "./media/characters/saphinara/head-enraged.svg"
  35309. },
  35310. form: "normal"
  35311. },
  35312. wings: {
  35313. height: math.unit(11.95, "feet"),
  35314. name: "Wings",
  35315. image: {
  35316. source: "./media/characters/saphinara/wings.svg"
  35317. },
  35318. form: "normal"
  35319. },
  35320. feathers: {
  35321. height: math.unit(8.92, "feet"),
  35322. name: "Feathers",
  35323. image: {
  35324. source: "./media/characters/saphinara/feathers.svg"
  35325. },
  35326. form: "normal"
  35327. },
  35328. shackles: {
  35329. height: math.unit(2, "feet"),
  35330. name: "Shackles",
  35331. image: {
  35332. source: "./media/characters/saphinara/shackles.svg"
  35333. },
  35334. form: "normal"
  35335. },
  35336. eyes: {
  35337. height: math.unit(1.331, "feet"),
  35338. name: "Eyes",
  35339. image: {
  35340. source: "./media/characters/saphinara/eyes.svg"
  35341. },
  35342. form: "normal"
  35343. },
  35344. eyesEnraged: {
  35345. height: math.unit(1.331, "feet"),
  35346. name: "Eyes (Enraged)",
  35347. image: {
  35348. source: "./media/characters/saphinara/eyes-enraged.svg"
  35349. },
  35350. form: "normal"
  35351. },
  35352. trueFormSide: {
  35353. height: math.unit(200, "feet"),
  35354. weight: math.unit(1e7, "tons"),
  35355. name: "Side",
  35356. image: {
  35357. source: "./media/characters/saphinara/true-form-side.svg",
  35358. extra: 1399/770,
  35359. bottom: 97/1496
  35360. },
  35361. form: "true-form",
  35362. default: true
  35363. },
  35364. trueFormMaw: {
  35365. height: math.unit(71.5, "feet"),
  35366. name: "Maw",
  35367. image: {
  35368. source: "./media/characters/saphinara/true-form-maw.svg",
  35369. extra: 2302/1453,
  35370. bottom: 0/2302
  35371. },
  35372. form: "true-form"
  35373. },
  35374. meowberusSide: {
  35375. height: math.unit(75, "feet"),
  35376. weight: math.unit(180000, "kg"),
  35377. preyCapacity: math.unit(50000, "people"),
  35378. name: "Side",
  35379. image: {
  35380. source: "./media/characters/saphinara/meowberus-side.svg",
  35381. extra: 1400/711,
  35382. bottom: 126/1526
  35383. },
  35384. form: "meowberus",
  35385. extraAttributes: {
  35386. "pawArea": {
  35387. name: "Paw Size",
  35388. power: 2,
  35389. type: "area",
  35390. base: math.unit(35, "m^2")
  35391. }
  35392. }
  35393. },
  35394. },
  35395. [
  35396. {
  35397. name: "Normal",
  35398. height: math.unit(15 + 7/12, "feet"),
  35399. default: true,
  35400. form: "normal"
  35401. },
  35402. {
  35403. name: "Angry",
  35404. height: math.unit(30 + 6/12, "feet"),
  35405. form: "normal"
  35406. },
  35407. {
  35408. name: "Enraged",
  35409. height: math.unit(102 + 1/12, "feet"),
  35410. form: "normal"
  35411. },
  35412. {
  35413. name: "True",
  35414. height: math.unit(200, "feet"),
  35415. default: true,
  35416. form: "true-form"
  35417. },
  35418. {
  35419. name: "Normal",
  35420. height: math.unit(75, "feet"),
  35421. default: true,
  35422. form: "meowberus"
  35423. },
  35424. ],
  35425. {
  35426. "normal": {
  35427. name: "Normal",
  35428. default: true
  35429. },
  35430. "true-form": {
  35431. name: "True Form"
  35432. },
  35433. "meowberus": {
  35434. name: "Meowberus",
  35435. },
  35436. }
  35437. ))
  35438. characterMakers.push(() => makeCharacter(
  35439. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35440. {
  35441. front: {
  35442. height: math.unit(6 + 8/12, "feet"),
  35443. weight: math.unit(300, "lb"),
  35444. name: "Front",
  35445. image: {
  35446. source: "./media/characters/jrain/front.svg",
  35447. extra: 3039/2865,
  35448. bottom: 399/3438
  35449. }
  35450. },
  35451. back: {
  35452. height: math.unit(6 + 8/12, "feet"),
  35453. weight: math.unit(300, "lb"),
  35454. name: "Back",
  35455. image: {
  35456. source: "./media/characters/jrain/back.svg",
  35457. extra: 3089/2938,
  35458. bottom: 172/3261
  35459. }
  35460. },
  35461. head: {
  35462. height: math.unit(2.14, "feet"),
  35463. name: "Head",
  35464. image: {
  35465. source: "./media/characters/jrain/head.svg"
  35466. }
  35467. },
  35468. maw: {
  35469. height: math.unit(1.77, "feet"),
  35470. name: "Maw",
  35471. image: {
  35472. source: "./media/characters/jrain/maw.svg"
  35473. }
  35474. },
  35475. leftHand: {
  35476. height: math.unit(1.1, "feet"),
  35477. name: "Left Hand",
  35478. image: {
  35479. source: "./media/characters/jrain/left-hand.svg"
  35480. }
  35481. },
  35482. rightHand: {
  35483. height: math.unit(1.1, "feet"),
  35484. name: "Right Hand",
  35485. image: {
  35486. source: "./media/characters/jrain/right-hand.svg"
  35487. }
  35488. },
  35489. eye: {
  35490. height: math.unit(0.35, "feet"),
  35491. name: "Eye",
  35492. image: {
  35493. source: "./media/characters/jrain/eye.svg"
  35494. }
  35495. },
  35496. },
  35497. [
  35498. {
  35499. name: "Normal",
  35500. height: math.unit(6 + 8/12, "feet"),
  35501. default: true
  35502. },
  35503. {
  35504. name: "Casually Large",
  35505. height: math.unit(25, "feet")
  35506. },
  35507. {
  35508. name: "Giant",
  35509. height: math.unit(100, "feet")
  35510. },
  35511. {
  35512. name: "Kaiju",
  35513. height: math.unit(300, "feet")
  35514. },
  35515. ]
  35516. ))
  35517. characterMakers.push(() => makeCharacter(
  35518. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35519. {
  35520. dragon: {
  35521. height: math.unit(5, "meters"),
  35522. name: "Dragon",
  35523. image: {
  35524. source: "./media/characters/sabrina/dragon.svg",
  35525. extra: 3670 / 2365,
  35526. bottom: 333 / 4003
  35527. }
  35528. },
  35529. gryphon: {
  35530. height: math.unit(3, "meters"),
  35531. name: "Gryphon",
  35532. image: {
  35533. source: "./media/characters/sabrina/gryphon.svg",
  35534. extra: 1576 / 945,
  35535. bottom: 71 / 1647
  35536. }
  35537. },
  35538. snake: {
  35539. height: math.unit(12, "meters"),
  35540. name: "Snake",
  35541. image: {
  35542. source: "./media/characters/sabrina/snake.svg",
  35543. extra: 1758 / 1320,
  35544. bottom: 186 / 1944
  35545. }
  35546. },
  35547. collar: {
  35548. height: math.unit(1.86, "meters"),
  35549. name: "Collar",
  35550. image: {
  35551. source: "./media/characters/sabrina/collar.svg"
  35552. }
  35553. },
  35554. eye: {
  35555. height: math.unit(0.53, "meters"),
  35556. name: "Eye",
  35557. image: {
  35558. source: "./media/characters/sabrina/eye.svg"
  35559. }
  35560. },
  35561. foot: {
  35562. height: math.unit(1.86, "meters"),
  35563. name: "Foot",
  35564. image: {
  35565. source: "./media/characters/sabrina/foot.svg"
  35566. }
  35567. },
  35568. hand: {
  35569. height: math.unit(1.32, "meters"),
  35570. name: "Hand",
  35571. image: {
  35572. source: "./media/characters/sabrina/hand.svg"
  35573. }
  35574. },
  35575. head: {
  35576. height: math.unit(2.44, "meters"),
  35577. name: "Head",
  35578. image: {
  35579. source: "./media/characters/sabrina/head.svg"
  35580. }
  35581. },
  35582. headAngry: {
  35583. height: math.unit(2.44, "meters"),
  35584. name: "Head (Angry))",
  35585. image: {
  35586. source: "./media/characters/sabrina/head-angry.svg"
  35587. }
  35588. },
  35589. maw: {
  35590. height: math.unit(1.65, "meters"),
  35591. name: "Maw",
  35592. image: {
  35593. source: "./media/characters/sabrina/maw.svg"
  35594. }
  35595. },
  35596. spikes: {
  35597. height: math.unit(1.69, "meters"),
  35598. name: "Spikes",
  35599. image: {
  35600. source: "./media/characters/sabrina/spikes.svg"
  35601. }
  35602. },
  35603. stomach: {
  35604. height: math.unit(1.15, "meters"),
  35605. name: "Stomach",
  35606. image: {
  35607. source: "./media/characters/sabrina/stomach.svg"
  35608. }
  35609. },
  35610. tongue: {
  35611. height: math.unit(1.27, "meters"),
  35612. name: "Tongue",
  35613. image: {
  35614. source: "./media/characters/sabrina/tongue.svg"
  35615. }
  35616. },
  35617. wingDorsal: {
  35618. height: math.unit(4.85, "meters"),
  35619. name: "Wing (Dorsal)",
  35620. image: {
  35621. source: "./media/characters/sabrina/wing-dorsal.svg"
  35622. }
  35623. },
  35624. wingVentral: {
  35625. height: math.unit(4.85, "meters"),
  35626. name: "Wing (Ventral)",
  35627. image: {
  35628. source: "./media/characters/sabrina/wing-ventral.svg"
  35629. }
  35630. },
  35631. },
  35632. [
  35633. {
  35634. name: "Normal",
  35635. height: math.unit(5, "meters"),
  35636. default: true
  35637. },
  35638. ]
  35639. ))
  35640. characterMakers.push(() => makeCharacter(
  35641. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35642. {
  35643. frontMaid: {
  35644. height: math.unit(5 + 5/12, "feet"),
  35645. weight: math.unit(130, "lb"),
  35646. name: "Front (Maid)",
  35647. image: {
  35648. source: "./media/characters/midnight-tales/front-maid.svg",
  35649. extra: 489/454,
  35650. bottom: 61/550
  35651. }
  35652. },
  35653. frontFormal: {
  35654. height: math.unit(5 + 5/12, "feet"),
  35655. weight: math.unit(130, "lb"),
  35656. name: "Front (Formal)",
  35657. image: {
  35658. source: "./media/characters/midnight-tales/front-formal.svg",
  35659. extra: 489/454,
  35660. bottom: 61/550
  35661. }
  35662. },
  35663. back: {
  35664. height: math.unit(5 + 5/12, "feet"),
  35665. weight: math.unit(130, "lb"),
  35666. name: "Back",
  35667. image: {
  35668. source: "./media/characters/midnight-tales/back.svg",
  35669. extra: 498/456,
  35670. bottom: 33/531
  35671. }
  35672. },
  35673. frontBeast: {
  35674. height: math.unit(40, "feet"),
  35675. weight: math.unit(64000, "lb"),
  35676. name: "Front (Beast)",
  35677. image: {
  35678. source: "./media/characters/midnight-tales/front-beast.svg",
  35679. extra: 927/860,
  35680. bottom: 53/980
  35681. }
  35682. },
  35683. backBeast: {
  35684. height: math.unit(40, "feet"),
  35685. weight: math.unit(64000, "lb"),
  35686. name: "Back (Beast)",
  35687. image: {
  35688. source: "./media/characters/midnight-tales/back-beast.svg",
  35689. extra: 929/855,
  35690. bottom: 16/945
  35691. }
  35692. },
  35693. footBeast: {
  35694. height: math.unit(6.7, "feet"),
  35695. name: "Foot (Beast)",
  35696. image: {
  35697. source: "./media/characters/midnight-tales/foot-beast.svg"
  35698. }
  35699. },
  35700. headBeast: {
  35701. height: math.unit(8, "feet"),
  35702. name: "Head (Beast)",
  35703. image: {
  35704. source: "./media/characters/midnight-tales/head-beast.svg"
  35705. }
  35706. },
  35707. },
  35708. [
  35709. {
  35710. name: "Normal",
  35711. height: math.unit(5 + 5 / 12, "feet"),
  35712. default: true
  35713. },
  35714. {
  35715. name: "Macro",
  35716. height: math.unit(25, "feet")
  35717. },
  35718. ]
  35719. ))
  35720. characterMakers.push(() => makeCharacter(
  35721. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35722. {
  35723. front: {
  35724. height: math.unit(5 + 10/12, "feet"),
  35725. name: "Front",
  35726. image: {
  35727. source: "./media/characters/argon/front.svg",
  35728. extra: 2009/1935,
  35729. bottom: 118/2127
  35730. }
  35731. },
  35732. back: {
  35733. height: math.unit(5 + 10/12, "feet"),
  35734. name: "Back",
  35735. image: {
  35736. source: "./media/characters/argon/back.svg",
  35737. extra: 2047/1992,
  35738. bottom: 20/2067
  35739. }
  35740. },
  35741. frontDressed: {
  35742. height: math.unit(5 + 10/12, "feet"),
  35743. name: "Front (Dressed)",
  35744. image: {
  35745. source: "./media/characters/argon/front-dressed.svg",
  35746. extra: 2009/1935,
  35747. bottom: 118/2127
  35748. }
  35749. },
  35750. },
  35751. [
  35752. {
  35753. name: "Normal",
  35754. height: math.unit(5 + 10/12, "feet"),
  35755. default: true
  35756. },
  35757. ]
  35758. ))
  35759. characterMakers.push(() => makeCharacter(
  35760. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35761. {
  35762. front: {
  35763. height: math.unit(8 + 6/12, "feet"),
  35764. weight: math.unit(1150, "lb"),
  35765. name: "Front",
  35766. image: {
  35767. source: "./media/characters/kichi/front.svg",
  35768. extra: 1267/1164,
  35769. bottom: 61/1328
  35770. }
  35771. },
  35772. back: {
  35773. height: math.unit(8 + 6/12, "feet"),
  35774. weight: math.unit(1150, "lb"),
  35775. name: "Back",
  35776. image: {
  35777. source: "./media/characters/kichi/back.svg",
  35778. extra: 1273/1166,
  35779. bottom: 33/1306
  35780. }
  35781. },
  35782. },
  35783. [
  35784. {
  35785. name: "Normal",
  35786. height: math.unit(8 + 6/12, "feet"),
  35787. default: true
  35788. },
  35789. ]
  35790. ))
  35791. characterMakers.push(() => makeCharacter(
  35792. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35793. {
  35794. front: {
  35795. height: math.unit(6, "feet"),
  35796. weight: math.unit(210, "lb"),
  35797. name: "Front",
  35798. image: {
  35799. source: "./media/characters/manetel-greyscale/front.svg",
  35800. extra: 350/312,
  35801. bottom: 8/358
  35802. }
  35803. },
  35804. },
  35805. [
  35806. {
  35807. name: "Micro",
  35808. height: math.unit(2, "inches")
  35809. },
  35810. {
  35811. name: "Normal",
  35812. height: math.unit(6, "feet"),
  35813. default: true
  35814. },
  35815. {
  35816. name: "Minimacro",
  35817. height: math.unit(17, "feet")
  35818. },
  35819. {
  35820. name: "Macro",
  35821. height: math.unit(117, "feet")
  35822. },
  35823. ]
  35824. ))
  35825. characterMakers.push(() => makeCharacter(
  35826. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35827. {
  35828. side: {
  35829. height: math.unit(5 + 1/12, "feet"),
  35830. weight: math.unit(418, "lb"),
  35831. name: "Side",
  35832. image: {
  35833. source: "./media/characters/softpurr/side.svg",
  35834. extra: 1993/1945,
  35835. bottom: 134/2127
  35836. }
  35837. },
  35838. front: {
  35839. height: math.unit(5 + 1/12, "feet"),
  35840. weight: math.unit(418, "lb"),
  35841. name: "Front",
  35842. image: {
  35843. source: "./media/characters/softpurr/front.svg",
  35844. extra: 1950/1856,
  35845. bottom: 174/2124
  35846. }
  35847. },
  35848. paw: {
  35849. height: math.unit(1, "feet"),
  35850. name: "Paw",
  35851. image: {
  35852. source: "./media/characters/softpurr/paw.svg"
  35853. }
  35854. },
  35855. },
  35856. [
  35857. {
  35858. name: "Normal",
  35859. height: math.unit(5 + 1/12, "feet"),
  35860. default: true
  35861. },
  35862. ]
  35863. ))
  35864. characterMakers.push(() => makeCharacter(
  35865. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35866. {
  35867. front: {
  35868. height: math.unit(260, "meters"),
  35869. name: "Front",
  35870. image: {
  35871. source: "./media/characters/anahita/front.svg",
  35872. extra: 665/635,
  35873. bottom: 89/754
  35874. }
  35875. },
  35876. },
  35877. [
  35878. {
  35879. name: "Macro",
  35880. height: math.unit(260, "meters"),
  35881. default: true
  35882. },
  35883. ]
  35884. ))
  35885. characterMakers.push(() => makeCharacter(
  35886. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35887. {
  35888. front: {
  35889. height: math.unit(4 + 10/12, "feet"),
  35890. weight: math.unit(160, "lb"),
  35891. name: "Front",
  35892. image: {
  35893. source: "./media/characters/chip-mouse/front.svg",
  35894. extra: 3528/3408,
  35895. bottom: 0/3528
  35896. }
  35897. },
  35898. frontNsfw: {
  35899. height: math.unit(4 + 10/12, "feet"),
  35900. weight: math.unit(160, "lb"),
  35901. name: "Front (NSFW)",
  35902. image: {
  35903. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35904. extra: 3528/3408,
  35905. bottom: 0/3528
  35906. }
  35907. },
  35908. },
  35909. [
  35910. {
  35911. name: "Normal",
  35912. height: math.unit(4 + 10/12, "feet"),
  35913. default: true
  35914. },
  35915. ]
  35916. ))
  35917. characterMakers.push(() => makeCharacter(
  35918. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35919. {
  35920. side: {
  35921. height: math.unit(10, "feet"),
  35922. weight: math.unit(14000, "lb"),
  35923. name: "Side",
  35924. image: {
  35925. source: "./media/characters/kremm/side.svg",
  35926. extra: 1390/1053,
  35927. bottom: 90/1480
  35928. }
  35929. },
  35930. gut: {
  35931. height: math.unit(5.8, "feet"),
  35932. name: "Gut",
  35933. image: {
  35934. source: "./media/characters/kremm/gut.svg"
  35935. }
  35936. },
  35937. ass: {
  35938. height: math.unit(6.1, "feet"),
  35939. name: "Ass",
  35940. image: {
  35941. source: "./media/characters/kremm/ass.svg"
  35942. }
  35943. },
  35944. jaws: {
  35945. height: math.unit(2.2, "feet"),
  35946. name: "Jaws",
  35947. image: {
  35948. source: "./media/characters/kremm/jaws.svg"
  35949. }
  35950. },
  35951. dick: {
  35952. height: math.unit(4.26, "feet"),
  35953. name: "Dick",
  35954. image: {
  35955. source: "./media/characters/kremm/dick.svg"
  35956. }
  35957. },
  35958. },
  35959. [
  35960. {
  35961. name: "Normal",
  35962. height: math.unit(10, "feet"),
  35963. default: true
  35964. },
  35965. ]
  35966. ))
  35967. characterMakers.push(() => makeCharacter(
  35968. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35969. {
  35970. front: {
  35971. height: math.unit(30, "stories"),
  35972. name: "Front",
  35973. image: {
  35974. source: "./media/characters/kai/front.svg",
  35975. extra: 1892/1718,
  35976. bottom: 162/2054
  35977. }
  35978. },
  35979. },
  35980. [
  35981. {
  35982. name: "Macro",
  35983. height: math.unit(30, "stories"),
  35984. default: true
  35985. },
  35986. ]
  35987. ))
  35988. characterMakers.push(() => makeCharacter(
  35989. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35990. {
  35991. front: {
  35992. height: math.unit(6 + 4/12, "feet"),
  35993. weight: math.unit(145, "lb"),
  35994. name: "Front",
  35995. image: {
  35996. source: "./media/characters/sykes/front.svg",
  35997. extra: 1321 / 1187,
  35998. bottom: 66 / 1387
  35999. }
  36000. },
  36001. back: {
  36002. height: math.unit(6 + 4/12, "feet"),
  36003. weight: math.unit(145, "lb"),
  36004. name: "Back",
  36005. image: {
  36006. source: "./media/characters/sykes/back.svg",
  36007. extra: 1326/1181,
  36008. bottom: 31/1357
  36009. }
  36010. },
  36011. traditionalOutfit: {
  36012. height: math.unit(6 + 4/12, "feet"),
  36013. weight: math.unit(145, "lb"),
  36014. name: "Traditional Outfit",
  36015. image: {
  36016. source: "./media/characters/sykes/traditional-outfit.svg",
  36017. extra: 1321 / 1187,
  36018. bottom: 66 / 1387
  36019. }
  36020. },
  36021. adventureOutfit: {
  36022. height: math.unit(6 + 4/12, "feet"),
  36023. weight: math.unit(145, "lb"),
  36024. name: "Adventure Outfit",
  36025. image: {
  36026. source: "./media/characters/sykes/adventure-outfit.svg",
  36027. extra: 1321 / 1187,
  36028. bottom: 66 / 1387
  36029. }
  36030. },
  36031. handLeft: {
  36032. height: math.unit(0.9, "feet"),
  36033. name: "Hand (Left)",
  36034. image: {
  36035. source: "./media/characters/sykes/hand-left.svg"
  36036. }
  36037. },
  36038. handRight: {
  36039. height: math.unit(0.839, "feet"),
  36040. name: "Hand (Right)",
  36041. image: {
  36042. source: "./media/characters/sykes/hand-right.svg"
  36043. }
  36044. },
  36045. leftFoot: {
  36046. height: math.unit(1.2, "feet"),
  36047. name: "Foot (Left)",
  36048. image: {
  36049. source: "./media/characters/sykes/foot-left.svg"
  36050. }
  36051. },
  36052. rightFoot: {
  36053. height: math.unit(1.2, "feet"),
  36054. name: "Foot (Right)",
  36055. image: {
  36056. source: "./media/characters/sykes/foot-right.svg"
  36057. }
  36058. },
  36059. maw: {
  36060. height: math.unit(1.93, "feet"),
  36061. name: "Maw",
  36062. image: {
  36063. source: "./media/characters/sykes/maw.svg"
  36064. }
  36065. },
  36066. teeth: {
  36067. height: math.unit(0.51, "feet"),
  36068. name: "Teeth",
  36069. image: {
  36070. source: "./media/characters/sykes/teeth.svg"
  36071. }
  36072. },
  36073. tongue: {
  36074. height: math.unit(2.13, "feet"),
  36075. name: "Tongue",
  36076. image: {
  36077. source: "./media/characters/sykes/tongue.svg"
  36078. }
  36079. },
  36080. uvula: {
  36081. height: math.unit(0.16, "feet"),
  36082. name: "Uvula",
  36083. image: {
  36084. source: "./media/characters/sykes/uvula.svg"
  36085. }
  36086. },
  36087. collar: {
  36088. height: math.unit(0.287, "feet"),
  36089. name: "Collar",
  36090. image: {
  36091. source: "./media/characters/sykes/collar.svg"
  36092. }
  36093. },
  36094. tail: {
  36095. height: math.unit(3.8, "feet"),
  36096. name: "Tail",
  36097. image: {
  36098. source: "./media/characters/sykes/tail.svg"
  36099. }
  36100. },
  36101. },
  36102. [
  36103. {
  36104. name: "Shrunken",
  36105. height: math.unit(5, "inches")
  36106. },
  36107. {
  36108. name: "Normal",
  36109. height: math.unit(6 + 4 / 12, "feet"),
  36110. default: true
  36111. },
  36112. {
  36113. name: "Big",
  36114. height: math.unit(15, "feet")
  36115. },
  36116. ]
  36117. ))
  36118. characterMakers.push(() => makeCharacter(
  36119. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36120. {
  36121. front: {
  36122. height: math.unit(5 + 8/12, "feet"),
  36123. weight: math.unit(190, "lb"),
  36124. name: "Front",
  36125. image: {
  36126. source: "./media/characters/oven-otter/front.svg",
  36127. extra: 1809/1740,
  36128. bottom: 181/1990
  36129. }
  36130. },
  36131. back: {
  36132. height: math.unit(5 + 8/12, "feet"),
  36133. weight: math.unit(190, "lb"),
  36134. name: "Back",
  36135. image: {
  36136. source: "./media/characters/oven-otter/back.svg",
  36137. extra: 1709/1635,
  36138. bottom: 118/1827
  36139. }
  36140. },
  36141. hand: {
  36142. height: math.unit(1.07, "feet"),
  36143. name: "Hand",
  36144. image: {
  36145. source: "./media/characters/oven-otter/hand.svg"
  36146. }
  36147. },
  36148. beans: {
  36149. height: math.unit(1.74, "feet"),
  36150. name: "Beans",
  36151. image: {
  36152. source: "./media/characters/oven-otter/beans.svg"
  36153. }
  36154. },
  36155. },
  36156. [
  36157. {
  36158. name: "Micro",
  36159. height: math.unit(0.5, "inches")
  36160. },
  36161. {
  36162. name: "Normal",
  36163. height: math.unit(5 + 8/12, "feet"),
  36164. default: true
  36165. },
  36166. {
  36167. name: "Macro",
  36168. height: math.unit(250, "feet")
  36169. },
  36170. {
  36171. name: "Really High",
  36172. height: math.unit(420, "feet")
  36173. },
  36174. ]
  36175. ))
  36176. characterMakers.push(() => makeCharacter(
  36177. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36178. {
  36179. front: {
  36180. height: math.unit(5, "meters"),
  36181. weight: math.unit(292000000000000, "kg"),
  36182. name: "Front",
  36183. image: {
  36184. source: "./media/characters/devourer/front.svg",
  36185. extra: 1800/1733,
  36186. bottom: 211/2011
  36187. }
  36188. },
  36189. maw: {
  36190. height: math.unit(1.1, "meter"),
  36191. name: "Maw",
  36192. image: {
  36193. source: "./media/characters/devourer/maw.svg"
  36194. }
  36195. },
  36196. },
  36197. [
  36198. {
  36199. name: "Small",
  36200. height: math.unit(3, "meters")
  36201. },
  36202. {
  36203. name: "Large",
  36204. height: math.unit(5, "meters"),
  36205. default: true
  36206. },
  36207. ]
  36208. ))
  36209. characterMakers.push(() => makeCharacter(
  36210. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36211. {
  36212. front: {
  36213. height: math.unit(6, "feet"),
  36214. weight: math.unit(400, "lb"),
  36215. name: "Front",
  36216. image: {
  36217. source: "./media/characters/ellarby/front.svg",
  36218. extra: 1909/1763,
  36219. bottom: 80/1989
  36220. }
  36221. },
  36222. back: {
  36223. height: math.unit(6, "feet"),
  36224. weight: math.unit(400, "lb"),
  36225. name: "Back",
  36226. image: {
  36227. source: "./media/characters/ellarby/back.svg",
  36228. extra: 1914/1784,
  36229. bottom: 172/2086
  36230. }
  36231. },
  36232. },
  36233. [
  36234. {
  36235. name: "Mischief",
  36236. height: math.unit(18, "inches")
  36237. },
  36238. {
  36239. name: "Trouble",
  36240. height: math.unit(12, "feet")
  36241. },
  36242. {
  36243. name: "Havoc",
  36244. height: math.unit(200, "feet"),
  36245. default: true
  36246. },
  36247. {
  36248. name: "Pandemonium",
  36249. height: math.unit(1, "mile")
  36250. },
  36251. {
  36252. name: "Catastrophe",
  36253. height: math.unit(100, "miles")
  36254. },
  36255. ]
  36256. ))
  36257. characterMakers.push(() => makeCharacter(
  36258. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36259. {
  36260. front: {
  36261. height: math.unit(4.7, "meters"),
  36262. weight: math.unit(6500, "kg"),
  36263. name: "Front",
  36264. image: {
  36265. source: "./media/characters/vex/front.svg",
  36266. extra: 1288/1140,
  36267. bottom: 100/1388
  36268. }
  36269. },
  36270. },
  36271. [
  36272. {
  36273. name: "Normal",
  36274. height: math.unit(4.7, "meters"),
  36275. default: true
  36276. },
  36277. ]
  36278. ))
  36279. characterMakers.push(() => makeCharacter(
  36280. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36281. {
  36282. normal: {
  36283. height: math.unit(6, "feet"),
  36284. weight: math.unit(350, "lb"),
  36285. name: "Normal",
  36286. image: {
  36287. source: "./media/characters/teshy/normal.svg",
  36288. extra: 1795/1735,
  36289. bottom: 16/1811
  36290. }
  36291. },
  36292. monsterFront: {
  36293. height: math.unit(12, "feet"),
  36294. weight: math.unit(4700, "lb"),
  36295. name: "Monster (Front)",
  36296. image: {
  36297. source: "./media/characters/teshy/monster-front.svg",
  36298. extra: 2042/2034,
  36299. bottom: 128/2170
  36300. }
  36301. },
  36302. monsterSide: {
  36303. height: math.unit(12, "feet"),
  36304. weight: math.unit(4700, "lb"),
  36305. name: "Monster (Side)",
  36306. image: {
  36307. source: "./media/characters/teshy/monster-side.svg",
  36308. extra: 2067/2056,
  36309. bottom: 70/2137
  36310. }
  36311. },
  36312. monsterBack: {
  36313. height: math.unit(12, "feet"),
  36314. weight: math.unit(4700, "lb"),
  36315. name: "Monster (Back)",
  36316. image: {
  36317. source: "./media/characters/teshy/monster-back.svg",
  36318. extra: 1921/1914,
  36319. bottom: 171/2092
  36320. }
  36321. },
  36322. },
  36323. [
  36324. {
  36325. name: "Normal",
  36326. height: math.unit(6, "feet"),
  36327. default: true
  36328. },
  36329. ]
  36330. ))
  36331. characterMakers.push(() => makeCharacter(
  36332. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36333. {
  36334. front: {
  36335. height: math.unit(6, "feet"),
  36336. name: "Front",
  36337. image: {
  36338. source: "./media/characters/ramey/front.svg",
  36339. extra: 790/787,
  36340. bottom: 27/817
  36341. }
  36342. },
  36343. },
  36344. [
  36345. {
  36346. name: "Normal",
  36347. height: math.unit(6, "feet"),
  36348. default: true
  36349. },
  36350. ]
  36351. ))
  36352. characterMakers.push(() => makeCharacter(
  36353. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36354. {
  36355. front: {
  36356. height: math.unit(5 + 5/12, "feet"),
  36357. weight: math.unit(120, "lb"),
  36358. name: "Front",
  36359. image: {
  36360. source: "./media/characters/phirae/front.svg",
  36361. extra: 2491/2436,
  36362. bottom: 38/2529
  36363. }
  36364. },
  36365. },
  36366. [
  36367. {
  36368. name: "Normal",
  36369. height: math.unit(5 + 5/12, "feet"),
  36370. default: true
  36371. },
  36372. ]
  36373. ))
  36374. characterMakers.push(() => makeCharacter(
  36375. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36376. {
  36377. front: {
  36378. height: math.unit(5 + 3/12, "feet"),
  36379. name: "Front",
  36380. image: {
  36381. source: "./media/characters/stagglas/front.svg",
  36382. extra: 962/882,
  36383. bottom: 53/1015
  36384. }
  36385. },
  36386. feral: {
  36387. height: math.unit(335, "cm"),
  36388. name: "Feral",
  36389. image: {
  36390. source: "./media/characters/stagglas/feral.svg",
  36391. extra: 1732/1090,
  36392. bottom: 48/1780
  36393. }
  36394. },
  36395. },
  36396. [
  36397. {
  36398. name: "Normal",
  36399. height: math.unit(5 + 3/12, "feet"),
  36400. default: true
  36401. },
  36402. ]
  36403. ))
  36404. characterMakers.push(() => makeCharacter(
  36405. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36406. {
  36407. front: {
  36408. height: math.unit(5 + 4/12, "feet"),
  36409. weight: math.unit(145, "lb"),
  36410. name: "Front",
  36411. image: {
  36412. source: "./media/characters/starra/front.svg",
  36413. extra: 1790/1691,
  36414. bottom: 91/1881
  36415. }
  36416. },
  36417. },
  36418. [
  36419. {
  36420. name: "Normal",
  36421. height: math.unit(5 + 4/12, "feet"),
  36422. default: true
  36423. },
  36424. ]
  36425. ))
  36426. characterMakers.push(() => makeCharacter(
  36427. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36428. {
  36429. front: {
  36430. height: math.unit(2.2, "meters"),
  36431. name: "Front",
  36432. image: {
  36433. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36434. extra: 1248/972,
  36435. bottom: 38/1286
  36436. }
  36437. },
  36438. },
  36439. [
  36440. {
  36441. name: "Normal",
  36442. height: math.unit(2.2, "meters"),
  36443. default: true
  36444. },
  36445. ]
  36446. ))
  36447. characterMakers.push(() => makeCharacter(
  36448. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36449. {
  36450. side: {
  36451. height: math.unit(8 + 2/12, "feet"),
  36452. weight: math.unit(1240, "lb"),
  36453. name: "Side",
  36454. image: {
  36455. source: "./media/characters/mika-valentine/side.svg",
  36456. extra: 2670/2501,
  36457. bottom: 250/2920
  36458. }
  36459. },
  36460. },
  36461. [
  36462. {
  36463. name: "Normal",
  36464. height: math.unit(8 + 2/12, "feet"),
  36465. default: true
  36466. },
  36467. ]
  36468. ))
  36469. characterMakers.push(() => makeCharacter(
  36470. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36471. {
  36472. front: {
  36473. height: math.unit(7 + 2/12, "feet"),
  36474. name: "Front",
  36475. image: {
  36476. source: "./media/characters/xoltol/front.svg",
  36477. extra: 2212/2124,
  36478. bottom: 84/2296
  36479. }
  36480. },
  36481. side: {
  36482. height: math.unit(7 + 2/12, "feet"),
  36483. name: "Side",
  36484. image: {
  36485. source: "./media/characters/xoltol/side.svg",
  36486. extra: 2273/2197,
  36487. bottom: 26/2299
  36488. }
  36489. },
  36490. hand: {
  36491. height: math.unit(2.5, "feet"),
  36492. name: "Hand",
  36493. image: {
  36494. source: "./media/characters/xoltol/hand.svg"
  36495. }
  36496. },
  36497. },
  36498. [
  36499. {
  36500. name: "Small-ish",
  36501. height: math.unit(5 + 11/12, "feet")
  36502. },
  36503. {
  36504. name: "Normal",
  36505. height: math.unit(7 + 2/12, "feet")
  36506. },
  36507. {
  36508. name: "\"Macro\"",
  36509. height: math.unit(14 + 9/12, "feet"),
  36510. default: true
  36511. },
  36512. {
  36513. name: "Alternate Height",
  36514. height: math.unit(20, "feet")
  36515. },
  36516. {
  36517. name: "Actually Macro",
  36518. height: math.unit(100, "feet")
  36519. },
  36520. ]
  36521. ))
  36522. characterMakers.push(() => makeCharacter(
  36523. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36524. {
  36525. front: {
  36526. height: math.unit(5 + 2/12, "feet"),
  36527. name: "Front",
  36528. image: {
  36529. source: "./media/characters/kotetsu-redwood/front.svg",
  36530. extra: 1053/942,
  36531. bottom: 60/1113
  36532. }
  36533. },
  36534. },
  36535. [
  36536. {
  36537. name: "Normal",
  36538. height: math.unit(5 + 2/12, "feet"),
  36539. default: true
  36540. },
  36541. ]
  36542. ))
  36543. characterMakers.push(() => makeCharacter(
  36544. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36545. {
  36546. front: {
  36547. height: math.unit(2.4, "meters"),
  36548. weight: math.unit(125, "kg"),
  36549. name: "Front",
  36550. image: {
  36551. source: "./media/characters/lilith/front.svg",
  36552. extra: 1590/1513,
  36553. bottom: 203/1793
  36554. }
  36555. },
  36556. },
  36557. [
  36558. {
  36559. name: "Humanoid",
  36560. height: math.unit(2.4, "meters")
  36561. },
  36562. {
  36563. name: "Normal",
  36564. height: math.unit(6, "meters"),
  36565. default: true
  36566. },
  36567. {
  36568. name: "Largest",
  36569. height: math.unit(55, "meters")
  36570. },
  36571. ]
  36572. ))
  36573. characterMakers.push(() => makeCharacter(
  36574. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36575. {
  36576. front: {
  36577. height: math.unit(8 + 4/12, "feet"),
  36578. weight: math.unit(535, "lb"),
  36579. name: "Front",
  36580. image: {
  36581. source: "./media/characters/beh'kah-bolger/front.svg",
  36582. extra: 1660/1603,
  36583. bottom: 37/1697
  36584. }
  36585. },
  36586. },
  36587. [
  36588. {
  36589. name: "Normal",
  36590. height: math.unit(8 + 4/12, "feet"),
  36591. default: true
  36592. },
  36593. {
  36594. name: "Kaiju",
  36595. height: math.unit(250, "feet")
  36596. },
  36597. {
  36598. name: "Still Growing",
  36599. height: math.unit(10, "miles")
  36600. },
  36601. {
  36602. name: "Continental",
  36603. height: math.unit(5000, "miles")
  36604. },
  36605. {
  36606. name: "Final Form",
  36607. height: math.unit(2500000, "miles")
  36608. },
  36609. ]
  36610. ))
  36611. characterMakers.push(() => makeCharacter(
  36612. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36613. {
  36614. front: {
  36615. height: math.unit(7 + 2/12, "feet"),
  36616. weight: math.unit(230, "kg"),
  36617. name: "Front",
  36618. image: {
  36619. source: "./media/characters/tatyana-milewska/front.svg",
  36620. extra: 1199/1150,
  36621. bottom: 86/1285
  36622. }
  36623. },
  36624. },
  36625. [
  36626. {
  36627. name: "Normal",
  36628. height: math.unit(7 + 2/12, "feet"),
  36629. default: true
  36630. },
  36631. {
  36632. name: "Big",
  36633. height: math.unit(12, "feet")
  36634. },
  36635. {
  36636. name: "Minimacro",
  36637. height: math.unit(20, "feet")
  36638. },
  36639. {
  36640. name: "Macro",
  36641. height: math.unit(120, "feet")
  36642. },
  36643. ]
  36644. ))
  36645. characterMakers.push(() => makeCharacter(
  36646. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36647. {
  36648. front: {
  36649. height: math.unit(7 + 8/12, "feet"),
  36650. weight: math.unit(152, "kg"),
  36651. name: "Front",
  36652. image: {
  36653. source: "./media/characters/helen-arri/front.svg",
  36654. extra: 440/423,
  36655. bottom: 14/454
  36656. }
  36657. },
  36658. back: {
  36659. height: math.unit(7 + 8/12, "feet"),
  36660. weight: math.unit(152, "kg"),
  36661. name: "Back",
  36662. image: {
  36663. source: "./media/characters/helen-arri/back.svg",
  36664. extra: 443/426,
  36665. bottom: 8/451
  36666. }
  36667. },
  36668. },
  36669. [
  36670. {
  36671. name: "Normal",
  36672. height: math.unit(7 + 8/12, "feet"),
  36673. default: true
  36674. },
  36675. {
  36676. name: "Big",
  36677. height: math.unit(14, "feet")
  36678. },
  36679. {
  36680. name: "Minimacro",
  36681. height: math.unit(24, "feet")
  36682. },
  36683. {
  36684. name: "Macro",
  36685. height: math.unit(140, "feet")
  36686. },
  36687. ]
  36688. ))
  36689. characterMakers.push(() => makeCharacter(
  36690. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36691. {
  36692. front: {
  36693. height: math.unit(6, "meters"),
  36694. name: "Front",
  36695. image: {
  36696. source: "./media/characters/ehanu-rehu/front.svg",
  36697. extra: 1800/1800,
  36698. bottom: 59/1859
  36699. }
  36700. },
  36701. },
  36702. [
  36703. {
  36704. name: "Normal",
  36705. height: math.unit(6, "meters"),
  36706. default: true
  36707. },
  36708. ]
  36709. ))
  36710. characterMakers.push(() => makeCharacter(
  36711. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36712. {
  36713. front: {
  36714. height: math.unit(7 + 3/12, "feet"),
  36715. name: "Front",
  36716. image: {
  36717. source: "./media/characters/renholder/front.svg",
  36718. extra: 3096/2960,
  36719. bottom: 250/3346
  36720. }
  36721. },
  36722. },
  36723. [
  36724. {
  36725. name: "Normal Bat",
  36726. height: math.unit(7 + 3/12, "feet"),
  36727. default: true
  36728. },
  36729. {
  36730. name: "Slightly Tall Bat",
  36731. height: math.unit(100, "feet")
  36732. },
  36733. {
  36734. name: "Big Bat",
  36735. height: math.unit(1000, "feet")
  36736. },
  36737. {
  36738. name: "City-Sized Bat",
  36739. height: math.unit(200000, "feet")
  36740. },
  36741. {
  36742. name: "Bigger Bat",
  36743. height: math.unit(10000, "miles")
  36744. },
  36745. {
  36746. name: "Solar Sized Bat",
  36747. height: math.unit(100, "AU")
  36748. },
  36749. {
  36750. name: "Galactic Bat",
  36751. height: math.unit(200000, "lightyears")
  36752. },
  36753. {
  36754. name: "Universally Known Bat",
  36755. height: math.unit(1, "universe")
  36756. },
  36757. ]
  36758. ))
  36759. characterMakers.push(() => makeCharacter(
  36760. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36761. {
  36762. front: {
  36763. height: math.unit(6 + 11/12, "feet"),
  36764. weight: math.unit(250, "lb"),
  36765. name: "Front",
  36766. image: {
  36767. source: "./media/characters/cookiecat/front.svg",
  36768. extra: 893/827,
  36769. bottom: 14/907
  36770. }
  36771. },
  36772. },
  36773. [
  36774. {
  36775. name: "Micro",
  36776. height: math.unit(3, "inches")
  36777. },
  36778. {
  36779. name: "Normal",
  36780. height: math.unit(6 + 11/12, "feet"),
  36781. default: true
  36782. },
  36783. {
  36784. name: "Macro",
  36785. height: math.unit(100, "feet")
  36786. },
  36787. {
  36788. name: "Macro+",
  36789. height: math.unit(404, "feet")
  36790. },
  36791. {
  36792. name: "Megamacro",
  36793. height: math.unit(165, "miles")
  36794. },
  36795. {
  36796. name: "Planetary",
  36797. height: math.unit(4600, "miles")
  36798. },
  36799. ]
  36800. ))
  36801. characterMakers.push(() => makeCharacter(
  36802. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36803. {
  36804. front: {
  36805. height: math.unit(10 + 3/12, "feet"),
  36806. weight: math.unit(1500, "lb"),
  36807. name: "Front",
  36808. image: {
  36809. source: "./media/characters/tux-kusanagi/front.svg",
  36810. extra: 944/840,
  36811. bottom: 39/983
  36812. }
  36813. },
  36814. back: {
  36815. height: math.unit(10 + 3/12, "feet"),
  36816. weight: math.unit(1500, "lb"),
  36817. name: "Back",
  36818. image: {
  36819. source: "./media/characters/tux-kusanagi/back.svg",
  36820. extra: 941/842,
  36821. bottom: 28/969
  36822. }
  36823. },
  36824. rump: {
  36825. height: math.unit(5.25, "feet"),
  36826. name: "Rump",
  36827. image: {
  36828. source: "./media/characters/tux-kusanagi/rump.svg"
  36829. }
  36830. },
  36831. beak: {
  36832. height: math.unit(1.54, "feet"),
  36833. name: "Beak",
  36834. image: {
  36835. source: "./media/characters/tux-kusanagi/beak.svg"
  36836. }
  36837. },
  36838. },
  36839. [
  36840. {
  36841. name: "Normal",
  36842. height: math.unit(10 + 3/12, "feet"),
  36843. default: true
  36844. },
  36845. ]
  36846. ))
  36847. characterMakers.push(() => makeCharacter(
  36848. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36849. {
  36850. front: {
  36851. height: math.unit(58, "feet"),
  36852. weight: math.unit(200, "tons"),
  36853. name: "Front",
  36854. image: {
  36855. source: "./media/characters/uzarmazari/front.svg",
  36856. extra: 1575/1455,
  36857. bottom: 152/1727
  36858. }
  36859. },
  36860. back: {
  36861. height: math.unit(58, "feet"),
  36862. weight: math.unit(200, "tons"),
  36863. name: "Back",
  36864. image: {
  36865. source: "./media/characters/uzarmazari/back.svg",
  36866. extra: 1585/1510,
  36867. bottom: 157/1742
  36868. }
  36869. },
  36870. head: {
  36871. height: math.unit(26, "feet"),
  36872. name: "Head",
  36873. image: {
  36874. source: "./media/characters/uzarmazari/head.svg"
  36875. }
  36876. },
  36877. },
  36878. [
  36879. {
  36880. name: "Normal",
  36881. height: math.unit(58, "feet"),
  36882. default: true
  36883. },
  36884. ]
  36885. ))
  36886. characterMakers.push(() => makeCharacter(
  36887. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36888. {
  36889. side: {
  36890. height: math.unit(15, "feet"),
  36891. name: "Side",
  36892. image: {
  36893. source: "./media/characters/akitu/side.svg",
  36894. extra: 1421/1321,
  36895. bottom: 157/1578
  36896. }
  36897. },
  36898. front: {
  36899. height: math.unit(15, "feet"),
  36900. name: "Front",
  36901. image: {
  36902. source: "./media/characters/akitu/front.svg",
  36903. extra: 1435/1326,
  36904. bottom: 232/1667
  36905. }
  36906. },
  36907. },
  36908. [
  36909. {
  36910. name: "Normal",
  36911. height: math.unit(15, "feet"),
  36912. default: true
  36913. },
  36914. ]
  36915. ))
  36916. characterMakers.push(() => makeCharacter(
  36917. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36918. {
  36919. front: {
  36920. height: math.unit(10 + 8/12, "feet"),
  36921. name: "Front",
  36922. image: {
  36923. source: "./media/characters/azalie-croixland/front.svg",
  36924. extra: 1972/1856,
  36925. bottom: 31/2003
  36926. }
  36927. },
  36928. },
  36929. [
  36930. {
  36931. name: "Original Height",
  36932. height: math.unit(5 + 4/12, "feet")
  36933. },
  36934. {
  36935. name: "Normal Height",
  36936. height: math.unit(10 + 8/12, "feet"),
  36937. default: true
  36938. },
  36939. ]
  36940. ))
  36941. characterMakers.push(() => makeCharacter(
  36942. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36943. {
  36944. side: {
  36945. height: math.unit(7 + 1/12, "feet"),
  36946. weight: math.unit(245, "lb"),
  36947. name: "Side",
  36948. image: {
  36949. source: "./media/characters/kavus-kazian/side.svg",
  36950. extra: 349/342,
  36951. bottom: 15/364
  36952. }
  36953. },
  36954. },
  36955. [
  36956. {
  36957. name: "Normal",
  36958. height: math.unit(7 + 1/12, "feet"),
  36959. default: true
  36960. },
  36961. ]
  36962. ))
  36963. characterMakers.push(() => makeCharacter(
  36964. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36965. {
  36966. normalFront: {
  36967. height: math.unit(5 + 11/12, "feet"),
  36968. name: "Front",
  36969. image: {
  36970. source: "./media/characters/moonlight-rose/normal-front.svg",
  36971. extra: 1980/1825,
  36972. bottom: 18/1998
  36973. },
  36974. form: "normal",
  36975. default: true
  36976. },
  36977. normalBack: {
  36978. height: math.unit(5 + 11/12, "feet"),
  36979. name: "Back",
  36980. image: {
  36981. source: "./media/characters/moonlight-rose/normal-back.svg",
  36982. extra: 2010/1839,
  36983. bottom: 10/2020
  36984. },
  36985. form: "normal"
  36986. },
  36987. demonFront: {
  36988. height: math.unit(1.5, "earths"),
  36989. name: "Front",
  36990. image: {
  36991. source: "./media/characters/moonlight-rose/demon.svg",
  36992. extra: 1400/1294,
  36993. bottom: 45/1445
  36994. },
  36995. form: "demon",
  36996. default: true
  36997. },
  36998. terraFront: {
  36999. height: math.unit(1.5, "earths"),
  37000. name: "Front",
  37001. image: {
  37002. source: "./media/characters/moonlight-rose/terra.svg"
  37003. },
  37004. form: "terra",
  37005. default: true
  37006. },
  37007. jupiterFront: {
  37008. height: math.unit(69911*2, "km"),
  37009. name: "Front",
  37010. image: {
  37011. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37012. extra: 1367/1286,
  37013. bottom: 55/1422
  37014. },
  37015. form: "jupiter",
  37016. default: true
  37017. },
  37018. neptuneFront: {
  37019. height: math.unit(24622*2, "feet"),
  37020. name: "Front",
  37021. image: {
  37022. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37023. extra: 1851/1712,
  37024. bottom: 0/1851
  37025. },
  37026. form: "neptune",
  37027. default: true
  37028. },
  37029. },
  37030. [
  37031. {
  37032. name: "\"Natural\" Height",
  37033. height: math.unit(5 + 11/12, "feet"),
  37034. form: "normal"
  37035. },
  37036. {
  37037. name: "Smallest comfortable size",
  37038. height: math.unit(40, "meters"),
  37039. form: "normal"
  37040. },
  37041. {
  37042. name: "Common size",
  37043. height: math.unit(50, "km"),
  37044. form: "normal",
  37045. default: true
  37046. },
  37047. {
  37048. name: "Normal",
  37049. height: math.unit(1.5, "earths"),
  37050. form: "demon",
  37051. default: true
  37052. },
  37053. {
  37054. name: "Universal",
  37055. height: math.unit(15, "universes"),
  37056. form: "demon"
  37057. },
  37058. {
  37059. name: "Earth",
  37060. height: math.unit(1.5, "earths"),
  37061. form: "terra",
  37062. default: true
  37063. },
  37064. {
  37065. name: "Super Earth",
  37066. height: math.unit(67.5, "earths"),
  37067. form: "terra"
  37068. },
  37069. {
  37070. name: "Doesn't fit in a solar system...",
  37071. height: math.unit(1, "galaxy"),
  37072. form: "terra"
  37073. },
  37074. {
  37075. name: "Saturn",
  37076. height: math.unit(58232*2, "km"),
  37077. form: "jupiter"
  37078. },
  37079. {
  37080. name: "Jupiter",
  37081. height: math.unit(69911*2, "km"),
  37082. form: "jupiter",
  37083. default: true
  37084. },
  37085. {
  37086. name: "HD 100546 b",
  37087. height: math.unit(482938, "km"),
  37088. form: "jupiter"
  37089. },
  37090. {
  37091. name: "Enceladus",
  37092. height: math.unit(513*2, "km"),
  37093. form: "neptune"
  37094. },
  37095. {
  37096. name: "Europe",
  37097. height: math.unit(1560*2, "km"),
  37098. form: "neptune"
  37099. },
  37100. {
  37101. name: "Neptune",
  37102. height: math.unit(24622*2, "km"),
  37103. form: "neptune",
  37104. default: true
  37105. },
  37106. {
  37107. name: "CoRoT-9b",
  37108. height: math.unit(75067*2, "km"),
  37109. form: "neptune"
  37110. },
  37111. ],
  37112. {
  37113. "normal": {
  37114. name: "Normal",
  37115. default: true
  37116. },
  37117. "demon": {
  37118. name: "Demon"
  37119. },
  37120. "terra": {
  37121. name: "Terra"
  37122. },
  37123. "jupiter": {
  37124. name: "Jupiter"
  37125. },
  37126. "neptune": {
  37127. name: "Neptune"
  37128. }
  37129. }
  37130. ))
  37131. characterMakers.push(() => makeCharacter(
  37132. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37133. {
  37134. front: {
  37135. height: math.unit(16, "feet"),
  37136. weight: math.unit(610, "kg"),
  37137. name: "Front",
  37138. image: {
  37139. source: "./media/characters/huckle/front.svg",
  37140. extra: 1731/1625,
  37141. bottom: 33/1764
  37142. }
  37143. },
  37144. back: {
  37145. height: math.unit(16, "feet"),
  37146. weight: math.unit(610, "kg"),
  37147. name: "Back",
  37148. image: {
  37149. source: "./media/characters/huckle/back.svg",
  37150. extra: 1738/1651,
  37151. bottom: 37/1775
  37152. }
  37153. },
  37154. laughing: {
  37155. height: math.unit(3.75, "feet"),
  37156. name: "Laughing",
  37157. image: {
  37158. source: "./media/characters/huckle/laughing.svg"
  37159. }
  37160. },
  37161. angry: {
  37162. height: math.unit(4.15, "feet"),
  37163. name: "Angry",
  37164. image: {
  37165. source: "./media/characters/huckle/angry.svg"
  37166. }
  37167. },
  37168. },
  37169. [
  37170. {
  37171. name: "Normal",
  37172. height: math.unit(16, "feet"),
  37173. default: true
  37174. },
  37175. {
  37176. name: "Mini Macro",
  37177. height: math.unit(463, "feet")
  37178. },
  37179. {
  37180. name: "Macro",
  37181. height: math.unit(1680, "meters")
  37182. },
  37183. {
  37184. name: "Mega Macro",
  37185. height: math.unit(175, "km")
  37186. },
  37187. {
  37188. name: "Terra Macro",
  37189. height: math.unit(32, "gigameters")
  37190. },
  37191. {
  37192. name: "Multiverse+",
  37193. height: math.unit(2.56e23, "yottameters")
  37194. },
  37195. ]
  37196. ))
  37197. characterMakers.push(() => makeCharacter(
  37198. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37199. {
  37200. front: {
  37201. height: math.unit(6 + 9/12, "feet"),
  37202. weight: math.unit(280, "lb"),
  37203. name: "Front",
  37204. image: {
  37205. source: "./media/characters/candy/front.svg",
  37206. extra: 234/217,
  37207. bottom: 11/245
  37208. }
  37209. },
  37210. },
  37211. [
  37212. {
  37213. name: "Really Small",
  37214. height: math.unit(0.1, "nm")
  37215. },
  37216. {
  37217. name: "Micro",
  37218. height: math.unit(2, "inches")
  37219. },
  37220. {
  37221. name: "Normal",
  37222. height: math.unit(6 + 9/12, "feet"),
  37223. default: true
  37224. },
  37225. {
  37226. name: "Small Macro",
  37227. height: math.unit(69, "feet")
  37228. },
  37229. {
  37230. name: "Macro",
  37231. height: math.unit(160, "feet")
  37232. },
  37233. {
  37234. name: "Megamacro",
  37235. height: math.unit(22000, "miles")
  37236. },
  37237. {
  37238. name: "Gigamacro",
  37239. height: math.unit(50000, "miles")
  37240. },
  37241. ]
  37242. ))
  37243. characterMakers.push(() => makeCharacter(
  37244. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37245. {
  37246. front: {
  37247. height: math.unit(4, "feet"),
  37248. weight: math.unit(90, "lb"),
  37249. name: "Front",
  37250. image: {
  37251. source: "./media/characters/joey-mcdonald/front.svg",
  37252. extra: 1059/852,
  37253. bottom: 33/1092
  37254. }
  37255. },
  37256. back: {
  37257. height: math.unit(4, "feet"),
  37258. weight: math.unit(90, "lb"),
  37259. name: "Back",
  37260. image: {
  37261. source: "./media/characters/joey-mcdonald/back.svg",
  37262. extra: 1077/879,
  37263. bottom: 5/1082
  37264. }
  37265. },
  37266. frontKobold: {
  37267. height: math.unit(4, "feet"),
  37268. weight: math.unit(100, "lb"),
  37269. name: "Front-kobold",
  37270. image: {
  37271. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37272. extra: 1480/1367,
  37273. bottom: 0/1480
  37274. }
  37275. },
  37276. backKobold: {
  37277. height: math.unit(4, "feet"),
  37278. weight: math.unit(100, "lb"),
  37279. name: "Back-kobold",
  37280. image: {
  37281. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37282. extra: 1449/1361,
  37283. bottom: 0/1449
  37284. }
  37285. },
  37286. },
  37287. [
  37288. {
  37289. name: "Normal",
  37290. height: math.unit(4, "feet"),
  37291. default: true
  37292. },
  37293. ]
  37294. ))
  37295. characterMakers.push(() => makeCharacter(
  37296. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37297. {
  37298. front: {
  37299. height: math.unit(12 + 6/12, "feet"),
  37300. name: "Front",
  37301. image: {
  37302. source: "./media/characters/kass-lockheed/front.svg",
  37303. extra: 354/343,
  37304. bottom: 9/363
  37305. }
  37306. },
  37307. back: {
  37308. height: math.unit(12 + 6/12, "feet"),
  37309. name: "Back",
  37310. image: {
  37311. source: "./media/characters/kass-lockheed/back.svg",
  37312. extra: 364/352,
  37313. bottom: 3/367
  37314. }
  37315. },
  37316. dick: {
  37317. height: math.unit(3.12, "feet"),
  37318. name: "Dick",
  37319. image: {
  37320. source: "./media/characters/kass-lockheed/dick.svg"
  37321. }
  37322. },
  37323. head: {
  37324. height: math.unit(2.6, "feet"),
  37325. name: "Head",
  37326. image: {
  37327. source: "./media/characters/kass-lockheed/head.svg"
  37328. }
  37329. },
  37330. bleh: {
  37331. height: math.unit(2.85, "feet"),
  37332. name: "Bleh",
  37333. image: {
  37334. source: "./media/characters/kass-lockheed/bleh.svg"
  37335. }
  37336. },
  37337. smug: {
  37338. height: math.unit(2.85, "feet"),
  37339. name: "Smug",
  37340. image: {
  37341. source: "./media/characters/kass-lockheed/smug.svg"
  37342. }
  37343. },
  37344. },
  37345. [
  37346. {
  37347. name: "Normal",
  37348. height: math.unit(12 + 6/12, "feet"),
  37349. default: true
  37350. },
  37351. ]
  37352. ))
  37353. characterMakers.push(() => makeCharacter(
  37354. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37355. {
  37356. front: {
  37357. height: math.unit(6 + 2/12, "feet"),
  37358. name: "Front",
  37359. image: {
  37360. source: "./media/characters/taylor/front.svg",
  37361. extra: 639/495,
  37362. bottom: 12/651
  37363. }
  37364. },
  37365. },
  37366. [
  37367. {
  37368. name: "Normal",
  37369. height: math.unit(6 + 2/12, "feet"),
  37370. default: true
  37371. },
  37372. {
  37373. name: "Big",
  37374. height: math.unit(15, "feet")
  37375. },
  37376. {
  37377. name: "Lorg",
  37378. height: math.unit(80, "feet")
  37379. },
  37380. {
  37381. name: "Too Lorg",
  37382. height: math.unit(120, "feet")
  37383. },
  37384. ]
  37385. ))
  37386. characterMakers.push(() => makeCharacter(
  37387. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37388. {
  37389. front: {
  37390. height: math.unit(15, "feet"),
  37391. name: "Front",
  37392. image: {
  37393. source: "./media/characters/kaizer/front.svg",
  37394. extra: 1612/1436,
  37395. bottom: 43/1655
  37396. }
  37397. },
  37398. },
  37399. [
  37400. {
  37401. name: "Normal",
  37402. height: math.unit(15, "feet"),
  37403. default: true
  37404. },
  37405. ]
  37406. ))
  37407. characterMakers.push(() => makeCharacter(
  37408. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37409. {
  37410. front: {
  37411. height: math.unit(2, "feet"),
  37412. weight: math.unit(30, "lb"),
  37413. name: "Front",
  37414. image: {
  37415. source: "./media/characters/sandy/front.svg",
  37416. extra: 1439/1307,
  37417. bottom: 194/1633
  37418. }
  37419. },
  37420. },
  37421. [
  37422. {
  37423. name: "Normal",
  37424. height: math.unit(2, "feet"),
  37425. default: true
  37426. },
  37427. ]
  37428. ))
  37429. characterMakers.push(() => makeCharacter(
  37430. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37431. {
  37432. front: {
  37433. height: math.unit(3, "feet"),
  37434. name: "Front",
  37435. image: {
  37436. source: "./media/characters/mellvi/front.svg",
  37437. extra: 1831/1630,
  37438. bottom: 58/1889
  37439. }
  37440. },
  37441. },
  37442. [
  37443. {
  37444. name: "Normal",
  37445. height: math.unit(3, "feet"),
  37446. default: true
  37447. },
  37448. ]
  37449. ))
  37450. characterMakers.push(() => makeCharacter(
  37451. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37452. {
  37453. front: {
  37454. height: math.unit(5 + 11/12, "feet"),
  37455. weight: math.unit(200, "lb"),
  37456. name: "Front",
  37457. image: {
  37458. source: "./media/characters/shirou/front.svg",
  37459. extra: 2491/2383,
  37460. bottom: 189/2680
  37461. }
  37462. },
  37463. back: {
  37464. height: math.unit(5 + 11/12, "feet"),
  37465. weight: math.unit(200, "lb"),
  37466. name: "Back",
  37467. image: {
  37468. source: "./media/characters/shirou/back.svg",
  37469. extra: 2554/2450,
  37470. bottom: 76/2630
  37471. }
  37472. },
  37473. },
  37474. [
  37475. {
  37476. name: "Normal",
  37477. height: math.unit(5 + 11/12, "feet"),
  37478. default: true
  37479. },
  37480. ]
  37481. ))
  37482. characterMakers.push(() => makeCharacter(
  37483. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37484. {
  37485. front: {
  37486. height: math.unit(6 + 3/12, "feet"),
  37487. weight: math.unit(177, "lb"),
  37488. name: "Front",
  37489. image: {
  37490. source: "./media/characters/noryu/front.svg",
  37491. extra: 973/885,
  37492. bottom: 10/983
  37493. }
  37494. },
  37495. },
  37496. [
  37497. {
  37498. name: "Normal",
  37499. height: math.unit(6 + 3/12, "feet"),
  37500. default: true
  37501. },
  37502. ]
  37503. ))
  37504. characterMakers.push(() => makeCharacter(
  37505. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37506. {
  37507. front: {
  37508. height: math.unit(5 + 6/12, "feet"),
  37509. weight: math.unit(170, "lb"),
  37510. name: "Front",
  37511. image: {
  37512. source: "./media/characters/mevolas-rubenido/front.svg",
  37513. extra: 2109/1901,
  37514. bottom: 96/2205
  37515. }
  37516. },
  37517. },
  37518. [
  37519. {
  37520. name: "Normal",
  37521. height: math.unit(5 + 6/12, "feet"),
  37522. default: true
  37523. },
  37524. ]
  37525. ))
  37526. characterMakers.push(() => makeCharacter(
  37527. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37528. {
  37529. front: {
  37530. height: math.unit(100, "feet"),
  37531. name: "Front",
  37532. image: {
  37533. source: "./media/characters/dee/front.svg",
  37534. extra: 2153/2036,
  37535. bottom: 59/2212
  37536. }
  37537. },
  37538. back: {
  37539. height: math.unit(100, "feet"),
  37540. name: "Back",
  37541. image: {
  37542. source: "./media/characters/dee/back.svg",
  37543. extra: 2183/2058,
  37544. bottom: 75/2258
  37545. }
  37546. },
  37547. foot: {
  37548. height: math.unit(19.43, "feet"),
  37549. name: "Foot",
  37550. image: {
  37551. source: "./media/characters/dee/foot.svg"
  37552. }
  37553. },
  37554. hoof: {
  37555. height: math.unit(20.6, "feet"),
  37556. name: "Hoof",
  37557. image: {
  37558. source: "./media/characters/dee/hoof.svg"
  37559. }
  37560. },
  37561. },
  37562. [
  37563. {
  37564. name: "Macro",
  37565. height: math.unit(100, "feet"),
  37566. default: true
  37567. },
  37568. ]
  37569. ))
  37570. characterMakers.push(() => makeCharacter(
  37571. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37572. {
  37573. front: {
  37574. height: math.unit(5 + 6/12, "feet"),
  37575. name: "Front",
  37576. image: {
  37577. source: "./media/characters/teh/front.svg",
  37578. extra: 1002/847,
  37579. bottom: 62/1064
  37580. }
  37581. },
  37582. },
  37583. [
  37584. {
  37585. name: "Normal",
  37586. height: math.unit(5 + 6/12, "feet"),
  37587. default: true
  37588. },
  37589. ]
  37590. ))
  37591. characterMakers.push(() => makeCharacter(
  37592. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37593. {
  37594. side: {
  37595. height: math.unit(6 + 1/12, "feet"),
  37596. weight: math.unit(204, "lb"),
  37597. name: "Side",
  37598. image: {
  37599. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37600. extra: 974/775,
  37601. bottom: 169/1143
  37602. }
  37603. },
  37604. sitting: {
  37605. height: math.unit(6 + 2/12, "feet"),
  37606. weight: math.unit(204, "lb"),
  37607. name: "Sitting",
  37608. image: {
  37609. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37610. extra: 1175/964,
  37611. bottom: 378/1553
  37612. }
  37613. },
  37614. },
  37615. [
  37616. {
  37617. name: "Normal",
  37618. height: math.unit(6 + 1/12, "feet"),
  37619. default: true
  37620. },
  37621. ]
  37622. ))
  37623. characterMakers.push(() => makeCharacter(
  37624. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37625. {
  37626. front: {
  37627. height: math.unit(6, "inches"),
  37628. name: "Front",
  37629. image: {
  37630. source: "./media/characters/tululi/front.svg",
  37631. extra: 1997/1876,
  37632. bottom: 20/2017
  37633. }
  37634. },
  37635. },
  37636. [
  37637. {
  37638. name: "Normal",
  37639. height: math.unit(6, "inches"),
  37640. default: true
  37641. },
  37642. ]
  37643. ))
  37644. characterMakers.push(() => makeCharacter(
  37645. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37646. {
  37647. front: {
  37648. height: math.unit(4 + 1/12, "feet"),
  37649. name: "Front",
  37650. image: {
  37651. source: "./media/characters/star/front.svg",
  37652. extra: 1493/1189,
  37653. bottom: 48/1541
  37654. }
  37655. },
  37656. },
  37657. [
  37658. {
  37659. name: "Normal",
  37660. height: math.unit(4 + 1/12, "feet"),
  37661. default: true
  37662. },
  37663. ]
  37664. ))
  37665. characterMakers.push(() => makeCharacter(
  37666. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37667. {
  37668. front: {
  37669. height: math.unit(6 + 3/12, "feet"),
  37670. name: "Front",
  37671. image: {
  37672. source: "./media/characters/comet/front.svg",
  37673. extra: 1681/1462,
  37674. bottom: 26/1707
  37675. }
  37676. },
  37677. },
  37678. [
  37679. {
  37680. name: "Normal",
  37681. height: math.unit(6 + 3/12, "feet"),
  37682. default: true
  37683. },
  37684. ]
  37685. ))
  37686. characterMakers.push(() => makeCharacter(
  37687. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37688. {
  37689. front: {
  37690. height: math.unit(950, "feet"),
  37691. name: "Front",
  37692. image: {
  37693. source: "./media/characters/vortex/front.svg",
  37694. extra: 1497/1434,
  37695. bottom: 56/1553
  37696. }
  37697. },
  37698. maw: {
  37699. height: math.unit(285, "feet"),
  37700. name: "Maw",
  37701. image: {
  37702. source: "./media/characters/vortex/maw.svg"
  37703. }
  37704. },
  37705. },
  37706. [
  37707. {
  37708. name: "Macro",
  37709. height: math.unit(950, "feet"),
  37710. default: true
  37711. },
  37712. ]
  37713. ))
  37714. characterMakers.push(() => makeCharacter(
  37715. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37716. {
  37717. front: {
  37718. height: math.unit(600, "feet"),
  37719. weight: math.unit(0.02, "grams"),
  37720. name: "Front",
  37721. image: {
  37722. source: "./media/characters/doodle/front.svg",
  37723. extra: 1578/1413,
  37724. bottom: 37/1615
  37725. }
  37726. },
  37727. },
  37728. [
  37729. {
  37730. name: "Macro",
  37731. height: math.unit(600, "feet"),
  37732. default: true
  37733. },
  37734. ]
  37735. ))
  37736. characterMakers.push(() => makeCharacter(
  37737. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37738. {
  37739. front: {
  37740. height: math.unit(6 + 6/12, "feet"),
  37741. name: "Front",
  37742. image: {
  37743. source: "./media/characters/jai/front.svg",
  37744. extra: 1645/1534,
  37745. bottom: 115/1760
  37746. }
  37747. },
  37748. },
  37749. [
  37750. {
  37751. name: "Normal",
  37752. height: math.unit(6 + 6/12, "feet"),
  37753. default: true
  37754. },
  37755. ]
  37756. ))
  37757. characterMakers.push(() => makeCharacter(
  37758. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37759. {
  37760. front: {
  37761. height: math.unit(6 + 8/12, "feet"),
  37762. name: "Front",
  37763. image: {
  37764. source: "./media/characters/pixel/front.svg",
  37765. extra: 1900/1735,
  37766. bottom: 63/1963
  37767. }
  37768. },
  37769. },
  37770. [
  37771. {
  37772. name: "Normal",
  37773. height: math.unit(6 + 8/12, "feet"),
  37774. default: true
  37775. },
  37776. ]
  37777. ))
  37778. characterMakers.push(() => makeCharacter(
  37779. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37780. {
  37781. back: {
  37782. height: math.unit(4 + 1/12, "feet"),
  37783. weight: math.unit(75, "lb"),
  37784. name: "Back",
  37785. image: {
  37786. source: "./media/characters/rhett/back.svg",
  37787. extra: 930/878,
  37788. bottom: 25/955
  37789. }
  37790. },
  37791. front: {
  37792. height: math.unit(4 + 1/12, "feet"),
  37793. weight: math.unit(75, "lb"),
  37794. name: "Front",
  37795. image: {
  37796. source: "./media/characters/rhett/front.svg",
  37797. extra: 1682/1586,
  37798. bottom: 92/1774
  37799. }
  37800. },
  37801. },
  37802. [
  37803. {
  37804. name: "Micro",
  37805. height: math.unit(8, "inches")
  37806. },
  37807. {
  37808. name: "Tiny",
  37809. height: math.unit(2, "feet")
  37810. },
  37811. {
  37812. name: "Normal",
  37813. height: math.unit(4 + 1/12, "feet"),
  37814. default: true
  37815. },
  37816. ]
  37817. ))
  37818. characterMakers.push(() => makeCharacter(
  37819. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37820. {
  37821. front: {
  37822. height: math.unit(3 + 3/12, "feet"),
  37823. name: "Front",
  37824. image: {
  37825. source: "./media/characters/penny/front.svg",
  37826. extra: 1406/1311,
  37827. bottom: 26/1432
  37828. }
  37829. },
  37830. },
  37831. [
  37832. {
  37833. name: "Normal",
  37834. height: math.unit(3 + 3/12, "feet"),
  37835. default: true
  37836. },
  37837. ]
  37838. ))
  37839. characterMakers.push(() => makeCharacter(
  37840. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37841. {
  37842. front: {
  37843. height: math.unit(4 + 11/12, "feet"),
  37844. name: "Front",
  37845. image: {
  37846. source: "./media/characters/monty/front.svg",
  37847. extra: 1479/1209,
  37848. bottom: 0/1479
  37849. }
  37850. },
  37851. },
  37852. [
  37853. {
  37854. name: "Normal",
  37855. height: math.unit(4 + 11/12, "feet"),
  37856. default: true
  37857. },
  37858. ]
  37859. ))
  37860. characterMakers.push(() => makeCharacter(
  37861. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37862. {
  37863. front: {
  37864. height: math.unit(8 + 4/12, "feet"),
  37865. name: "Front",
  37866. image: {
  37867. source: "./media/characters/sterling/front.svg",
  37868. extra: 1420/1236,
  37869. bottom: 27/1447
  37870. }
  37871. },
  37872. },
  37873. [
  37874. {
  37875. name: "Normal",
  37876. height: math.unit(8 + 4/12, "feet"),
  37877. default: true
  37878. },
  37879. ]
  37880. ))
  37881. characterMakers.push(() => makeCharacter(
  37882. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37883. {
  37884. front: {
  37885. height: math.unit(15, "feet"),
  37886. name: "Front",
  37887. image: {
  37888. source: "./media/characters/marble/front.svg",
  37889. extra: 973/937,
  37890. bottom: 32/1005
  37891. }
  37892. },
  37893. },
  37894. [
  37895. {
  37896. name: "Normal",
  37897. height: math.unit(15, "feet"),
  37898. default: true
  37899. },
  37900. ]
  37901. ))
  37902. characterMakers.push(() => makeCharacter(
  37903. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37904. {
  37905. front: {
  37906. height: math.unit(3, "inches"),
  37907. name: "Front",
  37908. image: {
  37909. source: "./media/characters/powder/front.svg",
  37910. extra: 1504/1334,
  37911. bottom: 518/2022
  37912. }
  37913. },
  37914. },
  37915. [
  37916. {
  37917. name: "Normal",
  37918. height: math.unit(3, "inches"),
  37919. default: true
  37920. },
  37921. ]
  37922. ))
  37923. characterMakers.push(() => makeCharacter(
  37924. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37925. {
  37926. front: {
  37927. height: math.unit(4 + 5/12, "feet"),
  37928. name: "Front",
  37929. image: {
  37930. source: "./media/characters/joey-raccoon/front.svg",
  37931. extra: 1273/1197,
  37932. bottom: 0/1273
  37933. }
  37934. },
  37935. },
  37936. [
  37937. {
  37938. name: "Normal",
  37939. height: math.unit(4 + 5/12, "feet"),
  37940. default: true
  37941. },
  37942. ]
  37943. ))
  37944. characterMakers.push(() => makeCharacter(
  37945. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37946. {
  37947. front: {
  37948. height: math.unit(8 + 4/12, "feet"),
  37949. name: "Front",
  37950. image: {
  37951. source: "./media/characters/vick/front.svg",
  37952. extra: 2187/2118,
  37953. bottom: 47/2234
  37954. }
  37955. },
  37956. },
  37957. [
  37958. {
  37959. name: "Normal",
  37960. height: math.unit(8 + 4/12, "feet"),
  37961. default: true
  37962. },
  37963. ]
  37964. ))
  37965. characterMakers.push(() => makeCharacter(
  37966. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37967. {
  37968. front: {
  37969. height: math.unit(5 + 5/12, "feet"),
  37970. name: "Front",
  37971. image: {
  37972. source: "./media/characters/mitsy/front.svg",
  37973. extra: 1842/1695,
  37974. bottom: 0/1842
  37975. }
  37976. },
  37977. },
  37978. [
  37979. {
  37980. name: "Normal",
  37981. height: math.unit(5 + 5/12, "feet"),
  37982. default: true
  37983. },
  37984. ]
  37985. ))
  37986. characterMakers.push(() => makeCharacter(
  37987. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37988. {
  37989. front: {
  37990. height: math.unit(6 + 3/12, "feet"),
  37991. name: "Front",
  37992. image: {
  37993. source: "./media/characters/silvy/front.svg",
  37994. extra: 1995/1836,
  37995. bottom: 225/2220
  37996. }
  37997. },
  37998. },
  37999. [
  38000. {
  38001. name: "Normal",
  38002. height: math.unit(6 + 3/12, "feet"),
  38003. default: true
  38004. },
  38005. ]
  38006. ))
  38007. characterMakers.push(() => makeCharacter(
  38008. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38009. {
  38010. front: {
  38011. height: math.unit(3 + 8/12, "feet"),
  38012. name: "Front",
  38013. image: {
  38014. source: "./media/characters/rodney/front.svg",
  38015. extra: 1956/1747,
  38016. bottom: 31/1987
  38017. }
  38018. },
  38019. frontDressed: {
  38020. height: math.unit(2.9, "feet"),
  38021. name: "Front (Dressed)",
  38022. image: {
  38023. source: "./media/characters/rodney/front-dressed.svg",
  38024. extra: 1382/1241,
  38025. bottom: 385/1767
  38026. }
  38027. },
  38028. },
  38029. [
  38030. {
  38031. name: "Normal",
  38032. height: math.unit(3 + 8/12, "feet"),
  38033. default: true
  38034. },
  38035. ]
  38036. ))
  38037. characterMakers.push(() => makeCharacter(
  38038. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38039. {
  38040. front: {
  38041. height: math.unit(5 + 9/12, "feet"),
  38042. weight: math.unit(194, "lbs"),
  38043. name: "Front",
  38044. image: {
  38045. source: "./media/characters/zakail-sudekai/front.svg",
  38046. extra: 2696/2533,
  38047. bottom: 248/2944
  38048. }
  38049. },
  38050. maw: {
  38051. height: math.unit(1.35, "feet"),
  38052. name: "Maw",
  38053. image: {
  38054. source: "./media/characters/zakail-sudekai/maw.svg"
  38055. }
  38056. },
  38057. },
  38058. [
  38059. {
  38060. name: "Normal",
  38061. height: math.unit(5 + 9/12, "feet"),
  38062. default: true
  38063. },
  38064. ]
  38065. ))
  38066. characterMakers.push(() => makeCharacter(
  38067. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38068. {
  38069. front: {
  38070. height: math.unit(8 + 4/12, "feet"),
  38071. weight: math.unit(1200, "lb"),
  38072. name: "Front",
  38073. image: {
  38074. source: "./media/characters/eleanor/front.svg",
  38075. extra: 1226/1192,
  38076. bottom: 52/1278
  38077. }
  38078. },
  38079. back: {
  38080. height: math.unit(8 + 4/12, "feet"),
  38081. weight: math.unit(1200, "lb"),
  38082. name: "Back",
  38083. image: {
  38084. source: "./media/characters/eleanor/back.svg",
  38085. extra: 1242/1184,
  38086. bottom: 60/1302
  38087. }
  38088. },
  38089. head: {
  38090. height: math.unit(2.62, "feet"),
  38091. name: "Head",
  38092. image: {
  38093. source: "./media/characters/eleanor/head.svg"
  38094. }
  38095. },
  38096. },
  38097. [
  38098. {
  38099. name: "Normal",
  38100. height: math.unit(8 + 4/12, "feet"),
  38101. default: true
  38102. },
  38103. ]
  38104. ))
  38105. characterMakers.push(() => makeCharacter(
  38106. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38107. {
  38108. front: {
  38109. height: math.unit(8 + 4/12, "feet"),
  38110. weight: math.unit(750, "lb"),
  38111. name: "Front",
  38112. image: {
  38113. source: "./media/characters/tanya/front.svg",
  38114. extra: 1749/1615,
  38115. bottom: 33/1782
  38116. }
  38117. },
  38118. },
  38119. [
  38120. {
  38121. name: "Normal",
  38122. height: math.unit(8 + 4/12, "feet"),
  38123. default: true
  38124. },
  38125. ]
  38126. ))
  38127. characterMakers.push(() => makeCharacter(
  38128. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38129. {
  38130. front: {
  38131. height: math.unit(5, "feet"),
  38132. weight: math.unit(225, "lb"),
  38133. name: "Front",
  38134. image: {
  38135. source: "./media/characters/cindy/front.svg",
  38136. extra: 1320/1250,
  38137. bottom: 42/1362
  38138. }
  38139. },
  38140. frontDressed: {
  38141. height: math.unit(5, "feet"),
  38142. weight: math.unit(225, "lb"),
  38143. name: "Front (Dressed)",
  38144. image: {
  38145. source: "./media/characters/cindy/front-dressed.svg",
  38146. extra: 1320/1250,
  38147. bottom: 42/1362
  38148. }
  38149. },
  38150. back: {
  38151. height: math.unit(5, "feet"),
  38152. weight: math.unit(225, "lb"),
  38153. name: "Back",
  38154. image: {
  38155. source: "./media/characters/cindy/back.svg",
  38156. extra: 1384/1346,
  38157. bottom: 14/1398
  38158. }
  38159. },
  38160. },
  38161. [
  38162. {
  38163. name: "Normal",
  38164. height: math.unit(5, "feet"),
  38165. default: true
  38166. },
  38167. ]
  38168. ))
  38169. characterMakers.push(() => makeCharacter(
  38170. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38171. {
  38172. front: {
  38173. height: math.unit(6 + 9/12, "feet"),
  38174. weight: math.unit(440, "lb"),
  38175. name: "Front",
  38176. image: {
  38177. source: "./media/characters/wilbur-owen/front.svg",
  38178. extra: 1575/1448,
  38179. bottom: 72/1647
  38180. }
  38181. },
  38182. back: {
  38183. height: math.unit(6 + 9/12, "feet"),
  38184. weight: math.unit(440, "lb"),
  38185. name: "Back",
  38186. image: {
  38187. source: "./media/characters/wilbur-owen/back.svg",
  38188. extra: 1578/1445,
  38189. bottom: 36/1614
  38190. }
  38191. },
  38192. },
  38193. [
  38194. {
  38195. name: "Normal",
  38196. height: math.unit(6 + 9/12, "feet"),
  38197. default: true
  38198. },
  38199. ]
  38200. ))
  38201. characterMakers.push(() => makeCharacter(
  38202. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38203. {
  38204. front: {
  38205. height: math.unit(6 + 5/12, "feet"),
  38206. weight: math.unit(650, "lb"),
  38207. name: "Front",
  38208. image: {
  38209. source: "./media/characters/keegan/front.svg",
  38210. extra: 2387/2198,
  38211. bottom: 33/2420
  38212. }
  38213. },
  38214. side: {
  38215. height: math.unit(6 + 5/12, "feet"),
  38216. weight: math.unit(650, "lb"),
  38217. name: "Side",
  38218. image: {
  38219. source: "./media/characters/keegan/side.svg",
  38220. extra: 2390/2202,
  38221. bottom: 47/2437
  38222. }
  38223. },
  38224. back: {
  38225. height: math.unit(6 + 5/12, "feet"),
  38226. weight: math.unit(650, "lb"),
  38227. name: "Back",
  38228. image: {
  38229. source: "./media/characters/keegan/back.svg",
  38230. extra: 2418/2268,
  38231. bottom: 15/2433
  38232. }
  38233. },
  38234. frontSfw: {
  38235. height: math.unit(6 + 5/12, "feet"),
  38236. weight: math.unit(650, "lb"),
  38237. name: "Front (SFW)",
  38238. image: {
  38239. source: "./media/characters/keegan/front-sfw.svg",
  38240. extra: 2387/2198,
  38241. bottom: 33/2420
  38242. }
  38243. },
  38244. beans: {
  38245. height: math.unit(1.85, "feet"),
  38246. name: "Beans",
  38247. image: {
  38248. source: "./media/characters/keegan/beans.svg"
  38249. }
  38250. },
  38251. },
  38252. [
  38253. {
  38254. name: "Normal",
  38255. height: math.unit(6 + 5/12, "feet"),
  38256. default: true
  38257. },
  38258. ]
  38259. ))
  38260. characterMakers.push(() => makeCharacter(
  38261. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38262. {
  38263. front: {
  38264. height: math.unit(9, "feet"),
  38265. name: "Front",
  38266. image: {
  38267. source: "./media/characters/colton/front.svg",
  38268. extra: 1589/1326,
  38269. bottom: 139/1728
  38270. }
  38271. },
  38272. },
  38273. [
  38274. {
  38275. name: "Normal",
  38276. height: math.unit(9, "feet"),
  38277. default: true
  38278. },
  38279. ]
  38280. ))
  38281. characterMakers.push(() => makeCharacter(
  38282. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38283. {
  38284. front: {
  38285. height: math.unit(2 + 9/12, "feet"),
  38286. name: "Front",
  38287. image: {
  38288. source: "./media/characters/bora/front.svg",
  38289. extra: 1265/1250,
  38290. bottom: 24/1289
  38291. }
  38292. },
  38293. },
  38294. [
  38295. {
  38296. name: "Normal",
  38297. height: math.unit(2 + 9/12, "feet"),
  38298. default: true
  38299. },
  38300. ]
  38301. ))
  38302. characterMakers.push(() => makeCharacter(
  38303. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38304. {
  38305. front: {
  38306. height: math.unit(8, "feet"),
  38307. name: "Front",
  38308. image: {
  38309. source: "./media/characters/myu-myu/front.svg",
  38310. extra: 1949/1857,
  38311. bottom: 90/2039
  38312. }
  38313. },
  38314. },
  38315. [
  38316. {
  38317. name: "Normal",
  38318. height: math.unit(8, "feet"),
  38319. default: true
  38320. },
  38321. {
  38322. name: "Big",
  38323. height: math.unit(15, "feet")
  38324. },
  38325. {
  38326. name: "BIG",
  38327. height: math.unit(25, "feet")
  38328. },
  38329. ]
  38330. ))
  38331. characterMakers.push(() => makeCharacter(
  38332. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38333. {
  38334. side: {
  38335. height: math.unit(7 + 5/12, "feet"),
  38336. weight: math.unit(2800, "lb"),
  38337. name: "Side",
  38338. image: {
  38339. source: "./media/characters/haloren/side.svg",
  38340. extra: 1793/409,
  38341. bottom: 59/1852
  38342. }
  38343. },
  38344. frontPaw: {
  38345. height: math.unit(2.36, "feet"),
  38346. name: "Front paw",
  38347. image: {
  38348. source: "./media/characters/haloren/front-paw.svg"
  38349. }
  38350. },
  38351. hindPaw: {
  38352. height: math.unit(3.18, "feet"),
  38353. name: "Hind paw",
  38354. image: {
  38355. source: "./media/characters/haloren/hind-paw.svg"
  38356. }
  38357. },
  38358. maw: {
  38359. height: math.unit(5.05, "feet"),
  38360. name: "Maw",
  38361. image: {
  38362. source: "./media/characters/haloren/maw.svg"
  38363. }
  38364. },
  38365. dick: {
  38366. height: math.unit(2.90, "feet"),
  38367. name: "Dick",
  38368. image: {
  38369. source: "./media/characters/haloren/dick.svg"
  38370. }
  38371. },
  38372. },
  38373. [
  38374. {
  38375. name: "Normal",
  38376. height: math.unit(7 + 5/12, "feet"),
  38377. default: true
  38378. },
  38379. {
  38380. name: "Enhanced",
  38381. height: math.unit(14 + 3/12, "feet")
  38382. },
  38383. ]
  38384. ))
  38385. characterMakers.push(() => makeCharacter(
  38386. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38387. {
  38388. front: {
  38389. height: math.unit(171, "cm"),
  38390. name: "Front",
  38391. image: {
  38392. source: "./media/characters/kimmy/front.svg",
  38393. extra: 1491/1435,
  38394. bottom: 53/1544
  38395. }
  38396. },
  38397. },
  38398. [
  38399. {
  38400. name: "Small",
  38401. height: math.unit(9, "cm")
  38402. },
  38403. {
  38404. name: "Normal",
  38405. height: math.unit(171, "cm"),
  38406. default: true
  38407. },
  38408. ]
  38409. ))
  38410. characterMakers.push(() => makeCharacter(
  38411. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38412. {
  38413. front: {
  38414. height: math.unit(8, "feet"),
  38415. weight: math.unit(300, "lb"),
  38416. name: "Front",
  38417. image: {
  38418. source: "./media/characters/galeboomer/front.svg",
  38419. extra: 4651/4415,
  38420. bottom: 162/4813
  38421. }
  38422. },
  38423. back: {
  38424. height: math.unit(8, "feet"),
  38425. weight: math.unit(300, "lb"),
  38426. name: "Back",
  38427. image: {
  38428. source: "./media/characters/galeboomer/back.svg",
  38429. extra: 4544/4314,
  38430. bottom: 16/4560
  38431. }
  38432. },
  38433. frontAlt: {
  38434. height: math.unit(8, "feet"),
  38435. weight: math.unit(300, "lb"),
  38436. name: "Front (Alt)",
  38437. image: {
  38438. source: "./media/characters/galeboomer/front-alt.svg",
  38439. extra: 4458/4228,
  38440. bottom: 68/4526
  38441. }
  38442. },
  38443. maw: {
  38444. height: math.unit(1.2, "feet"),
  38445. name: "Maw",
  38446. image: {
  38447. source: "./media/characters/galeboomer/maw.svg"
  38448. }
  38449. },
  38450. },
  38451. [
  38452. {
  38453. name: "Normal",
  38454. height: math.unit(8, "feet"),
  38455. default: true
  38456. },
  38457. ]
  38458. ))
  38459. characterMakers.push(() => makeCharacter(
  38460. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38461. {
  38462. front: {
  38463. height: math.unit(5 + 9/12, "feet"),
  38464. weight: math.unit(120, "lb"),
  38465. name: "Front",
  38466. image: {
  38467. source: "./media/characters/chyr/front.svg",
  38468. extra: 1323/1254,
  38469. bottom: 63/1386
  38470. }
  38471. },
  38472. back: {
  38473. height: math.unit(5 + 9/12, "feet"),
  38474. weight: math.unit(120, "lb"),
  38475. name: "Back",
  38476. image: {
  38477. source: "./media/characters/chyr/back.svg",
  38478. extra: 1323/1252,
  38479. bottom: 48/1371
  38480. }
  38481. },
  38482. },
  38483. [
  38484. {
  38485. name: "Normal",
  38486. height: math.unit(5 + 9/12, "feet"),
  38487. default: true
  38488. },
  38489. ]
  38490. ))
  38491. characterMakers.push(() => makeCharacter(
  38492. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38493. {
  38494. front: {
  38495. height: math.unit(7, "feet"),
  38496. weight: math.unit(310, "lb"),
  38497. name: "Front",
  38498. image: {
  38499. source: "./media/characters/solarus/front.svg",
  38500. extra: 2415/2021,
  38501. bottom: 103/2518
  38502. }
  38503. },
  38504. back: {
  38505. height: math.unit(7, "feet"),
  38506. weight: math.unit(310, "lb"),
  38507. name: "Back",
  38508. image: {
  38509. source: "./media/characters/solarus/back.svg",
  38510. extra: 2463/2089,
  38511. bottom: 79/2542
  38512. }
  38513. },
  38514. },
  38515. [
  38516. {
  38517. name: "Normal",
  38518. height: math.unit(7, "feet"),
  38519. default: true
  38520. },
  38521. ]
  38522. ))
  38523. characterMakers.push(() => makeCharacter(
  38524. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38525. {
  38526. front: {
  38527. height: math.unit(16, "feet"),
  38528. name: "Front",
  38529. image: {
  38530. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38531. extra: 1844/1780,
  38532. bottom: 58/1902
  38533. }
  38534. },
  38535. winterCoat: {
  38536. height: math.unit(16, "feet"),
  38537. name: "Winter Coat",
  38538. image: {
  38539. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38540. extra: 1807/1775,
  38541. bottom: 69/1876
  38542. }
  38543. },
  38544. },
  38545. [
  38546. {
  38547. name: "Normal",
  38548. height: math.unit(16, "feet"),
  38549. default: true
  38550. },
  38551. {
  38552. name: "Chicago Size",
  38553. height: math.unit(560, "feet")
  38554. },
  38555. ]
  38556. ))
  38557. characterMakers.push(() => makeCharacter(
  38558. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38559. {
  38560. front: {
  38561. height: math.unit(11 + 6/12, "feet"),
  38562. weight: math.unit(1366, "lb"),
  38563. name: "Front",
  38564. image: {
  38565. source: "./media/characters/lexor/front.svg",
  38566. extra: 1560/1481,
  38567. bottom: 211/1771
  38568. }
  38569. },
  38570. back: {
  38571. height: math.unit(11 + 6/12, "feet"),
  38572. weight: math.unit(1366, "lb"),
  38573. name: "Back",
  38574. image: {
  38575. source: "./media/characters/lexor/back.svg",
  38576. extra: 1614/1533,
  38577. bottom: 76/1690
  38578. }
  38579. },
  38580. maw: {
  38581. height: math.unit(3, "feet"),
  38582. name: "Maw",
  38583. image: {
  38584. source: "./media/characters/lexor/maw.svg"
  38585. }
  38586. },
  38587. dick: {
  38588. height: math.unit(2.59, "feet"),
  38589. name: "Dick",
  38590. image: {
  38591. source: "./media/characters/lexor/dick.svg"
  38592. }
  38593. },
  38594. },
  38595. [
  38596. {
  38597. name: "Normal",
  38598. height: math.unit(11 + 6/12, "feet"),
  38599. default: true
  38600. },
  38601. ]
  38602. ))
  38603. characterMakers.push(() => makeCharacter(
  38604. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38605. {
  38606. front: {
  38607. height: math.unit(5 + 8/12, "feet"),
  38608. name: "Front",
  38609. image: {
  38610. source: "./media/characters/magnum/front.svg",
  38611. extra: 942/855,
  38612. bottom: 26/968
  38613. }
  38614. },
  38615. },
  38616. [
  38617. {
  38618. name: "Normal",
  38619. height: math.unit(5 + 8/12, "feet"),
  38620. default: true
  38621. },
  38622. ]
  38623. ))
  38624. characterMakers.push(() => makeCharacter(
  38625. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38626. {
  38627. front: {
  38628. height: math.unit(18 + 4/12, "feet"),
  38629. weight: math.unit(1500, "kg"),
  38630. name: "Front",
  38631. image: {
  38632. source: "./media/characters/solas-sharpsman/front.svg",
  38633. extra: 1698/1589,
  38634. bottom: 0/1698
  38635. }
  38636. },
  38637. },
  38638. [
  38639. {
  38640. name: "Normal",
  38641. height: math.unit(18 + 4/12, "feet"),
  38642. default: true
  38643. },
  38644. ]
  38645. ))
  38646. characterMakers.push(() => makeCharacter(
  38647. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38648. {
  38649. front: {
  38650. height: math.unit(5 + 5/12, "feet"),
  38651. weight: math.unit(180, "lb"),
  38652. name: "Front",
  38653. image: {
  38654. source: "./media/characters/october/front.svg",
  38655. extra: 1800/1650,
  38656. bottom: 0/1800
  38657. }
  38658. },
  38659. frontNsfw: {
  38660. height: math.unit(5 + 5/12, "feet"),
  38661. weight: math.unit(180, "lb"),
  38662. name: "Front (NSFW)",
  38663. image: {
  38664. source: "./media/characters/october/front-nsfw.svg",
  38665. extra: 1392/1307,
  38666. bottom: 42/1434
  38667. }
  38668. },
  38669. },
  38670. [
  38671. {
  38672. name: "Normal",
  38673. height: math.unit(5 + 5/12, "feet"),
  38674. default: true
  38675. },
  38676. ]
  38677. ))
  38678. characterMakers.push(() => makeCharacter(
  38679. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38680. {
  38681. front: {
  38682. height: math.unit(8 + 6/12, "feet"),
  38683. name: "Front",
  38684. image: {
  38685. source: "./media/characters/essynkardi/front.svg",
  38686. extra: 1914/1846,
  38687. bottom: 22/1936
  38688. }
  38689. },
  38690. },
  38691. [
  38692. {
  38693. name: "Normal",
  38694. height: math.unit(8 + 6/12, "feet"),
  38695. default: true
  38696. },
  38697. ]
  38698. ))
  38699. characterMakers.push(() => makeCharacter(
  38700. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38701. {
  38702. front: {
  38703. height: math.unit(6 + 6/12, "feet"),
  38704. weight: math.unit(7, "lb"),
  38705. name: "Front",
  38706. image: {
  38707. source: "./media/characters/icky/front.svg",
  38708. extra: 813/782,
  38709. bottom: 66/879
  38710. }
  38711. },
  38712. back: {
  38713. height: math.unit(6 + 6/12, "feet"),
  38714. weight: math.unit(7, "lb"),
  38715. name: "Back",
  38716. image: {
  38717. source: "./media/characters/icky/back.svg",
  38718. extra: 754/735,
  38719. bottom: 56/810
  38720. }
  38721. },
  38722. },
  38723. [
  38724. {
  38725. name: "Normal",
  38726. height: math.unit(6 + 6/12, "feet"),
  38727. default: true
  38728. },
  38729. ]
  38730. ))
  38731. characterMakers.push(() => makeCharacter(
  38732. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38733. {
  38734. front: {
  38735. height: math.unit(15, "feet"),
  38736. name: "Front",
  38737. image: {
  38738. source: "./media/characters/rojas/front.svg",
  38739. extra: 1462/1408,
  38740. bottom: 95/1557
  38741. }
  38742. },
  38743. back: {
  38744. height: math.unit(15, "feet"),
  38745. name: "Back",
  38746. image: {
  38747. source: "./media/characters/rojas/back.svg",
  38748. extra: 1023/954,
  38749. bottom: 28/1051
  38750. }
  38751. },
  38752. },
  38753. [
  38754. {
  38755. name: "Normal",
  38756. height: math.unit(15, "feet"),
  38757. default: true
  38758. },
  38759. ]
  38760. ))
  38761. characterMakers.push(() => makeCharacter(
  38762. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38763. {
  38764. frontHuman: {
  38765. height: math.unit(5 + 7/12, "feet"),
  38766. name: "Front (Human)",
  38767. image: {
  38768. source: "./media/characters/alek-dryagan/front-human.svg",
  38769. extra: 1687/1667,
  38770. bottom: 69/1756
  38771. }
  38772. },
  38773. backHuman: {
  38774. height: math.unit(5 + 7/12, "feet"),
  38775. name: "Back (Human)",
  38776. image: {
  38777. source: "./media/characters/alek-dryagan/back-human.svg",
  38778. extra: 1670/1649,
  38779. bottom: 65/1735
  38780. }
  38781. },
  38782. frontDemi: {
  38783. height: math.unit(65, "feet"),
  38784. name: "Front (Demi)",
  38785. image: {
  38786. source: "./media/characters/alek-dryagan/front-demi.svg",
  38787. extra: 1669/1642,
  38788. bottom: 49/1718
  38789. }
  38790. },
  38791. backDemi: {
  38792. height: math.unit(65, "feet"),
  38793. name: "Back (Demi)",
  38794. image: {
  38795. source: "./media/characters/alek-dryagan/back-demi.svg",
  38796. extra: 1658/1637,
  38797. bottom: 40/1698
  38798. }
  38799. },
  38800. mawHuman: {
  38801. height: math.unit(0.3, "feet"),
  38802. name: "Maw (Human)",
  38803. image: {
  38804. source: "./media/characters/alek-dryagan/maw-human.svg"
  38805. }
  38806. },
  38807. mawDemi: {
  38808. height: math.unit(3.8, "feet"),
  38809. name: "Maw (Demi)",
  38810. image: {
  38811. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38812. }
  38813. },
  38814. },
  38815. [
  38816. {
  38817. name: "Normal",
  38818. height: math.unit(5 + 7/12, "feet"),
  38819. default: true
  38820. },
  38821. ]
  38822. ))
  38823. characterMakers.push(() => makeCharacter(
  38824. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38825. {
  38826. frontHuman: {
  38827. height: math.unit(5 + 2/12, "feet"),
  38828. name: "Front (Human)",
  38829. image: {
  38830. source: "./media/characters/gen/front-human.svg",
  38831. extra: 1627/1538,
  38832. bottom: 71/1698
  38833. }
  38834. },
  38835. backHuman: {
  38836. height: math.unit(5 + 2/12, "feet"),
  38837. name: "Back (Human)",
  38838. image: {
  38839. source: "./media/characters/gen/back-human.svg",
  38840. extra: 1638/1548,
  38841. bottom: 69/1707
  38842. }
  38843. },
  38844. frontDemi: {
  38845. height: math.unit(5 + 2/12, "feet"),
  38846. name: "Front (Demi)",
  38847. image: {
  38848. source: "./media/characters/gen/front-demi.svg",
  38849. extra: 1627/1538,
  38850. bottom: 71/1698
  38851. }
  38852. },
  38853. backDemi: {
  38854. height: math.unit(5 + 2/12, "feet"),
  38855. name: "Back (Demi)",
  38856. image: {
  38857. source: "./media/characters/gen/back-demi.svg",
  38858. extra: 1638/1548,
  38859. bottom: 69/1707
  38860. }
  38861. },
  38862. },
  38863. [
  38864. {
  38865. name: "Normal",
  38866. height: math.unit(5 + 2/12, "feet"),
  38867. default: true
  38868. },
  38869. ]
  38870. ))
  38871. characterMakers.push(() => makeCharacter(
  38872. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38873. {
  38874. frontImp: {
  38875. height: math.unit(1 + 11/12, "feet"),
  38876. name: "Front (Imp)",
  38877. image: {
  38878. source: "./media/characters/max-kobold/front-imp.svg",
  38879. extra: 1238/1134,
  38880. bottom: 81/1319
  38881. }
  38882. },
  38883. backImp: {
  38884. height: math.unit(1 + 11/12, "feet"),
  38885. name: "Back (Imp)",
  38886. image: {
  38887. source: "./media/characters/max-kobold/back-imp.svg",
  38888. extra: 1334/1175,
  38889. bottom: 34/1368
  38890. }
  38891. },
  38892. frontDemi: {
  38893. height: math.unit(5 + 9/12, "feet"),
  38894. name: "Front (Demi)",
  38895. image: {
  38896. source: "./media/characters/max-kobold/front-demi.svg",
  38897. extra: 1715/1685,
  38898. bottom: 54/1769
  38899. }
  38900. },
  38901. backDemi: {
  38902. height: math.unit(5 + 9/12, "feet"),
  38903. name: "Back (Demi)",
  38904. image: {
  38905. source: "./media/characters/max-kobold/back-demi.svg",
  38906. extra: 1752/1729,
  38907. bottom: 41/1793
  38908. }
  38909. },
  38910. handImp: {
  38911. height: math.unit(0.45, "feet"),
  38912. name: "Hand (Imp)",
  38913. image: {
  38914. source: "./media/characters/max-kobold/hand.svg"
  38915. }
  38916. },
  38917. pawImp: {
  38918. height: math.unit(0.46, "feet"),
  38919. name: "Paw (Imp)",
  38920. image: {
  38921. source: "./media/characters/max-kobold/paw.svg"
  38922. }
  38923. },
  38924. handDemi: {
  38925. height: math.unit(0.80, "feet"),
  38926. name: "Hand (Demi)",
  38927. image: {
  38928. source: "./media/characters/max-kobold/hand.svg"
  38929. }
  38930. },
  38931. pawDemi: {
  38932. height: math.unit(1.1, "feet"),
  38933. name: "Paw (Demi)",
  38934. image: {
  38935. source: "./media/characters/max-kobold/paw.svg"
  38936. }
  38937. },
  38938. headImp: {
  38939. height: math.unit(1.33, "feet"),
  38940. name: "Head (Imp)",
  38941. image: {
  38942. source: "./media/characters/max-kobold/head-imp.svg"
  38943. }
  38944. },
  38945. mawImp: {
  38946. height: math.unit(0.75, "feet"),
  38947. name: "Maw (Imp)",
  38948. image: {
  38949. source: "./media/characters/max-kobold/maw-imp.svg"
  38950. }
  38951. },
  38952. mawDemi: {
  38953. height: math.unit(0.42, "feet"),
  38954. name: "Maw (Demi)",
  38955. image: {
  38956. source: "./media/characters/max-kobold/maw-demi.svg"
  38957. }
  38958. },
  38959. },
  38960. [
  38961. {
  38962. name: "Normal",
  38963. height: math.unit(1 + 11/12, "feet"),
  38964. default: true
  38965. },
  38966. ]
  38967. ))
  38968. characterMakers.push(() => makeCharacter(
  38969. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38970. {
  38971. front: {
  38972. height: math.unit(7 + 5/12, "feet"),
  38973. name: "Front",
  38974. image: {
  38975. source: "./media/characters/carbon/front.svg",
  38976. extra: 1754/1689,
  38977. bottom: 65/1819
  38978. }
  38979. },
  38980. back: {
  38981. height: math.unit(7 + 5/12, "feet"),
  38982. name: "Back",
  38983. image: {
  38984. source: "./media/characters/carbon/back.svg",
  38985. extra: 1762/1695,
  38986. bottom: 24/1786
  38987. }
  38988. },
  38989. frontGigantamax: {
  38990. height: math.unit(150, "feet"),
  38991. name: "Front (Gigantamax)",
  38992. image: {
  38993. source: "./media/characters/carbon/front-gigantamax.svg",
  38994. extra: 1826/1669,
  38995. bottom: 59/1885
  38996. }
  38997. },
  38998. backGigantamax: {
  38999. height: math.unit(150, "feet"),
  39000. name: "Back (Gigantamax)",
  39001. image: {
  39002. source: "./media/characters/carbon/back-gigantamax.svg",
  39003. extra: 1796/1653,
  39004. bottom: 53/1849
  39005. }
  39006. },
  39007. maw: {
  39008. height: math.unit(0.48, "feet"),
  39009. name: "Maw",
  39010. image: {
  39011. source: "./media/characters/carbon/maw.svg"
  39012. }
  39013. },
  39014. mawGigantamax: {
  39015. height: math.unit(7.5, "feet"),
  39016. name: "Maw (Gigantamax)",
  39017. image: {
  39018. source: "./media/characters/carbon/maw-gigantamax.svg"
  39019. }
  39020. },
  39021. },
  39022. [
  39023. {
  39024. name: "Normal",
  39025. height: math.unit(7 + 5/12, "feet"),
  39026. default: true
  39027. },
  39028. ]
  39029. ))
  39030. characterMakers.push(() => makeCharacter(
  39031. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39032. {
  39033. front: {
  39034. height: math.unit(6, "feet"),
  39035. name: "Front",
  39036. image: {
  39037. source: "./media/characters/maverick/front.svg",
  39038. extra: 1672/1661,
  39039. bottom: 85/1757
  39040. }
  39041. },
  39042. back: {
  39043. height: math.unit(6, "feet"),
  39044. name: "Back",
  39045. image: {
  39046. source: "./media/characters/maverick/back.svg",
  39047. extra: 1642/1631,
  39048. bottom: 38/1680
  39049. }
  39050. },
  39051. },
  39052. [
  39053. {
  39054. name: "Normal",
  39055. height: math.unit(6, "feet"),
  39056. default: true
  39057. },
  39058. ]
  39059. ))
  39060. characterMakers.push(() => makeCharacter(
  39061. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39062. {
  39063. front: {
  39064. height: math.unit(15, "feet"),
  39065. weight: math.unit(615, "lb"),
  39066. name: "Front",
  39067. image: {
  39068. source: "./media/characters/grockle/front.svg",
  39069. extra: 1535/1427,
  39070. bottom: 56/1591
  39071. }
  39072. },
  39073. },
  39074. [
  39075. {
  39076. name: "Normal",
  39077. height: math.unit(15, "feet"),
  39078. default: true
  39079. },
  39080. {
  39081. name: "Large",
  39082. height: math.unit(150, "feet")
  39083. },
  39084. {
  39085. name: "Macro",
  39086. height: math.unit(1876, "feet")
  39087. },
  39088. {
  39089. name: "Mega Macro",
  39090. height: math.unit(121940, "feet")
  39091. },
  39092. {
  39093. name: "Giga Macro",
  39094. height: math.unit(750, "km")
  39095. },
  39096. {
  39097. name: "Tera Macro",
  39098. height: math.unit(750000, "km")
  39099. },
  39100. {
  39101. name: "Galactic",
  39102. height: math.unit(1.4e5, "km")
  39103. },
  39104. {
  39105. name: "Godlike",
  39106. height: math.unit(9.8e280, "galaxies")
  39107. },
  39108. ]
  39109. ))
  39110. characterMakers.push(() => makeCharacter(
  39111. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39112. {
  39113. front: {
  39114. height: math.unit(11, "meters"),
  39115. weight: math.unit(20, "tonnes"),
  39116. name: "Front",
  39117. image: {
  39118. source: "./media/characters/alistair/front.svg",
  39119. extra: 1265/1009,
  39120. bottom: 93/1358
  39121. }
  39122. },
  39123. },
  39124. [
  39125. {
  39126. name: "Normal",
  39127. height: math.unit(11, "meters"),
  39128. default: true
  39129. },
  39130. ]
  39131. ))
  39132. characterMakers.push(() => makeCharacter(
  39133. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39134. {
  39135. front: {
  39136. height: math.unit(5 + 8/12, "feet"),
  39137. name: "Front",
  39138. image: {
  39139. source: "./media/characters/haruka/front.svg",
  39140. extra: 2012/1952,
  39141. bottom: 0/2012
  39142. }
  39143. },
  39144. },
  39145. [
  39146. {
  39147. name: "Normal",
  39148. height: math.unit(5 + 8/12, "feet"),
  39149. default: true
  39150. },
  39151. ]
  39152. ))
  39153. characterMakers.push(() => makeCharacter(
  39154. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39155. {
  39156. back: {
  39157. height: math.unit(9, "feet"),
  39158. name: "Back",
  39159. image: {
  39160. source: "./media/characters/vivian-sylveon/back.svg",
  39161. extra: 1853/1714,
  39162. bottom: 0/1853
  39163. }
  39164. },
  39165. },
  39166. [
  39167. {
  39168. name: "Normal",
  39169. height: math.unit(9, "feet"),
  39170. default: true
  39171. },
  39172. {
  39173. name: "Macro",
  39174. height: math.unit(500, "feet")
  39175. },
  39176. {
  39177. name: "Megamacro",
  39178. height: math.unit(600, "miles")
  39179. },
  39180. {
  39181. name: "Gigamacro",
  39182. height: math.unit(30000, "miles")
  39183. },
  39184. ]
  39185. ))
  39186. characterMakers.push(() => makeCharacter(
  39187. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39188. {
  39189. anthro: {
  39190. height: math.unit(5 + 10/12, "feet"),
  39191. weight: math.unit(100, "lb"),
  39192. name: "Anthro",
  39193. image: {
  39194. source: "./media/characters/daiki/anthro.svg",
  39195. extra: 1115/1027,
  39196. bottom: 69/1184
  39197. }
  39198. },
  39199. feral: {
  39200. height: math.unit(200, "feet"),
  39201. name: "Feral",
  39202. image: {
  39203. source: "./media/characters/daiki/feral.svg",
  39204. extra: 1256/313,
  39205. bottom: 39/1295
  39206. }
  39207. },
  39208. feralHead: {
  39209. height: math.unit(171, "feet"),
  39210. name: "Feral Head",
  39211. image: {
  39212. source: "./media/characters/daiki/feral-head.svg"
  39213. }
  39214. },
  39215. manaDragon: {
  39216. height: math.unit(170, "meters"),
  39217. name: "Mana-dragon",
  39218. image: {
  39219. source: "./media/characters/daiki/mana-dragon.svg",
  39220. extra: 763/420,
  39221. bottom: 97/860
  39222. }
  39223. },
  39224. },
  39225. [
  39226. {
  39227. name: "Normal",
  39228. height: math.unit(5 + 10/12, "feet"),
  39229. default: true
  39230. },
  39231. ]
  39232. ))
  39233. characterMakers.push(() => makeCharacter(
  39234. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39235. {
  39236. fullyEquippedFront: {
  39237. height: math.unit(3 + 1/12, "feet"),
  39238. weight: math.unit(24, "lb"),
  39239. name: "Fully Equipped (Front)",
  39240. image: {
  39241. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39242. extra: 687/605,
  39243. bottom: 18/705
  39244. }
  39245. },
  39246. fullyEquippedBack: {
  39247. height: math.unit(3 + 1/12, "feet"),
  39248. weight: math.unit(24, "lb"),
  39249. name: "Fully Equipped (Back)",
  39250. image: {
  39251. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39252. extra: 689/590,
  39253. bottom: 18/707
  39254. }
  39255. },
  39256. dailyWear: {
  39257. height: math.unit(3 + 1/12, "feet"),
  39258. weight: math.unit(24, "lb"),
  39259. name: "Daily Wear",
  39260. image: {
  39261. source: "./media/characters/tea-spot/daily-wear.svg",
  39262. extra: 701/620,
  39263. bottom: 21/722
  39264. }
  39265. },
  39266. maidWork: {
  39267. height: math.unit(3 + 1/12, "feet"),
  39268. weight: math.unit(24, "lb"),
  39269. name: "Maid Work",
  39270. image: {
  39271. source: "./media/characters/tea-spot/maid-work.svg",
  39272. extra: 693/609,
  39273. bottom: 15/708
  39274. }
  39275. },
  39276. },
  39277. [
  39278. {
  39279. name: "Normal",
  39280. height: math.unit(3 + 1/12, "feet"),
  39281. default: true
  39282. },
  39283. ]
  39284. ))
  39285. characterMakers.push(() => makeCharacter(
  39286. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39287. {
  39288. front: {
  39289. height: math.unit(175, "cm"),
  39290. weight: math.unit(75, "kg"),
  39291. name: "Front",
  39292. image: {
  39293. source: "./media/characters/chee/front.svg",
  39294. extra: 1796/1740,
  39295. bottom: 40/1836
  39296. }
  39297. },
  39298. },
  39299. [
  39300. {
  39301. name: "Micro-Micro",
  39302. height: math.unit(1, "nm")
  39303. },
  39304. {
  39305. name: "Micro-erst",
  39306. height: math.unit(1, "micrometer")
  39307. },
  39308. {
  39309. name: "Micro-er",
  39310. height: math.unit(1, "cm")
  39311. },
  39312. {
  39313. name: "Normal",
  39314. height: math.unit(175, "cm"),
  39315. default: true
  39316. },
  39317. {
  39318. name: "Macro",
  39319. height: math.unit(100, "m")
  39320. },
  39321. {
  39322. name: "Macro-er",
  39323. height: math.unit(1, "km")
  39324. },
  39325. {
  39326. name: "Macro-erst",
  39327. height: math.unit(10, "km")
  39328. },
  39329. {
  39330. name: "Macro-Macro",
  39331. height: math.unit(100, "km")
  39332. },
  39333. ]
  39334. ))
  39335. characterMakers.push(() => makeCharacter(
  39336. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39337. {
  39338. front: {
  39339. height: math.unit(11 + 9/12, "feet"),
  39340. weight: math.unit(935, "lb"),
  39341. name: "Front",
  39342. image: {
  39343. source: "./media/characters/kingsley/front.svg",
  39344. extra: 1803/1674,
  39345. bottom: 127/1930
  39346. }
  39347. },
  39348. frontNude: {
  39349. height: math.unit(11 + 9/12, "feet"),
  39350. weight: math.unit(935, "lb"),
  39351. name: "Front (Nude)",
  39352. image: {
  39353. source: "./media/characters/kingsley/front-nude.svg",
  39354. extra: 1803/1674,
  39355. bottom: 127/1930
  39356. }
  39357. },
  39358. },
  39359. [
  39360. {
  39361. name: "Normal",
  39362. height: math.unit(11 + 9/12, "feet"),
  39363. default: true
  39364. },
  39365. ]
  39366. ))
  39367. characterMakers.push(() => makeCharacter(
  39368. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39369. {
  39370. side: {
  39371. height: math.unit(9, "feet"),
  39372. name: "Side",
  39373. image: {
  39374. source: "./media/characters/rymel/side.svg",
  39375. extra: 792/469,
  39376. bottom: 121/913
  39377. }
  39378. },
  39379. maw: {
  39380. height: math.unit(2.4, "meters"),
  39381. name: "Maw",
  39382. image: {
  39383. source: "./media/characters/rymel/maw.svg"
  39384. }
  39385. },
  39386. },
  39387. [
  39388. {
  39389. name: "House Drake",
  39390. height: math.unit(2, "feet")
  39391. },
  39392. {
  39393. name: "Reduced",
  39394. height: math.unit(4.5, "feet")
  39395. },
  39396. {
  39397. name: "Normal",
  39398. height: math.unit(9, "feet"),
  39399. default: true
  39400. },
  39401. ]
  39402. ))
  39403. characterMakers.push(() => makeCharacter(
  39404. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39405. {
  39406. front: {
  39407. height: math.unit(1.74, "meters"),
  39408. weight: math.unit(55, "kg"),
  39409. name: "Front",
  39410. image: {
  39411. source: "./media/characters/rubus/front.svg",
  39412. extra: 1894/1742,
  39413. bottom: 44/1938
  39414. }
  39415. },
  39416. },
  39417. [
  39418. {
  39419. name: "Normal",
  39420. height: math.unit(1.74, "meters"),
  39421. default: true
  39422. },
  39423. ]
  39424. ))
  39425. characterMakers.push(() => makeCharacter(
  39426. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39427. {
  39428. front: {
  39429. height: math.unit(5 + 2/12, "feet"),
  39430. weight: math.unit(112, "lb"),
  39431. name: "Front",
  39432. image: {
  39433. source: "./media/characters/cassie-kingston/front.svg",
  39434. extra: 1438/1390,
  39435. bottom: 47/1485
  39436. }
  39437. },
  39438. },
  39439. [
  39440. {
  39441. name: "Normal",
  39442. height: math.unit(5 + 2/12, "feet"),
  39443. default: true
  39444. },
  39445. {
  39446. name: "Macro",
  39447. height: math.unit(128, "feet")
  39448. },
  39449. {
  39450. name: "Megamacro",
  39451. height: math.unit(2.56, "miles")
  39452. },
  39453. ]
  39454. ))
  39455. characterMakers.push(() => makeCharacter(
  39456. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39457. {
  39458. front: {
  39459. height: math.unit(7, "feet"),
  39460. name: "Front",
  39461. image: {
  39462. source: "./media/characters/fox/front.svg",
  39463. extra: 1798/1703,
  39464. bottom: 55/1853
  39465. }
  39466. },
  39467. back: {
  39468. height: math.unit(7, "feet"),
  39469. name: "Back",
  39470. image: {
  39471. source: "./media/characters/fox/back.svg",
  39472. extra: 1748/1649,
  39473. bottom: 32/1780
  39474. }
  39475. },
  39476. head: {
  39477. height: math.unit(1.95, "feet"),
  39478. name: "Head",
  39479. image: {
  39480. source: "./media/characters/fox/head.svg"
  39481. }
  39482. },
  39483. dick: {
  39484. height: math.unit(1.33, "feet"),
  39485. name: "Dick",
  39486. image: {
  39487. source: "./media/characters/fox/dick.svg"
  39488. }
  39489. },
  39490. foot: {
  39491. height: math.unit(1, "feet"),
  39492. name: "Foot",
  39493. image: {
  39494. source: "./media/characters/fox/foot.svg"
  39495. }
  39496. },
  39497. paw: {
  39498. height: math.unit(0.92, "feet"),
  39499. name: "Paw",
  39500. image: {
  39501. source: "./media/characters/fox/paw.svg"
  39502. }
  39503. },
  39504. },
  39505. [
  39506. {
  39507. name: "Small",
  39508. height: math.unit(3, "inches")
  39509. },
  39510. {
  39511. name: "\"Realistic\"",
  39512. height: math.unit(7, "feet")
  39513. },
  39514. {
  39515. name: "Normal",
  39516. height: math.unit(150, "feet"),
  39517. default: true
  39518. },
  39519. {
  39520. name: "BIG",
  39521. height: math.unit(1200, "feet")
  39522. },
  39523. {
  39524. name: "👀",
  39525. height: math.unit(5, "miles")
  39526. },
  39527. {
  39528. name: "👀👀👀",
  39529. height: math.unit(64, "miles")
  39530. },
  39531. ]
  39532. ))
  39533. characterMakers.push(() => makeCharacter(
  39534. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39535. {
  39536. front: {
  39537. height: math.unit(625, "feet"),
  39538. name: "Front",
  39539. image: {
  39540. source: "./media/characters/asonja-rossa/front.svg",
  39541. extra: 1833/1686,
  39542. bottom: 24/1857
  39543. }
  39544. },
  39545. back: {
  39546. height: math.unit(625, "feet"),
  39547. name: "Back",
  39548. image: {
  39549. source: "./media/characters/asonja-rossa/back.svg",
  39550. extra: 1852/1753,
  39551. bottom: 26/1878
  39552. }
  39553. },
  39554. },
  39555. [
  39556. {
  39557. name: "Macro",
  39558. height: math.unit(625, "feet"),
  39559. default: true
  39560. },
  39561. ]
  39562. ))
  39563. characterMakers.push(() => makeCharacter(
  39564. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39565. {
  39566. side: {
  39567. height: math.unit(8, "feet"),
  39568. name: "Side",
  39569. image: {
  39570. source: "./media/characters/rezukii/side.svg",
  39571. extra: 979/542,
  39572. bottom: 87/1066
  39573. }
  39574. },
  39575. sitting: {
  39576. height: math.unit(14.6, "feet"),
  39577. name: "Sitting",
  39578. image: {
  39579. source: "./media/characters/rezukii/sitting.svg",
  39580. extra: 1023/813,
  39581. bottom: 45/1068
  39582. }
  39583. },
  39584. },
  39585. [
  39586. {
  39587. name: "Tiny",
  39588. height: math.unit(2, "feet")
  39589. },
  39590. {
  39591. name: "Smol",
  39592. height: math.unit(4, "feet")
  39593. },
  39594. {
  39595. name: "Normal",
  39596. height: math.unit(8, "feet"),
  39597. default: true
  39598. },
  39599. {
  39600. name: "Big",
  39601. height: math.unit(12, "feet")
  39602. },
  39603. {
  39604. name: "Macro",
  39605. height: math.unit(30, "feet")
  39606. },
  39607. ]
  39608. ))
  39609. characterMakers.push(() => makeCharacter(
  39610. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39611. {
  39612. front: {
  39613. height: math.unit(14, "feet"),
  39614. weight: math.unit(9.5, "tonnes"),
  39615. name: "Front",
  39616. image: {
  39617. source: "./media/characters/dawnheart/front.svg",
  39618. extra: 2792/2675,
  39619. bottom: 64/2856
  39620. }
  39621. },
  39622. },
  39623. [
  39624. {
  39625. name: "Normal",
  39626. height: math.unit(14, "feet"),
  39627. default: true
  39628. },
  39629. ]
  39630. ))
  39631. characterMakers.push(() => makeCharacter(
  39632. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39633. {
  39634. front: {
  39635. height: math.unit(1.7, "m"),
  39636. name: "Front",
  39637. image: {
  39638. source: "./media/characters/gladi/front.svg",
  39639. extra: 1460/1362,
  39640. bottom: 19/1479
  39641. }
  39642. },
  39643. back: {
  39644. height: math.unit(1.7, "m"),
  39645. name: "Back",
  39646. image: {
  39647. source: "./media/characters/gladi/back.svg",
  39648. extra: 1459/1357,
  39649. bottom: 12/1471
  39650. }
  39651. },
  39652. feral: {
  39653. height: math.unit(2.05, "m"),
  39654. name: "Feral",
  39655. image: {
  39656. source: "./media/characters/gladi/feral.svg",
  39657. extra: 821/557,
  39658. bottom: 91/912
  39659. }
  39660. },
  39661. },
  39662. [
  39663. {
  39664. name: "Shortest",
  39665. height: math.unit(70, "cm")
  39666. },
  39667. {
  39668. name: "Normal",
  39669. height: math.unit(1.7, "m")
  39670. },
  39671. {
  39672. name: "Macro",
  39673. height: math.unit(10, "m"),
  39674. default: true
  39675. },
  39676. {
  39677. name: "Tallest",
  39678. height: math.unit(200, "m")
  39679. },
  39680. ]
  39681. ))
  39682. characterMakers.push(() => makeCharacter(
  39683. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39684. {
  39685. front: {
  39686. height: math.unit(5 + 7/12, "feet"),
  39687. weight: math.unit(2, "tons"),
  39688. name: "Front",
  39689. image: {
  39690. source: "./media/characters/erdno/front.svg",
  39691. extra: 1234/1129,
  39692. bottom: 35/1269
  39693. }
  39694. },
  39695. angled: {
  39696. height: math.unit(5 + 7/12, "feet"),
  39697. weight: math.unit(2, "tons"),
  39698. name: "Angled",
  39699. image: {
  39700. source: "./media/characters/erdno/angled.svg",
  39701. extra: 1185/1139,
  39702. bottom: 36/1221
  39703. }
  39704. },
  39705. side: {
  39706. height: math.unit(5 + 7/12, "feet"),
  39707. weight: math.unit(2, "tons"),
  39708. name: "Side",
  39709. image: {
  39710. source: "./media/characters/erdno/side.svg",
  39711. extra: 1191/1144,
  39712. bottom: 40/1231
  39713. }
  39714. },
  39715. back: {
  39716. height: math.unit(5 + 7/12, "feet"),
  39717. weight: math.unit(2, "tons"),
  39718. name: "Back",
  39719. image: {
  39720. source: "./media/characters/erdno/back.svg",
  39721. extra: 1202/1146,
  39722. bottom: 17/1219
  39723. }
  39724. },
  39725. frontNsfw: {
  39726. height: math.unit(5 + 7/12, "feet"),
  39727. weight: math.unit(2, "tons"),
  39728. name: "Front (NSFW)",
  39729. image: {
  39730. source: "./media/characters/erdno/front-nsfw.svg",
  39731. extra: 1234/1129,
  39732. bottom: 35/1269
  39733. }
  39734. },
  39735. angledNsfw: {
  39736. height: math.unit(5 + 7/12, "feet"),
  39737. weight: math.unit(2, "tons"),
  39738. name: "Angled (NSFW)",
  39739. image: {
  39740. source: "./media/characters/erdno/angled-nsfw.svg",
  39741. extra: 1185/1139,
  39742. bottom: 36/1221
  39743. }
  39744. },
  39745. sideNsfw: {
  39746. height: math.unit(5 + 7/12, "feet"),
  39747. weight: math.unit(2, "tons"),
  39748. name: "Side (NSFW)",
  39749. image: {
  39750. source: "./media/characters/erdno/side-nsfw.svg",
  39751. extra: 1191/1144,
  39752. bottom: 40/1231
  39753. }
  39754. },
  39755. backNsfw: {
  39756. height: math.unit(5 + 7/12, "feet"),
  39757. weight: math.unit(2, "tons"),
  39758. name: "Back (NSFW)",
  39759. image: {
  39760. source: "./media/characters/erdno/back-nsfw.svg",
  39761. extra: 1202/1146,
  39762. bottom: 17/1219
  39763. }
  39764. },
  39765. frontHyper: {
  39766. height: math.unit(5 + 7/12, "feet"),
  39767. weight: math.unit(2, "tons"),
  39768. name: "Front (Hyper)",
  39769. image: {
  39770. source: "./media/characters/erdno/front-hyper.svg",
  39771. extra: 1298/1136,
  39772. bottom: 35/1333
  39773. }
  39774. },
  39775. },
  39776. [
  39777. {
  39778. name: "Normal",
  39779. height: math.unit(5 + 7/12, "feet"),
  39780. default: true
  39781. },
  39782. {
  39783. name: "Big",
  39784. height: math.unit(5.7, "meters")
  39785. },
  39786. {
  39787. name: "Macro",
  39788. height: math.unit(5.7, "kilometers")
  39789. },
  39790. {
  39791. name: "Megamacro",
  39792. height: math.unit(5.7, "earths")
  39793. },
  39794. ]
  39795. ))
  39796. characterMakers.push(() => makeCharacter(
  39797. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39798. {
  39799. front: {
  39800. height: math.unit(5 + 10/12, "feet"),
  39801. weight: math.unit(150, "lb"),
  39802. name: "Front",
  39803. image: {
  39804. source: "./media/characters/jamie/front.svg",
  39805. extra: 1908/1768,
  39806. bottom: 19/1927
  39807. }
  39808. },
  39809. },
  39810. [
  39811. {
  39812. name: "Minimum",
  39813. height: math.unit(2, "cm")
  39814. },
  39815. {
  39816. name: "Micro",
  39817. height: math.unit(3, "inches")
  39818. },
  39819. {
  39820. name: "Normal",
  39821. height: math.unit(5 + 10/12, "feet"),
  39822. default: true
  39823. },
  39824. {
  39825. name: "Macro",
  39826. height: math.unit(150, "feet")
  39827. },
  39828. {
  39829. name: "Megamacro",
  39830. height: math.unit(10000, "m")
  39831. },
  39832. ]
  39833. ))
  39834. characterMakers.push(() => makeCharacter(
  39835. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39836. {
  39837. front: {
  39838. height: math.unit(2, "meters"),
  39839. weight: math.unit(100, "kg"),
  39840. name: "Front",
  39841. image: {
  39842. source: "./media/characters/shiron/front.svg",
  39843. extra: 2103/1985,
  39844. bottom: 98/2201
  39845. }
  39846. },
  39847. back: {
  39848. height: math.unit(2, "meters"),
  39849. weight: math.unit(100, "kg"),
  39850. name: "Back",
  39851. image: {
  39852. source: "./media/characters/shiron/back.svg",
  39853. extra: 2110/2015,
  39854. bottom: 89/2199
  39855. }
  39856. },
  39857. hand: {
  39858. height: math.unit(0.96, "feet"),
  39859. name: "Hand",
  39860. image: {
  39861. source: "./media/characters/shiron/hand.svg"
  39862. }
  39863. },
  39864. foot: {
  39865. height: math.unit(1.464, "feet"),
  39866. name: "Foot",
  39867. image: {
  39868. source: "./media/characters/shiron/foot.svg"
  39869. }
  39870. },
  39871. },
  39872. [
  39873. {
  39874. name: "Normal",
  39875. height: math.unit(2, "meters")
  39876. },
  39877. {
  39878. name: "Macro",
  39879. height: math.unit(500, "meters"),
  39880. default: true
  39881. },
  39882. {
  39883. name: "Megamacro",
  39884. height: math.unit(20, "km")
  39885. },
  39886. ]
  39887. ))
  39888. characterMakers.push(() => makeCharacter(
  39889. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39890. {
  39891. front: {
  39892. height: math.unit(6, "feet"),
  39893. name: "Front",
  39894. image: {
  39895. source: "./media/characters/sam/front.svg",
  39896. extra: 849/826,
  39897. bottom: 19/868
  39898. }
  39899. },
  39900. },
  39901. [
  39902. {
  39903. name: "Normal",
  39904. height: math.unit(6, "feet"),
  39905. default: true
  39906. },
  39907. ]
  39908. ))
  39909. characterMakers.push(() => makeCharacter(
  39910. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39911. {
  39912. front: {
  39913. height: math.unit(8 + 4/12, "feet"),
  39914. weight: math.unit(122, "kg"),
  39915. name: "Front",
  39916. image: {
  39917. source: "./media/characters/namori-kurogawa/front.svg",
  39918. extra: 1894/1576,
  39919. bottom: 34/1928
  39920. }
  39921. },
  39922. },
  39923. [
  39924. {
  39925. name: "Normal",
  39926. height: math.unit(8 + 4/12, "feet"),
  39927. default: true
  39928. },
  39929. ]
  39930. ))
  39931. characterMakers.push(() => makeCharacter(
  39932. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39933. {
  39934. front: {
  39935. height: math.unit(9, "feet"),
  39936. weight: math.unit(621, "lb"),
  39937. name: "Front",
  39938. image: {
  39939. source: "./media/characters/unmru/front.svg",
  39940. extra: 1853/1747,
  39941. bottom: 73/1926
  39942. }
  39943. },
  39944. side: {
  39945. height: math.unit(9, "feet"),
  39946. weight: math.unit(621, "lb"),
  39947. name: "Side",
  39948. image: {
  39949. source: "./media/characters/unmru/side.svg",
  39950. extra: 1781/1671,
  39951. bottom: 127/1908
  39952. }
  39953. },
  39954. back: {
  39955. height: math.unit(9, "feet"),
  39956. weight: math.unit(621, "lb"),
  39957. name: "Back",
  39958. image: {
  39959. source: "./media/characters/unmru/back.svg",
  39960. extra: 1894/1765,
  39961. bottom: 75/1969
  39962. }
  39963. },
  39964. dick: {
  39965. height: math.unit(3, "feet"),
  39966. weight: math.unit(35, "lb"),
  39967. name: "Dick",
  39968. image: {
  39969. source: "./media/characters/unmru/dick.svg"
  39970. }
  39971. },
  39972. },
  39973. [
  39974. {
  39975. name: "Normal",
  39976. height: math.unit(9, "feet")
  39977. },
  39978. {
  39979. name: "Natural",
  39980. height: math.unit(27, "feet"),
  39981. default: true
  39982. },
  39983. {
  39984. name: "Giant",
  39985. height: math.unit(90, "feet")
  39986. },
  39987. {
  39988. name: "Kaiju",
  39989. height: math.unit(270, "feet")
  39990. },
  39991. {
  39992. name: "Macro",
  39993. height: math.unit(900, "feet")
  39994. },
  39995. {
  39996. name: "Macro+",
  39997. height: math.unit(2700, "feet")
  39998. },
  39999. {
  40000. name: "Megamacro",
  40001. height: math.unit(9000, "feet")
  40002. },
  40003. {
  40004. name: "City-Crushing",
  40005. height: math.unit(27000, "feet")
  40006. },
  40007. {
  40008. name: "Mountain-Mashing",
  40009. height: math.unit(90000, "feet")
  40010. },
  40011. {
  40012. name: "Earth-Eclipsing",
  40013. height: math.unit(2.7e8, "feet")
  40014. },
  40015. {
  40016. name: "Sol-Swallowing",
  40017. height: math.unit(9e10, "feet")
  40018. },
  40019. {
  40020. name: "Majoris-Munching",
  40021. height: math.unit(2.7e13, "feet")
  40022. },
  40023. ]
  40024. ))
  40025. characterMakers.push(() => makeCharacter(
  40026. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40027. {
  40028. front: {
  40029. height: math.unit(1, "inch"),
  40030. name: "Front",
  40031. image: {
  40032. source: "./media/characters/squeaks-mouse/front.svg",
  40033. extra: 352/308,
  40034. bottom: 25/377
  40035. }
  40036. },
  40037. },
  40038. [
  40039. {
  40040. name: "Micro",
  40041. height: math.unit(1, "inch"),
  40042. default: true
  40043. },
  40044. ]
  40045. ))
  40046. characterMakers.push(() => makeCharacter(
  40047. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40048. {
  40049. side: {
  40050. height: math.unit(35, "feet"),
  40051. name: "Side",
  40052. image: {
  40053. source: "./media/characters/sayko/side.svg",
  40054. extra: 1697/1021,
  40055. bottom: 82/1779
  40056. }
  40057. },
  40058. head: {
  40059. height: math.unit(16, "feet"),
  40060. name: "Head",
  40061. image: {
  40062. source: "./media/characters/sayko/head.svg"
  40063. }
  40064. },
  40065. forepaw: {
  40066. height: math.unit(7.85, "feet"),
  40067. name: "Forepaw",
  40068. image: {
  40069. source: "./media/characters/sayko/forepaw.svg"
  40070. }
  40071. },
  40072. hindpaw: {
  40073. height: math.unit(8.8, "feet"),
  40074. name: "Hindpaw",
  40075. image: {
  40076. source: "./media/characters/sayko/hindpaw.svg"
  40077. }
  40078. },
  40079. },
  40080. [
  40081. {
  40082. name: "Normal",
  40083. height: math.unit(35, "feet"),
  40084. default: true
  40085. },
  40086. {
  40087. name: "Colossus",
  40088. height: math.unit(100, "meters")
  40089. },
  40090. {
  40091. name: "\"Small\" Deity",
  40092. height: math.unit(1, "km")
  40093. },
  40094. {
  40095. name: "\"Large\" Deity",
  40096. height: math.unit(15, "km")
  40097. },
  40098. ]
  40099. ))
  40100. characterMakers.push(() => makeCharacter(
  40101. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40102. {
  40103. front: {
  40104. height: math.unit(6, "feet"),
  40105. weight: math.unit(250, "lb"),
  40106. name: "Front",
  40107. image: {
  40108. source: "./media/characters/mukiro/front.svg",
  40109. extra: 1368/1310,
  40110. bottom: 34/1402
  40111. }
  40112. },
  40113. },
  40114. [
  40115. {
  40116. name: "Normal",
  40117. height: math.unit(6, "feet"),
  40118. default: true
  40119. },
  40120. ]
  40121. ))
  40122. characterMakers.push(() => makeCharacter(
  40123. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40124. {
  40125. front: {
  40126. height: math.unit(12 + 4/12, "feet"),
  40127. name: "Front",
  40128. image: {
  40129. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40130. extra: 1346/1311,
  40131. bottom: 65/1411
  40132. }
  40133. },
  40134. },
  40135. [
  40136. {
  40137. name: "Base",
  40138. height: math.unit(12 + 4/12, "feet"),
  40139. default: true
  40140. },
  40141. {
  40142. name: "Macro",
  40143. height: math.unit(150, "feet")
  40144. },
  40145. {
  40146. name: "Mega",
  40147. height: math.unit(2, "miles")
  40148. },
  40149. {
  40150. name: "Demi God",
  40151. height: math.unit(4, "AU")
  40152. },
  40153. {
  40154. name: "God Size",
  40155. height: math.unit(1, "universe")
  40156. },
  40157. ]
  40158. ))
  40159. characterMakers.push(() => makeCharacter(
  40160. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40161. {
  40162. front: {
  40163. height: math.unit(3 + 3/12, "feet"),
  40164. weight: math.unit(88, "lb"),
  40165. name: "Front",
  40166. image: {
  40167. source: "./media/characters/trey/front.svg",
  40168. extra: 1815/1509,
  40169. bottom: 60/1875
  40170. }
  40171. },
  40172. },
  40173. [
  40174. {
  40175. name: "Normal",
  40176. height: math.unit(3 + 3/12, "feet"),
  40177. default: true
  40178. },
  40179. ]
  40180. ))
  40181. characterMakers.push(() => makeCharacter(
  40182. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40183. {
  40184. front: {
  40185. height: math.unit(4, "meters"),
  40186. name: "Front",
  40187. image: {
  40188. source: "./media/characters/adelonda/front.svg",
  40189. extra: 1077/982,
  40190. bottom: 39/1116
  40191. }
  40192. },
  40193. back: {
  40194. height: math.unit(4, "meters"),
  40195. name: "Back",
  40196. image: {
  40197. source: "./media/characters/adelonda/back.svg",
  40198. extra: 1105/1003,
  40199. bottom: 25/1130
  40200. }
  40201. },
  40202. feral: {
  40203. height: math.unit(40/1.5, "meters"),
  40204. name: "Feral",
  40205. image: {
  40206. source: "./media/characters/adelonda/feral.svg",
  40207. extra: 597/271,
  40208. bottom: 387/984
  40209. }
  40210. },
  40211. },
  40212. [
  40213. {
  40214. name: "Normal",
  40215. height: math.unit(4, "meters"),
  40216. default: true
  40217. },
  40218. ]
  40219. ))
  40220. characterMakers.push(() => makeCharacter(
  40221. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40222. {
  40223. front: {
  40224. height: math.unit(8 + 4/12, "feet"),
  40225. weight: math.unit(670, "lb"),
  40226. name: "Front",
  40227. image: {
  40228. source: "./media/characters/acadiel/front.svg",
  40229. extra: 1901/1595,
  40230. bottom: 142/2043
  40231. }
  40232. },
  40233. },
  40234. [
  40235. {
  40236. name: "Normal",
  40237. height: math.unit(8 + 4/12, "feet"),
  40238. default: true
  40239. },
  40240. {
  40241. name: "Macro",
  40242. height: math.unit(200, "feet")
  40243. },
  40244. ]
  40245. ))
  40246. characterMakers.push(() => makeCharacter(
  40247. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40248. {
  40249. front: {
  40250. height: math.unit(6 + 2/12, "feet"),
  40251. weight: math.unit(185, "lb"),
  40252. name: "Front",
  40253. image: {
  40254. source: "./media/characters/kayne-ein/front.svg",
  40255. extra: 1780/1560,
  40256. bottom: 81/1861
  40257. }
  40258. },
  40259. },
  40260. [
  40261. {
  40262. name: "Normal",
  40263. height: math.unit(6 + 2/12, "feet"),
  40264. default: true
  40265. },
  40266. {
  40267. name: "Transformation Stage",
  40268. height: math.unit(15, "feet")
  40269. },
  40270. {
  40271. name: "Macro",
  40272. height: math.unit(150, "feet")
  40273. },
  40274. {
  40275. name: "Earth's Shadow",
  40276. height: math.unit(6200, "miles")
  40277. },
  40278. {
  40279. name: "Universal Demon",
  40280. height: math.unit(28e9, "parsecs")
  40281. },
  40282. {
  40283. name: "Multiverse God",
  40284. height: math.unit(3, "multiverses")
  40285. },
  40286. ]
  40287. ))
  40288. characterMakers.push(() => makeCharacter(
  40289. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40290. {
  40291. front: {
  40292. height: math.unit(5 + 5/12, "feet"),
  40293. name: "Front",
  40294. image: {
  40295. source: "./media/characters/fawn/front.svg",
  40296. extra: 1873/1731,
  40297. bottom: 95/1968
  40298. }
  40299. },
  40300. back: {
  40301. height: math.unit(5 + 5/12, "feet"),
  40302. name: "Back",
  40303. image: {
  40304. source: "./media/characters/fawn/back.svg",
  40305. extra: 1813/1700,
  40306. bottom: 14/1827
  40307. }
  40308. },
  40309. hoof: {
  40310. height: math.unit(1.45, "feet"),
  40311. name: "Hoof",
  40312. image: {
  40313. source: "./media/characters/fawn/hoof.svg"
  40314. }
  40315. },
  40316. },
  40317. [
  40318. {
  40319. name: "Normal",
  40320. height: math.unit(5 + 5/12, "feet"),
  40321. default: true
  40322. },
  40323. ]
  40324. ))
  40325. characterMakers.push(() => makeCharacter(
  40326. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40327. {
  40328. front: {
  40329. height: math.unit(2 + 5/12, "feet"),
  40330. name: "Front",
  40331. image: {
  40332. source: "./media/characters/orion/front.svg",
  40333. extra: 1366/1304,
  40334. bottom: 43/1409
  40335. }
  40336. },
  40337. paw: {
  40338. height: math.unit(0.52, "feet"),
  40339. name: "Paw",
  40340. image: {
  40341. source: "./media/characters/orion/paw.svg"
  40342. }
  40343. },
  40344. },
  40345. [
  40346. {
  40347. name: "Normal",
  40348. height: math.unit(2 + 5/12, "feet"),
  40349. default: true
  40350. },
  40351. ]
  40352. ))
  40353. characterMakers.push(() => makeCharacter(
  40354. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40355. {
  40356. front: {
  40357. height: math.unit(5 + 10/12, "feet"),
  40358. name: "Front",
  40359. image: {
  40360. source: "./media/characters/vera/front.svg",
  40361. extra: 1680/1575,
  40362. bottom: 49/1729
  40363. }
  40364. },
  40365. back: {
  40366. height: math.unit(5 + 10/12, "feet"),
  40367. name: "Back",
  40368. image: {
  40369. source: "./media/characters/vera/back.svg",
  40370. extra: 1700/1588,
  40371. bottom: 18/1718
  40372. }
  40373. },
  40374. arcanine: {
  40375. height: math.unit(6 + 8/12, "feet"),
  40376. name: "Arcanine",
  40377. image: {
  40378. source: "./media/characters/vera/arcanine.svg",
  40379. extra: 1590/1511,
  40380. bottom: 71/1661
  40381. }
  40382. },
  40383. maw: {
  40384. height: math.unit(0.82, "feet"),
  40385. name: "Maw",
  40386. image: {
  40387. source: "./media/characters/vera/maw.svg"
  40388. }
  40389. },
  40390. mawArcanine: {
  40391. height: math.unit(0.97, "feet"),
  40392. name: "Maw (Arcanine)",
  40393. image: {
  40394. source: "./media/characters/vera/maw-arcanine.svg"
  40395. }
  40396. },
  40397. paw: {
  40398. height: math.unit(0.75, "feet"),
  40399. name: "Paw",
  40400. image: {
  40401. source: "./media/characters/vera/paw.svg"
  40402. }
  40403. },
  40404. pawprint: {
  40405. height: math.unit(0.52, "feet"),
  40406. name: "Pawprint",
  40407. image: {
  40408. source: "./media/characters/vera/pawprint.svg"
  40409. }
  40410. },
  40411. },
  40412. [
  40413. {
  40414. name: "Normal",
  40415. height: math.unit(5 + 10/12, "feet"),
  40416. default: true
  40417. },
  40418. {
  40419. name: "Macro",
  40420. height: math.unit(75, "feet")
  40421. },
  40422. ]
  40423. ))
  40424. characterMakers.push(() => makeCharacter(
  40425. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40426. {
  40427. front: {
  40428. height: math.unit(4, "feet"),
  40429. weight: math.unit(40, "lb"),
  40430. name: "Front",
  40431. image: {
  40432. source: "./media/characters/orvan-rabbit/front.svg",
  40433. extra: 1896/1642,
  40434. bottom: 29/1925
  40435. }
  40436. },
  40437. },
  40438. [
  40439. {
  40440. name: "Normal",
  40441. height: math.unit(4, "feet"),
  40442. default: true
  40443. },
  40444. ]
  40445. ))
  40446. characterMakers.push(() => makeCharacter(
  40447. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40448. {
  40449. front: {
  40450. height: math.unit(6, "feet"),
  40451. weight: math.unit(168, "lb"),
  40452. name: "Front",
  40453. image: {
  40454. source: "./media/characters/lisa/front.svg",
  40455. extra: 2065/1867,
  40456. bottom: 46/2111
  40457. }
  40458. },
  40459. back: {
  40460. height: math.unit(6, "feet"),
  40461. weight: math.unit(168, "lb"),
  40462. name: "Back",
  40463. image: {
  40464. source: "./media/characters/lisa/back.svg",
  40465. extra: 1982/1838,
  40466. bottom: 29/2011
  40467. }
  40468. },
  40469. maw: {
  40470. height: math.unit(0.81, "feet"),
  40471. name: "Maw",
  40472. image: {
  40473. source: "./media/characters/lisa/maw.svg"
  40474. }
  40475. },
  40476. paw: {
  40477. height: math.unit(0.9, "feet"),
  40478. name: "Paw",
  40479. image: {
  40480. source: "./media/characters/lisa/paw.svg"
  40481. }
  40482. },
  40483. caribousune: {
  40484. height: math.unit(7 + 2/12, "feet"),
  40485. weight: math.unit(268, "lb"),
  40486. name: "Caribousune",
  40487. image: {
  40488. source: "./media/characters/lisa/caribousune.svg",
  40489. extra: 1843/1633,
  40490. bottom: 29/1872
  40491. }
  40492. },
  40493. frontCaribousune: {
  40494. height: math.unit(7 + 2/12, "feet"),
  40495. weight: math.unit(268, "lb"),
  40496. name: "Front (Caribousune)",
  40497. image: {
  40498. source: "./media/characters/lisa/front-caribousune.svg",
  40499. extra: 1818/1638,
  40500. bottom: 52/1870
  40501. }
  40502. },
  40503. sideCaribousune: {
  40504. height: math.unit(7 + 2/12, "feet"),
  40505. weight: math.unit(268, "lb"),
  40506. name: "Side (Caribousune)",
  40507. image: {
  40508. source: "./media/characters/lisa/side-caribousune.svg",
  40509. extra: 1851/1635,
  40510. bottom: 16/1867
  40511. }
  40512. },
  40513. backCaribousune: {
  40514. height: math.unit(7 + 2/12, "feet"),
  40515. weight: math.unit(268, "lb"),
  40516. name: "Back (Caribousune)",
  40517. image: {
  40518. source: "./media/characters/lisa/back-caribousune.svg",
  40519. extra: 1801/1604,
  40520. bottom: 44/1845
  40521. }
  40522. },
  40523. caribou: {
  40524. height: math.unit(7 + 2/12, "feet"),
  40525. weight: math.unit(268, "lb"),
  40526. name: "Caribou",
  40527. image: {
  40528. source: "./media/characters/lisa/caribou.svg",
  40529. extra: 1843/1633,
  40530. bottom: 29/1872
  40531. }
  40532. },
  40533. frontCaribou: {
  40534. height: math.unit(7 + 2/12, "feet"),
  40535. weight: math.unit(268, "lb"),
  40536. name: "Front (Caribou)",
  40537. image: {
  40538. source: "./media/characters/lisa/front-caribou.svg",
  40539. extra: 1818/1638,
  40540. bottom: 52/1870
  40541. }
  40542. },
  40543. sideCaribou: {
  40544. height: math.unit(7 + 2/12, "feet"),
  40545. weight: math.unit(268, "lb"),
  40546. name: "Side (Caribou)",
  40547. image: {
  40548. source: "./media/characters/lisa/side-caribou.svg",
  40549. extra: 1851/1635,
  40550. bottom: 16/1867
  40551. }
  40552. },
  40553. backCaribou: {
  40554. height: math.unit(7 + 2/12, "feet"),
  40555. weight: math.unit(268, "lb"),
  40556. name: "Back (Caribou)",
  40557. image: {
  40558. source: "./media/characters/lisa/back-caribou.svg",
  40559. extra: 1801/1604,
  40560. bottom: 44/1845
  40561. }
  40562. },
  40563. mawCaribou: {
  40564. height: math.unit(1.45, "feet"),
  40565. name: "Maw (Caribou)",
  40566. image: {
  40567. source: "./media/characters/lisa/maw-caribou.svg"
  40568. }
  40569. },
  40570. mawCaribousune: {
  40571. height: math.unit(1.45, "feet"),
  40572. name: "Maw (Caribousune)",
  40573. image: {
  40574. source: "./media/characters/lisa/maw-caribousune.svg"
  40575. }
  40576. },
  40577. pawCaribousune: {
  40578. height: math.unit(1.61, "feet"),
  40579. name: "Paw (Caribou)",
  40580. image: {
  40581. source: "./media/characters/lisa/paw-caribousune.svg"
  40582. }
  40583. },
  40584. },
  40585. [
  40586. {
  40587. name: "Normal",
  40588. height: math.unit(6, "feet")
  40589. },
  40590. {
  40591. name: "God Size",
  40592. height: math.unit(72, "feet"),
  40593. default: true
  40594. },
  40595. {
  40596. name: "Towering",
  40597. height: math.unit(288, "feet")
  40598. },
  40599. {
  40600. name: "City Size",
  40601. height: math.unit(48384, "feet")
  40602. },
  40603. {
  40604. name: "Continental",
  40605. height: math.unit(4200, "miles")
  40606. },
  40607. {
  40608. name: "Planet Eater",
  40609. height: math.unit(42, "earths")
  40610. },
  40611. {
  40612. name: "Star Swallower",
  40613. height: math.unit(42, "solarradii")
  40614. },
  40615. {
  40616. name: "System Swallower",
  40617. height: math.unit(84000, "AU")
  40618. },
  40619. {
  40620. name: "Galaxy Gobbler",
  40621. height: math.unit(42, "galaxies")
  40622. },
  40623. {
  40624. name: "Universe Devourer",
  40625. height: math.unit(42, "universes")
  40626. },
  40627. {
  40628. name: "Multiverse Muncher",
  40629. height: math.unit(42, "multiverses")
  40630. },
  40631. ]
  40632. ))
  40633. characterMakers.push(() => makeCharacter(
  40634. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40635. {
  40636. front: {
  40637. height: math.unit(36, "feet"),
  40638. name: "Front",
  40639. image: {
  40640. source: "./media/characters/shadow-rat/front.svg",
  40641. extra: 1845/1758,
  40642. bottom: 83/1928
  40643. }
  40644. },
  40645. },
  40646. [
  40647. {
  40648. name: "Macro",
  40649. height: math.unit(36, "feet"),
  40650. default: true
  40651. },
  40652. ]
  40653. ))
  40654. characterMakers.push(() => makeCharacter(
  40655. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40656. {
  40657. side: {
  40658. height: math.unit(8, "feet"),
  40659. weight: math.unit(2630, "lb"),
  40660. name: "Side",
  40661. image: {
  40662. source: "./media/characters/torallia/side.svg",
  40663. extra: 2164/2021,
  40664. bottom: 371/2535
  40665. }
  40666. },
  40667. },
  40668. [
  40669. {
  40670. name: "Mortal Interaction",
  40671. height: math.unit(8, "feet")
  40672. },
  40673. {
  40674. name: "Natural",
  40675. height: math.unit(24, "feet"),
  40676. default: true
  40677. },
  40678. {
  40679. name: "Giant",
  40680. height: math.unit(80, "feet")
  40681. },
  40682. {
  40683. name: "Kaiju",
  40684. height: math.unit(240, "feet")
  40685. },
  40686. {
  40687. name: "Macro",
  40688. height: math.unit(800, "feet")
  40689. },
  40690. {
  40691. name: "Macro+",
  40692. height: math.unit(2400, "feet")
  40693. },
  40694. {
  40695. name: "Macro++",
  40696. height: math.unit(8000, "feet")
  40697. },
  40698. {
  40699. name: "City-Crushing",
  40700. height: math.unit(24000, "feet")
  40701. },
  40702. {
  40703. name: "Mountain-Mashing",
  40704. height: math.unit(80000, "feet")
  40705. },
  40706. {
  40707. name: "District Demolisher",
  40708. height: math.unit(240000, "feet")
  40709. },
  40710. {
  40711. name: "Tri-County Terror",
  40712. height: math.unit(800000, "feet")
  40713. },
  40714. {
  40715. name: "State Smasher",
  40716. height: math.unit(2.4e6, "feet")
  40717. },
  40718. {
  40719. name: "Nation Nemesis",
  40720. height: math.unit(8e6, "feet")
  40721. },
  40722. {
  40723. name: "Continent Cracker",
  40724. height: math.unit(2.4e7, "feet")
  40725. },
  40726. {
  40727. name: "Planet-Pillaging",
  40728. height: math.unit(8e7, "feet")
  40729. },
  40730. {
  40731. name: "Earth-Eclipsing",
  40732. height: math.unit(2.4e8, "feet")
  40733. },
  40734. {
  40735. name: "Jovian-Jostling",
  40736. height: math.unit(8e8, "feet")
  40737. },
  40738. {
  40739. name: "Gas Giant Gulper",
  40740. height: math.unit(2.4e9, "feet")
  40741. },
  40742. {
  40743. name: "Astral Annihilator",
  40744. height: math.unit(8e9, "feet")
  40745. },
  40746. {
  40747. name: "Celestial Conqueror",
  40748. height: math.unit(2.4e10, "feet")
  40749. },
  40750. {
  40751. name: "Sol-Swallowing",
  40752. height: math.unit(8e10, "feet")
  40753. },
  40754. {
  40755. name: "Hunter of the Heavens",
  40756. height: math.unit(2.4e13, "feet")
  40757. },
  40758. ]
  40759. ))
  40760. characterMakers.push(() => makeCharacter(
  40761. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40762. {
  40763. front: {
  40764. height: math.unit(6 + 8/12, "feet"),
  40765. weight: math.unit(250, "kilograms"),
  40766. volume: math.unit(28, "liters"),
  40767. name: "Front",
  40768. image: {
  40769. source: "./media/characters/rebecca-pawlson/front.svg",
  40770. extra: 1737/1596,
  40771. bottom: 107/1844
  40772. }
  40773. },
  40774. back: {
  40775. height: math.unit(6 + 8/12, "feet"),
  40776. weight: math.unit(250, "kilograms"),
  40777. volume: math.unit(28, "liters"),
  40778. name: "Back",
  40779. image: {
  40780. source: "./media/characters/rebecca-pawlson/back.svg",
  40781. extra: 1702/1523,
  40782. bottom: 86/1788
  40783. }
  40784. },
  40785. },
  40786. [
  40787. {
  40788. name: "Normal",
  40789. height: math.unit(6 + 8/12, "feet")
  40790. },
  40791. {
  40792. name: "Mini Macro",
  40793. height: math.unit(10, "feet"),
  40794. default: true
  40795. },
  40796. {
  40797. name: "Macro",
  40798. height: math.unit(100, "feet")
  40799. },
  40800. {
  40801. name: "Mega Macro",
  40802. height: math.unit(2500, "feet")
  40803. },
  40804. {
  40805. name: "Giga Macro",
  40806. height: math.unit(50, "miles")
  40807. },
  40808. ]
  40809. ))
  40810. characterMakers.push(() => makeCharacter(
  40811. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40812. {
  40813. front: {
  40814. height: math.unit(7 + 6/12, "feet"),
  40815. weight: math.unit(600, "lb"),
  40816. name: "Front",
  40817. image: {
  40818. source: "./media/characters/moxie-nova/front.svg",
  40819. extra: 1734/1652,
  40820. bottom: 41/1775
  40821. }
  40822. },
  40823. },
  40824. [
  40825. {
  40826. name: "Normal",
  40827. height: math.unit(7 + 6/12, "feet"),
  40828. default: true
  40829. },
  40830. ]
  40831. ))
  40832. characterMakers.push(() => makeCharacter(
  40833. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40834. {
  40835. goat: {
  40836. height: math.unit(4, "feet"),
  40837. weight: math.unit(180, "lb"),
  40838. name: "Goat",
  40839. image: {
  40840. source: "./media/characters/tiffany/goat.svg",
  40841. extra: 1845/1595,
  40842. bottom: 106/1951
  40843. }
  40844. },
  40845. front: {
  40846. height: math.unit(5, "feet"),
  40847. weight: math.unit(150, "lb"),
  40848. name: "Foxcoon",
  40849. image: {
  40850. source: "./media/characters/tiffany/foxcoon.svg",
  40851. extra: 1941/1845,
  40852. bottom: 58/1999
  40853. }
  40854. },
  40855. },
  40856. [
  40857. {
  40858. name: "Normal",
  40859. height: math.unit(5, "feet"),
  40860. default: true
  40861. },
  40862. ]
  40863. ))
  40864. characterMakers.push(() => makeCharacter(
  40865. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40866. {
  40867. front: {
  40868. height: math.unit(8, "feet"),
  40869. weight: math.unit(300, "lb"),
  40870. name: "Front",
  40871. image: {
  40872. source: "./media/characters/raxinath/front.svg",
  40873. extra: 1407/1309,
  40874. bottom: 39/1446
  40875. }
  40876. },
  40877. back: {
  40878. height: math.unit(8, "feet"),
  40879. weight: math.unit(300, "lb"),
  40880. name: "Back",
  40881. image: {
  40882. source: "./media/characters/raxinath/back.svg",
  40883. extra: 1405/1315,
  40884. bottom: 9/1414
  40885. }
  40886. },
  40887. },
  40888. [
  40889. {
  40890. name: "Speck",
  40891. height: math.unit(0.5, "nm")
  40892. },
  40893. {
  40894. name: "Micro",
  40895. height: math.unit(3, "inches")
  40896. },
  40897. {
  40898. name: "Kobold",
  40899. height: math.unit(3, "feet")
  40900. },
  40901. {
  40902. name: "Normal",
  40903. height: math.unit(8, "feet"),
  40904. default: true
  40905. },
  40906. {
  40907. name: "Giant",
  40908. height: math.unit(50, "feet")
  40909. },
  40910. {
  40911. name: "Macro",
  40912. height: math.unit(1000, "feet")
  40913. },
  40914. {
  40915. name: "Megamacro",
  40916. height: math.unit(1, "mile")
  40917. },
  40918. ]
  40919. ))
  40920. characterMakers.push(() => makeCharacter(
  40921. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40922. {
  40923. front: {
  40924. height: math.unit(10, "feet"),
  40925. weight: math.unit(1442, "lb"),
  40926. name: "Front",
  40927. image: {
  40928. source: "./media/characters/mal-dragon/front.svg",
  40929. extra: 1515/1444,
  40930. bottom: 113/1628
  40931. }
  40932. },
  40933. back: {
  40934. height: math.unit(10, "feet"),
  40935. weight: math.unit(1442, "lb"),
  40936. name: "Back",
  40937. image: {
  40938. source: "./media/characters/mal-dragon/back.svg",
  40939. extra: 1527/1434,
  40940. bottom: 25/1552
  40941. }
  40942. },
  40943. },
  40944. [
  40945. {
  40946. name: "Mortal Interaction",
  40947. height: math.unit(10, "feet"),
  40948. default: true
  40949. },
  40950. {
  40951. name: "Large",
  40952. height: math.unit(30, "feet")
  40953. },
  40954. {
  40955. name: "Kaiju",
  40956. height: math.unit(300, "feet")
  40957. },
  40958. {
  40959. name: "Megamacro",
  40960. height: math.unit(10000, "feet")
  40961. },
  40962. {
  40963. name: "Continent Cracker",
  40964. height: math.unit(30000000, "feet")
  40965. },
  40966. {
  40967. name: "Sol-Swallowing",
  40968. height: math.unit(1e11, "feet")
  40969. },
  40970. {
  40971. name: "Light Universal",
  40972. height: math.unit(5, "universes")
  40973. },
  40974. {
  40975. name: "Universe Atoms",
  40976. height: math.unit(1.829e9, "universes")
  40977. },
  40978. {
  40979. name: "Light Multiversal",
  40980. height: math.unit(5, "multiverses")
  40981. },
  40982. {
  40983. name: "Multiverse Atoms",
  40984. height: math.unit(1.829e9, "multiverses")
  40985. },
  40986. {
  40987. name: "Fabric of Time",
  40988. height: math.unit(1e262, "multiverses")
  40989. },
  40990. ]
  40991. ))
  40992. characterMakers.push(() => makeCharacter(
  40993. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40994. {
  40995. front: {
  40996. height: math.unit(9, "feet"),
  40997. weight: math.unit(1050, "lb"),
  40998. name: "Front",
  40999. image: {
  41000. source: "./media/characters/tabitha/front.svg",
  41001. extra: 2083/1994,
  41002. bottom: 68/2151
  41003. }
  41004. },
  41005. },
  41006. [
  41007. {
  41008. name: "Baseline",
  41009. height: math.unit(9, "feet"),
  41010. default: true
  41011. },
  41012. {
  41013. name: "Giant",
  41014. height: math.unit(90, "feet")
  41015. },
  41016. {
  41017. name: "Macro",
  41018. height: math.unit(900, "feet")
  41019. },
  41020. {
  41021. name: "Megamacro",
  41022. height: math.unit(9000, "feet")
  41023. },
  41024. {
  41025. name: "City-Crushing",
  41026. height: math.unit(27000, "feet")
  41027. },
  41028. {
  41029. name: "Mountain-Mashing",
  41030. height: math.unit(90000, "feet")
  41031. },
  41032. {
  41033. name: "Nation Nemesis",
  41034. height: math.unit(9e6, "feet")
  41035. },
  41036. {
  41037. name: "Continent Cracker",
  41038. height: math.unit(27e6, "feet")
  41039. },
  41040. {
  41041. name: "Earth-Eclipsing",
  41042. height: math.unit(2.7e8, "feet")
  41043. },
  41044. {
  41045. name: "Gas Giant Gulper",
  41046. height: math.unit(2.7e9, "feet")
  41047. },
  41048. {
  41049. name: "Sol-Swallowing",
  41050. height: math.unit(9e10, "feet")
  41051. },
  41052. {
  41053. name: "Galaxy Gulper",
  41054. height: math.unit(9, "galaxies")
  41055. },
  41056. {
  41057. name: "Cosmos Churner",
  41058. height: math.unit(9, "universes")
  41059. },
  41060. ]
  41061. ))
  41062. characterMakers.push(() => makeCharacter(
  41063. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41064. {
  41065. front: {
  41066. height: math.unit(160, "cm"),
  41067. weight: math.unit(55, "kg"),
  41068. name: "Front",
  41069. image: {
  41070. source: "./media/characters/tow/front.svg",
  41071. extra: 1751/1722,
  41072. bottom: 74/1825
  41073. }
  41074. },
  41075. },
  41076. [
  41077. {
  41078. name: "Norm",
  41079. height: math.unit(160, "cm")
  41080. },
  41081. {
  41082. name: "Casual",
  41083. height: math.unit(3200, "m"),
  41084. default: true
  41085. },
  41086. {
  41087. name: "Show-Off",
  41088. height: math.unit(160, "km")
  41089. },
  41090. ]
  41091. ))
  41092. characterMakers.push(() => makeCharacter(
  41093. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41094. {
  41095. front: {
  41096. height: math.unit(7 + 11/12, "feet"),
  41097. weight: math.unit(342.8, "lb"),
  41098. name: "Front",
  41099. image: {
  41100. source: "./media/characters/vivian-orca-dragon/front.svg",
  41101. extra: 1890/1865,
  41102. bottom: 28/1918
  41103. }
  41104. },
  41105. },
  41106. [
  41107. {
  41108. name: "Micro",
  41109. height: math.unit(5, "inches")
  41110. },
  41111. {
  41112. name: "Normal",
  41113. height: math.unit(7 + 11/12, "feet"),
  41114. default: true
  41115. },
  41116. {
  41117. name: "Macro",
  41118. height: math.unit(395 + 7/12, "feet")
  41119. },
  41120. ]
  41121. ))
  41122. characterMakers.push(() => makeCharacter(
  41123. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41124. {
  41125. side: {
  41126. height: math.unit(10, "feet"),
  41127. weight: math.unit(1442, "lb"),
  41128. name: "Side",
  41129. image: {
  41130. source: "./media/characters/lotherakon/side.svg",
  41131. extra: 1604/1497,
  41132. bottom: 89/1693
  41133. }
  41134. },
  41135. },
  41136. [
  41137. {
  41138. name: "Mortal Interaction",
  41139. height: math.unit(10, "feet")
  41140. },
  41141. {
  41142. name: "Large",
  41143. height: math.unit(30, "feet"),
  41144. default: true
  41145. },
  41146. {
  41147. name: "Giant",
  41148. height: math.unit(100, "feet")
  41149. },
  41150. {
  41151. name: "Kaiju",
  41152. height: math.unit(300, "feet")
  41153. },
  41154. {
  41155. name: "Macro",
  41156. height: math.unit(1000, "feet")
  41157. },
  41158. {
  41159. name: "Macro+",
  41160. height: math.unit(3000, "feet")
  41161. },
  41162. {
  41163. name: "Megamacro",
  41164. height: math.unit(10000, "feet")
  41165. },
  41166. {
  41167. name: "City-Crushing",
  41168. height: math.unit(30000, "feet")
  41169. },
  41170. {
  41171. name: "Continent Cracker",
  41172. height: math.unit(30e6, "feet")
  41173. },
  41174. {
  41175. name: "Earth Eclipsing",
  41176. height: math.unit(3e8, "feet")
  41177. },
  41178. {
  41179. name: "Gas Giant Gulper",
  41180. height: math.unit(3e9, "feet")
  41181. },
  41182. {
  41183. name: "Sol-Swallowing",
  41184. height: math.unit(1e11, "feet")
  41185. },
  41186. {
  41187. name: "System Swallower",
  41188. height: math.unit(3e14, "feet")
  41189. },
  41190. {
  41191. name: "Galaxy Gulper",
  41192. height: math.unit(10, "galaxies")
  41193. },
  41194. {
  41195. name: "Light Universal",
  41196. height: math.unit(5, "universes")
  41197. },
  41198. {
  41199. name: "Universe Palm",
  41200. height: math.unit(20, "universes")
  41201. },
  41202. {
  41203. name: "Light Multiversal",
  41204. height: math.unit(5, "multiverses")
  41205. },
  41206. {
  41207. name: "Multiverse Palm",
  41208. height: math.unit(20, "multiverses")
  41209. },
  41210. {
  41211. name: "Inferno Incarnate",
  41212. height: math.unit(1e7, "multiverses")
  41213. },
  41214. ]
  41215. ))
  41216. characterMakers.push(() => makeCharacter(
  41217. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41218. {
  41219. front: {
  41220. height: math.unit(8, "feet"),
  41221. weight: math.unit(1200, "lb"),
  41222. name: "Front",
  41223. image: {
  41224. source: "./media/characters/malithee/front.svg",
  41225. extra: 1675/1640,
  41226. bottom: 162/1837
  41227. }
  41228. },
  41229. },
  41230. [
  41231. {
  41232. name: "Mortal Interaction",
  41233. height: math.unit(8, "feet"),
  41234. default: true
  41235. },
  41236. {
  41237. name: "Large",
  41238. height: math.unit(24, "feet")
  41239. },
  41240. {
  41241. name: "Kaiju",
  41242. height: math.unit(240, "feet")
  41243. },
  41244. {
  41245. name: "Megamacro",
  41246. height: math.unit(8000, "feet")
  41247. },
  41248. {
  41249. name: "Continent Cracker",
  41250. height: math.unit(24e6, "feet")
  41251. },
  41252. {
  41253. name: "Earth-Eclipsing",
  41254. height: math.unit(2.4e8, "feet")
  41255. },
  41256. {
  41257. name: "Sol-Swallowing",
  41258. height: math.unit(8e10, "feet")
  41259. },
  41260. {
  41261. name: "Galaxy Gulper",
  41262. height: math.unit(8, "galaxies")
  41263. },
  41264. {
  41265. name: "Light Universal",
  41266. height: math.unit(4, "universes")
  41267. },
  41268. {
  41269. name: "Universe Atoms",
  41270. height: math.unit(1.829e9, "universes")
  41271. },
  41272. {
  41273. name: "Light Multiversal",
  41274. height: math.unit(4, "multiverses")
  41275. },
  41276. {
  41277. name: "Multiverse Atoms",
  41278. height: math.unit(1.829e9, "multiverses")
  41279. },
  41280. {
  41281. name: "Nigh-Omnipresence",
  41282. height: math.unit(8e261, "multiverses")
  41283. },
  41284. ]
  41285. ))
  41286. characterMakers.push(() => makeCharacter(
  41287. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41288. {
  41289. front: {
  41290. height: math.unit(10, "feet"),
  41291. weight: math.unit(1500, "lb"),
  41292. name: "Front",
  41293. image: {
  41294. source: "./media/characters/miles-thestia/front.svg",
  41295. extra: 1812/1727,
  41296. bottom: 86/1898
  41297. }
  41298. },
  41299. back: {
  41300. height: math.unit(10, "feet"),
  41301. weight: math.unit(1500, "lb"),
  41302. name: "Back",
  41303. image: {
  41304. source: "./media/characters/miles-thestia/back.svg",
  41305. extra: 1799/1690,
  41306. bottom: 47/1846
  41307. }
  41308. },
  41309. frontNsfw: {
  41310. height: math.unit(10, "feet"),
  41311. weight: math.unit(1500, "lb"),
  41312. name: "Front (NSFW)",
  41313. image: {
  41314. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41315. extra: 1812/1727,
  41316. bottom: 86/1898
  41317. }
  41318. },
  41319. },
  41320. [
  41321. {
  41322. name: "Mini-Macro",
  41323. height: math.unit(10, "feet"),
  41324. default: true
  41325. },
  41326. ]
  41327. ))
  41328. characterMakers.push(() => makeCharacter(
  41329. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41330. {
  41331. front: {
  41332. height: math.unit(25, "feet"),
  41333. name: "Front",
  41334. image: {
  41335. source: "./media/characters/titan-s-wulf/front.svg",
  41336. extra: 1560/1484,
  41337. bottom: 76/1636
  41338. }
  41339. },
  41340. },
  41341. [
  41342. {
  41343. name: "Smallest",
  41344. height: math.unit(25, "feet"),
  41345. default: true
  41346. },
  41347. {
  41348. name: "Normal",
  41349. height: math.unit(200, "feet")
  41350. },
  41351. {
  41352. name: "Macro",
  41353. height: math.unit(200000, "feet")
  41354. },
  41355. {
  41356. name: "Multiversal Original",
  41357. height: math.unit(10000, "multiverses")
  41358. },
  41359. ]
  41360. ))
  41361. characterMakers.push(() => makeCharacter(
  41362. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41363. {
  41364. front: {
  41365. height: math.unit(8, "feet"),
  41366. weight: math.unit(553, "lb"),
  41367. name: "Front",
  41368. image: {
  41369. source: "./media/characters/tawendeh/front.svg",
  41370. extra: 2365/2268,
  41371. bottom: 83/2448
  41372. }
  41373. },
  41374. frontClothed: {
  41375. height: math.unit(8, "feet"),
  41376. weight: math.unit(553, "lb"),
  41377. name: "Front (Clothed)",
  41378. image: {
  41379. source: "./media/characters/tawendeh/front-clothed.svg",
  41380. extra: 2365/2268,
  41381. bottom: 83/2448
  41382. }
  41383. },
  41384. back: {
  41385. height: math.unit(8, "feet"),
  41386. weight: math.unit(553, "lb"),
  41387. name: "Back",
  41388. image: {
  41389. source: "./media/characters/tawendeh/back.svg",
  41390. extra: 2397/2294,
  41391. bottom: 42/2439
  41392. }
  41393. },
  41394. },
  41395. [
  41396. {
  41397. name: "Mortal Interaction",
  41398. height: math.unit(8, "feet"),
  41399. default: true
  41400. },
  41401. {
  41402. name: "Giant",
  41403. height: math.unit(80, "feet")
  41404. },
  41405. {
  41406. name: "Macro",
  41407. height: math.unit(800, "feet")
  41408. },
  41409. {
  41410. name: "Megamacro",
  41411. height: math.unit(8000, "feet")
  41412. },
  41413. {
  41414. name: "City-Crushing",
  41415. height: math.unit(24000, "feet")
  41416. },
  41417. {
  41418. name: "Mountain-Mashing",
  41419. height: math.unit(80000, "feet")
  41420. },
  41421. {
  41422. name: "Nation Nemesis",
  41423. height: math.unit(8e6, "feet")
  41424. },
  41425. {
  41426. name: "Continent Cracker",
  41427. height: math.unit(24e6, "feet")
  41428. },
  41429. {
  41430. name: "Earth-Eclipsing",
  41431. height: math.unit(2.4e8, "feet")
  41432. },
  41433. {
  41434. name: "Gas Giant Gulper",
  41435. height: math.unit(2.4e9, "feet")
  41436. },
  41437. {
  41438. name: "Sol-Swallowing",
  41439. height: math.unit(8e10, "feet")
  41440. },
  41441. {
  41442. name: "Galaxy Gulper",
  41443. height: math.unit(8, "galaxies")
  41444. },
  41445. {
  41446. name: "Cosmos Churner",
  41447. height: math.unit(8, "universes")
  41448. },
  41449. {
  41450. name: "Omnipotent Otter",
  41451. height: math.unit(80, "universes")
  41452. },
  41453. ]
  41454. ))
  41455. characterMakers.push(() => makeCharacter(
  41456. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41457. {
  41458. front: {
  41459. height: math.unit(2.6, "meters"),
  41460. weight: math.unit(900, "kg"),
  41461. name: "Front",
  41462. image: {
  41463. source: "./media/characters/neesha/front.svg",
  41464. extra: 1803/1653,
  41465. bottom: 128/1931
  41466. }
  41467. },
  41468. },
  41469. [
  41470. {
  41471. name: "Normal",
  41472. height: math.unit(2.6, "meters"),
  41473. default: true
  41474. },
  41475. {
  41476. name: "Macro",
  41477. height: math.unit(50, "meters")
  41478. },
  41479. ]
  41480. ))
  41481. characterMakers.push(() => makeCharacter(
  41482. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41483. {
  41484. front: {
  41485. height: math.unit(5, "feet"),
  41486. weight: math.unit(185, "lb"),
  41487. name: "Front",
  41488. image: {
  41489. source: "./media/characters/kyera/front.svg",
  41490. extra: 1875/1790,
  41491. bottom: 96/1971
  41492. }
  41493. },
  41494. },
  41495. [
  41496. {
  41497. name: "Normal",
  41498. height: math.unit(5, "feet"),
  41499. default: true
  41500. },
  41501. ]
  41502. ))
  41503. characterMakers.push(() => makeCharacter(
  41504. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41505. {
  41506. front: {
  41507. height: math.unit(7 + 6/12, "feet"),
  41508. weight: math.unit(540, "lb"),
  41509. name: "Front",
  41510. image: {
  41511. source: "./media/characters/yuko/front.svg",
  41512. extra: 1282/1222,
  41513. bottom: 101/1383
  41514. }
  41515. },
  41516. frontClothed: {
  41517. height: math.unit(7 + 6/12, "feet"),
  41518. weight: math.unit(540, "lb"),
  41519. name: "Front (Clothed)",
  41520. image: {
  41521. source: "./media/characters/yuko/front-clothed.svg",
  41522. extra: 1282/1222,
  41523. bottom: 101/1383
  41524. }
  41525. },
  41526. },
  41527. [
  41528. {
  41529. name: "Normal",
  41530. height: math.unit(7 + 6/12, "feet"),
  41531. default: true
  41532. },
  41533. {
  41534. name: "Macro",
  41535. height: math.unit(26 + 9/12, "feet")
  41536. },
  41537. {
  41538. name: "Megamacro",
  41539. height: math.unit(300, "feet")
  41540. },
  41541. {
  41542. name: "Gigamacro",
  41543. height: math.unit(5000, "feet")
  41544. },
  41545. {
  41546. name: "Planetary",
  41547. height: math.unit(10000, "miles")
  41548. },
  41549. ]
  41550. ))
  41551. characterMakers.push(() => makeCharacter(
  41552. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41553. {
  41554. front: {
  41555. height: math.unit(8 + 2/12, "feet"),
  41556. weight: math.unit(600, "lb"),
  41557. name: "Front",
  41558. image: {
  41559. source: "./media/characters/deam-nitrel/front.svg",
  41560. extra: 1308/1234,
  41561. bottom: 125/1433
  41562. }
  41563. },
  41564. },
  41565. [
  41566. {
  41567. name: "Normal",
  41568. height: math.unit(8 + 2/12, "feet"),
  41569. default: true
  41570. },
  41571. ]
  41572. ))
  41573. characterMakers.push(() => makeCharacter(
  41574. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41575. {
  41576. front: {
  41577. height: math.unit(6.1, "feet"),
  41578. weight: math.unit(180, "lb"),
  41579. name: "Front",
  41580. image: {
  41581. source: "./media/characters/skyress/front.svg",
  41582. extra: 1045/915,
  41583. bottom: 28/1073
  41584. }
  41585. },
  41586. maw: {
  41587. height: math.unit(1, "feet"),
  41588. name: "Maw",
  41589. image: {
  41590. source: "./media/characters/skyress/maw.svg"
  41591. }
  41592. },
  41593. },
  41594. [
  41595. {
  41596. name: "Normal",
  41597. height: math.unit(6.1, "feet"),
  41598. default: true
  41599. },
  41600. {
  41601. name: "Macro",
  41602. height: math.unit(200, "feet")
  41603. },
  41604. ]
  41605. ))
  41606. characterMakers.push(() => makeCharacter(
  41607. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41608. {
  41609. front: {
  41610. height: math.unit(4 + 2/12, "feet"),
  41611. weight: math.unit(40, "kg"),
  41612. name: "Front",
  41613. image: {
  41614. source: "./media/characters/amethyst-jones/front.svg",
  41615. extra: 1220/1150,
  41616. bottom: 101/1321
  41617. }
  41618. },
  41619. },
  41620. [
  41621. {
  41622. name: "Normal",
  41623. height: math.unit(4 + 2/12, "feet"),
  41624. default: true
  41625. },
  41626. ]
  41627. ))
  41628. characterMakers.push(() => makeCharacter(
  41629. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41630. {
  41631. front: {
  41632. height: math.unit(1.7, "m"),
  41633. weight: math.unit(135, "lb"),
  41634. name: "Front",
  41635. image: {
  41636. source: "./media/characters/jade/front.svg",
  41637. extra: 1818/1767,
  41638. bottom: 32/1850
  41639. }
  41640. },
  41641. back: {
  41642. height: math.unit(1.7, "m"),
  41643. weight: math.unit(135, "lb"),
  41644. name: "Back",
  41645. image: {
  41646. source: "./media/characters/jade/back.svg",
  41647. extra: 1869/1809,
  41648. bottom: 35/1904
  41649. }
  41650. },
  41651. hand: {
  41652. height: math.unit(0.24, "m"),
  41653. name: "Hand",
  41654. image: {
  41655. source: "./media/characters/jade/hand.svg"
  41656. }
  41657. },
  41658. foot: {
  41659. height: math.unit(0.263, "m"),
  41660. name: "Foot",
  41661. image: {
  41662. source: "./media/characters/jade/foot.svg"
  41663. }
  41664. },
  41665. dick: {
  41666. height: math.unit(0.47, "m"),
  41667. name: "Dick",
  41668. image: {
  41669. source: "./media/characters/jade/dick.svg"
  41670. }
  41671. },
  41672. },
  41673. [
  41674. {
  41675. name: "Micro",
  41676. height: math.unit(22, "cm")
  41677. },
  41678. {
  41679. name: "Normal",
  41680. height: math.unit(1.7, "m"),
  41681. default: true
  41682. },
  41683. {
  41684. name: "Macro",
  41685. height: math.unit(152, "m")
  41686. },
  41687. ]
  41688. ))
  41689. characterMakers.push(() => makeCharacter(
  41690. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41691. {
  41692. front: {
  41693. height: math.unit(100, "miles"),
  41694. weight: math.unit(20000, "tons"),
  41695. name: "Front",
  41696. image: {
  41697. source: "./media/characters/cookie/front.svg",
  41698. extra: 1125/1070,
  41699. bottom: 30/1155
  41700. }
  41701. },
  41702. },
  41703. [
  41704. {
  41705. name: "Big",
  41706. height: math.unit(50, "feet")
  41707. },
  41708. {
  41709. name: "Macro",
  41710. height: math.unit(100, "miles"),
  41711. default: true
  41712. },
  41713. {
  41714. name: "Megamacro",
  41715. height: math.unit(90000, "miles")
  41716. },
  41717. ]
  41718. ))
  41719. characterMakers.push(() => makeCharacter(
  41720. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41721. {
  41722. front: {
  41723. height: math.unit(6, "feet"),
  41724. weight: math.unit(145, "lb"),
  41725. name: "Front",
  41726. image: {
  41727. source: "./media/characters/farzian/front.svg",
  41728. extra: 1902/1693,
  41729. bottom: 108/2010
  41730. }
  41731. },
  41732. },
  41733. [
  41734. {
  41735. name: "Macro",
  41736. height: math.unit(500, "feet"),
  41737. default: true
  41738. },
  41739. ]
  41740. ))
  41741. characterMakers.push(() => makeCharacter(
  41742. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41743. {
  41744. front: {
  41745. height: math.unit(3 + 6/12, "feet"),
  41746. weight: math.unit(50, "lb"),
  41747. name: "Front",
  41748. image: {
  41749. source: "./media/characters/kimberly-tilson/front.svg",
  41750. extra: 1400/1322,
  41751. bottom: 36/1436
  41752. }
  41753. },
  41754. back: {
  41755. height: math.unit(3 + 6/12, "feet"),
  41756. weight: math.unit(50, "lb"),
  41757. name: "Back",
  41758. image: {
  41759. source: "./media/characters/kimberly-tilson/back.svg",
  41760. extra: 1370/1307,
  41761. bottom: 20/1390
  41762. }
  41763. },
  41764. },
  41765. [
  41766. {
  41767. name: "Normal",
  41768. height: math.unit(3 + 6/12, "feet"),
  41769. default: true
  41770. },
  41771. ]
  41772. ))
  41773. characterMakers.push(() => makeCharacter(
  41774. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41775. {
  41776. front: {
  41777. height: math.unit(1148, "feet"),
  41778. weight: math.unit(34057, "lb"),
  41779. name: "Front",
  41780. image: {
  41781. source: "./media/characters/harthos/front.svg",
  41782. extra: 1391/1339,
  41783. bottom: 13/1404
  41784. }
  41785. },
  41786. },
  41787. [
  41788. {
  41789. name: "Macro",
  41790. height: math.unit(1148, "feet"),
  41791. default: true
  41792. },
  41793. ]
  41794. ))
  41795. characterMakers.push(() => makeCharacter(
  41796. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41797. {
  41798. front: {
  41799. height: math.unit(15, "feet"),
  41800. name: "Front",
  41801. image: {
  41802. source: "./media/characters/hypatia/front.svg",
  41803. extra: 1653/1591,
  41804. bottom: 79/1732
  41805. }
  41806. },
  41807. },
  41808. [
  41809. {
  41810. name: "Normal",
  41811. height: math.unit(15, "feet")
  41812. },
  41813. {
  41814. name: "Small",
  41815. height: math.unit(300, "feet")
  41816. },
  41817. {
  41818. name: "Macro",
  41819. height: math.unit(2500, "feet"),
  41820. default: true
  41821. },
  41822. {
  41823. name: "Mega Macro",
  41824. height: math.unit(1500, "miles")
  41825. },
  41826. {
  41827. name: "Giga Macro",
  41828. height: math.unit(1.5e6, "miles")
  41829. },
  41830. ]
  41831. ))
  41832. characterMakers.push(() => makeCharacter(
  41833. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41834. {
  41835. front: {
  41836. height: math.unit(6, "feet"),
  41837. weight: math.unit(200, "lb"),
  41838. name: "Front",
  41839. image: {
  41840. source: "./media/characters/wulver/front.svg",
  41841. extra: 1724/1632,
  41842. bottom: 130/1854
  41843. }
  41844. },
  41845. frontNsfw: {
  41846. height: math.unit(6, "feet"),
  41847. weight: math.unit(200, "lb"),
  41848. name: "Front (NSFW)",
  41849. image: {
  41850. source: "./media/characters/wulver/front-nsfw.svg",
  41851. extra: 1724/1632,
  41852. bottom: 130/1854
  41853. }
  41854. },
  41855. },
  41856. [
  41857. {
  41858. name: "Human-Sized",
  41859. height: math.unit(6, "feet")
  41860. },
  41861. {
  41862. name: "Normal",
  41863. height: math.unit(4, "meters"),
  41864. default: true
  41865. },
  41866. {
  41867. name: "Large",
  41868. height: math.unit(6, "m")
  41869. },
  41870. ]
  41871. ))
  41872. characterMakers.push(() => makeCharacter(
  41873. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41874. {
  41875. front: {
  41876. height: math.unit(7, "feet"),
  41877. name: "Front",
  41878. image: {
  41879. source: "./media/characters/maru/front.svg",
  41880. extra: 1595/1570,
  41881. bottom: 0/1595
  41882. }
  41883. },
  41884. },
  41885. [
  41886. {
  41887. name: "Normal",
  41888. height: math.unit(7, "feet"),
  41889. default: true
  41890. },
  41891. {
  41892. name: "Macro",
  41893. height: math.unit(700, "feet")
  41894. },
  41895. {
  41896. name: "Mega Macro",
  41897. height: math.unit(25, "miles")
  41898. },
  41899. ]
  41900. ))
  41901. characterMakers.push(() => makeCharacter(
  41902. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41903. {
  41904. front: {
  41905. height: math.unit(6, "feet"),
  41906. weight: math.unit(170, "lb"),
  41907. name: "Front",
  41908. image: {
  41909. source: "./media/characters/xenon/front.svg",
  41910. extra: 1376/1305,
  41911. bottom: 56/1432
  41912. }
  41913. },
  41914. back: {
  41915. height: math.unit(6, "feet"),
  41916. weight: math.unit(170, "lb"),
  41917. name: "Back",
  41918. image: {
  41919. source: "./media/characters/xenon/back.svg",
  41920. extra: 1328/1259,
  41921. bottom: 95/1423
  41922. }
  41923. },
  41924. maw: {
  41925. height: math.unit(0.52, "feet"),
  41926. name: "Maw",
  41927. image: {
  41928. source: "./media/characters/xenon/maw.svg"
  41929. }
  41930. },
  41931. handLeft: {
  41932. height: math.unit(0.82 * 169 / 153, "feet"),
  41933. name: "Hand (Left)",
  41934. image: {
  41935. source: "./media/characters/xenon/hand-left.svg"
  41936. }
  41937. },
  41938. handRight: {
  41939. height: math.unit(0.82, "feet"),
  41940. name: "Hand (Right)",
  41941. image: {
  41942. source: "./media/characters/xenon/hand-right.svg"
  41943. }
  41944. },
  41945. footLeft: {
  41946. height: math.unit(1.13, "feet"),
  41947. name: "Foot (Left)",
  41948. image: {
  41949. source: "./media/characters/xenon/foot-left.svg"
  41950. }
  41951. },
  41952. footRight: {
  41953. height: math.unit(1.13 * 194 / 196, "feet"),
  41954. name: "Foot (Right)",
  41955. image: {
  41956. source: "./media/characters/xenon/foot-right.svg"
  41957. }
  41958. },
  41959. },
  41960. [
  41961. {
  41962. name: "Micro",
  41963. height: math.unit(0.8, "inches")
  41964. },
  41965. {
  41966. name: "Normal",
  41967. height: math.unit(6, "feet")
  41968. },
  41969. {
  41970. name: "Macro",
  41971. height: math.unit(50, "feet"),
  41972. default: true
  41973. },
  41974. {
  41975. name: "Macro+",
  41976. height: math.unit(250, "feet")
  41977. },
  41978. {
  41979. name: "Megamacro",
  41980. height: math.unit(1500, "feet")
  41981. },
  41982. ]
  41983. ))
  41984. characterMakers.push(() => makeCharacter(
  41985. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41986. {
  41987. front: {
  41988. height: math.unit(7 + 5/12, "feet"),
  41989. name: "Front",
  41990. image: {
  41991. source: "./media/characters/zane/front.svg",
  41992. extra: 1260/1203,
  41993. bottom: 94/1354
  41994. }
  41995. },
  41996. back: {
  41997. height: math.unit(5.05, "feet"),
  41998. name: "Back",
  41999. image: {
  42000. source: "./media/characters/zane/back.svg",
  42001. extra: 893/829,
  42002. bottom: 30/923
  42003. }
  42004. },
  42005. werewolf: {
  42006. height: math.unit(11, "feet"),
  42007. name: "Werewolf",
  42008. image: {
  42009. source: "./media/characters/zane/werewolf.svg",
  42010. extra: 1383/1323,
  42011. bottom: 89/1472
  42012. }
  42013. },
  42014. foot: {
  42015. height: math.unit(1.46, "feet"),
  42016. name: "Foot",
  42017. image: {
  42018. source: "./media/characters/zane/foot.svg"
  42019. }
  42020. },
  42021. footFront: {
  42022. height: math.unit(0.784, "feet"),
  42023. name: "Foot (Front)",
  42024. image: {
  42025. source: "./media/characters/zane/foot-front.svg"
  42026. }
  42027. },
  42028. dick: {
  42029. height: math.unit(1.95, "feet"),
  42030. name: "Dick",
  42031. image: {
  42032. source: "./media/characters/zane/dick.svg"
  42033. }
  42034. },
  42035. dickWerewolf: {
  42036. height: math.unit(3.77, "feet"),
  42037. name: "Dick (Werewolf)",
  42038. image: {
  42039. source: "./media/characters/zane/dick.svg"
  42040. }
  42041. },
  42042. },
  42043. [
  42044. {
  42045. name: "Normal",
  42046. height: math.unit(7 + 5/12, "feet"),
  42047. default: true
  42048. },
  42049. ]
  42050. ))
  42051. characterMakers.push(() => makeCharacter(
  42052. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42053. {
  42054. front: {
  42055. height: math.unit(6 + 2/12, "feet"),
  42056. weight: math.unit(284, "lb"),
  42057. name: "Front",
  42058. image: {
  42059. source: "./media/characters/benni-desparque/front.svg",
  42060. extra: 1353/1126,
  42061. bottom: 69/1422
  42062. }
  42063. },
  42064. },
  42065. [
  42066. {
  42067. name: "Civilian",
  42068. height: math.unit(6 + 2/12, "feet")
  42069. },
  42070. {
  42071. name: "Normal",
  42072. height: math.unit(98, "feet"),
  42073. default: true
  42074. },
  42075. {
  42076. name: "Kaiju Fighter",
  42077. height: math.unit(268, "feet")
  42078. },
  42079. ]
  42080. ))
  42081. characterMakers.push(() => makeCharacter(
  42082. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42083. {
  42084. front: {
  42085. height: math.unit(5, "feet"),
  42086. weight: math.unit(105, "lb"),
  42087. name: "Front",
  42088. image: {
  42089. source: "./media/characters/maxine/front.svg",
  42090. extra: 1386/1250,
  42091. bottom: 71/1457
  42092. }
  42093. },
  42094. },
  42095. [
  42096. {
  42097. name: "Normal",
  42098. height: math.unit(5, "feet"),
  42099. default: true
  42100. },
  42101. ]
  42102. ))
  42103. characterMakers.push(() => makeCharacter(
  42104. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42105. {
  42106. front: {
  42107. height: math.unit(11 + 7/12, "feet"),
  42108. weight: math.unit(9576, "lb"),
  42109. name: "Front",
  42110. image: {
  42111. source: "./media/characters/scaly/front.svg",
  42112. extra: 888/867,
  42113. bottom: 36/924
  42114. }
  42115. },
  42116. },
  42117. [
  42118. {
  42119. name: "Normal",
  42120. height: math.unit(11 + 7/12, "feet"),
  42121. default: true
  42122. },
  42123. ]
  42124. ))
  42125. characterMakers.push(() => makeCharacter(
  42126. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42127. {
  42128. front: {
  42129. height: math.unit(6 + 3/12, "feet"),
  42130. name: "Front",
  42131. image: {
  42132. source: "./media/characters/saelria/front.svg",
  42133. extra: 1243/1138,
  42134. bottom: 46/1289
  42135. }
  42136. },
  42137. },
  42138. [
  42139. {
  42140. name: "Micro",
  42141. height: math.unit(6, "inches"),
  42142. },
  42143. {
  42144. name: "Normal",
  42145. height: math.unit(6 + 3/12, "feet"),
  42146. default: true
  42147. },
  42148. {
  42149. name: "Macro",
  42150. height: math.unit(25, "feet")
  42151. },
  42152. ]
  42153. ))
  42154. characterMakers.push(() => makeCharacter(
  42155. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42156. {
  42157. front: {
  42158. height: math.unit(80, "meters"),
  42159. weight: math.unit(7000, "tonnes"),
  42160. name: "Front",
  42161. image: {
  42162. source: "./media/characters/tef/front.svg",
  42163. extra: 2036/1991,
  42164. bottom: 54/2090
  42165. }
  42166. },
  42167. back: {
  42168. height: math.unit(80, "meters"),
  42169. weight: math.unit(7000, "tonnes"),
  42170. name: "Back",
  42171. image: {
  42172. source: "./media/characters/tef/back.svg",
  42173. extra: 2036/1991,
  42174. bottom: 54/2090
  42175. }
  42176. },
  42177. },
  42178. [
  42179. {
  42180. name: "Macro",
  42181. height: math.unit(80, "meters"),
  42182. default: true
  42183. },
  42184. ]
  42185. ))
  42186. characterMakers.push(() => makeCharacter(
  42187. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42188. {
  42189. front: {
  42190. height: math.unit(13, "feet"),
  42191. weight: math.unit(6, "tons"),
  42192. name: "Front",
  42193. image: {
  42194. source: "./media/characters/rover/front.svg",
  42195. extra: 1233/1156,
  42196. bottom: 50/1283
  42197. }
  42198. },
  42199. back: {
  42200. height: math.unit(13, "feet"),
  42201. weight: math.unit(6, "tons"),
  42202. name: "Back",
  42203. image: {
  42204. source: "./media/characters/rover/back.svg",
  42205. extra: 1327/1258,
  42206. bottom: 39/1366
  42207. }
  42208. },
  42209. },
  42210. [
  42211. {
  42212. name: "Normal",
  42213. height: math.unit(13, "feet"),
  42214. default: true
  42215. },
  42216. {
  42217. name: "Macro",
  42218. height: math.unit(1300, "feet")
  42219. },
  42220. {
  42221. name: "Megamacro",
  42222. height: math.unit(1300, "miles")
  42223. },
  42224. {
  42225. name: "Gigamacro",
  42226. height: math.unit(1300000, "miles")
  42227. },
  42228. ]
  42229. ))
  42230. characterMakers.push(() => makeCharacter(
  42231. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42232. {
  42233. front: {
  42234. height: math.unit(6, "feet"),
  42235. weight: math.unit(150, "lb"),
  42236. name: "Front",
  42237. image: {
  42238. source: "./media/characters/ariz/front.svg",
  42239. extra: 1401/1346,
  42240. bottom: 5/1406
  42241. }
  42242. },
  42243. },
  42244. [
  42245. {
  42246. name: "Normal",
  42247. height: math.unit(10, "feet"),
  42248. default: true
  42249. },
  42250. ]
  42251. ))
  42252. characterMakers.push(() => makeCharacter(
  42253. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42254. {
  42255. front: {
  42256. height: math.unit(6, "feet"),
  42257. weight: math.unit(140, "lb"),
  42258. name: "Front",
  42259. image: {
  42260. source: "./media/characters/sigrun/front.svg",
  42261. extra: 1418/1359,
  42262. bottom: 27/1445
  42263. }
  42264. },
  42265. },
  42266. [
  42267. {
  42268. name: "Macro",
  42269. height: math.unit(35, "feet"),
  42270. default: true
  42271. },
  42272. ]
  42273. ))
  42274. characterMakers.push(() => makeCharacter(
  42275. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42276. {
  42277. front: {
  42278. height: math.unit(6, "feet"),
  42279. weight: math.unit(150, "lb"),
  42280. name: "Front",
  42281. image: {
  42282. source: "./media/characters/numin/front.svg",
  42283. extra: 1433/1388,
  42284. bottom: 12/1445
  42285. }
  42286. },
  42287. },
  42288. [
  42289. {
  42290. name: "Macro",
  42291. height: math.unit(21.5, "km"),
  42292. default: true
  42293. },
  42294. ]
  42295. ))
  42296. characterMakers.push(() => makeCharacter(
  42297. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42298. {
  42299. front: {
  42300. height: math.unit(6, "feet"),
  42301. weight: math.unit(463, "lb"),
  42302. name: "Front",
  42303. image: {
  42304. source: "./media/characters/melwa/front.svg",
  42305. extra: 1307/1248,
  42306. bottom: 93/1400
  42307. }
  42308. },
  42309. },
  42310. [
  42311. {
  42312. name: "Macro",
  42313. height: math.unit(50, "meters"),
  42314. default: true
  42315. },
  42316. ]
  42317. ))
  42318. characterMakers.push(() => makeCharacter(
  42319. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42320. {
  42321. front: {
  42322. height: math.unit(325, "feet"),
  42323. name: "Front",
  42324. image: {
  42325. source: "./media/characters/zorkaiju/front.svg",
  42326. extra: 1955/1814,
  42327. bottom: 40/1995
  42328. }
  42329. },
  42330. frontExtended: {
  42331. height: math.unit(325, "feet"),
  42332. name: "Front (Extended)",
  42333. image: {
  42334. source: "./media/characters/zorkaiju/front-extended.svg",
  42335. extra: 1955/1814,
  42336. bottom: 40/1995
  42337. }
  42338. },
  42339. side: {
  42340. height: math.unit(325, "feet"),
  42341. name: "Side",
  42342. image: {
  42343. source: "./media/characters/zorkaiju/side.svg",
  42344. extra: 1495/1396,
  42345. bottom: 17/1512
  42346. }
  42347. },
  42348. sideExtended: {
  42349. height: math.unit(325, "feet"),
  42350. name: "Side (Extended)",
  42351. image: {
  42352. source: "./media/characters/zorkaiju/side-extended.svg",
  42353. extra: 1495/1396,
  42354. bottom: 17/1512
  42355. }
  42356. },
  42357. back: {
  42358. height: math.unit(325, "feet"),
  42359. name: "Back",
  42360. image: {
  42361. source: "./media/characters/zorkaiju/back.svg",
  42362. extra: 1959/1821,
  42363. bottom: 31/1990
  42364. }
  42365. },
  42366. backExtended: {
  42367. height: math.unit(325, "feet"),
  42368. name: "Back (Extended)",
  42369. image: {
  42370. source: "./media/characters/zorkaiju/back-extended.svg",
  42371. extra: 1959/1821,
  42372. bottom: 31/1990
  42373. }
  42374. },
  42375. hand: {
  42376. height: math.unit(58.4, "feet"),
  42377. name: "Hand",
  42378. image: {
  42379. source: "./media/characters/zorkaiju/hand.svg"
  42380. }
  42381. },
  42382. handExtended: {
  42383. height: math.unit(61.4, "feet"),
  42384. name: "Hand (Extended)",
  42385. image: {
  42386. source: "./media/characters/zorkaiju/hand-extended.svg"
  42387. }
  42388. },
  42389. foot: {
  42390. height: math.unit(95, "feet"),
  42391. name: "Foot",
  42392. image: {
  42393. source: "./media/characters/zorkaiju/foot.svg"
  42394. }
  42395. },
  42396. leftArm: {
  42397. height: math.unit(59, "feet"),
  42398. name: "Left Arm",
  42399. image: {
  42400. source: "./media/characters/zorkaiju/left-arm.svg"
  42401. }
  42402. },
  42403. rightArm: {
  42404. height: math.unit(59, "feet"),
  42405. name: "Right Arm",
  42406. image: {
  42407. source: "./media/characters/zorkaiju/right-arm.svg"
  42408. }
  42409. },
  42410. leftArmExtended: {
  42411. height: math.unit(59 * 1.033546, "feet"),
  42412. name: "Left Arm (Extended)",
  42413. image: {
  42414. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42415. }
  42416. },
  42417. rightArmExtended: {
  42418. height: math.unit(59 * 1.0496, "feet"),
  42419. name: "Right Arm (Extended)",
  42420. image: {
  42421. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42422. }
  42423. },
  42424. tail: {
  42425. height: math.unit(104, "feet"),
  42426. name: "Tail",
  42427. image: {
  42428. source: "./media/characters/zorkaiju/tail.svg"
  42429. }
  42430. },
  42431. tailExtended: {
  42432. height: math.unit(104, "feet"),
  42433. name: "Tail (Extended)",
  42434. image: {
  42435. source: "./media/characters/zorkaiju/tail-extended.svg"
  42436. }
  42437. },
  42438. tailBottom: {
  42439. height: math.unit(104, "feet"),
  42440. name: "Tail Bottom",
  42441. image: {
  42442. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42443. }
  42444. },
  42445. crystal: {
  42446. height: math.unit(27.54, "feet"),
  42447. name: "Crystal",
  42448. image: {
  42449. source: "./media/characters/zorkaiju/crystal.svg"
  42450. }
  42451. },
  42452. },
  42453. [
  42454. {
  42455. name: "Kaiju",
  42456. height: math.unit(325, "feet"),
  42457. default: true
  42458. },
  42459. ]
  42460. ))
  42461. characterMakers.push(() => makeCharacter(
  42462. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42463. {
  42464. front: {
  42465. height: math.unit(6 + 1/12, "feet"),
  42466. weight: math.unit(115, "lb"),
  42467. name: "Front",
  42468. image: {
  42469. source: "./media/characters/bailey-belfry/front.svg",
  42470. extra: 1240/1121,
  42471. bottom: 101/1341
  42472. }
  42473. },
  42474. },
  42475. [
  42476. {
  42477. name: "Normal",
  42478. height: math.unit(6 + 1/12, "feet"),
  42479. default: true
  42480. },
  42481. ]
  42482. ))
  42483. characterMakers.push(() => makeCharacter(
  42484. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42485. {
  42486. side: {
  42487. height: math.unit(4, "meters"),
  42488. weight: math.unit(250, "kg"),
  42489. name: "Side",
  42490. image: {
  42491. source: "./media/characters/blacky/side.svg",
  42492. extra: 1027/919,
  42493. bottom: 43/1070
  42494. }
  42495. },
  42496. maw: {
  42497. height: math.unit(1, "meters"),
  42498. name: "Maw",
  42499. image: {
  42500. source: "./media/characters/blacky/maw.svg"
  42501. }
  42502. },
  42503. paw: {
  42504. height: math.unit(1, "meters"),
  42505. name: "Paw",
  42506. image: {
  42507. source: "./media/characters/blacky/paw.svg"
  42508. }
  42509. },
  42510. },
  42511. [
  42512. {
  42513. name: "Normal",
  42514. height: math.unit(4, "meters"),
  42515. default: true
  42516. },
  42517. ]
  42518. ))
  42519. characterMakers.push(() => makeCharacter(
  42520. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42521. {
  42522. front: {
  42523. height: math.unit(170, "cm"),
  42524. weight: math.unit(66, "kg"),
  42525. name: "Front",
  42526. image: {
  42527. source: "./media/characters/thux-ei/front.svg",
  42528. extra: 1109/1011,
  42529. bottom: 8/1117
  42530. }
  42531. },
  42532. },
  42533. [
  42534. {
  42535. name: "Normal",
  42536. height: math.unit(170, "cm"),
  42537. default: true
  42538. },
  42539. ]
  42540. ))
  42541. characterMakers.push(() => makeCharacter(
  42542. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42543. {
  42544. front: {
  42545. height: math.unit(5, "feet"),
  42546. weight: math.unit(120, "lb"),
  42547. name: "Front",
  42548. image: {
  42549. source: "./media/characters/roxanne-voltaire/front.svg",
  42550. extra: 1901/1779,
  42551. bottom: 53/1954
  42552. }
  42553. },
  42554. },
  42555. [
  42556. {
  42557. name: "Normal",
  42558. height: math.unit(5, "feet"),
  42559. default: true
  42560. },
  42561. {
  42562. name: "Giant",
  42563. height: math.unit(50, "feet")
  42564. },
  42565. {
  42566. name: "Titan",
  42567. height: math.unit(500, "feet")
  42568. },
  42569. {
  42570. name: "Macro",
  42571. height: math.unit(5000, "feet")
  42572. },
  42573. {
  42574. name: "Megamacro",
  42575. height: math.unit(50000, "feet")
  42576. },
  42577. {
  42578. name: "Gigamacro",
  42579. height: math.unit(500000, "feet")
  42580. },
  42581. {
  42582. name: "Teramacro",
  42583. height: math.unit(5e6, "feet")
  42584. },
  42585. ]
  42586. ))
  42587. characterMakers.push(() => makeCharacter(
  42588. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42589. {
  42590. front: {
  42591. height: math.unit(6 + 2/12, "feet"),
  42592. name: "Front",
  42593. image: {
  42594. source: "./media/characters/squeaks/front.svg",
  42595. extra: 1823/1768,
  42596. bottom: 138/1961
  42597. }
  42598. },
  42599. },
  42600. [
  42601. {
  42602. name: "Micro",
  42603. height: math.unit(0.5, "inches")
  42604. },
  42605. {
  42606. name: "Normal",
  42607. height: math.unit(6 + 2/12, "feet"),
  42608. default: true
  42609. },
  42610. {
  42611. name: "Macro",
  42612. height: math.unit(600, "feet")
  42613. },
  42614. ]
  42615. ))
  42616. characterMakers.push(() => makeCharacter(
  42617. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42618. {
  42619. front: {
  42620. height: math.unit(1.72, "meters"),
  42621. name: "Front",
  42622. image: {
  42623. source: "./media/characters/archinger/front.svg",
  42624. extra: 1861/1675,
  42625. bottom: 125/1986
  42626. }
  42627. },
  42628. back: {
  42629. height: math.unit(1.72, "meters"),
  42630. name: "Back",
  42631. image: {
  42632. source: "./media/characters/archinger/back.svg",
  42633. extra: 1844/1701,
  42634. bottom: 104/1948
  42635. }
  42636. },
  42637. cock: {
  42638. height: math.unit(0.59, "feet"),
  42639. name: "Cock",
  42640. image: {
  42641. source: "./media/characters/archinger/cock.svg"
  42642. }
  42643. },
  42644. },
  42645. [
  42646. {
  42647. name: "Normal",
  42648. height: math.unit(1.72, "meters"),
  42649. default: true
  42650. },
  42651. {
  42652. name: "Macro",
  42653. height: math.unit(84, "meters")
  42654. },
  42655. {
  42656. name: "Macro+",
  42657. height: math.unit(112, "meters")
  42658. },
  42659. {
  42660. name: "Macro++",
  42661. height: math.unit(960, "meters")
  42662. },
  42663. {
  42664. name: "Macro+++",
  42665. height: math.unit(4, "km")
  42666. },
  42667. {
  42668. name: "Macro++++",
  42669. height: math.unit(48, "km")
  42670. },
  42671. {
  42672. name: "Macro+++++",
  42673. height: math.unit(4500, "km")
  42674. },
  42675. ]
  42676. ))
  42677. characterMakers.push(() => makeCharacter(
  42678. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42679. {
  42680. front: {
  42681. height: math.unit(5 + 5/12, "feet"),
  42682. name: "Front",
  42683. image: {
  42684. source: "./media/characters/alsnapz/front.svg",
  42685. extra: 1157/1065,
  42686. bottom: 42/1199
  42687. }
  42688. },
  42689. },
  42690. [
  42691. {
  42692. name: "Normal",
  42693. height: math.unit(5 + 5/12, "feet"),
  42694. default: true
  42695. },
  42696. ]
  42697. ))
  42698. characterMakers.push(() => makeCharacter(
  42699. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42700. {
  42701. side: {
  42702. height: math.unit(3.2, "earths"),
  42703. name: "Side",
  42704. image: {
  42705. source: "./media/characters/mag/side.svg",
  42706. extra: 1331/1008,
  42707. bottom: 52/1383
  42708. }
  42709. },
  42710. wing: {
  42711. height: math.unit(1.94, "earths"),
  42712. name: "Wing",
  42713. image: {
  42714. source: "./media/characters/mag/wing.svg"
  42715. }
  42716. },
  42717. dick: {
  42718. height: math.unit(1.8, "earths"),
  42719. name: "Dick",
  42720. image: {
  42721. source: "./media/characters/mag/dick.svg"
  42722. }
  42723. },
  42724. ass: {
  42725. height: math.unit(1.33, "earths"),
  42726. name: "Ass",
  42727. image: {
  42728. source: "./media/characters/mag/ass.svg"
  42729. }
  42730. },
  42731. head: {
  42732. height: math.unit(1.1, "earths"),
  42733. name: "Head",
  42734. image: {
  42735. source: "./media/characters/mag/head.svg"
  42736. }
  42737. },
  42738. maw: {
  42739. height: math.unit(1.62, "earths"),
  42740. name: "Maw",
  42741. image: {
  42742. source: "./media/characters/mag/maw.svg"
  42743. }
  42744. },
  42745. },
  42746. [
  42747. {
  42748. name: "Small",
  42749. height: math.unit(162, "feet")
  42750. },
  42751. {
  42752. name: "Normal",
  42753. height: math.unit(3.2, "earths"),
  42754. default: true
  42755. },
  42756. ]
  42757. ))
  42758. characterMakers.push(() => makeCharacter(
  42759. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42760. {
  42761. front: {
  42762. height: math.unit(512, "feet"),
  42763. weight: math.unit(63509, "tonnes"),
  42764. name: "Front",
  42765. image: {
  42766. source: "./media/characters/vorrel-harroc/front.svg",
  42767. extra: 1075/1063,
  42768. bottom: 62/1137
  42769. }
  42770. },
  42771. },
  42772. [
  42773. {
  42774. name: "Normal",
  42775. height: math.unit(10, "feet")
  42776. },
  42777. {
  42778. name: "Macro",
  42779. height: math.unit(512, "feet"),
  42780. default: true
  42781. },
  42782. {
  42783. name: "Megamacro",
  42784. height: math.unit(256, "miles")
  42785. },
  42786. {
  42787. name: "Gigamacro",
  42788. height: math.unit(4096, "miles")
  42789. },
  42790. ]
  42791. ))
  42792. characterMakers.push(() => makeCharacter(
  42793. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42794. {
  42795. side: {
  42796. height: math.unit(50, "feet"),
  42797. name: "Side",
  42798. image: {
  42799. source: "./media/characters/froimar/side.svg",
  42800. extra: 855/638,
  42801. bottom: 99/954
  42802. }
  42803. },
  42804. },
  42805. [
  42806. {
  42807. name: "Macro",
  42808. height: math.unit(50, "feet"),
  42809. default: true
  42810. },
  42811. ]
  42812. ))
  42813. characterMakers.push(() => makeCharacter(
  42814. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42815. {
  42816. front: {
  42817. height: math.unit(210, "miles"),
  42818. name: "Front",
  42819. image: {
  42820. source: "./media/characters/timothy/front.svg",
  42821. extra: 1007/943,
  42822. bottom: 62/1069
  42823. }
  42824. },
  42825. frontSkirt: {
  42826. height: math.unit(210, "miles"),
  42827. name: "Front (Skirt)",
  42828. image: {
  42829. source: "./media/characters/timothy/front-skirt.svg",
  42830. extra: 1007/943,
  42831. bottom: 62/1069
  42832. }
  42833. },
  42834. frontCoat: {
  42835. height: math.unit(210, "miles"),
  42836. name: "Front (Coat)",
  42837. image: {
  42838. source: "./media/characters/timothy/front-coat.svg",
  42839. extra: 1007/943,
  42840. bottom: 62/1069
  42841. }
  42842. },
  42843. },
  42844. [
  42845. {
  42846. name: "Macro",
  42847. height: math.unit(210, "miles"),
  42848. default: true
  42849. },
  42850. {
  42851. name: "Megamacro",
  42852. height: math.unit(210000, "miles")
  42853. },
  42854. ]
  42855. ))
  42856. characterMakers.push(() => makeCharacter(
  42857. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42858. {
  42859. front: {
  42860. height: math.unit(188, "feet"),
  42861. name: "Front",
  42862. image: {
  42863. source: "./media/characters/pyotr/front.svg",
  42864. extra: 1912/1826,
  42865. bottom: 18/1930
  42866. }
  42867. },
  42868. },
  42869. [
  42870. {
  42871. name: "Macro",
  42872. height: math.unit(188, "feet"),
  42873. default: true
  42874. },
  42875. {
  42876. name: "Megamacro",
  42877. height: math.unit(8, "miles")
  42878. },
  42879. ]
  42880. ))
  42881. characterMakers.push(() => makeCharacter(
  42882. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42883. {
  42884. side: {
  42885. height: math.unit(10, "feet"),
  42886. weight: math.unit(4500, "lb"),
  42887. name: "Side",
  42888. image: {
  42889. source: "./media/characters/ackart/side.svg",
  42890. extra: 1776/1668,
  42891. bottom: 116/1892
  42892. }
  42893. },
  42894. },
  42895. [
  42896. {
  42897. name: "Normal",
  42898. height: math.unit(10, "feet"),
  42899. default: true
  42900. },
  42901. ]
  42902. ))
  42903. characterMakers.push(() => makeCharacter(
  42904. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42905. {
  42906. side: {
  42907. height: math.unit(21, "feet"),
  42908. name: "Side",
  42909. image: {
  42910. source: "./media/characters/nolow/side.svg",
  42911. extra: 1484/1434,
  42912. bottom: 85/1569
  42913. }
  42914. },
  42915. sideErect: {
  42916. height: math.unit(21, "feet"),
  42917. name: "Side-erect",
  42918. image: {
  42919. source: "./media/characters/nolow/side-erect.svg",
  42920. extra: 1484/1434,
  42921. bottom: 85/1569
  42922. }
  42923. },
  42924. },
  42925. [
  42926. {
  42927. name: "Regular",
  42928. height: math.unit(12, "feet")
  42929. },
  42930. {
  42931. name: "Big Chee",
  42932. height: math.unit(21, "feet"),
  42933. default: true
  42934. },
  42935. ]
  42936. ))
  42937. characterMakers.push(() => makeCharacter(
  42938. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42939. {
  42940. front: {
  42941. height: math.unit(7, "feet"),
  42942. weight: math.unit(250, "lb"),
  42943. name: "Front",
  42944. image: {
  42945. source: "./media/characters/nines/front.svg",
  42946. extra: 1741/1607,
  42947. bottom: 41/1782
  42948. }
  42949. },
  42950. side: {
  42951. height: math.unit(7, "feet"),
  42952. weight: math.unit(250, "lb"),
  42953. name: "Side",
  42954. image: {
  42955. source: "./media/characters/nines/side.svg",
  42956. extra: 1854/1735,
  42957. bottom: 93/1947
  42958. }
  42959. },
  42960. back: {
  42961. height: math.unit(7, "feet"),
  42962. weight: math.unit(250, "lb"),
  42963. name: "Back",
  42964. image: {
  42965. source: "./media/characters/nines/back.svg",
  42966. extra: 1748/1615,
  42967. bottom: 20/1768
  42968. }
  42969. },
  42970. },
  42971. [
  42972. {
  42973. name: "Megamacro",
  42974. height: math.unit(99, "km"),
  42975. default: true
  42976. },
  42977. ]
  42978. ))
  42979. characterMakers.push(() => makeCharacter(
  42980. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42981. {
  42982. front: {
  42983. height: math.unit(5 + 10/12, "feet"),
  42984. weight: math.unit(210, "lb"),
  42985. name: "Front",
  42986. image: {
  42987. source: "./media/characters/zenith/front.svg",
  42988. extra: 1531/1452,
  42989. bottom: 198/1729
  42990. }
  42991. },
  42992. back: {
  42993. height: math.unit(5 + 10/12, "feet"),
  42994. weight: math.unit(210, "lb"),
  42995. name: "Back",
  42996. image: {
  42997. source: "./media/characters/zenith/back.svg",
  42998. extra: 1571/1487,
  42999. bottom: 75/1646
  43000. }
  43001. },
  43002. },
  43003. [
  43004. {
  43005. name: "Normal",
  43006. height: math.unit(5 + 10/12, "feet"),
  43007. default: true
  43008. }
  43009. ]
  43010. ))
  43011. characterMakers.push(() => makeCharacter(
  43012. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43013. {
  43014. front: {
  43015. height: math.unit(4, "feet"),
  43016. weight: math.unit(60, "lb"),
  43017. name: "Front",
  43018. image: {
  43019. source: "./media/characters/jasper/front.svg",
  43020. extra: 1450/1379,
  43021. bottom: 19/1469
  43022. }
  43023. },
  43024. },
  43025. [
  43026. {
  43027. name: "Normal",
  43028. height: math.unit(4, "feet"),
  43029. default: true
  43030. },
  43031. ]
  43032. ))
  43033. characterMakers.push(() => makeCharacter(
  43034. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43035. {
  43036. front: {
  43037. height: math.unit(6 + 5/12, "feet"),
  43038. weight: math.unit(290, "lb"),
  43039. name: "Front",
  43040. image: {
  43041. source: "./media/characters/tiberius-thyben/front.svg",
  43042. extra: 757/739,
  43043. bottom: 39/796
  43044. }
  43045. },
  43046. },
  43047. [
  43048. {
  43049. name: "Micro",
  43050. height: math.unit(1.5, "inches")
  43051. },
  43052. {
  43053. name: "Normal",
  43054. height: math.unit(6 + 5/12, "feet"),
  43055. default: true
  43056. },
  43057. {
  43058. name: "Macro",
  43059. height: math.unit(300, "feet")
  43060. },
  43061. ]
  43062. ))
  43063. characterMakers.push(() => makeCharacter(
  43064. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43065. {
  43066. front: {
  43067. height: math.unit(5 + 6/12, "feet"),
  43068. weight: math.unit(60, "kg"),
  43069. name: "Front",
  43070. image: {
  43071. source: "./media/characters/sabre/front.svg",
  43072. extra: 738/671,
  43073. bottom: 27/765
  43074. }
  43075. },
  43076. },
  43077. [
  43078. {
  43079. name: "Teeny",
  43080. height: math.unit(2, "inches")
  43081. },
  43082. {
  43083. name: "Smol",
  43084. height: math.unit(8, "inches")
  43085. },
  43086. {
  43087. name: "Normal",
  43088. height: math.unit(5 + 6/12, "feet"),
  43089. default: true
  43090. },
  43091. {
  43092. name: "Mini-Macro",
  43093. height: math.unit(15, "feet")
  43094. },
  43095. {
  43096. name: "Macro",
  43097. height: math.unit(50, "feet")
  43098. },
  43099. ]
  43100. ))
  43101. characterMakers.push(() => makeCharacter(
  43102. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43103. {
  43104. front: {
  43105. height: math.unit(6 + 4/12, "feet"),
  43106. weight: math.unit(170, "lb"),
  43107. name: "Front",
  43108. image: {
  43109. source: "./media/characters/charlie/front.svg",
  43110. extra: 1348/1228,
  43111. bottom: 15/1363
  43112. }
  43113. },
  43114. },
  43115. [
  43116. {
  43117. name: "Macro",
  43118. height: math.unit(1700, "meters"),
  43119. default: true
  43120. },
  43121. {
  43122. name: "MegaMacro",
  43123. height: math.unit(20400, "meters")
  43124. },
  43125. ]
  43126. ))
  43127. characterMakers.push(() => makeCharacter(
  43128. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43129. {
  43130. front: {
  43131. height: math.unit(6 + 3/12, "feet"),
  43132. weight: math.unit(185, "lb"),
  43133. name: "Front",
  43134. image: {
  43135. source: "./media/characters/susan-grant/front.svg",
  43136. extra: 1351/1327,
  43137. bottom: 26/1377
  43138. }
  43139. },
  43140. },
  43141. [
  43142. {
  43143. name: "Normal",
  43144. height: math.unit(6 + 3/12, "feet"),
  43145. default: true
  43146. },
  43147. {
  43148. name: "Macro",
  43149. height: math.unit(225, "feet")
  43150. },
  43151. {
  43152. name: "Macro+",
  43153. height: math.unit(900, "feet")
  43154. },
  43155. {
  43156. name: "MegaMacro",
  43157. height: math.unit(14400, "feet")
  43158. },
  43159. ]
  43160. ))
  43161. characterMakers.push(() => makeCharacter(
  43162. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43163. {
  43164. front: {
  43165. height: math.unit(5 + 4/12, "feet"),
  43166. weight: math.unit(110, "lb"),
  43167. name: "Front",
  43168. image: {
  43169. source: "./media/characters/axel-isanov/front.svg",
  43170. extra: 1096/1065,
  43171. bottom: 13/1109
  43172. }
  43173. },
  43174. },
  43175. [
  43176. {
  43177. name: "Normal",
  43178. height: math.unit(5 + 4/12, "feet"),
  43179. default: true
  43180. },
  43181. ]
  43182. ))
  43183. characterMakers.push(() => makeCharacter(
  43184. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43185. {
  43186. front: {
  43187. height: math.unit(9, "feet"),
  43188. weight: math.unit(467, "lb"),
  43189. name: "Front",
  43190. image: {
  43191. source: "./media/characters/necahual/front.svg",
  43192. extra: 920/873,
  43193. bottom: 26/946
  43194. }
  43195. },
  43196. back: {
  43197. height: math.unit(9, "feet"),
  43198. weight: math.unit(467, "lb"),
  43199. name: "Back",
  43200. image: {
  43201. source: "./media/characters/necahual/back.svg",
  43202. extra: 930/884,
  43203. bottom: 16/946
  43204. }
  43205. },
  43206. frontUnderwear: {
  43207. height: math.unit(9, "feet"),
  43208. weight: math.unit(467, "lb"),
  43209. name: "Front (Underwear)",
  43210. image: {
  43211. source: "./media/characters/necahual/front-underwear.svg",
  43212. extra: 920/873,
  43213. bottom: 26/946
  43214. }
  43215. },
  43216. frontDressed: {
  43217. height: math.unit(9, "feet"),
  43218. weight: math.unit(467, "lb"),
  43219. name: "Front (Dressed)",
  43220. image: {
  43221. source: "./media/characters/necahual/front-dressed.svg",
  43222. extra: 920/873,
  43223. bottom: 26/946
  43224. }
  43225. },
  43226. },
  43227. [
  43228. {
  43229. name: "Comprsesed",
  43230. height: math.unit(9, "feet")
  43231. },
  43232. {
  43233. name: "Natural",
  43234. height: math.unit(15, "feet"),
  43235. default: true
  43236. },
  43237. {
  43238. name: "Boosted",
  43239. height: math.unit(50, "feet")
  43240. },
  43241. {
  43242. name: "Boosted+",
  43243. height: math.unit(150, "feet")
  43244. },
  43245. {
  43246. name: "Max",
  43247. height: math.unit(500, "feet")
  43248. },
  43249. ]
  43250. ))
  43251. characterMakers.push(() => makeCharacter(
  43252. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43253. {
  43254. front: {
  43255. height: math.unit(22 + 1/12, "feet"),
  43256. weight: math.unit(3200, "lb"),
  43257. name: "Front",
  43258. image: {
  43259. source: "./media/characters/theo-acacia/front.svg",
  43260. extra: 1796/1741,
  43261. bottom: 83/1879
  43262. }
  43263. },
  43264. frontUnderwear: {
  43265. height: math.unit(22 + 1/12, "feet"),
  43266. weight: math.unit(3200, "lb"),
  43267. name: "Front (Underwear)",
  43268. image: {
  43269. source: "./media/characters/theo-acacia/front-underwear.svg",
  43270. extra: 1796/1741,
  43271. bottom: 83/1879
  43272. }
  43273. },
  43274. frontNude: {
  43275. height: math.unit(22 + 1/12, "feet"),
  43276. weight: math.unit(3200, "lb"),
  43277. name: "Front (Nude)",
  43278. image: {
  43279. source: "./media/characters/theo-acacia/front-nude.svg",
  43280. extra: 1796/1741,
  43281. bottom: 83/1879
  43282. }
  43283. },
  43284. },
  43285. [
  43286. {
  43287. name: "Normal",
  43288. height: math.unit(22 + 1/12, "feet"),
  43289. default: true
  43290. },
  43291. ]
  43292. ))
  43293. characterMakers.push(() => makeCharacter(
  43294. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43295. {
  43296. front: {
  43297. height: math.unit(20, "feet"),
  43298. name: "Front",
  43299. image: {
  43300. source: "./media/characters/astra/front.svg",
  43301. extra: 1850/1714,
  43302. bottom: 106/1956
  43303. }
  43304. },
  43305. frontUndressed: {
  43306. height: math.unit(20, "feet"),
  43307. name: "Front (Undressed)",
  43308. image: {
  43309. source: "./media/characters/astra/front-undressed.svg",
  43310. extra: 1926/1749,
  43311. bottom: 0/1926
  43312. }
  43313. },
  43314. hand: {
  43315. height: math.unit(1.53, "feet"),
  43316. name: "Hand",
  43317. image: {
  43318. source: "./media/characters/astra/hand.svg"
  43319. }
  43320. },
  43321. paw: {
  43322. height: math.unit(1.53, "feet"),
  43323. name: "Paw",
  43324. image: {
  43325. source: "./media/characters/astra/paw.svg"
  43326. }
  43327. },
  43328. },
  43329. [
  43330. {
  43331. name: "Smallest",
  43332. height: math.unit(20, "feet")
  43333. },
  43334. {
  43335. name: "Normal",
  43336. height: math.unit(1e9, "miles"),
  43337. default: true
  43338. },
  43339. {
  43340. name: "Larger",
  43341. height: math.unit(5, "multiverses")
  43342. },
  43343. {
  43344. name: "Largest",
  43345. height: math.unit(1e9, "multiverses")
  43346. },
  43347. ]
  43348. ))
  43349. characterMakers.push(() => makeCharacter(
  43350. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43351. {
  43352. front: {
  43353. height: math.unit(8, "feet"),
  43354. name: "Front",
  43355. image: {
  43356. source: "./media/characters/breanna/front.svg",
  43357. extra: 1912/1632,
  43358. bottom: 33/1945
  43359. }
  43360. },
  43361. },
  43362. [
  43363. {
  43364. name: "Smallest",
  43365. height: math.unit(8, "feet")
  43366. },
  43367. {
  43368. name: "Normal",
  43369. height: math.unit(1, "mile"),
  43370. default: true
  43371. },
  43372. {
  43373. name: "Maximum",
  43374. height: math.unit(1500000000000, "lightyears")
  43375. },
  43376. ]
  43377. ))
  43378. characterMakers.push(() => makeCharacter(
  43379. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43380. {
  43381. front: {
  43382. height: math.unit(5 + 11/12, "feet"),
  43383. weight: math.unit(155, "lb"),
  43384. name: "Front",
  43385. image: {
  43386. source: "./media/characters/cai/front.svg",
  43387. extra: 1823/1702,
  43388. bottom: 32/1855
  43389. }
  43390. },
  43391. back: {
  43392. height: math.unit(5 + 11/12, "feet"),
  43393. weight: math.unit(155, "lb"),
  43394. name: "Back",
  43395. image: {
  43396. source: "./media/characters/cai/back.svg",
  43397. extra: 1809/1708,
  43398. bottom: 31/1840
  43399. }
  43400. },
  43401. },
  43402. [
  43403. {
  43404. name: "Normal",
  43405. height: math.unit(5 + 11/12, "feet"),
  43406. default: true
  43407. },
  43408. {
  43409. name: "Big",
  43410. height: math.unit(15, "feet")
  43411. },
  43412. {
  43413. name: "Macro",
  43414. height: math.unit(200, "feet")
  43415. },
  43416. ]
  43417. ))
  43418. characterMakers.push(() => makeCharacter(
  43419. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43420. {
  43421. front: {
  43422. height: math.unit(5 + 6/12, "feet"),
  43423. weight: math.unit(160, "lb"),
  43424. name: "Front",
  43425. image: {
  43426. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43427. extra: 1227/1174,
  43428. bottom: 37/1264
  43429. }
  43430. },
  43431. },
  43432. [
  43433. {
  43434. name: "Macro",
  43435. height: math.unit(444, "meters"),
  43436. default: true
  43437. },
  43438. ]
  43439. ))
  43440. characterMakers.push(() => makeCharacter(
  43441. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43442. {
  43443. front: {
  43444. height: math.unit(18 + 7/12, "feet"),
  43445. name: "Front",
  43446. image: {
  43447. source: "./media/characters/rex/front.svg",
  43448. extra: 1941/1807,
  43449. bottom: 66/2007
  43450. }
  43451. },
  43452. back: {
  43453. height: math.unit(18 + 7/12, "feet"),
  43454. name: "Back",
  43455. image: {
  43456. source: "./media/characters/rex/back.svg",
  43457. extra: 1937/1822,
  43458. bottom: 42/1979
  43459. }
  43460. },
  43461. boot: {
  43462. height: math.unit(3.45, "feet"),
  43463. name: "Boot",
  43464. image: {
  43465. source: "./media/characters/rex/boot.svg"
  43466. }
  43467. },
  43468. paw: {
  43469. height: math.unit(4.17, "feet"),
  43470. name: "Paw",
  43471. image: {
  43472. source: "./media/characters/rex/paw.svg"
  43473. }
  43474. },
  43475. head: {
  43476. height: math.unit(6.728, "feet"),
  43477. name: "Head",
  43478. image: {
  43479. source: "./media/characters/rex/head.svg"
  43480. }
  43481. },
  43482. },
  43483. [
  43484. {
  43485. name: "Nano",
  43486. height: math.unit(18 + 7/12, "feet")
  43487. },
  43488. {
  43489. name: "Micro",
  43490. height: math.unit(1.5, "megameters")
  43491. },
  43492. {
  43493. name: "Normal",
  43494. height: math.unit(440, "megameters"),
  43495. default: true
  43496. },
  43497. {
  43498. name: "Macro",
  43499. height: math.unit(2.5, "gigameters")
  43500. },
  43501. {
  43502. name: "Gigamacro",
  43503. height: math.unit(2, "galaxies")
  43504. },
  43505. ]
  43506. ))
  43507. characterMakers.push(() => makeCharacter(
  43508. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43509. {
  43510. side: {
  43511. height: math.unit(32, "feet"),
  43512. weight: math.unit(250000, "lb"),
  43513. name: "Side",
  43514. image: {
  43515. source: "./media/characters/silverwing/side.svg",
  43516. extra: 1100/1019,
  43517. bottom: 204/1304
  43518. }
  43519. },
  43520. },
  43521. [
  43522. {
  43523. name: "Normal",
  43524. height: math.unit(32, "feet"),
  43525. default: true
  43526. },
  43527. ]
  43528. ))
  43529. characterMakers.push(() => makeCharacter(
  43530. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43531. {
  43532. front: {
  43533. height: math.unit(6 + 6/12, "feet"),
  43534. weight: math.unit(350, "lb"),
  43535. name: "Front",
  43536. image: {
  43537. source: "./media/characters/tristan-hawthorne/front.svg",
  43538. extra: 1159/1124,
  43539. bottom: 37/1196
  43540. },
  43541. form: "labrador",
  43542. default: true
  43543. },
  43544. skunkFront: {
  43545. height: math.unit(4 + 6/12, "feet"),
  43546. weight: math.unit(120, "lb"),
  43547. name: "Front",
  43548. image: {
  43549. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43550. extra: 1609/1551,
  43551. bottom: 169/1778
  43552. },
  43553. form: "skunk",
  43554. default: true
  43555. },
  43556. },
  43557. [
  43558. {
  43559. name: "Normal",
  43560. height: math.unit(6 + 6/12, "feet"),
  43561. form: "labrador",
  43562. default: true
  43563. },
  43564. {
  43565. name: "Normal",
  43566. height: math.unit(4 + 6/12, "feet"),
  43567. form: "skunk",
  43568. default: true
  43569. },
  43570. ],
  43571. {
  43572. "labrador": {
  43573. name: "Labrador",
  43574. default: true
  43575. },
  43576. "skunk": {
  43577. name: "Skunk"
  43578. }
  43579. }
  43580. ))
  43581. characterMakers.push(() => makeCharacter(
  43582. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43583. {
  43584. front: {
  43585. height: math.unit(5 + 11/12, "feet"),
  43586. weight: math.unit(190, "lb"),
  43587. name: "Front",
  43588. image: {
  43589. source: "./media/characters/mizu/front.svg",
  43590. extra: 1988/1788,
  43591. bottom: 14/2002
  43592. }
  43593. },
  43594. },
  43595. [
  43596. {
  43597. name: "Normal",
  43598. height: math.unit(5 + 11/12, "feet"),
  43599. default: true
  43600. },
  43601. ]
  43602. ))
  43603. characterMakers.push(() => makeCharacter(
  43604. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43605. {
  43606. front: {
  43607. height: math.unit(1.7, "feet"),
  43608. weight: math.unit(50, "lb"),
  43609. name: "Front",
  43610. image: {
  43611. source: "./media/characters/dechroma/front.svg",
  43612. extra: 1095/859,
  43613. bottom: 64/1159
  43614. }
  43615. },
  43616. },
  43617. [
  43618. {
  43619. name: "Normal",
  43620. height: math.unit(1.7, "feet"),
  43621. default: true
  43622. },
  43623. ]
  43624. ))
  43625. characterMakers.push(() => makeCharacter(
  43626. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43627. {
  43628. side: {
  43629. height: math.unit(30, "feet"),
  43630. name: "Side",
  43631. image: {
  43632. source: "./media/characters/veluren-thanazel/side.svg",
  43633. extra: 1611/633,
  43634. bottom: 118/1729
  43635. }
  43636. },
  43637. front: {
  43638. height: math.unit(30, "feet"),
  43639. name: "Front",
  43640. image: {
  43641. source: "./media/characters/veluren-thanazel/front.svg",
  43642. extra: 1486/636,
  43643. bottom: 238/1724
  43644. }
  43645. },
  43646. head: {
  43647. height: math.unit(21.4, "feet"),
  43648. name: "Head",
  43649. image: {
  43650. source: "./media/characters/veluren-thanazel/head.svg"
  43651. }
  43652. },
  43653. genitals: {
  43654. height: math.unit(19.4, "feet"),
  43655. name: "Genitals",
  43656. image: {
  43657. source: "./media/characters/veluren-thanazel/genitals.svg"
  43658. }
  43659. },
  43660. },
  43661. [
  43662. {
  43663. name: "Social",
  43664. height: math.unit(6, "feet")
  43665. },
  43666. {
  43667. name: "Play",
  43668. height: math.unit(12, "feet")
  43669. },
  43670. {
  43671. name: "True",
  43672. height: math.unit(30, "feet"),
  43673. default: true
  43674. },
  43675. ]
  43676. ))
  43677. characterMakers.push(() => makeCharacter(
  43678. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43679. {
  43680. front: {
  43681. height: math.unit(7 + 6/12, "feet"),
  43682. weight: math.unit(500, "kg"),
  43683. name: "Front",
  43684. image: {
  43685. source: "./media/characters/arcturas/front.svg",
  43686. extra: 1700/1500,
  43687. bottom: 145/1845
  43688. }
  43689. },
  43690. },
  43691. [
  43692. {
  43693. name: "Normal",
  43694. height: math.unit(7 + 6/12, "feet"),
  43695. default: true
  43696. },
  43697. ]
  43698. ))
  43699. characterMakers.push(() => makeCharacter(
  43700. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43701. {
  43702. side: {
  43703. height: math.unit(6, "feet"),
  43704. weight: math.unit(2, "tons"),
  43705. name: "Side",
  43706. image: {
  43707. source: "./media/characters/vitaen/side.svg",
  43708. extra: 1157/617,
  43709. bottom: 122/1279
  43710. }
  43711. },
  43712. },
  43713. [
  43714. {
  43715. name: "Normal",
  43716. height: math.unit(6, "feet"),
  43717. default: true
  43718. },
  43719. ]
  43720. ))
  43721. characterMakers.push(() => makeCharacter(
  43722. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43723. {
  43724. front: {
  43725. height: math.unit(19, "feet"),
  43726. name: "Front",
  43727. image: {
  43728. source: "./media/characters/fia-dreamweaver/front.svg",
  43729. extra: 1630/1504,
  43730. bottom: 25/1655
  43731. }
  43732. },
  43733. },
  43734. [
  43735. {
  43736. name: "Normal",
  43737. height: math.unit(19, "feet"),
  43738. default: true
  43739. },
  43740. ]
  43741. ))
  43742. characterMakers.push(() => makeCharacter(
  43743. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43744. {
  43745. front: {
  43746. height: math.unit(5 + 4/12, "feet"),
  43747. name: "Front",
  43748. image: {
  43749. source: "./media/characters/artan/front.svg",
  43750. extra: 1618/1535,
  43751. bottom: 46/1664
  43752. }
  43753. },
  43754. back: {
  43755. height: math.unit(5 + 4/12, "feet"),
  43756. name: "Back",
  43757. image: {
  43758. source: "./media/characters/artan/back.svg",
  43759. extra: 1618/1543,
  43760. bottom: 31/1649
  43761. }
  43762. },
  43763. },
  43764. [
  43765. {
  43766. name: "Normal",
  43767. height: math.unit(5 + 4/12, "feet"),
  43768. default: true
  43769. },
  43770. ]
  43771. ))
  43772. characterMakers.push(() => makeCharacter(
  43773. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43774. {
  43775. side: {
  43776. height: math.unit(182, "cm"),
  43777. weight: math.unit(1000, "lb"),
  43778. name: "Side",
  43779. image: {
  43780. source: "./media/characters/silver-dragon/side.svg",
  43781. extra: 710/287,
  43782. bottom: 88/798
  43783. }
  43784. },
  43785. },
  43786. [
  43787. {
  43788. name: "Normal",
  43789. height: math.unit(182, "cm"),
  43790. default: true
  43791. },
  43792. ]
  43793. ))
  43794. characterMakers.push(() => makeCharacter(
  43795. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43796. {
  43797. side: {
  43798. height: math.unit(6 + 6/12, "feet"),
  43799. weight: math.unit(1.5, "tons"),
  43800. name: "Side",
  43801. image: {
  43802. source: "./media/characters/zephyr/side.svg",
  43803. extra: 1433/586,
  43804. bottom: 109/1542
  43805. }
  43806. },
  43807. },
  43808. [
  43809. {
  43810. name: "Normal",
  43811. height: math.unit(6 + 6/12, "feet"),
  43812. default: true
  43813. },
  43814. ]
  43815. ))
  43816. characterMakers.push(() => makeCharacter(
  43817. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43818. {
  43819. side: {
  43820. height: math.unit(1, "feet"),
  43821. name: "Side",
  43822. image: {
  43823. source: "./media/characters/vixye/side.svg",
  43824. extra: 632/541,
  43825. bottom: 0/632
  43826. }
  43827. },
  43828. },
  43829. [
  43830. {
  43831. name: "Normal",
  43832. height: math.unit(1, "feet"),
  43833. default: true
  43834. },
  43835. {
  43836. name: "True",
  43837. height: math.unit(1e15, "multiverses")
  43838. },
  43839. ]
  43840. ))
  43841. characterMakers.push(() => makeCharacter(
  43842. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43843. {
  43844. front: {
  43845. height: math.unit(8 + 2/12, "feet"),
  43846. weight: math.unit(650, "lb"),
  43847. name: "Front",
  43848. image: {
  43849. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43850. extra: 1174/1137,
  43851. bottom: 82/1256
  43852. }
  43853. },
  43854. back: {
  43855. height: math.unit(8 + 2/12, "feet"),
  43856. weight: math.unit(650, "lb"),
  43857. name: "Back",
  43858. image: {
  43859. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43860. extra: 1204/1157,
  43861. bottom: 46/1250
  43862. }
  43863. },
  43864. },
  43865. [
  43866. {
  43867. name: "Wildform",
  43868. height: math.unit(8 + 2/12, "feet"),
  43869. default: true
  43870. },
  43871. ]
  43872. ))
  43873. characterMakers.push(() => makeCharacter(
  43874. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43875. {
  43876. front: {
  43877. height: math.unit(18, "feet"),
  43878. name: "Front",
  43879. image: {
  43880. source: "./media/characters/cyphin/front.svg",
  43881. extra: 970/886,
  43882. bottom: 42/1012
  43883. }
  43884. },
  43885. back: {
  43886. height: math.unit(18, "feet"),
  43887. name: "Back",
  43888. image: {
  43889. source: "./media/characters/cyphin/back.svg",
  43890. extra: 1009/894,
  43891. bottom: 24/1033
  43892. }
  43893. },
  43894. head: {
  43895. height: math.unit(5.05, "feet"),
  43896. name: "Head",
  43897. image: {
  43898. source: "./media/characters/cyphin/head.svg"
  43899. }
  43900. },
  43901. tailbud: {
  43902. height: math.unit(5, "feet"),
  43903. name: "Tailbud",
  43904. image: {
  43905. source: "./media/characters/cyphin/tailbud.svg"
  43906. }
  43907. },
  43908. },
  43909. [
  43910. ]
  43911. ))
  43912. characterMakers.push(() => makeCharacter(
  43913. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43914. {
  43915. side: {
  43916. height: math.unit(10, "feet"),
  43917. weight: math.unit(6, "tons"),
  43918. name: "Side",
  43919. image: {
  43920. source: "./media/characters/raijin/side.svg",
  43921. extra: 1529/613,
  43922. bottom: 337/1866
  43923. }
  43924. },
  43925. },
  43926. [
  43927. {
  43928. name: "Normal",
  43929. height: math.unit(10, "feet"),
  43930. default: true
  43931. },
  43932. ]
  43933. ))
  43934. characterMakers.push(() => makeCharacter(
  43935. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43936. {
  43937. side: {
  43938. height: math.unit(9, "feet"),
  43939. name: "Side",
  43940. image: {
  43941. source: "./media/characters/nilghais/side.svg",
  43942. extra: 1047/744,
  43943. bottom: 91/1138
  43944. }
  43945. },
  43946. head: {
  43947. height: math.unit(3.14, "feet"),
  43948. name: "Head",
  43949. image: {
  43950. source: "./media/characters/nilghais/head.svg"
  43951. }
  43952. },
  43953. mouth: {
  43954. height: math.unit(4.6, "feet"),
  43955. name: "Mouth",
  43956. image: {
  43957. source: "./media/characters/nilghais/mouth.svg"
  43958. }
  43959. },
  43960. wings: {
  43961. height: math.unit(24, "feet"),
  43962. name: "Wings",
  43963. image: {
  43964. source: "./media/characters/nilghais/wings.svg"
  43965. }
  43966. },
  43967. ass: {
  43968. height: math.unit(6.12, "feet"),
  43969. name: "Ass",
  43970. image: {
  43971. source: "./media/characters/nilghais/ass.svg"
  43972. }
  43973. },
  43974. },
  43975. [
  43976. {
  43977. name: "Normal",
  43978. height: math.unit(9, "feet"),
  43979. default: true
  43980. },
  43981. ]
  43982. ))
  43983. characterMakers.push(() => makeCharacter(
  43984. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43985. {
  43986. regular: {
  43987. height: math.unit(16 + 2/12, "feet"),
  43988. weight: math.unit(2300, "lb"),
  43989. name: "Regular",
  43990. image: {
  43991. source: "./media/characters/zolgar/regular.svg",
  43992. extra: 1246/1004,
  43993. bottom: 124/1370
  43994. }
  43995. },
  43996. boxers: {
  43997. height: math.unit(16 + 2/12, "feet"),
  43998. weight: math.unit(2300, "lb"),
  43999. name: "Boxers",
  44000. image: {
  44001. source: "./media/characters/zolgar/boxers.svg",
  44002. extra: 1246/1004,
  44003. bottom: 124/1370
  44004. }
  44005. },
  44006. armored: {
  44007. height: math.unit(16 + 2/12, "feet"),
  44008. weight: math.unit(2300, "lb"),
  44009. name: "Armored",
  44010. image: {
  44011. source: "./media/characters/zolgar/armored.svg",
  44012. extra: 1246/1004,
  44013. bottom: 124/1370
  44014. }
  44015. },
  44016. goth: {
  44017. height: math.unit(16 + 2/12, "feet"),
  44018. weight: math.unit(2300, "lb"),
  44019. name: "Goth",
  44020. image: {
  44021. source: "./media/characters/zolgar/goth.svg",
  44022. extra: 1246/1004,
  44023. bottom: 124/1370
  44024. }
  44025. },
  44026. },
  44027. [
  44028. {
  44029. name: "Shrunken Down",
  44030. height: math.unit(9 + 2/12, "feet")
  44031. },
  44032. {
  44033. name: "Normal",
  44034. height: math.unit(16 + 2/12, "feet"),
  44035. default: true
  44036. },
  44037. ]
  44038. ))
  44039. characterMakers.push(() => makeCharacter(
  44040. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44041. {
  44042. front: {
  44043. height: math.unit(6, "feet"),
  44044. weight: math.unit(168, "lb"),
  44045. name: "Front",
  44046. image: {
  44047. source: "./media/characters/luca/front.svg",
  44048. extra: 841/667,
  44049. bottom: 102/943
  44050. }
  44051. },
  44052. },
  44053. [
  44054. {
  44055. name: "Normal",
  44056. height: math.unit(6, "feet"),
  44057. default: true
  44058. },
  44059. ]
  44060. ))
  44061. characterMakers.push(() => makeCharacter(
  44062. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44063. {
  44064. side: {
  44065. height: math.unit(7 + 3/12, "feet"),
  44066. weight: math.unit(312, "lb"),
  44067. name: "Side",
  44068. image: {
  44069. source: "./media/characters/zezo/side.svg",
  44070. extra: 1192/1067,
  44071. bottom: 63/1255
  44072. }
  44073. },
  44074. },
  44075. [
  44076. {
  44077. name: "Normal",
  44078. height: math.unit(7 + 3/12, "feet"),
  44079. default: true
  44080. },
  44081. ]
  44082. ))
  44083. characterMakers.push(() => makeCharacter(
  44084. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44085. {
  44086. front: {
  44087. height: math.unit(5 + 5/12, "feet"),
  44088. weight: math.unit(170, "lb"),
  44089. name: "Front",
  44090. image: {
  44091. source: "./media/characters/mayso/front.svg",
  44092. extra: 1215/1108,
  44093. bottom: 16/1231
  44094. }
  44095. },
  44096. },
  44097. [
  44098. {
  44099. name: "Normal",
  44100. height: math.unit(5 + 5/12, "feet"),
  44101. default: true
  44102. },
  44103. ]
  44104. ))
  44105. characterMakers.push(() => makeCharacter(
  44106. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44107. {
  44108. front: {
  44109. height: math.unit(4 + 3/12, "feet"),
  44110. weight: math.unit(80, "lb"),
  44111. name: "Front",
  44112. image: {
  44113. source: "./media/characters/hess/front.svg",
  44114. extra: 1200/1123,
  44115. bottom: 16/1216
  44116. }
  44117. },
  44118. },
  44119. [
  44120. {
  44121. name: "Normal",
  44122. height: math.unit(4 + 3/12, "feet"),
  44123. default: true
  44124. },
  44125. ]
  44126. ))
  44127. characterMakers.push(() => makeCharacter(
  44128. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44129. {
  44130. front: {
  44131. height: math.unit(1.9, "meters"),
  44132. name: "Front",
  44133. image: {
  44134. source: "./media/characters/ashgar/front.svg",
  44135. extra: 1177/1146,
  44136. bottom: 99/1276
  44137. }
  44138. },
  44139. back: {
  44140. height: math.unit(1.9, "meters"),
  44141. name: "Back",
  44142. image: {
  44143. source: "./media/characters/ashgar/back.svg",
  44144. extra: 1201/1183,
  44145. bottom: 53/1254
  44146. }
  44147. },
  44148. feral: {
  44149. height: math.unit(1.4, "meters"),
  44150. name: "Feral",
  44151. image: {
  44152. source: "./media/characters/ashgar/feral.svg",
  44153. extra: 370/345,
  44154. bottom: 45/415
  44155. }
  44156. },
  44157. },
  44158. [
  44159. {
  44160. name: "Normal",
  44161. height: math.unit(1.9, "meters"),
  44162. default: true
  44163. },
  44164. ]
  44165. ))
  44166. characterMakers.push(() => makeCharacter(
  44167. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44168. {
  44169. regular: {
  44170. height: math.unit(6, "feet"),
  44171. weight: math.unit(220, "lb"),
  44172. name: "Regular",
  44173. image: {
  44174. source: "./media/characters/phillip/regular.svg",
  44175. extra: 1373/1277,
  44176. bottom: 75/1448
  44177. }
  44178. },
  44179. dressed: {
  44180. height: math.unit(6, "feet"),
  44181. weight: math.unit(220, "lb"),
  44182. name: "Dressed",
  44183. image: {
  44184. source: "./media/characters/phillip/dressed.svg",
  44185. extra: 1373/1277,
  44186. bottom: 75/1448
  44187. }
  44188. },
  44189. paw: {
  44190. height: math.unit(1.44, "feet"),
  44191. name: "Paw",
  44192. image: {
  44193. source: "./media/characters/phillip/paw.svg"
  44194. }
  44195. },
  44196. },
  44197. [
  44198. {
  44199. name: "Normal",
  44200. height: math.unit(6, "feet"),
  44201. default: true
  44202. },
  44203. ]
  44204. ))
  44205. characterMakers.push(() => makeCharacter(
  44206. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44207. {
  44208. side: {
  44209. height: math.unit(42, "feet"),
  44210. name: "Side",
  44211. image: {
  44212. source: "./media/characters/uvula/side.svg",
  44213. extra: 683/586,
  44214. bottom: 60/743
  44215. }
  44216. },
  44217. front: {
  44218. height: math.unit(42, "feet"),
  44219. name: "Front",
  44220. image: {
  44221. source: "./media/characters/uvula/front.svg",
  44222. extra: 705/613,
  44223. bottom: 54/759
  44224. }
  44225. },
  44226. maw: {
  44227. height: math.unit(23.5, "feet"),
  44228. name: "Maw",
  44229. image: {
  44230. source: "./media/characters/uvula/maw.svg"
  44231. }
  44232. },
  44233. },
  44234. [
  44235. {
  44236. name: "Original Size",
  44237. height: math.unit(14, "inches")
  44238. },
  44239. {
  44240. name: "Human Size",
  44241. height: math.unit(6, "feet")
  44242. },
  44243. {
  44244. name: "Big",
  44245. height: math.unit(42, "feet"),
  44246. default: true
  44247. },
  44248. {
  44249. name: "Bigger",
  44250. height: math.unit(100, "feet")
  44251. },
  44252. ]
  44253. ))
  44254. characterMakers.push(() => makeCharacter(
  44255. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44256. {
  44257. front: {
  44258. height: math.unit(5 + 11/12, "feet"),
  44259. name: "Front",
  44260. image: {
  44261. source: "./media/characters/lannah/front.svg",
  44262. extra: 1208/1113,
  44263. bottom: 97/1305
  44264. }
  44265. },
  44266. },
  44267. [
  44268. {
  44269. name: "Normal",
  44270. height: math.unit(5 + 11/12, "feet"),
  44271. default: true
  44272. },
  44273. ]
  44274. ))
  44275. characterMakers.push(() => makeCharacter(
  44276. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44277. {
  44278. front: {
  44279. height: math.unit(6 + 3/12, "feet"),
  44280. weight: math.unit(3.5, "tons"),
  44281. name: "Front",
  44282. image: {
  44283. source: "./media/characters/emberflame/front.svg",
  44284. extra: 1198/672,
  44285. bottom: 82/1280
  44286. }
  44287. },
  44288. side: {
  44289. height: math.unit(6 + 3/12, "feet"),
  44290. weight: math.unit(3.5, "tons"),
  44291. name: "Side",
  44292. image: {
  44293. source: "./media/characters/emberflame/side.svg",
  44294. extra: 938/527,
  44295. bottom: 56/994
  44296. }
  44297. },
  44298. },
  44299. [
  44300. {
  44301. name: "Normal",
  44302. height: math.unit(6 + 3/12, "feet"),
  44303. default: true
  44304. },
  44305. ]
  44306. ))
  44307. characterMakers.push(() => makeCharacter(
  44308. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44309. {
  44310. side: {
  44311. height: math.unit(17.5, "feet"),
  44312. weight: math.unit(35, "tons"),
  44313. name: "Side",
  44314. image: {
  44315. source: "./media/characters/sophie-ambrose/side.svg",
  44316. extra: 1573/1242,
  44317. bottom: 71/1644
  44318. }
  44319. },
  44320. maw: {
  44321. height: math.unit(7.4, "feet"),
  44322. name: "Maw",
  44323. image: {
  44324. source: "./media/characters/sophie-ambrose/maw.svg"
  44325. }
  44326. },
  44327. },
  44328. [
  44329. {
  44330. name: "Normal",
  44331. height: math.unit(17.5, "feet"),
  44332. default: true
  44333. },
  44334. ]
  44335. ))
  44336. characterMakers.push(() => makeCharacter(
  44337. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44338. {
  44339. front: {
  44340. height: math.unit(280, "feet"),
  44341. weight: math.unit(550, "tons"),
  44342. name: "Front",
  44343. image: {
  44344. source: "./media/characters/king-mugi/front.svg",
  44345. extra: 1102/947,
  44346. bottom: 104/1206
  44347. }
  44348. },
  44349. },
  44350. [
  44351. {
  44352. name: "King Mugi",
  44353. height: math.unit(280, "feet"),
  44354. default: true
  44355. },
  44356. ]
  44357. ))
  44358. characterMakers.push(() => makeCharacter(
  44359. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44360. {
  44361. front: {
  44362. height: math.unit(64, "meters"),
  44363. name: "Front",
  44364. image: {
  44365. source: "./media/characters/nova-fox/front.svg",
  44366. extra: 1310/1246,
  44367. bottom: 65/1375
  44368. }
  44369. },
  44370. },
  44371. [
  44372. {
  44373. name: "Macro",
  44374. height: math.unit(64, "meters"),
  44375. default: true
  44376. },
  44377. ]
  44378. ))
  44379. characterMakers.push(() => makeCharacter(
  44380. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44381. {
  44382. front: {
  44383. height: math.unit(6 + 3/12, "feet"),
  44384. weight: math.unit(170, "lb"),
  44385. name: "Front",
  44386. image: {
  44387. source: "./media/characters/sam-bat/front.svg",
  44388. extra: 1601/1411,
  44389. bottom: 125/1726
  44390. }
  44391. },
  44392. back: {
  44393. height: math.unit(6 + 3/12, "feet"),
  44394. weight: math.unit(170, "lb"),
  44395. name: "Back",
  44396. image: {
  44397. source: "./media/characters/sam-bat/back.svg",
  44398. extra: 1577/1405,
  44399. bottom: 58/1635
  44400. }
  44401. },
  44402. },
  44403. [
  44404. {
  44405. name: "Normal",
  44406. height: math.unit(6 + 3/12, "feet"),
  44407. default: true
  44408. },
  44409. ]
  44410. ))
  44411. characterMakers.push(() => makeCharacter(
  44412. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44413. {
  44414. front: {
  44415. height: math.unit(59, "feet"),
  44416. weight: math.unit(40000, "lb"),
  44417. name: "Front",
  44418. image: {
  44419. source: "./media/characters/inari/front.svg",
  44420. extra: 1884/1350,
  44421. bottom: 95/1979
  44422. }
  44423. },
  44424. },
  44425. [
  44426. {
  44427. name: "Gigantamax",
  44428. height: math.unit(59, "feet"),
  44429. default: true
  44430. },
  44431. ]
  44432. ))
  44433. characterMakers.push(() => makeCharacter(
  44434. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44435. {
  44436. front: {
  44437. height: math.unit(5 + 8/12, "feet"),
  44438. name: "Front",
  44439. image: {
  44440. source: "./media/characters/elizabeth/front.svg",
  44441. extra: 1395/1298,
  44442. bottom: 54/1449
  44443. }
  44444. },
  44445. mouth: {
  44446. height: math.unit(1.97, "feet"),
  44447. name: "Mouth",
  44448. image: {
  44449. source: "./media/characters/elizabeth/mouth.svg"
  44450. }
  44451. },
  44452. foot: {
  44453. height: math.unit(1.17, "feet"),
  44454. name: "Foot",
  44455. image: {
  44456. source: "./media/characters/elizabeth/foot.svg"
  44457. }
  44458. },
  44459. },
  44460. [
  44461. {
  44462. name: "Normal",
  44463. height: math.unit(5 + 8/12, "feet"),
  44464. default: true
  44465. },
  44466. {
  44467. name: "Minimacro",
  44468. height: math.unit(18, "feet")
  44469. },
  44470. {
  44471. name: "Macro",
  44472. height: math.unit(180, "feet")
  44473. },
  44474. ]
  44475. ))
  44476. characterMakers.push(() => makeCharacter(
  44477. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44478. {
  44479. front: {
  44480. height: math.unit(5 + 2/12, "feet"),
  44481. name: "Front",
  44482. image: {
  44483. source: "./media/characters/october-gossamer/front.svg",
  44484. extra: 505/454,
  44485. bottom: 7/512
  44486. }
  44487. },
  44488. back: {
  44489. height: math.unit(5 + 2/12, "feet"),
  44490. name: "Back",
  44491. image: {
  44492. source: "./media/characters/october-gossamer/back.svg",
  44493. extra: 501/454,
  44494. bottom: 11/512
  44495. }
  44496. },
  44497. },
  44498. [
  44499. {
  44500. name: "Normal",
  44501. height: math.unit(5 + 2/12, "feet"),
  44502. default: true
  44503. },
  44504. ]
  44505. ))
  44506. characterMakers.push(() => makeCharacter(
  44507. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44508. {
  44509. front: {
  44510. height: math.unit(5, "feet"),
  44511. name: "Front",
  44512. image: {
  44513. source: "./media/characters/epiglottis/front.svg",
  44514. extra: 923/849,
  44515. bottom: 17/940
  44516. }
  44517. },
  44518. },
  44519. [
  44520. {
  44521. name: "Original Size",
  44522. height: math.unit(10, "inches")
  44523. },
  44524. {
  44525. name: "Human Size",
  44526. height: math.unit(5, "feet"),
  44527. default: true
  44528. },
  44529. {
  44530. name: "Big",
  44531. height: math.unit(25, "feet")
  44532. },
  44533. {
  44534. name: "Bigger",
  44535. height: math.unit(50, "feet")
  44536. },
  44537. {
  44538. name: "oh lawd",
  44539. height: math.unit(75, "feet")
  44540. },
  44541. ]
  44542. ))
  44543. characterMakers.push(() => makeCharacter(
  44544. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44545. {
  44546. front: {
  44547. height: math.unit(2 + 4/12, "feet"),
  44548. weight: math.unit(60, "lb"),
  44549. name: "Front",
  44550. image: {
  44551. source: "./media/characters/lerm/front.svg",
  44552. extra: 796/790,
  44553. bottom: 79/875
  44554. }
  44555. },
  44556. },
  44557. [
  44558. {
  44559. name: "Normal",
  44560. height: math.unit(2 + 4/12, "feet"),
  44561. default: true
  44562. },
  44563. ]
  44564. ))
  44565. characterMakers.push(() => makeCharacter(
  44566. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44567. {
  44568. front: {
  44569. height: math.unit(5.5, "feet"),
  44570. weight: math.unit(130, "lb"),
  44571. name: "Front",
  44572. image: {
  44573. source: "./media/characters/xena-nebadon/front.svg",
  44574. extra: 1828/1730,
  44575. bottom: 79/1907
  44576. }
  44577. },
  44578. },
  44579. [
  44580. {
  44581. name: "Tiny Puppy",
  44582. height: math.unit(3, "inches")
  44583. },
  44584. {
  44585. name: "Normal",
  44586. height: math.unit(5.5, "feet"),
  44587. default: true
  44588. },
  44589. {
  44590. name: "Lotta Lady",
  44591. height: math.unit(12, "feet")
  44592. },
  44593. {
  44594. name: "Pretty Big",
  44595. height: math.unit(100, "feet")
  44596. },
  44597. {
  44598. name: "Big",
  44599. height: math.unit(500, "feet")
  44600. },
  44601. {
  44602. name: "Skyscraper Toys",
  44603. height: math.unit(2500, "feet")
  44604. },
  44605. {
  44606. name: "Plane Catcher",
  44607. height: math.unit(8, "miles")
  44608. },
  44609. {
  44610. name: "Planet Toys",
  44611. height: math.unit(15, "earths")
  44612. },
  44613. {
  44614. name: "Stardust",
  44615. height: math.unit(0.25, "galaxies")
  44616. },
  44617. {
  44618. name: "Snacks",
  44619. height: math.unit(70, "universes")
  44620. },
  44621. ]
  44622. ))
  44623. characterMakers.push(() => makeCharacter(
  44624. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44625. {
  44626. front: {
  44627. height: math.unit(1.6, "meters"),
  44628. weight: math.unit(60, "kg"),
  44629. name: "Front",
  44630. image: {
  44631. source: "./media/characters/bounty/front.svg",
  44632. extra: 1426/1308,
  44633. bottom: 15/1441
  44634. }
  44635. },
  44636. back: {
  44637. height: math.unit(1.6, "meters"),
  44638. weight: math.unit(60, "kg"),
  44639. name: "Back",
  44640. image: {
  44641. source: "./media/characters/bounty/back.svg",
  44642. extra: 1417/1307,
  44643. bottom: 8/1425
  44644. }
  44645. },
  44646. },
  44647. [
  44648. {
  44649. name: "Normal",
  44650. height: math.unit(1.6, "meters"),
  44651. default: true
  44652. },
  44653. {
  44654. name: "Macro",
  44655. height: math.unit(300, "meters")
  44656. },
  44657. ]
  44658. ))
  44659. characterMakers.push(() => makeCharacter(
  44660. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44661. {
  44662. front: {
  44663. height: math.unit(2 + 8/12, "feet"),
  44664. weight: math.unit(15, "lb"),
  44665. name: "Front",
  44666. image: {
  44667. source: "./media/characters/mochi/front.svg",
  44668. extra: 1022/852,
  44669. bottom: 435/1457
  44670. }
  44671. },
  44672. back: {
  44673. height: math.unit(2 + 8/12, "feet"),
  44674. weight: math.unit(15, "lb"),
  44675. name: "Back",
  44676. image: {
  44677. source: "./media/characters/mochi/back.svg",
  44678. extra: 1335/1119,
  44679. bottom: 39/1374
  44680. }
  44681. },
  44682. bird: {
  44683. height: math.unit(2 + 8/12, "feet"),
  44684. weight: math.unit(15, "lb"),
  44685. name: "Bird",
  44686. image: {
  44687. source: "./media/characters/mochi/bird.svg",
  44688. extra: 1251/1113,
  44689. bottom: 178/1429
  44690. }
  44691. },
  44692. kaiju: {
  44693. height: math.unit(154, "feet"),
  44694. weight: math.unit(1e7, "lb"),
  44695. name: "Kaiju",
  44696. image: {
  44697. source: "./media/characters/mochi/kaiju.svg",
  44698. extra: 460/324,
  44699. bottom: 40/500
  44700. }
  44701. },
  44702. head: {
  44703. height: math.unit(1.21, "feet"),
  44704. name: "Head",
  44705. image: {
  44706. source: "./media/characters/mochi/head.svg"
  44707. }
  44708. },
  44709. alternateTail: {
  44710. height: math.unit(2 + 8/12, "feet"),
  44711. weight: math.unit(45, "lb"),
  44712. name: "Alternate Tail",
  44713. image: {
  44714. source: "./media/characters/mochi/alternate-tail.svg",
  44715. extra: 139/76,
  44716. bottom: 45/184
  44717. }
  44718. },
  44719. },
  44720. [
  44721. {
  44722. name: "Micro",
  44723. height: math.unit(2, "inches")
  44724. },
  44725. {
  44726. name: "Normal",
  44727. height: math.unit(2 + 8/12, "feet"),
  44728. default: true
  44729. },
  44730. {
  44731. name: "Macro",
  44732. height: math.unit(106, "feet")
  44733. },
  44734. ]
  44735. ))
  44736. characterMakers.push(() => makeCharacter(
  44737. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44738. {
  44739. front: {
  44740. height: math.unit(5.67, "feet"),
  44741. weight: math.unit(135, "lb"),
  44742. name: "Front",
  44743. image: {
  44744. source: "./media/characters/sarel/front.svg",
  44745. extra: 865/788,
  44746. bottom: 97/962
  44747. }
  44748. },
  44749. back: {
  44750. height: math.unit(5.67, "feet"),
  44751. weight: math.unit(135, "lb"),
  44752. name: "Back",
  44753. image: {
  44754. source: "./media/characters/sarel/back.svg",
  44755. extra: 857/777,
  44756. bottom: 32/889
  44757. }
  44758. },
  44759. chozoan: {
  44760. height: math.unit(5.67, "feet"),
  44761. weight: math.unit(135, "lb"),
  44762. name: "Chozoan",
  44763. image: {
  44764. source: "./media/characters/sarel/chozoan.svg",
  44765. extra: 865/788,
  44766. bottom: 97/962
  44767. }
  44768. },
  44769. current: {
  44770. height: math.unit(5.67, "feet"),
  44771. weight: math.unit(135, "lb"),
  44772. name: "Current",
  44773. image: {
  44774. source: "./media/characters/sarel/current.svg",
  44775. extra: 865/788,
  44776. bottom: 97/962
  44777. }
  44778. },
  44779. head: {
  44780. height: math.unit(1.77, "feet"),
  44781. name: "Head",
  44782. image: {
  44783. source: "./media/characters/sarel/head.svg"
  44784. }
  44785. },
  44786. claws: {
  44787. height: math.unit(1.8, "feet"),
  44788. name: "Claws",
  44789. image: {
  44790. source: "./media/characters/sarel/claws.svg"
  44791. }
  44792. },
  44793. clawsAlt: {
  44794. height: math.unit(1.8, "feet"),
  44795. name: "Claws-alt",
  44796. image: {
  44797. source: "./media/characters/sarel/claws-alt.svg"
  44798. }
  44799. },
  44800. },
  44801. [
  44802. {
  44803. name: "Normal",
  44804. height: math.unit(5.67, "feet"),
  44805. default: true
  44806. },
  44807. ]
  44808. ))
  44809. characterMakers.push(() => makeCharacter(
  44810. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44811. {
  44812. front: {
  44813. height: math.unit(5500, "feet"),
  44814. name: "Front",
  44815. image: {
  44816. source: "./media/characters/alyonia/front.svg",
  44817. extra: 1200/1135,
  44818. bottom: 29/1229
  44819. }
  44820. },
  44821. back: {
  44822. height: math.unit(5500, "feet"),
  44823. name: "Back",
  44824. image: {
  44825. source: "./media/characters/alyonia/back.svg",
  44826. extra: 1205/1138,
  44827. bottom: 10/1215
  44828. }
  44829. },
  44830. },
  44831. [
  44832. {
  44833. name: "Small",
  44834. height: math.unit(10, "feet")
  44835. },
  44836. {
  44837. name: "Macro",
  44838. height: math.unit(500, "feet")
  44839. },
  44840. {
  44841. name: "Mega Macro",
  44842. height: math.unit(5500, "feet"),
  44843. default: true
  44844. },
  44845. {
  44846. name: "Mega Macro+",
  44847. height: math.unit(500000, "feet")
  44848. },
  44849. {
  44850. name: "Giga Macro",
  44851. height: math.unit(3000, "miles")
  44852. },
  44853. {
  44854. name: "Tera Macro",
  44855. height: math.unit(2.8e6, "miles")
  44856. },
  44857. {
  44858. name: "Galactic",
  44859. height: math.unit(120000, "lightyears")
  44860. },
  44861. ]
  44862. ))
  44863. characterMakers.push(() => makeCharacter(
  44864. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44865. {
  44866. werewolf: {
  44867. height: math.unit(8, "feet"),
  44868. weight: math.unit(425, "lb"),
  44869. name: "Werewolf",
  44870. image: {
  44871. source: "./media/characters/autumn/werewolf.svg",
  44872. extra: 2154/2031,
  44873. bottom: 160/2314
  44874. }
  44875. },
  44876. human: {
  44877. height: math.unit(5 + 8/12, "feet"),
  44878. weight: math.unit(150, "lb"),
  44879. name: "Human",
  44880. image: {
  44881. source: "./media/characters/autumn/human.svg",
  44882. extra: 1200/1149,
  44883. bottom: 30/1230
  44884. }
  44885. },
  44886. },
  44887. [
  44888. {
  44889. name: "Normal",
  44890. height: math.unit(8, "feet"),
  44891. default: true
  44892. },
  44893. ]
  44894. ))
  44895. characterMakers.push(() => makeCharacter(
  44896. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44897. {
  44898. front: {
  44899. height: math.unit(8 + 5/12, "feet"),
  44900. weight: math.unit(825, "lb"),
  44901. name: "Front",
  44902. image: {
  44903. source: "./media/characters/cobalt-charizard/front.svg",
  44904. extra: 1268/1155,
  44905. bottom: 122/1390
  44906. }
  44907. },
  44908. side: {
  44909. height: math.unit(8 + 5/12, "feet"),
  44910. weight: math.unit(825, "lb"),
  44911. name: "Side",
  44912. image: {
  44913. source: "./media/characters/cobalt-charizard/side.svg",
  44914. extra: 1348/1257,
  44915. bottom: 58/1406
  44916. }
  44917. },
  44918. gMax: {
  44919. height: math.unit(134 + 11/12, "feet"),
  44920. name: "G-Max",
  44921. image: {
  44922. source: "./media/characters/cobalt-charizard/g-max.svg",
  44923. extra: 1835/1541,
  44924. bottom: 151/1986
  44925. }
  44926. },
  44927. },
  44928. [
  44929. {
  44930. name: "Normal",
  44931. height: math.unit(8 + 5/12, "feet"),
  44932. default: true
  44933. },
  44934. ]
  44935. ))
  44936. characterMakers.push(() => makeCharacter(
  44937. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44938. {
  44939. front: {
  44940. height: math.unit(6 + 3/12, "feet"),
  44941. weight: math.unit(210, "lb"),
  44942. name: "Front",
  44943. image: {
  44944. source: "./media/characters/stella/front.svg",
  44945. extra: 3549/3335,
  44946. bottom: 51/3600
  44947. }
  44948. },
  44949. },
  44950. [
  44951. {
  44952. name: "Normal",
  44953. height: math.unit(6 + 3/12, "feet"),
  44954. default: true
  44955. },
  44956. ]
  44957. ))
  44958. characterMakers.push(() => makeCharacter(
  44959. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44960. {
  44961. front: {
  44962. height: math.unit(5, "feet"),
  44963. weight: math.unit(90, "lb"),
  44964. name: "Front",
  44965. image: {
  44966. source: "./media/characters/riley-bishop/front.svg",
  44967. extra: 1450/1428,
  44968. bottom: 152/1602
  44969. }
  44970. },
  44971. },
  44972. [
  44973. {
  44974. name: "Normal",
  44975. height: math.unit(5, "feet"),
  44976. default: true
  44977. },
  44978. ]
  44979. ))
  44980. characterMakers.push(() => makeCharacter(
  44981. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44982. {
  44983. side: {
  44984. height: math.unit(8 + 2/12, "feet"),
  44985. weight: math.unit(500, "kg"),
  44986. name: "Side",
  44987. image: {
  44988. source: "./media/characters/theo-arcanine/side.svg",
  44989. extra: 1342/1074,
  44990. bottom: 111/1453
  44991. }
  44992. },
  44993. },
  44994. [
  44995. {
  44996. name: "Normal",
  44997. height: math.unit(8 + 2/12, "feet"),
  44998. default: true
  44999. },
  45000. ]
  45001. ))
  45002. characterMakers.push(() => makeCharacter(
  45003. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45004. {
  45005. front: {
  45006. height: math.unit(4, "feet"),
  45007. name: "Front",
  45008. image: {
  45009. source: "./media/characters/kali/front.svg",
  45010. extra: 1921/1357,
  45011. bottom: 70/1991
  45012. }
  45013. },
  45014. },
  45015. [
  45016. {
  45017. name: "Normal",
  45018. height: math.unit(4, "feet"),
  45019. default: true
  45020. },
  45021. {
  45022. name: "Macro",
  45023. height: math.unit(32, "meters")
  45024. },
  45025. {
  45026. name: "Macro+",
  45027. height: math.unit(150, "meters")
  45028. },
  45029. {
  45030. name: "Megamacro",
  45031. height: math.unit(7500, "meters")
  45032. },
  45033. {
  45034. name: "Megamacro+",
  45035. height: math.unit(80, "kilometers")
  45036. },
  45037. ]
  45038. ))
  45039. characterMakers.push(() => makeCharacter(
  45040. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45041. {
  45042. side: {
  45043. height: math.unit(5 + 11/12, "feet"),
  45044. weight: math.unit(236, "lb"),
  45045. name: "Side",
  45046. image: {
  45047. source: "./media/characters/gapp/side.svg",
  45048. extra: 775/340,
  45049. bottom: 58/833
  45050. }
  45051. },
  45052. mouth: {
  45053. height: math.unit(2.98, "feet"),
  45054. name: "Mouth",
  45055. image: {
  45056. source: "./media/characters/gapp/mouth.svg"
  45057. }
  45058. },
  45059. },
  45060. [
  45061. {
  45062. name: "Normal",
  45063. height: math.unit(5 + 1/12, "feet"),
  45064. default: true
  45065. },
  45066. ]
  45067. ))
  45068. characterMakers.push(() => makeCharacter(
  45069. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45070. {
  45071. front: {
  45072. height: math.unit(6, "feet"),
  45073. name: "Front",
  45074. image: {
  45075. source: "./media/characters/persephone/front.svg",
  45076. extra: 1895/1717,
  45077. bottom: 96/1991
  45078. }
  45079. },
  45080. back: {
  45081. height: math.unit(6, "feet"),
  45082. name: "Back",
  45083. image: {
  45084. source: "./media/characters/persephone/back.svg",
  45085. extra: 1868/1679,
  45086. bottom: 26/1894
  45087. }
  45088. },
  45089. casual: {
  45090. height: math.unit(6, "feet"),
  45091. name: "Casual",
  45092. image: {
  45093. source: "./media/characters/persephone/casual.svg",
  45094. extra: 1713/1541,
  45095. bottom: 76/1789
  45096. }
  45097. },
  45098. },
  45099. [
  45100. {
  45101. name: "Human Size",
  45102. height: math.unit(6, "feet")
  45103. },
  45104. {
  45105. name: "Big Steppy",
  45106. height: math.unit(600, "meters"),
  45107. default: true
  45108. },
  45109. {
  45110. name: "Galaxy Brain",
  45111. height: math.unit(1, "zettameter")
  45112. },
  45113. ]
  45114. ))
  45115. characterMakers.push(() => makeCharacter(
  45116. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45117. {
  45118. front: {
  45119. height: math.unit(1.85, "meters"),
  45120. name: "Front",
  45121. image: {
  45122. source: "./media/characters/riley-foxthing/front.svg",
  45123. extra: 1495/1354,
  45124. bottom: 122/1617
  45125. }
  45126. },
  45127. frontAlt: {
  45128. height: math.unit(1.85, "meters"),
  45129. name: "Front (Alt)",
  45130. image: {
  45131. source: "./media/characters/riley-foxthing/front-alt.svg",
  45132. extra: 1572/1389,
  45133. bottom: 116/1688
  45134. }
  45135. },
  45136. },
  45137. [
  45138. {
  45139. name: "Normal Sized",
  45140. height: math.unit(1.85, "meters"),
  45141. default: true
  45142. },
  45143. {
  45144. name: "Quite Sizable",
  45145. height: math.unit(5, "meters")
  45146. },
  45147. {
  45148. name: "Rather Large",
  45149. height: math.unit(20, "meters")
  45150. },
  45151. {
  45152. name: "Macro",
  45153. height: math.unit(450, "meters")
  45154. },
  45155. {
  45156. name: "Giga",
  45157. height: math.unit(5, "km")
  45158. },
  45159. ]
  45160. ))
  45161. characterMakers.push(() => makeCharacter(
  45162. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45163. {
  45164. front: {
  45165. height: math.unit(6, "feet"),
  45166. weight: math.unit(200, "lb"),
  45167. name: "Front",
  45168. image: {
  45169. source: "./media/characters/blizzard/front.svg",
  45170. extra: 1136/990,
  45171. bottom: 136/1272
  45172. }
  45173. },
  45174. back: {
  45175. height: math.unit(6, "feet"),
  45176. weight: math.unit(200, "lb"),
  45177. name: "Back",
  45178. image: {
  45179. source: "./media/characters/blizzard/back.svg",
  45180. extra: 1175/1034,
  45181. bottom: 97/1272
  45182. }
  45183. },
  45184. sitting: {
  45185. height: math.unit(3.725, "feet"),
  45186. weight: math.unit(200, "lb"),
  45187. name: "Sitting",
  45188. image: {
  45189. source: "./media/characters/blizzard/sitting.svg",
  45190. extra: 581/485,
  45191. bottom: 90/671
  45192. }
  45193. },
  45194. frontWizard: {
  45195. height: math.unit(7.9, "feet"),
  45196. weight: math.unit(200, "lb"),
  45197. name: "Front (Wizard)",
  45198. image: {
  45199. source: "./media/characters/blizzard/front-wizard.svg"
  45200. }
  45201. },
  45202. backWizard: {
  45203. height: math.unit(7.9, "feet"),
  45204. weight: math.unit(200, "lb"),
  45205. name: "Back (Wizard)",
  45206. image: {
  45207. source: "./media/characters/blizzard/back-wizard.svg"
  45208. }
  45209. },
  45210. frontNsfw: {
  45211. height: math.unit(6, "feet"),
  45212. weight: math.unit(200, "lb"),
  45213. name: "Front (NSFW)",
  45214. image: {
  45215. source: "./media/characters/blizzard/front-nsfw.svg",
  45216. extra: 1136/990,
  45217. bottom: 136/1272
  45218. }
  45219. },
  45220. backNsfw: {
  45221. height: math.unit(6, "feet"),
  45222. weight: math.unit(200, "lb"),
  45223. name: "Back (NSFW)",
  45224. image: {
  45225. source: "./media/characters/blizzard/back-nsfw.svg",
  45226. extra: 1175/1034,
  45227. bottom: 97/1272
  45228. }
  45229. },
  45230. sittingNsfw: {
  45231. height: math.unit(3.725, "feet"),
  45232. weight: math.unit(200, "lb"),
  45233. name: "Sitting (NSFW)",
  45234. image: {
  45235. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45236. extra: 581/485,
  45237. bottom: 90/671
  45238. }
  45239. },
  45240. wizardFrontNsfw: {
  45241. height: math.unit(7.9, "feet"),
  45242. weight: math.unit(200, "lb"),
  45243. name: "Wizard (Front, NSFW)",
  45244. image: {
  45245. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45246. }
  45247. },
  45248. },
  45249. [
  45250. {
  45251. name: "Normal",
  45252. height: math.unit(6, "feet"),
  45253. default: true
  45254. },
  45255. ]
  45256. ))
  45257. characterMakers.push(() => makeCharacter(
  45258. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45259. {
  45260. front: {
  45261. height: math.unit(5 + 2/12, "feet"),
  45262. name: "Front",
  45263. image: {
  45264. source: "./media/characters/lumi/front.svg",
  45265. extra: 1328/1268,
  45266. bottom: 103/1431
  45267. }
  45268. },
  45269. back: {
  45270. height: math.unit(5 + 2/12, "feet"),
  45271. name: "Back",
  45272. image: {
  45273. source: "./media/characters/lumi/back.svg",
  45274. extra: 1381/1327,
  45275. bottom: 43/1424
  45276. }
  45277. },
  45278. },
  45279. [
  45280. {
  45281. name: "Normal",
  45282. height: math.unit(5 + 2/12, "feet"),
  45283. default: true
  45284. },
  45285. ]
  45286. ))
  45287. characterMakers.push(() => makeCharacter(
  45288. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45289. {
  45290. front: {
  45291. height: math.unit(5 + 9/12, "feet"),
  45292. name: "Front",
  45293. image: {
  45294. source: "./media/characters/aliya-cotton/front.svg",
  45295. extra: 577/564,
  45296. bottom: 29/606
  45297. }
  45298. },
  45299. },
  45300. [
  45301. {
  45302. name: "Normal",
  45303. height: math.unit(5 + 9/12, "feet"),
  45304. default: true
  45305. },
  45306. ]
  45307. ))
  45308. characterMakers.push(() => makeCharacter(
  45309. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45310. {
  45311. front: {
  45312. height: math.unit(2.7, "meters"),
  45313. weight: math.unit(25000, "lb"),
  45314. name: "Front",
  45315. image: {
  45316. source: "./media/characters/noah-luxray/front.svg",
  45317. extra: 1644/825,
  45318. bottom: 339/1983
  45319. }
  45320. },
  45321. side: {
  45322. height: math.unit(2.97, "meters"),
  45323. weight: math.unit(25000, "lb"),
  45324. name: "Side",
  45325. image: {
  45326. source: "./media/characters/noah-luxray/side.svg",
  45327. extra: 1319/650,
  45328. bottom: 163/1482
  45329. }
  45330. },
  45331. dick: {
  45332. height: math.unit(7.4, "feet"),
  45333. weight: math.unit(2500, "lb"),
  45334. name: "Dick",
  45335. image: {
  45336. source: "./media/characters/noah-luxray/dick.svg"
  45337. }
  45338. },
  45339. dickAlt: {
  45340. height: math.unit(10.83, "feet"),
  45341. weight: math.unit(2500, "lb"),
  45342. name: "Dick-alt",
  45343. image: {
  45344. source: "./media/characters/noah-luxray/dick-alt.svg"
  45345. }
  45346. },
  45347. },
  45348. [
  45349. {
  45350. name: "BIG",
  45351. height: math.unit(2.7, "meters"),
  45352. default: true
  45353. },
  45354. ]
  45355. ))
  45356. characterMakers.push(() => makeCharacter(
  45357. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45358. {
  45359. standing: {
  45360. height: math.unit(183, "cm"),
  45361. weight: math.unit(68, "kg"),
  45362. name: "Standing",
  45363. image: {
  45364. source: "./media/characters/arion/standing.svg",
  45365. extra: 1869/1807,
  45366. bottom: 93/1962
  45367. }
  45368. },
  45369. reclining: {
  45370. height: math.unit(70.5, "cm"),
  45371. weight: math.unit(68, "lb"),
  45372. name: "Reclining",
  45373. image: {
  45374. source: "./media/characters/arion/reclining.svg",
  45375. extra: 937/870,
  45376. bottom: 63/1000
  45377. }
  45378. },
  45379. },
  45380. [
  45381. {
  45382. name: "Colossus Size, Low",
  45383. height: math.unit(33, "meters"),
  45384. default: true
  45385. },
  45386. {
  45387. name: "Colossus Size, Mid",
  45388. height: math.unit(52, "meters")
  45389. },
  45390. {
  45391. name: "Colossus Size, High",
  45392. height: math.unit(60, "meters")
  45393. },
  45394. {
  45395. name: "Titan Size, Low",
  45396. height: math.unit(91, "meters"),
  45397. },
  45398. {
  45399. name: "Titan Size, Mid",
  45400. height: math.unit(122, "meters")
  45401. },
  45402. {
  45403. name: "Titan Size, High",
  45404. height: math.unit(162, "meters")
  45405. },
  45406. ]
  45407. ))
  45408. characterMakers.push(() => makeCharacter(
  45409. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45410. {
  45411. front: {
  45412. height: math.unit(53, "meters"),
  45413. name: "Front",
  45414. image: {
  45415. source: "./media/characters/stellar-marbey/front.svg",
  45416. extra: 1913/1805,
  45417. bottom: 92/2005
  45418. }
  45419. },
  45420. back: {
  45421. height: math.unit(53, "meters"),
  45422. name: "Back",
  45423. image: {
  45424. source: "./media/characters/stellar-marbey/back.svg",
  45425. extra: 1960/1851,
  45426. bottom: 28/1988
  45427. }
  45428. },
  45429. mouth: {
  45430. height: math.unit(3.5, "meters"),
  45431. name: "Mouth",
  45432. image: {
  45433. source: "./media/characters/stellar-marbey/mouth.svg"
  45434. }
  45435. },
  45436. },
  45437. [
  45438. {
  45439. name: "Macro",
  45440. height: math.unit(53, "meters"),
  45441. default: true
  45442. },
  45443. ]
  45444. ))
  45445. characterMakers.push(() => makeCharacter(
  45446. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45447. {
  45448. front: {
  45449. height: math.unit(8 + 1/12, "feet"),
  45450. weight: math.unit(233, "lb"),
  45451. name: "Front",
  45452. image: {
  45453. source: "./media/characters/matsu/front.svg",
  45454. extra: 832/772,
  45455. bottom: 40/872
  45456. }
  45457. },
  45458. back: {
  45459. height: math.unit(8 + 1/12, "feet"),
  45460. weight: math.unit(233, "lb"),
  45461. name: "Back",
  45462. image: {
  45463. source: "./media/characters/matsu/back.svg",
  45464. extra: 839/780,
  45465. bottom: 47/886
  45466. }
  45467. },
  45468. },
  45469. [
  45470. {
  45471. name: "Normal",
  45472. height: math.unit(8 + 1/12, "feet"),
  45473. default: true
  45474. },
  45475. ]
  45476. ))
  45477. characterMakers.push(() => makeCharacter(
  45478. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45479. {
  45480. front: {
  45481. height: math.unit(4, "feet"),
  45482. weight: math.unit(148, "lb"),
  45483. name: "Front",
  45484. image: {
  45485. source: "./media/characters/thiz/front.svg",
  45486. extra: 1913/1748,
  45487. bottom: 62/1975
  45488. }
  45489. },
  45490. },
  45491. [
  45492. {
  45493. name: "Normal",
  45494. height: math.unit(4, "feet"),
  45495. default: true
  45496. },
  45497. ]
  45498. ))
  45499. characterMakers.push(() => makeCharacter(
  45500. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45501. {
  45502. front: {
  45503. height: math.unit(7 + 6/12, "feet"),
  45504. weight: math.unit(267, "lb"),
  45505. name: "Front",
  45506. image: {
  45507. source: "./media/characters/marcel/front.svg",
  45508. extra: 1221/1096,
  45509. bottom: 76/1297
  45510. }
  45511. },
  45512. },
  45513. [
  45514. {
  45515. name: "Normal",
  45516. height: math.unit(7 + 6/12, "feet"),
  45517. default: true
  45518. },
  45519. ]
  45520. ))
  45521. characterMakers.push(() => makeCharacter(
  45522. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45523. {
  45524. side: {
  45525. height: math.unit(42, "meters"),
  45526. name: "Side",
  45527. image: {
  45528. source: "./media/characters/flake/side.svg",
  45529. extra: 1525/1306,
  45530. bottom: 209/1734
  45531. }
  45532. },
  45533. },
  45534. [
  45535. {
  45536. name: "Normal",
  45537. height: math.unit(42, "meters"),
  45538. default: true
  45539. },
  45540. ]
  45541. ))
  45542. characterMakers.push(() => makeCharacter(
  45543. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45544. {
  45545. dressed: {
  45546. height: math.unit(6 + 4/12, "feet"),
  45547. weight: math.unit(520, "lb"),
  45548. name: "Dressed",
  45549. image: {
  45550. source: "./media/characters/someonne/dressed.svg",
  45551. extra: 1020/1010,
  45552. bottom: 178/1198
  45553. }
  45554. },
  45555. undressed: {
  45556. height: math.unit(6 + 4/12, "feet"),
  45557. weight: math.unit(520, "lb"),
  45558. name: "Undressed",
  45559. image: {
  45560. source: "./media/characters/someonne/undressed.svg",
  45561. extra: 1019/1014,
  45562. bottom: 169/1188
  45563. }
  45564. },
  45565. },
  45566. [
  45567. {
  45568. name: "Normal",
  45569. height: math.unit(6 + 4/12, "feet"),
  45570. default: true
  45571. },
  45572. ]
  45573. ))
  45574. characterMakers.push(() => makeCharacter(
  45575. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45576. {
  45577. front: {
  45578. height: math.unit(3, "feet"),
  45579. weight: math.unit(30, "lb"),
  45580. name: "Front",
  45581. image: {
  45582. source: "./media/characters/till/front.svg",
  45583. extra: 892/823,
  45584. bottom: 55/947
  45585. }
  45586. },
  45587. },
  45588. [
  45589. {
  45590. name: "Normal",
  45591. height: math.unit(3, "feet"),
  45592. default: true
  45593. },
  45594. ]
  45595. ))
  45596. characterMakers.push(() => makeCharacter(
  45597. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45598. {
  45599. front: {
  45600. height: math.unit(9 + 8/12, "feet"),
  45601. weight: math.unit(800, "lb"),
  45602. name: "Front",
  45603. image: {
  45604. source: "./media/characters/sydney-heki/front.svg",
  45605. extra: 1360/1300,
  45606. bottom: 22/1382
  45607. }
  45608. },
  45609. back: {
  45610. height: math.unit(9 + 8/12, "feet"),
  45611. weight: math.unit(800, "lb"),
  45612. name: "Back",
  45613. image: {
  45614. source: "./media/characters/sydney-heki/back.svg",
  45615. extra: 1356/1293,
  45616. bottom: 12/1368
  45617. }
  45618. },
  45619. frontDressed: {
  45620. height: math.unit(9 + 8/12, "feet"),
  45621. weight: math.unit(800, "lb"),
  45622. name: "Front-dressed",
  45623. image: {
  45624. source: "./media/characters/sydney-heki/front-dressed.svg",
  45625. extra: 1360/1300,
  45626. bottom: 22/1382
  45627. }
  45628. },
  45629. },
  45630. [
  45631. {
  45632. name: "Normal",
  45633. height: math.unit(9 + 8/12, "feet"),
  45634. default: true
  45635. },
  45636. {
  45637. name: "Macro",
  45638. height: math.unit(500, "feet")
  45639. },
  45640. {
  45641. name: "Megamacro",
  45642. height: math.unit(3.6, "miles")
  45643. },
  45644. ]
  45645. ))
  45646. characterMakers.push(() => makeCharacter(
  45647. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45648. {
  45649. front: {
  45650. height: math.unit(200, "cm"),
  45651. weight: math.unit(250, "lb"),
  45652. name: "Front",
  45653. image: {
  45654. source: "./media/characters/fowler-karlsson/front.svg",
  45655. extra: 897/845,
  45656. bottom: 123/1020
  45657. }
  45658. },
  45659. back: {
  45660. height: math.unit(200, "cm"),
  45661. weight: math.unit(250, "lb"),
  45662. name: "Back",
  45663. image: {
  45664. source: "./media/characters/fowler-karlsson/back.svg",
  45665. extra: 999/944,
  45666. bottom: 26/1025
  45667. }
  45668. },
  45669. dick: {
  45670. height: math.unit(1.92, "feet"),
  45671. weight: math.unit(150, "lb"),
  45672. name: "Dick",
  45673. image: {
  45674. source: "./media/characters/fowler-karlsson/dick.svg"
  45675. }
  45676. },
  45677. },
  45678. [
  45679. {
  45680. name: "Normal",
  45681. height: math.unit(200, "cm"),
  45682. default: true
  45683. },
  45684. {
  45685. name: "Smaller Macro",
  45686. height: math.unit(90, "m")
  45687. },
  45688. {
  45689. name: "Macro",
  45690. height: math.unit(150, "m")
  45691. },
  45692. {
  45693. name: "Bigger Macro",
  45694. height: math.unit(300, "m")
  45695. },
  45696. ]
  45697. ))
  45698. characterMakers.push(() => makeCharacter(
  45699. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45700. {
  45701. side: {
  45702. height: math.unit(8 + 2/12, "feet"),
  45703. weight: math.unit(1, "tonne"),
  45704. name: "Side",
  45705. image: {
  45706. source: "./media/characters/rylide/side.svg",
  45707. extra: 1318/1034,
  45708. bottom: 106/1424
  45709. }
  45710. },
  45711. sitting: {
  45712. height: math.unit(303, "cm"),
  45713. weight: math.unit(1, "tonne"),
  45714. name: "Sitting",
  45715. image: {
  45716. source: "./media/characters/rylide/sitting.svg",
  45717. extra: 1303/1103,
  45718. bottom: 36/1339
  45719. }
  45720. },
  45721. },
  45722. [
  45723. {
  45724. name: "Normal",
  45725. height: math.unit(8 + 2/12, "feet"),
  45726. default: true
  45727. },
  45728. ]
  45729. ))
  45730. characterMakers.push(() => makeCharacter(
  45731. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45732. {
  45733. front: {
  45734. height: math.unit(5 + 10/12, "feet"),
  45735. weight: math.unit(160, "lb"),
  45736. name: "Front",
  45737. image: {
  45738. source: "./media/characters/pudask/front.svg",
  45739. extra: 1616/1590,
  45740. bottom: 161/1777
  45741. }
  45742. },
  45743. },
  45744. [
  45745. {
  45746. name: "Ferret Height",
  45747. height: math.unit(2 + 5/12, "feet")
  45748. },
  45749. {
  45750. name: "Canon Height",
  45751. height: math.unit(5 + 10/12, "feet"),
  45752. default: true
  45753. },
  45754. ]
  45755. ))
  45756. characterMakers.push(() => makeCharacter(
  45757. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45758. {
  45759. front: {
  45760. height: math.unit(3 + 6/12, "feet"),
  45761. weight: math.unit(60, "lb"),
  45762. name: "Front",
  45763. image: {
  45764. source: "./media/characters/ramita/front.svg",
  45765. extra: 1402/1232,
  45766. bottom: 62/1464
  45767. }
  45768. },
  45769. dressed: {
  45770. height: math.unit(3 + 6/12, "feet"),
  45771. weight: math.unit(60, "lb"),
  45772. name: "Dressed",
  45773. image: {
  45774. source: "./media/characters/ramita/dressed.svg",
  45775. extra: 1534/1249,
  45776. bottom: 50/1584
  45777. }
  45778. },
  45779. },
  45780. [
  45781. {
  45782. name: "Normal",
  45783. height: math.unit(3 + 6/12, "feet"),
  45784. default: true
  45785. },
  45786. ]
  45787. ))
  45788. characterMakers.push(() => makeCharacter(
  45789. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45790. {
  45791. front: {
  45792. height: math.unit(8, "feet"),
  45793. name: "Front",
  45794. image: {
  45795. source: "./media/characters/ark/front.svg",
  45796. extra: 772/693,
  45797. bottom: 45/817
  45798. }
  45799. },
  45800. },
  45801. [
  45802. {
  45803. name: "Normal",
  45804. height: math.unit(8, "feet"),
  45805. default: true
  45806. },
  45807. ]
  45808. ))
  45809. characterMakers.push(() => makeCharacter(
  45810. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45811. {
  45812. front: {
  45813. height: math.unit(6, "feet"),
  45814. weight: math.unit(250, "lb"),
  45815. volume: math.unit(5/8, "gallons"),
  45816. name: "Front",
  45817. image: {
  45818. source: "./media/characters/ludwig-horn/front.svg",
  45819. extra: 1782/1635,
  45820. bottom: 96/1878
  45821. }
  45822. },
  45823. back: {
  45824. height: math.unit(6, "feet"),
  45825. weight: math.unit(250, "lb"),
  45826. volume: math.unit(5/8, "gallons"),
  45827. name: "Back",
  45828. image: {
  45829. source: "./media/characters/ludwig-horn/back.svg",
  45830. extra: 1874/1729,
  45831. bottom: 27/1901
  45832. }
  45833. },
  45834. dick: {
  45835. height: math.unit(1.05, "feet"),
  45836. weight: math.unit(15, "lb"),
  45837. volume: math.unit(5/8, "gallons"),
  45838. name: "Dick",
  45839. image: {
  45840. source: "./media/characters/ludwig-horn/dick.svg"
  45841. }
  45842. },
  45843. },
  45844. [
  45845. {
  45846. name: "Small",
  45847. height: math.unit(6, "feet")
  45848. },
  45849. {
  45850. name: "Typical",
  45851. height: math.unit(12, "feet"),
  45852. default: true
  45853. },
  45854. {
  45855. name: "Building",
  45856. height: math.unit(80, "feet")
  45857. },
  45858. {
  45859. name: "Town",
  45860. height: math.unit(800, "feet")
  45861. },
  45862. {
  45863. name: "Kingdom",
  45864. height: math.unit(80000, "feet")
  45865. },
  45866. {
  45867. name: "Planet",
  45868. height: math.unit(8000000, "feet")
  45869. },
  45870. {
  45871. name: "Universe",
  45872. height: math.unit(8000000000, "feet")
  45873. },
  45874. {
  45875. name: "Transcended",
  45876. height: math.unit(8e27, "feet")
  45877. },
  45878. ]
  45879. ))
  45880. characterMakers.push(() => makeCharacter(
  45881. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45882. {
  45883. front: {
  45884. height: math.unit(5, "feet"),
  45885. weight: math.unit(50, "kg"),
  45886. name: "Front",
  45887. image: {
  45888. source: "./media/characters/biot-avery/front.svg",
  45889. extra: 1295/1232,
  45890. bottom: 86/1381
  45891. }
  45892. },
  45893. },
  45894. [
  45895. {
  45896. name: "Normal",
  45897. height: math.unit(5, "feet"),
  45898. default: true
  45899. },
  45900. ]
  45901. ))
  45902. characterMakers.push(() => makeCharacter(
  45903. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45904. {
  45905. front: {
  45906. height: math.unit(6, "feet"),
  45907. name: "Front",
  45908. image: {
  45909. source: "./media/characters/kitsune-kiro/front.svg",
  45910. extra: 1270/1158,
  45911. bottom: 42/1312
  45912. }
  45913. },
  45914. frontAlt: {
  45915. height: math.unit(6, "feet"),
  45916. name: "Front-alt",
  45917. image: {
  45918. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45919. extra: 1130/1081,
  45920. bottom: 36/1166
  45921. }
  45922. },
  45923. },
  45924. [
  45925. {
  45926. name: "Smol",
  45927. height: math.unit(3, "feet")
  45928. },
  45929. {
  45930. name: "Normal",
  45931. height: math.unit(6, "feet"),
  45932. default: true
  45933. },
  45934. ]
  45935. ))
  45936. characterMakers.push(() => makeCharacter(
  45937. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45938. {
  45939. front: {
  45940. height: math.unit(6, "feet"),
  45941. weight: math.unit(125, "lb"),
  45942. name: "Front",
  45943. image: {
  45944. source: "./media/characters/jack-thatcher/front.svg",
  45945. extra: 1474/1370,
  45946. bottom: 26/1500
  45947. }
  45948. },
  45949. back: {
  45950. height: math.unit(6, "feet"),
  45951. weight: math.unit(125, "lb"),
  45952. name: "Back",
  45953. image: {
  45954. source: "./media/characters/jack-thatcher/back.svg",
  45955. extra: 1489/1384,
  45956. bottom: 18/1507
  45957. }
  45958. },
  45959. },
  45960. [
  45961. {
  45962. name: "Normal",
  45963. height: math.unit(6, "feet"),
  45964. default: true
  45965. },
  45966. {
  45967. name: "Macro",
  45968. height: math.unit(75, "feet")
  45969. },
  45970. {
  45971. name: "Macro-er",
  45972. height: math.unit(250, "feet")
  45973. },
  45974. ]
  45975. ))
  45976. characterMakers.push(() => makeCharacter(
  45977. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45978. {
  45979. front: {
  45980. height: math.unit(7, "feet"),
  45981. weight: math.unit(110, "kg"),
  45982. name: "Front",
  45983. image: {
  45984. source: "./media/characters/max-hyper/front.svg",
  45985. extra: 1969/1881,
  45986. bottom: 49/2018
  45987. }
  45988. },
  45989. },
  45990. [
  45991. {
  45992. name: "Normal",
  45993. height: math.unit(7, "feet"),
  45994. default: true
  45995. },
  45996. ]
  45997. ))
  45998. characterMakers.push(() => makeCharacter(
  45999. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46000. {
  46001. front: {
  46002. height: math.unit(5 + 5/12, "feet"),
  46003. weight: math.unit(160, "lb"),
  46004. name: "Front",
  46005. image: {
  46006. source: "./media/characters/spook/front.svg",
  46007. extra: 794/791,
  46008. bottom: 54/848
  46009. }
  46010. },
  46011. back: {
  46012. height: math.unit(5 + 5/12, "feet"),
  46013. weight: math.unit(160, "lb"),
  46014. name: "Back",
  46015. image: {
  46016. source: "./media/characters/spook/back.svg",
  46017. extra: 812/798,
  46018. bottom: 32/844
  46019. }
  46020. },
  46021. },
  46022. [
  46023. {
  46024. name: "Normal",
  46025. height: math.unit(5 + 5/12, "feet"),
  46026. default: true
  46027. },
  46028. ]
  46029. ))
  46030. characterMakers.push(() => makeCharacter(
  46031. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46032. {
  46033. front: {
  46034. height: math.unit(18, "feet"),
  46035. name: "Front",
  46036. image: {
  46037. source: "./media/characters/xeaduulix/front.svg",
  46038. extra: 1380/1166,
  46039. bottom: 110/1490
  46040. }
  46041. },
  46042. back: {
  46043. height: math.unit(18, "feet"),
  46044. name: "Back",
  46045. image: {
  46046. source: "./media/characters/xeaduulix/back.svg",
  46047. extra: 1592/1170,
  46048. bottom: 128/1720
  46049. }
  46050. },
  46051. frontNsfw: {
  46052. height: math.unit(18, "feet"),
  46053. name: "Front (NSFW)",
  46054. image: {
  46055. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46056. extra: 1380/1166,
  46057. bottom: 110/1490
  46058. }
  46059. },
  46060. backNsfw: {
  46061. height: math.unit(18, "feet"),
  46062. name: "Back (NSFW)",
  46063. image: {
  46064. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46065. extra: 1592/1170,
  46066. bottom: 128/1720
  46067. }
  46068. },
  46069. },
  46070. [
  46071. {
  46072. name: "Normal",
  46073. height: math.unit(18, "feet"),
  46074. default: true
  46075. },
  46076. ]
  46077. ))
  46078. characterMakers.push(() => makeCharacter(
  46079. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46080. {
  46081. spreadWings: {
  46082. height: math.unit(20, "feet"),
  46083. name: "Spread Wings",
  46084. image: {
  46085. source: "./media/characters/fledge/spread-wings.svg",
  46086. extra: 693/635,
  46087. bottom: 26/719
  46088. }
  46089. },
  46090. front: {
  46091. height: math.unit(20, "feet"),
  46092. name: "Front",
  46093. image: {
  46094. source: "./media/characters/fledge/front.svg",
  46095. extra: 684/637,
  46096. bottom: 18/702
  46097. }
  46098. },
  46099. frontAlt: {
  46100. height: math.unit(20, "feet"),
  46101. name: "Front (Alt)",
  46102. image: {
  46103. source: "./media/characters/fledge/front-alt.svg",
  46104. extra: 708/664,
  46105. bottom: 13/721
  46106. }
  46107. },
  46108. back: {
  46109. height: math.unit(20, "feet"),
  46110. name: "Back",
  46111. image: {
  46112. source: "./media/characters/fledge/back.svg",
  46113. extra: 718/634,
  46114. bottom: 22/740
  46115. }
  46116. },
  46117. head: {
  46118. height: math.unit(5.55, "feet"),
  46119. name: "Head",
  46120. image: {
  46121. source: "./media/characters/fledge/head.svg"
  46122. }
  46123. },
  46124. headAlt: {
  46125. height: math.unit(5.1, "feet"),
  46126. name: "Head (Alt)",
  46127. image: {
  46128. source: "./media/characters/fledge/head-alt.svg"
  46129. }
  46130. },
  46131. },
  46132. [
  46133. {
  46134. name: "Small",
  46135. height: math.unit(6 + 2/12, "feet")
  46136. },
  46137. {
  46138. name: "Big",
  46139. height: math.unit(20, "feet"),
  46140. default: true
  46141. },
  46142. {
  46143. name: "Giant",
  46144. height: math.unit(100, "feet")
  46145. },
  46146. {
  46147. name: "Macro",
  46148. height: math.unit(200, "feet")
  46149. },
  46150. ]
  46151. ))
  46152. characterMakers.push(() => makeCharacter(
  46153. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46154. {
  46155. front: {
  46156. height: math.unit(1, "meter"),
  46157. name: "Front",
  46158. image: {
  46159. source: "./media/characters/atlas-morenai/front.svg",
  46160. extra: 1275/1043,
  46161. bottom: 19/1294
  46162. }
  46163. },
  46164. back: {
  46165. height: math.unit(1, "meter"),
  46166. name: "Back",
  46167. image: {
  46168. source: "./media/characters/atlas-morenai/back.svg",
  46169. extra: 1141/1001,
  46170. bottom: 25/1166
  46171. }
  46172. },
  46173. },
  46174. [
  46175. {
  46176. name: "Normal",
  46177. height: math.unit(1, "meter"),
  46178. default: true
  46179. },
  46180. {
  46181. name: "Magic-Infused",
  46182. height: math.unit(5, "meters")
  46183. },
  46184. ]
  46185. ))
  46186. characterMakers.push(() => makeCharacter(
  46187. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46188. {
  46189. front: {
  46190. height: math.unit(5, "meters"),
  46191. name: "Front",
  46192. image: {
  46193. source: "./media/characters/cintia/front.svg",
  46194. extra: 1312/1228,
  46195. bottom: 38/1350
  46196. }
  46197. },
  46198. back: {
  46199. height: math.unit(5, "meters"),
  46200. name: "Back",
  46201. image: {
  46202. source: "./media/characters/cintia/back.svg",
  46203. extra: 1260/1166,
  46204. bottom: 98/1358
  46205. }
  46206. },
  46207. frontDick: {
  46208. height: math.unit(5, "meters"),
  46209. name: "Front (Dick)",
  46210. image: {
  46211. source: "./media/characters/cintia/front-dick.svg",
  46212. extra: 1312/1228,
  46213. bottom: 38/1350
  46214. }
  46215. },
  46216. backDick: {
  46217. height: math.unit(5, "meters"),
  46218. name: "Back (Dick)",
  46219. image: {
  46220. source: "./media/characters/cintia/back-dick.svg",
  46221. extra: 1260/1166,
  46222. bottom: 98/1358
  46223. }
  46224. },
  46225. bust: {
  46226. height: math.unit(1.97, "meters"),
  46227. name: "Bust",
  46228. image: {
  46229. source: "./media/characters/cintia/bust.svg",
  46230. extra: 617/565,
  46231. bottom: 0/617
  46232. }
  46233. },
  46234. },
  46235. [
  46236. {
  46237. name: "Normal",
  46238. height: math.unit(5, "meters"),
  46239. default: true
  46240. },
  46241. ]
  46242. ))
  46243. characterMakers.push(() => makeCharacter(
  46244. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46245. {
  46246. side: {
  46247. height: math.unit(100, "feet"),
  46248. name: "Side",
  46249. image: {
  46250. source: "./media/characters/denora/side.svg",
  46251. extra: 875/803,
  46252. bottom: 9/884
  46253. }
  46254. },
  46255. },
  46256. [
  46257. {
  46258. name: "Standard",
  46259. height: math.unit(100, "feet"),
  46260. default: true
  46261. },
  46262. {
  46263. name: "Grand",
  46264. height: math.unit(1000, "feet")
  46265. },
  46266. {
  46267. name: "Conquering",
  46268. height: math.unit(10000, "feet")
  46269. },
  46270. ]
  46271. ))
  46272. characterMakers.push(() => makeCharacter(
  46273. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46274. {
  46275. dressed: {
  46276. height: math.unit(8 + 5/12, "feet"),
  46277. weight: math.unit(700, "lb"),
  46278. name: "Dressed",
  46279. image: {
  46280. source: "./media/characters/kiva/dressed.svg",
  46281. extra: 1102/1055,
  46282. bottom: 60/1162
  46283. }
  46284. },
  46285. nude: {
  46286. height: math.unit(8 + 5/12, "feet"),
  46287. weight: math.unit(700, "lb"),
  46288. name: "Nude",
  46289. image: {
  46290. source: "./media/characters/kiva/nude.svg",
  46291. extra: 1102/1055,
  46292. bottom: 60/1162
  46293. }
  46294. },
  46295. },
  46296. [
  46297. {
  46298. name: "Base Height",
  46299. height: math.unit(8 + 5/12, "feet"),
  46300. default: true
  46301. },
  46302. {
  46303. name: "Macro",
  46304. height: math.unit(100, "feet")
  46305. },
  46306. {
  46307. name: "Max",
  46308. height: math.unit(3280, "feet")
  46309. },
  46310. ]
  46311. ))
  46312. characterMakers.push(() => makeCharacter(
  46313. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46314. {
  46315. front: {
  46316. height: math.unit(6 + 8/12, "feet"),
  46317. weight: math.unit(250, "lb"),
  46318. name: "Front",
  46319. image: {
  46320. source: "./media/characters/ztragon/front.svg",
  46321. extra: 1825/1684,
  46322. bottom: 98/1923
  46323. }
  46324. },
  46325. },
  46326. [
  46327. {
  46328. name: "Normal",
  46329. height: math.unit(6 + 8/12, "feet"),
  46330. default: true
  46331. },
  46332. {
  46333. name: "Macro",
  46334. height: math.unit(80, "feet")
  46335. },
  46336. ]
  46337. ))
  46338. characterMakers.push(() => makeCharacter(
  46339. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46340. {
  46341. front: {
  46342. height: math.unit(10.4, "feet"),
  46343. weight: math.unit(2, "tons"),
  46344. name: "Front",
  46345. image: {
  46346. source: "./media/characters/yesenia/front.svg",
  46347. extra: 1479/1474,
  46348. bottom: 233/1712
  46349. }
  46350. },
  46351. },
  46352. [
  46353. {
  46354. name: "Normal",
  46355. height: math.unit(10.4, "feet"),
  46356. default: true
  46357. },
  46358. ]
  46359. ))
  46360. characterMakers.push(() => makeCharacter(
  46361. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46362. {
  46363. normal: {
  46364. height: math.unit(6 + 1/12, "feet"),
  46365. weight: math.unit(180, "lb"),
  46366. name: "Normal",
  46367. image: {
  46368. source: "./media/characters/leanne-lycheborne/normal.svg",
  46369. extra: 1748/1660,
  46370. bottom: 98/1846
  46371. }
  46372. },
  46373. were: {
  46374. height: math.unit(12, "feet"),
  46375. weight: math.unit(1600, "lb"),
  46376. name: "Were",
  46377. image: {
  46378. source: "./media/characters/leanne-lycheborne/were.svg",
  46379. extra: 1485/1432,
  46380. bottom: 66/1551
  46381. }
  46382. },
  46383. },
  46384. [
  46385. {
  46386. name: "Normal",
  46387. height: math.unit(6 + 1/12, "feet"),
  46388. default: true
  46389. },
  46390. ]
  46391. ))
  46392. characterMakers.push(() => makeCharacter(
  46393. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46394. {
  46395. side: {
  46396. height: math.unit(13, "feet"),
  46397. name: "Side",
  46398. image: {
  46399. source: "./media/characters/kira-tyler/side.svg",
  46400. extra: 693/393,
  46401. bottom: 58/751
  46402. }
  46403. },
  46404. },
  46405. [
  46406. {
  46407. name: "Normal",
  46408. height: math.unit(13, "feet"),
  46409. default: true
  46410. },
  46411. ]
  46412. ))
  46413. characterMakers.push(() => makeCharacter(
  46414. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46415. {
  46416. front: {
  46417. height: math.unit(10.3, "feet"),
  46418. weight: math.unit(150, "lb"),
  46419. name: "Front",
  46420. image: {
  46421. source: "./media/characters/blaze/front.svg",
  46422. extra: 1378/1286,
  46423. bottom: 172/1550
  46424. }
  46425. },
  46426. },
  46427. [
  46428. {
  46429. name: "Normal",
  46430. height: math.unit(10.3, "feet"),
  46431. default: true
  46432. },
  46433. ]
  46434. ))
  46435. characterMakers.push(() => makeCharacter(
  46436. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46437. {
  46438. side: {
  46439. height: math.unit(2, "meters"),
  46440. weight: math.unit(400, "kg"),
  46441. name: "Side",
  46442. image: {
  46443. source: "./media/characters/anu/side.svg",
  46444. extra: 506/394,
  46445. bottom: 18/524
  46446. }
  46447. },
  46448. },
  46449. [
  46450. {
  46451. name: "Humanoid",
  46452. height: math.unit(2, "meters")
  46453. },
  46454. {
  46455. name: "Normal",
  46456. height: math.unit(5, "meters"),
  46457. default: true
  46458. },
  46459. ]
  46460. ))
  46461. characterMakers.push(() => makeCharacter(
  46462. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46463. {
  46464. front: {
  46465. height: math.unit(5 + 5/12, "feet"),
  46466. weight: math.unit(170, "lb"),
  46467. name: "Front",
  46468. image: {
  46469. source: "./media/characters/synx-the-lynx/front.svg",
  46470. extra: 1893/1745,
  46471. bottom: 17/1910
  46472. }
  46473. },
  46474. side: {
  46475. height: math.unit(5 + 5/12, "feet"),
  46476. weight: math.unit(170, "lb"),
  46477. name: "Side",
  46478. image: {
  46479. source: "./media/characters/synx-the-lynx/side.svg",
  46480. extra: 1884/1740,
  46481. bottom: 39/1923
  46482. }
  46483. },
  46484. back: {
  46485. height: math.unit(5 + 5/12, "feet"),
  46486. weight: math.unit(170, "lb"),
  46487. name: "Back",
  46488. image: {
  46489. source: "./media/characters/synx-the-lynx/back.svg",
  46490. extra: 1903/1755,
  46491. bottom: 14/1917
  46492. }
  46493. },
  46494. },
  46495. [
  46496. {
  46497. name: "Normal",
  46498. height: math.unit(5 + 5/12, "feet"),
  46499. default: true
  46500. },
  46501. ]
  46502. ))
  46503. characterMakers.push(() => makeCharacter(
  46504. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46505. {
  46506. back: {
  46507. height: math.unit(15, "feet"),
  46508. name: "Back",
  46509. image: {
  46510. source: "./media/characters/nadezda-fex/back.svg",
  46511. extra: 1695/1481,
  46512. bottom: 25/1720
  46513. }
  46514. },
  46515. },
  46516. [
  46517. {
  46518. name: "Normal",
  46519. height: math.unit(15, "feet"),
  46520. default: true
  46521. },
  46522. {
  46523. name: "Macro",
  46524. height: math.unit(2.5, "miles")
  46525. },
  46526. {
  46527. name: "Goddess",
  46528. height: math.unit(2, "multiverses")
  46529. },
  46530. ]
  46531. ))
  46532. characterMakers.push(() => makeCharacter(
  46533. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46534. {
  46535. front: {
  46536. height: math.unit(216, "cm"),
  46537. name: "Front",
  46538. image: {
  46539. source: "./media/characters/lev/front.svg",
  46540. extra: 1728/1670,
  46541. bottom: 82/1810
  46542. }
  46543. },
  46544. back: {
  46545. height: math.unit(216, "cm"),
  46546. name: "Back",
  46547. image: {
  46548. source: "./media/characters/lev/back.svg",
  46549. extra: 1738/1675,
  46550. bottom: 24/1762
  46551. }
  46552. },
  46553. dressed: {
  46554. height: math.unit(216, "cm"),
  46555. name: "Dressed",
  46556. image: {
  46557. source: "./media/characters/lev/dressed.svg",
  46558. extra: 1397/1351,
  46559. bottom: 73/1470
  46560. }
  46561. },
  46562. head: {
  46563. height: math.unit(0.51, "meter"),
  46564. name: "Head",
  46565. image: {
  46566. source: "./media/characters/lev/head.svg"
  46567. }
  46568. },
  46569. },
  46570. [
  46571. {
  46572. name: "Normal",
  46573. height: math.unit(216, "cm"),
  46574. default: true
  46575. },
  46576. {
  46577. name: "Relatively Macro",
  46578. height: math.unit(80, "meters")
  46579. },
  46580. {
  46581. name: "Megamacro",
  46582. height: math.unit(21600, "meters")
  46583. },
  46584. {
  46585. name: "Megamacro+",
  46586. height: math.unit(64800, "meters")
  46587. },
  46588. ]
  46589. ))
  46590. characterMakers.push(() => makeCharacter(
  46591. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46592. {
  46593. front: {
  46594. height: math.unit(2, "meters"),
  46595. weight: math.unit(80, "kg"),
  46596. name: "Front",
  46597. image: {
  46598. source: "./media/characters/moka/front.svg",
  46599. extra: 1337/1255,
  46600. bottom: 58/1395
  46601. }
  46602. },
  46603. },
  46604. [
  46605. {
  46606. name: "Micro",
  46607. height: math.unit(15, "cm")
  46608. },
  46609. {
  46610. name: "Normal",
  46611. height: math.unit(2, "meters"),
  46612. default: true
  46613. },
  46614. {
  46615. name: "Macro",
  46616. height: math.unit(20, "meters"),
  46617. },
  46618. ]
  46619. ))
  46620. characterMakers.push(() => makeCharacter(
  46621. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46622. {
  46623. front: {
  46624. height: math.unit(9, "feet"),
  46625. weight: math.unit(240, "lb"),
  46626. name: "Front",
  46627. image: {
  46628. source: "./media/characters/kuzco/front.svg",
  46629. extra: 1593/1487,
  46630. bottom: 32/1625
  46631. }
  46632. },
  46633. side: {
  46634. height: math.unit(9, "feet"),
  46635. weight: math.unit(240, "lb"),
  46636. name: "Side",
  46637. image: {
  46638. source: "./media/characters/kuzco/side.svg",
  46639. extra: 1575/1485,
  46640. bottom: 30/1605
  46641. }
  46642. },
  46643. back: {
  46644. height: math.unit(9, "feet"),
  46645. weight: math.unit(240, "lb"),
  46646. name: "Back",
  46647. image: {
  46648. source: "./media/characters/kuzco/back.svg",
  46649. extra: 1603/1514,
  46650. bottom: 14/1617
  46651. }
  46652. },
  46653. },
  46654. [
  46655. {
  46656. name: "Normal",
  46657. height: math.unit(9, "feet"),
  46658. default: true
  46659. },
  46660. ]
  46661. ))
  46662. characterMakers.push(() => makeCharacter(
  46663. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46664. {
  46665. side: {
  46666. height: math.unit(2, "meters"),
  46667. weight: math.unit(300, "kg"),
  46668. name: "Side",
  46669. image: {
  46670. source: "./media/characters/ceruleus/side.svg",
  46671. extra: 1068/974,
  46672. bottom: 126/1194
  46673. }
  46674. },
  46675. },
  46676. [
  46677. {
  46678. name: "Normal",
  46679. height: math.unit(16, "meters"),
  46680. default: true
  46681. },
  46682. ]
  46683. ))
  46684. characterMakers.push(() => makeCharacter(
  46685. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46686. {
  46687. front: {
  46688. height: math.unit(9, "feet"),
  46689. weight: math.unit(500, "kg"),
  46690. name: "Front",
  46691. image: {
  46692. source: "./media/characters/acouya/front.svg",
  46693. extra: 1660/1473,
  46694. bottom: 28/1688
  46695. }
  46696. },
  46697. },
  46698. [
  46699. {
  46700. name: "Normal",
  46701. height: math.unit(9, "feet"),
  46702. default: true
  46703. },
  46704. ]
  46705. ))
  46706. characterMakers.push(() => makeCharacter(
  46707. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46708. {
  46709. front: {
  46710. height: math.unit(5 + 6/12, "feet"),
  46711. weight: math.unit(195, "lb"),
  46712. name: "Front",
  46713. image: {
  46714. source: "./media/characters/vant/front.svg",
  46715. extra: 1396/1320,
  46716. bottom: 20/1416
  46717. }
  46718. },
  46719. back: {
  46720. height: math.unit(5 + 6/12, "feet"),
  46721. weight: math.unit(195, "lb"),
  46722. name: "Back",
  46723. image: {
  46724. source: "./media/characters/vant/back.svg",
  46725. extra: 1396/1320,
  46726. bottom: 20/1416
  46727. }
  46728. },
  46729. maw: {
  46730. height: math.unit(0.75, "feet"),
  46731. name: "Maw",
  46732. image: {
  46733. source: "./media/characters/vant/maw.svg"
  46734. }
  46735. },
  46736. paw: {
  46737. height: math.unit(1.07, "feet"),
  46738. name: "Paw",
  46739. image: {
  46740. source: "./media/characters/vant/paw.svg"
  46741. }
  46742. },
  46743. },
  46744. [
  46745. {
  46746. name: "Micro",
  46747. height: math.unit(0.25, "inches")
  46748. },
  46749. {
  46750. name: "Normal",
  46751. height: math.unit(5 + 6/12, "feet"),
  46752. default: true
  46753. },
  46754. {
  46755. name: "Macro",
  46756. height: math.unit(75, "feet")
  46757. },
  46758. ]
  46759. ))
  46760. characterMakers.push(() => makeCharacter(
  46761. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46762. {
  46763. front: {
  46764. height: math.unit(30, "meters"),
  46765. weight: math.unit(363, "tons"),
  46766. name: "Front",
  46767. image: {
  46768. source: "./media/characters/ahra/front.svg",
  46769. extra: 1914/1814,
  46770. bottom: 46/1960
  46771. }
  46772. },
  46773. },
  46774. [
  46775. {
  46776. name: "Macro",
  46777. height: math.unit(30, "meters"),
  46778. default: true
  46779. },
  46780. ]
  46781. ))
  46782. characterMakers.push(() => makeCharacter(
  46783. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46784. {
  46785. undressed: {
  46786. height: math.unit(2, "m"),
  46787. weight: math.unit(250, "kg"),
  46788. name: "Undressed",
  46789. image: {
  46790. source: "./media/characters/coriander/undressed.svg",
  46791. extra: 1757/1606,
  46792. bottom: 107/1864
  46793. }
  46794. },
  46795. dressed: {
  46796. height: math.unit(2, "m"),
  46797. weight: math.unit(250, "kg"),
  46798. name: "Dressed",
  46799. image: {
  46800. source: "./media/characters/coriander/dressed.svg",
  46801. extra: 1757/1606,
  46802. bottom: 107/1864
  46803. }
  46804. },
  46805. },
  46806. [
  46807. {
  46808. name: "Normal",
  46809. height: math.unit(4, "meters"),
  46810. default: true
  46811. },
  46812. {
  46813. name: "XL",
  46814. height: math.unit(6, "meters")
  46815. },
  46816. {
  46817. name: "XXL",
  46818. height: math.unit(8, "meters")
  46819. },
  46820. ]
  46821. ))
  46822. characterMakers.push(() => makeCharacter(
  46823. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46824. {
  46825. front: {
  46826. height: math.unit(6, "feet"),
  46827. name: "Front",
  46828. image: {
  46829. source: "./media/characters/syrinx/front.svg",
  46830. extra: 1557/1259,
  46831. bottom: 171/1728
  46832. }
  46833. },
  46834. },
  46835. [
  46836. {
  46837. name: "Normal",
  46838. height: math.unit(6 + 3/12, "feet"),
  46839. default: true
  46840. },
  46841. ]
  46842. ))
  46843. characterMakers.push(() => makeCharacter(
  46844. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46845. {
  46846. front: {
  46847. height: math.unit(11 + 6/12, "feet"),
  46848. weight: math.unit(1.5, "tons"),
  46849. name: "Front",
  46850. image: {
  46851. source: "./media/characters/bor/front.svg",
  46852. extra: 1189/1109,
  46853. bottom: 170/1359
  46854. }
  46855. },
  46856. },
  46857. [
  46858. {
  46859. name: "Normal",
  46860. height: math.unit(11 + 6/12, "feet"),
  46861. default: true
  46862. },
  46863. {
  46864. name: "Macro",
  46865. height: math.unit(32 + 9/12, "feet")
  46866. },
  46867. ]
  46868. ))
  46869. characterMakers.push(() => makeCharacter(
  46870. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46871. {
  46872. anthro: {
  46873. height: math.unit(9, "feet"),
  46874. weight: math.unit(2076, "lb"),
  46875. name: "Anthro",
  46876. image: {
  46877. source: "./media/characters/abacus/anthro.svg",
  46878. extra: 1540/1494,
  46879. bottom: 233/1773
  46880. }
  46881. },
  46882. pigeon: {
  46883. height: math.unit(1, "feet"),
  46884. name: "Pigeon",
  46885. image: {
  46886. source: "./media/characters/abacus/pigeon.svg",
  46887. extra: 528/525,
  46888. bottom: 46/574
  46889. }
  46890. },
  46891. },
  46892. [
  46893. {
  46894. name: "Normal",
  46895. height: math.unit(9, "feet"),
  46896. default: true
  46897. },
  46898. ]
  46899. ))
  46900. characterMakers.push(() => makeCharacter(
  46901. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46902. {
  46903. side: {
  46904. height: math.unit(6, "feet"),
  46905. name: "Side",
  46906. image: {
  46907. source: "./media/characters/delkhan/side.svg",
  46908. extra: 1884/1786,
  46909. bottom: 308/2192
  46910. }
  46911. },
  46912. head: {
  46913. height: math.unit(3.38, "feet"),
  46914. name: "Head",
  46915. image: {
  46916. source: "./media/characters/delkhan/head.svg"
  46917. }
  46918. },
  46919. },
  46920. [
  46921. {
  46922. name: "Normal",
  46923. height: math.unit(72, "feet"),
  46924. default: true
  46925. },
  46926. {
  46927. name: "Giant",
  46928. height: math.unit(172, "feet")
  46929. },
  46930. ]
  46931. ))
  46932. characterMakers.push(() => makeCharacter(
  46933. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46934. {
  46935. standing: {
  46936. height: math.unit(6, "feet"),
  46937. name: "Standing",
  46938. image: {
  46939. source: "./media/characters/euchidat/standing.svg",
  46940. extra: 1612/1553,
  46941. bottom: 116/1728
  46942. }
  46943. },
  46944. leaning: {
  46945. height: math.unit(6, "feet"),
  46946. name: "Leaning",
  46947. image: {
  46948. source: "./media/characters/euchidat/leaning.svg",
  46949. extra: 1719/1674,
  46950. bottom: 27/1746
  46951. }
  46952. },
  46953. },
  46954. [
  46955. {
  46956. name: "Normal",
  46957. height: math.unit(175, "feet"),
  46958. default: true
  46959. },
  46960. {
  46961. name: "Megamacro",
  46962. height: math.unit(190, "miles")
  46963. },
  46964. {
  46965. name: "Gigamacro",
  46966. height: math.unit(190000, "miles")
  46967. },
  46968. ]
  46969. ))
  46970. characterMakers.push(() => makeCharacter(
  46971. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46972. {
  46973. front: {
  46974. height: math.unit(6, "feet"),
  46975. weight: math.unit(150, "lb"),
  46976. name: "Front",
  46977. image: {
  46978. source: "./media/characters/rebecca-stack/front.svg",
  46979. extra: 1256/1201,
  46980. bottom: 18/1274
  46981. }
  46982. },
  46983. },
  46984. [
  46985. {
  46986. name: "Normal",
  46987. height: math.unit(5 + 8/12, "feet"),
  46988. default: true
  46989. },
  46990. {
  46991. name: "Demolitionist",
  46992. height: math.unit(200, "feet")
  46993. },
  46994. {
  46995. name: "Out of Control",
  46996. height: math.unit(2, "miles")
  46997. },
  46998. {
  46999. name: "Giga",
  47000. height: math.unit(7200, "miles")
  47001. },
  47002. ]
  47003. ))
  47004. characterMakers.push(() => makeCharacter(
  47005. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47006. {
  47007. front: {
  47008. height: math.unit(6, "feet"),
  47009. weight: math.unit(150, "lb"),
  47010. name: "Front",
  47011. image: {
  47012. source: "./media/characters/jenny-cartwright/front.svg",
  47013. extra: 1384/1376,
  47014. bottom: 58/1442
  47015. }
  47016. },
  47017. },
  47018. [
  47019. {
  47020. name: "Normal",
  47021. height: math.unit(6 + 7/12, "feet"),
  47022. default: true
  47023. },
  47024. {
  47025. name: "Librarian",
  47026. height: math.unit(55, "feet")
  47027. },
  47028. {
  47029. name: "Sightseer",
  47030. height: math.unit(50, "miles")
  47031. },
  47032. {
  47033. name: "Giga",
  47034. height: math.unit(30000, "miles")
  47035. },
  47036. ]
  47037. ))
  47038. characterMakers.push(() => makeCharacter(
  47039. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47040. {
  47041. nude: {
  47042. height: math.unit(8, "feet"),
  47043. weight: math.unit(225, "lb"),
  47044. name: "Nude",
  47045. image: {
  47046. source: "./media/characters/marvy/nude.svg",
  47047. extra: 1900/1683,
  47048. bottom: 89/1989
  47049. }
  47050. },
  47051. dressed: {
  47052. height: math.unit(8, "feet"),
  47053. weight: math.unit(225, "lb"),
  47054. name: "Dressed",
  47055. image: {
  47056. source: "./media/characters/marvy/dressed.svg",
  47057. extra: 1900/1683,
  47058. bottom: 89/1989
  47059. }
  47060. },
  47061. head: {
  47062. height: math.unit(2.85, "feet"),
  47063. name: "Head",
  47064. image: {
  47065. source: "./media/characters/marvy/head.svg"
  47066. }
  47067. },
  47068. },
  47069. [
  47070. {
  47071. name: "Normal",
  47072. height: math.unit(8, "feet"),
  47073. default: true
  47074. },
  47075. ]
  47076. ))
  47077. characterMakers.push(() => makeCharacter(
  47078. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47079. {
  47080. front: {
  47081. height: math.unit(8, "feet"),
  47082. weight: math.unit(250, "lb"),
  47083. name: "Front",
  47084. image: {
  47085. source: "./media/characters/leah/front.svg",
  47086. extra: 1257/1149,
  47087. bottom: 109/1366
  47088. }
  47089. },
  47090. },
  47091. [
  47092. {
  47093. name: "Normal",
  47094. height: math.unit(8, "feet"),
  47095. default: true
  47096. },
  47097. {
  47098. name: "Minimacro",
  47099. height: math.unit(40, "feet")
  47100. },
  47101. {
  47102. name: "Macro",
  47103. height: math.unit(124, "feet")
  47104. },
  47105. {
  47106. name: "Megamacro",
  47107. height: math.unit(850, "feet")
  47108. },
  47109. ]
  47110. ))
  47111. characterMakers.push(() => makeCharacter(
  47112. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47113. {
  47114. side: {
  47115. height: math.unit(13 + 6/12, "feet"),
  47116. weight: math.unit(3200, "lb"),
  47117. name: "Side",
  47118. image: {
  47119. source: "./media/characters/alvir/side.svg",
  47120. extra: 896/589,
  47121. bottom: 26/922
  47122. }
  47123. },
  47124. },
  47125. [
  47126. {
  47127. name: "Normal",
  47128. height: math.unit(13 + 6/12, "feet"),
  47129. default: true
  47130. },
  47131. ]
  47132. ))
  47133. characterMakers.push(() => makeCharacter(
  47134. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47135. {
  47136. front: {
  47137. height: math.unit(5 + 4/12, "feet"),
  47138. weight: math.unit(236, "lb"),
  47139. name: "Front",
  47140. image: {
  47141. source: "./media/characters/zaina-khalil/front.svg",
  47142. extra: 1533/1485,
  47143. bottom: 94/1627
  47144. }
  47145. },
  47146. side: {
  47147. height: math.unit(5 + 4/12, "feet"),
  47148. weight: math.unit(236, "lb"),
  47149. name: "Side",
  47150. image: {
  47151. source: "./media/characters/zaina-khalil/side.svg",
  47152. extra: 1537/1498,
  47153. bottom: 66/1603
  47154. }
  47155. },
  47156. back: {
  47157. height: math.unit(5 + 4/12, "feet"),
  47158. weight: math.unit(236, "lb"),
  47159. name: "Back",
  47160. image: {
  47161. source: "./media/characters/zaina-khalil/back.svg",
  47162. extra: 1546/1494,
  47163. bottom: 89/1635
  47164. }
  47165. },
  47166. },
  47167. [
  47168. {
  47169. name: "Normal",
  47170. height: math.unit(5 + 4/12, "feet"),
  47171. default: true
  47172. },
  47173. ]
  47174. ))
  47175. characterMakers.push(() => makeCharacter(
  47176. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47177. {
  47178. side: {
  47179. height: math.unit(12, "feet"),
  47180. weight: math.unit(4000, "lb"),
  47181. name: "Side",
  47182. image: {
  47183. source: "./media/characters/terry/side.svg",
  47184. extra: 1518/1439,
  47185. bottom: 149/1667
  47186. }
  47187. },
  47188. },
  47189. [
  47190. {
  47191. name: "Normal",
  47192. height: math.unit(12, "feet"),
  47193. default: true
  47194. },
  47195. ]
  47196. ))
  47197. characterMakers.push(() => makeCharacter(
  47198. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47199. {
  47200. front: {
  47201. height: math.unit(12, "feet"),
  47202. weight: math.unit(1500, "lb"),
  47203. name: "Front",
  47204. image: {
  47205. source: "./media/characters/kahea/front.svg",
  47206. extra: 1722/1617,
  47207. bottom: 179/1901
  47208. }
  47209. },
  47210. },
  47211. [
  47212. {
  47213. name: "Normal",
  47214. height: math.unit(12, "feet"),
  47215. default: true
  47216. },
  47217. ]
  47218. ))
  47219. characterMakers.push(() => makeCharacter(
  47220. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47221. {
  47222. demonFront: {
  47223. height: math.unit(36, "feet"),
  47224. name: "Front",
  47225. image: {
  47226. source: "./media/characters/alex-xuria/demon-front.svg",
  47227. extra: 1705/1673,
  47228. bottom: 198/1903
  47229. },
  47230. form: "demon",
  47231. default: true
  47232. },
  47233. demonBack: {
  47234. height: math.unit(36, "feet"),
  47235. name: "Back",
  47236. image: {
  47237. source: "./media/characters/alex-xuria/demon-back.svg",
  47238. extra: 1725/1693,
  47239. bottom: 70/1795
  47240. },
  47241. form: "demon"
  47242. },
  47243. demonHead: {
  47244. height: math.unit(2.14, "meters"),
  47245. name: "Head",
  47246. image: {
  47247. source: "./media/characters/alex-xuria/demon-head.svg"
  47248. },
  47249. form: "demon"
  47250. },
  47251. demonHand: {
  47252. height: math.unit(1.61, "meters"),
  47253. name: "Hand",
  47254. image: {
  47255. source: "./media/characters/alex-xuria/demon-hand.svg"
  47256. },
  47257. form: "demon"
  47258. },
  47259. demonPaw: {
  47260. height: math.unit(1.35, "meters"),
  47261. name: "Paw",
  47262. image: {
  47263. source: "./media/characters/alex-xuria/demon-paw.svg"
  47264. },
  47265. form: "demon"
  47266. },
  47267. demonFoot: {
  47268. height: math.unit(2.2, "meters"),
  47269. name: "Foot",
  47270. image: {
  47271. source: "./media/characters/alex-xuria/demon-foot.svg"
  47272. },
  47273. form: "demon"
  47274. },
  47275. demonCock: {
  47276. height: math.unit(1.74, "meters"),
  47277. name: "Cock",
  47278. image: {
  47279. source: "./media/characters/alex-xuria/demon-cock.svg"
  47280. },
  47281. form: "demon"
  47282. },
  47283. demonTailClosed: {
  47284. height: math.unit(1.47, "meters"),
  47285. name: "Tail (Closed)",
  47286. image: {
  47287. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47288. },
  47289. form: "demon"
  47290. },
  47291. demonTailOpen: {
  47292. height: math.unit(2.85, "meters"),
  47293. name: "Tail (Open)",
  47294. image: {
  47295. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47296. },
  47297. form: "demon"
  47298. },
  47299. incubusFront: {
  47300. height: math.unit(12, "feet"),
  47301. name: "Front",
  47302. image: {
  47303. source: "./media/characters/alex-xuria/incubus-front.svg",
  47304. extra: 1754/1677,
  47305. bottom: 125/1879
  47306. },
  47307. form: "incubus",
  47308. default: true
  47309. },
  47310. incubusBack: {
  47311. height: math.unit(12, "feet"),
  47312. name: "Back",
  47313. image: {
  47314. source: "./media/characters/alex-xuria/incubus-back.svg",
  47315. extra: 1702/1647,
  47316. bottom: 30/1732
  47317. },
  47318. form: "incubus"
  47319. },
  47320. incubusHead: {
  47321. height: math.unit(3.45, "feet"),
  47322. name: "Head",
  47323. image: {
  47324. source: "./media/characters/alex-xuria/incubus-head.svg"
  47325. },
  47326. form: "incubus"
  47327. },
  47328. rabbitFront: {
  47329. height: math.unit(6, "feet"),
  47330. name: "Front",
  47331. image: {
  47332. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47333. extra: 1369/1349,
  47334. bottom: 45/1414
  47335. },
  47336. form: "rabbit",
  47337. default: true
  47338. },
  47339. rabbitSide: {
  47340. height: math.unit(6, "feet"),
  47341. name: "Side",
  47342. image: {
  47343. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47344. extra: 1370/1356,
  47345. bottom: 37/1407
  47346. },
  47347. form: "rabbit"
  47348. },
  47349. rabbitBack: {
  47350. height: math.unit(6, "feet"),
  47351. name: "Back",
  47352. image: {
  47353. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47354. extra: 1375/1358,
  47355. bottom: 43/1418
  47356. },
  47357. form: "rabbit"
  47358. },
  47359. },
  47360. [
  47361. {
  47362. name: "Normal",
  47363. height: math.unit(6, "feet"),
  47364. default: true,
  47365. form: "rabbit"
  47366. },
  47367. {
  47368. name: "Incubus",
  47369. height: math.unit(12, "feet"),
  47370. default: true,
  47371. form: "incubus"
  47372. },
  47373. {
  47374. name: "Demon",
  47375. height: math.unit(36, "feet"),
  47376. default: true,
  47377. form: "demon"
  47378. }
  47379. ],
  47380. {
  47381. "demon": {
  47382. name: "Demon",
  47383. default: true
  47384. },
  47385. "incubus": {
  47386. name: "Incubus",
  47387. },
  47388. "rabbit": {
  47389. name: "Rabbit"
  47390. }
  47391. }
  47392. ))
  47393. characterMakers.push(() => makeCharacter(
  47394. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47395. {
  47396. front: {
  47397. height: math.unit(7 + 5/12, "feet"),
  47398. weight: math.unit(510, "lb"),
  47399. name: "Front",
  47400. image: {
  47401. source: "./media/characters/syrup/front.svg",
  47402. extra: 932/916,
  47403. bottom: 26/958
  47404. }
  47405. },
  47406. },
  47407. [
  47408. {
  47409. name: "Normal",
  47410. height: math.unit(7 + 5/12, "feet"),
  47411. default: true
  47412. },
  47413. {
  47414. name: "Big",
  47415. height: math.unit(50, "feet")
  47416. },
  47417. {
  47418. name: "Macro",
  47419. height: math.unit(300, "feet")
  47420. },
  47421. {
  47422. name: "Megamacro",
  47423. height: math.unit(1, "mile")
  47424. },
  47425. ]
  47426. ))
  47427. characterMakers.push(() => makeCharacter(
  47428. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47429. {
  47430. front: {
  47431. height: math.unit(6 + 9/12, "feet"),
  47432. name: "Front",
  47433. image: {
  47434. source: "./media/characters/zeimne/front.svg",
  47435. extra: 1969/1806,
  47436. bottom: 53/2022
  47437. }
  47438. },
  47439. },
  47440. [
  47441. {
  47442. name: "Normal",
  47443. height: math.unit(6 + 9/12, "feet"),
  47444. default: true
  47445. },
  47446. {
  47447. name: "Giant",
  47448. height: math.unit(550, "feet")
  47449. },
  47450. {
  47451. name: "Mega",
  47452. height: math.unit(3, "miles")
  47453. },
  47454. {
  47455. name: "Giga",
  47456. height: math.unit(250, "miles")
  47457. },
  47458. {
  47459. name: "Tera",
  47460. height: math.unit(1, "AU")
  47461. },
  47462. ]
  47463. ))
  47464. characterMakers.push(() => makeCharacter(
  47465. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47466. {
  47467. front: {
  47468. height: math.unit(5 + 2/12, "feet"),
  47469. name: "Front",
  47470. image: {
  47471. source: "./media/characters/grar/front.svg",
  47472. extra: 1331/1119,
  47473. bottom: 60/1391
  47474. }
  47475. },
  47476. back: {
  47477. height: math.unit(5 + 2/12, "feet"),
  47478. name: "Back",
  47479. image: {
  47480. source: "./media/characters/grar/back.svg",
  47481. extra: 1385/1169,
  47482. bottom: 23/1408
  47483. }
  47484. },
  47485. },
  47486. [
  47487. {
  47488. name: "Normal",
  47489. height: math.unit(5 + 2/12, "feet"),
  47490. default: true
  47491. },
  47492. ]
  47493. ))
  47494. characterMakers.push(() => makeCharacter(
  47495. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47496. {
  47497. front: {
  47498. height: math.unit(13 + 7/12, "feet"),
  47499. weight: math.unit(2200, "lb"),
  47500. name: "Front",
  47501. image: {
  47502. source: "./media/characters/endraya/front.svg",
  47503. extra: 1289/1215,
  47504. bottom: 50/1339
  47505. }
  47506. },
  47507. nude: {
  47508. height: math.unit(13 + 7/12, "feet"),
  47509. weight: math.unit(2200, "lb"),
  47510. name: "Nude",
  47511. image: {
  47512. source: "./media/characters/endraya/nude.svg",
  47513. extra: 1247/1171,
  47514. bottom: 40/1287
  47515. }
  47516. },
  47517. head: {
  47518. height: math.unit(2.6, "feet"),
  47519. name: "Head",
  47520. image: {
  47521. source: "./media/characters/endraya/head.svg"
  47522. }
  47523. },
  47524. slit: {
  47525. height: math.unit(3.4, "feet"),
  47526. name: "Slit",
  47527. image: {
  47528. source: "./media/characters/endraya/slit.svg"
  47529. }
  47530. },
  47531. },
  47532. [
  47533. {
  47534. name: "Normal",
  47535. height: math.unit(13 + 7/12, "feet"),
  47536. default: true
  47537. },
  47538. {
  47539. name: "Macro",
  47540. height: math.unit(200, "feet")
  47541. },
  47542. ]
  47543. ))
  47544. characterMakers.push(() => makeCharacter(
  47545. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47546. {
  47547. front: {
  47548. height: math.unit(1.81, "meters"),
  47549. weight: math.unit(69, "kg"),
  47550. name: "Front",
  47551. image: {
  47552. source: "./media/characters/rodryana/front.svg",
  47553. extra: 2002/1921,
  47554. bottom: 53/2055
  47555. }
  47556. },
  47557. back: {
  47558. height: math.unit(1.81, "meters"),
  47559. weight: math.unit(69, "kg"),
  47560. name: "Back",
  47561. image: {
  47562. source: "./media/characters/rodryana/back.svg",
  47563. extra: 1993/1926,
  47564. bottom: 48/2041
  47565. }
  47566. },
  47567. maw: {
  47568. height: math.unit(0.19769417475, "meters"),
  47569. name: "Maw",
  47570. image: {
  47571. source: "./media/characters/rodryana/maw.svg"
  47572. }
  47573. },
  47574. slit: {
  47575. height: math.unit(0.31631067961, "meters"),
  47576. name: "Slit",
  47577. image: {
  47578. source: "./media/characters/rodryana/slit.svg"
  47579. }
  47580. },
  47581. },
  47582. [
  47583. {
  47584. name: "Normal",
  47585. height: math.unit(1.81, "meters")
  47586. },
  47587. {
  47588. name: "Mini Macro",
  47589. height: math.unit(181, "meters")
  47590. },
  47591. {
  47592. name: "Macro",
  47593. height: math.unit(452, "meters"),
  47594. default: true
  47595. },
  47596. {
  47597. name: "Mega Macro",
  47598. height: math.unit(1.375, "km")
  47599. },
  47600. {
  47601. name: "Giga Macro",
  47602. height: math.unit(13.575, "km")
  47603. },
  47604. ]
  47605. ))
  47606. characterMakers.push(() => makeCharacter(
  47607. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47608. {
  47609. front: {
  47610. height: math.unit(6, "feet"),
  47611. weight: math.unit(1000, "lb"),
  47612. name: "Front",
  47613. image: {
  47614. source: "./media/characters/asaya/front.svg",
  47615. extra: 1460/1200,
  47616. bottom: 71/1531
  47617. }
  47618. },
  47619. },
  47620. [
  47621. {
  47622. name: "Normal",
  47623. height: math.unit(8, "km"),
  47624. default: true
  47625. },
  47626. ]
  47627. ))
  47628. characterMakers.push(() => makeCharacter(
  47629. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47630. {
  47631. front: {
  47632. height: math.unit(3.5, "meters"),
  47633. name: "Front",
  47634. image: {
  47635. source: "./media/characters/sarzu-and-israz/front.svg",
  47636. extra: 1570/1558,
  47637. bottom: 150/1720
  47638. },
  47639. },
  47640. back: {
  47641. height: math.unit(3.5, "meters"),
  47642. name: "Back",
  47643. image: {
  47644. source: "./media/characters/sarzu-and-israz/back.svg",
  47645. extra: 1523/1509,
  47646. bottom: 132/1655
  47647. },
  47648. },
  47649. frontFemale: {
  47650. height: math.unit(3.5, "meters"),
  47651. name: "Front (Female)",
  47652. image: {
  47653. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47654. extra: 1570/1558,
  47655. bottom: 150/1720
  47656. },
  47657. },
  47658. frontHerm: {
  47659. height: math.unit(3.5, "meters"),
  47660. name: "Front (Herm)",
  47661. image: {
  47662. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47663. extra: 1570/1558,
  47664. bottom: 150/1720
  47665. },
  47666. },
  47667. },
  47668. [
  47669. {
  47670. name: "Normal",
  47671. height: math.unit(3.5, "meters"),
  47672. default: true,
  47673. },
  47674. {
  47675. name: "Macro",
  47676. height: math.unit(65.5, "meters"),
  47677. },
  47678. ],
  47679. ))
  47680. characterMakers.push(() => makeCharacter(
  47681. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47682. {
  47683. front: {
  47684. height: math.unit(6, "feet"),
  47685. weight: math.unit(250, "lb"),
  47686. name: "Front",
  47687. image: {
  47688. source: "./media/characters/zenimma/front.svg",
  47689. extra: 1346/1320,
  47690. bottom: 58/1404
  47691. }
  47692. },
  47693. back: {
  47694. height: math.unit(6, "feet"),
  47695. weight: math.unit(250, "lb"),
  47696. name: "Back",
  47697. image: {
  47698. source: "./media/characters/zenimma/back.svg",
  47699. extra: 1324/1308,
  47700. bottom: 44/1368
  47701. }
  47702. },
  47703. dick: {
  47704. height: math.unit(1.44, "feet"),
  47705. name: "Dick",
  47706. image: {
  47707. source: "./media/characters/zenimma/dick.svg"
  47708. }
  47709. },
  47710. },
  47711. [
  47712. {
  47713. name: "Canon Height",
  47714. height: math.unit(66, "miles"),
  47715. default: true
  47716. },
  47717. ]
  47718. ))
  47719. characterMakers.push(() => makeCharacter(
  47720. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47721. {
  47722. nude: {
  47723. height: math.unit(6, "feet"),
  47724. weight: math.unit(150, "lb"),
  47725. name: "Nude",
  47726. image: {
  47727. source: "./media/characters/shavon/nude.svg",
  47728. extra: 1242/1096,
  47729. bottom: 98/1340
  47730. }
  47731. },
  47732. dressed: {
  47733. height: math.unit(6, "feet"),
  47734. weight: math.unit(150, "lb"),
  47735. name: "Dressed",
  47736. image: {
  47737. source: "./media/characters/shavon/dressed.svg",
  47738. extra: 1242/1096,
  47739. bottom: 98/1340
  47740. }
  47741. },
  47742. },
  47743. [
  47744. {
  47745. name: "Macro",
  47746. height: math.unit(255, "feet"),
  47747. default: true
  47748. },
  47749. ]
  47750. ))
  47751. characterMakers.push(() => makeCharacter(
  47752. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47753. {
  47754. front: {
  47755. height: math.unit(6, "feet"),
  47756. name: "Front",
  47757. image: {
  47758. source: "./media/characters/steph/front.svg",
  47759. extra: 1430/1330,
  47760. bottom: 54/1484
  47761. }
  47762. },
  47763. },
  47764. [
  47765. {
  47766. name: "Normal",
  47767. height: math.unit(6, "feet"),
  47768. default: true
  47769. },
  47770. ]
  47771. ))
  47772. characterMakers.push(() => makeCharacter(
  47773. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47774. {
  47775. front: {
  47776. height: math.unit(9, "feet"),
  47777. weight: math.unit(400, "lb"),
  47778. name: "Front",
  47779. image: {
  47780. source: "./media/characters/kil'aman/front.svg",
  47781. extra: 1210/1159,
  47782. bottom: 109/1319
  47783. }
  47784. },
  47785. head: {
  47786. height: math.unit(2.14, "feet"),
  47787. name: "Head",
  47788. image: {
  47789. source: "./media/characters/kil'aman/head.svg"
  47790. }
  47791. },
  47792. maw: {
  47793. height: math.unit(1.21, "feet"),
  47794. name: "Maw",
  47795. image: {
  47796. source: "./media/characters/kil'aman/maw.svg"
  47797. }
  47798. },
  47799. foot: {
  47800. height: math.unit(1.7, "feet"),
  47801. name: "Foot",
  47802. image: {
  47803. source: "./media/characters/kil'aman/foot.svg"
  47804. }
  47805. },
  47806. dick: {
  47807. height: math.unit(2.1, "feet"),
  47808. name: "Dick",
  47809. image: {
  47810. source: "./media/characters/kil'aman/dick.svg"
  47811. }
  47812. },
  47813. },
  47814. [
  47815. {
  47816. name: "Normal",
  47817. height: math.unit(9, "feet")
  47818. },
  47819. {
  47820. name: "Canon Height",
  47821. height: math.unit(10, "miles"),
  47822. default: true
  47823. },
  47824. {
  47825. name: "Maximum",
  47826. height: math.unit(6e9, "miles")
  47827. },
  47828. ]
  47829. ))
  47830. characterMakers.push(() => makeCharacter(
  47831. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47832. {
  47833. front: {
  47834. height: math.unit(90, "feet"),
  47835. weight: math.unit(675000, "lb"),
  47836. name: "Front",
  47837. image: {
  47838. source: "./media/characters/qadan/front.svg",
  47839. extra: 1012/1004,
  47840. bottom: 78/1090
  47841. }
  47842. },
  47843. back: {
  47844. height: math.unit(90, "feet"),
  47845. weight: math.unit(675000, "lb"),
  47846. name: "Back",
  47847. image: {
  47848. source: "./media/characters/qadan/back.svg",
  47849. extra: 1042/1031,
  47850. bottom: 55/1097
  47851. }
  47852. },
  47853. armored: {
  47854. height: math.unit(90, "feet"),
  47855. weight: math.unit(675000, "lb"),
  47856. name: "Armored",
  47857. image: {
  47858. source: "./media/characters/qadan/armored.svg",
  47859. extra: 1047/1037,
  47860. bottom: 48/1095
  47861. }
  47862. },
  47863. },
  47864. [
  47865. {
  47866. name: "Normal",
  47867. height: math.unit(90, "feet"),
  47868. default: true
  47869. },
  47870. ]
  47871. ))
  47872. characterMakers.push(() => makeCharacter(
  47873. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47874. {
  47875. front: {
  47876. height: math.unit(6, "feet"),
  47877. weight: math.unit(225, "lb"),
  47878. name: "Front",
  47879. image: {
  47880. source: "./media/characters/brooke/front.svg",
  47881. extra: 1050/1010,
  47882. bottom: 66/1116
  47883. }
  47884. },
  47885. back: {
  47886. height: math.unit(6, "feet"),
  47887. weight: math.unit(225, "lb"),
  47888. name: "Back",
  47889. image: {
  47890. source: "./media/characters/brooke/back.svg",
  47891. extra: 1053/1013,
  47892. bottom: 41/1094
  47893. }
  47894. },
  47895. dressed: {
  47896. height: math.unit(6, "feet"),
  47897. weight: math.unit(225, "lb"),
  47898. name: "Dressed",
  47899. image: {
  47900. source: "./media/characters/brooke/dressed.svg",
  47901. extra: 1050/1010,
  47902. bottom: 66/1116
  47903. }
  47904. },
  47905. },
  47906. [
  47907. {
  47908. name: "Canon Height",
  47909. height: math.unit(500, "miles"),
  47910. default: true
  47911. },
  47912. ]
  47913. ))
  47914. characterMakers.push(() => makeCharacter(
  47915. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47916. {
  47917. front: {
  47918. height: math.unit(6 + 2/12, "feet"),
  47919. weight: math.unit(210, "lb"),
  47920. name: "Front",
  47921. image: {
  47922. source: "./media/characters/wubs/front.svg",
  47923. extra: 1345/1325,
  47924. bottom: 70/1415
  47925. }
  47926. },
  47927. back: {
  47928. height: math.unit(6 + 2/12, "feet"),
  47929. weight: math.unit(210, "lb"),
  47930. name: "Back",
  47931. image: {
  47932. source: "./media/characters/wubs/back.svg",
  47933. extra: 1296/1275,
  47934. bottom: 58/1354
  47935. }
  47936. },
  47937. },
  47938. [
  47939. {
  47940. name: "Normal",
  47941. height: math.unit(6 + 2/12, "feet"),
  47942. default: true
  47943. },
  47944. {
  47945. name: "Macro",
  47946. height: math.unit(1000, "feet")
  47947. },
  47948. {
  47949. name: "Megamacro",
  47950. height: math.unit(1, "mile")
  47951. },
  47952. ]
  47953. ))
  47954. characterMakers.push(() => makeCharacter(
  47955. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47956. {
  47957. front: {
  47958. height: math.unit(4, "feet"),
  47959. weight: math.unit(120, "lb"),
  47960. name: "Front",
  47961. image: {
  47962. source: "./media/characters/blue/front.svg",
  47963. extra: 1636/1525,
  47964. bottom: 43/1679
  47965. }
  47966. },
  47967. back: {
  47968. height: math.unit(4, "feet"),
  47969. weight: math.unit(120, "lb"),
  47970. name: "Back",
  47971. image: {
  47972. source: "./media/characters/blue/back.svg",
  47973. extra: 1660/1560,
  47974. bottom: 57/1717
  47975. }
  47976. },
  47977. paws: {
  47978. height: math.unit(0.826, "feet"),
  47979. name: "Paws",
  47980. image: {
  47981. source: "./media/characters/blue/paws.svg"
  47982. }
  47983. },
  47984. },
  47985. [
  47986. {
  47987. name: "Micro",
  47988. height: math.unit(3, "inches")
  47989. },
  47990. {
  47991. name: "Normal",
  47992. height: math.unit(4, "feet"),
  47993. default: true
  47994. },
  47995. {
  47996. name: "Femenine Form",
  47997. height: math.unit(14, "feet")
  47998. },
  47999. {
  48000. name: "Werebat Form",
  48001. height: math.unit(18, "feet")
  48002. },
  48003. ]
  48004. ))
  48005. characterMakers.push(() => makeCharacter(
  48006. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48007. {
  48008. female: {
  48009. height: math.unit(7 + 4/12, "feet"),
  48010. weight: math.unit(243, "lb"),
  48011. name: "Female",
  48012. image: {
  48013. source: "./media/characters/kaya/female.svg",
  48014. extra: 975/898,
  48015. bottom: 34/1009
  48016. }
  48017. },
  48018. herm: {
  48019. height: math.unit(7 + 4/12, "feet"),
  48020. weight: math.unit(243, "lb"),
  48021. name: "Herm",
  48022. image: {
  48023. source: "./media/characters/kaya/herm.svg",
  48024. extra: 975/898,
  48025. bottom: 34/1009
  48026. }
  48027. },
  48028. },
  48029. [
  48030. {
  48031. name: "Normal",
  48032. height: math.unit(7 + 4/12, "feet"),
  48033. default: true
  48034. },
  48035. ]
  48036. ))
  48037. characterMakers.push(() => makeCharacter(
  48038. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48039. {
  48040. female: {
  48041. height: math.unit(9 + 4/12, "feet"),
  48042. weight: math.unit(398, "lb"),
  48043. name: "Female",
  48044. image: {
  48045. source: "./media/characters/kassandra/female.svg",
  48046. extra: 908/839,
  48047. bottom: 61/969
  48048. }
  48049. },
  48050. intersex: {
  48051. height: math.unit(9 + 4/12, "feet"),
  48052. weight: math.unit(398, "lb"),
  48053. name: "Intersex",
  48054. image: {
  48055. source: "./media/characters/kassandra/intersex.svg",
  48056. extra: 908/839,
  48057. bottom: 61/969
  48058. }
  48059. },
  48060. },
  48061. [
  48062. {
  48063. name: "Normal",
  48064. height: math.unit(9 + 4/12, "feet"),
  48065. default: true
  48066. },
  48067. ]
  48068. ))
  48069. characterMakers.push(() => makeCharacter(
  48070. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48071. {
  48072. front: {
  48073. height: math.unit(3, "meters"),
  48074. name: "Front",
  48075. image: {
  48076. source: "./media/characters/amy/front.svg",
  48077. extra: 1380/1343,
  48078. bottom: 70/1450
  48079. }
  48080. },
  48081. back: {
  48082. height: math.unit(3, "meters"),
  48083. name: "Back",
  48084. image: {
  48085. source: "./media/characters/amy/back.svg",
  48086. extra: 1380/1347,
  48087. bottom: 66/1446
  48088. }
  48089. },
  48090. },
  48091. [
  48092. {
  48093. name: "Normal",
  48094. height: math.unit(3, "meters"),
  48095. default: true
  48096. },
  48097. ]
  48098. ))
  48099. characterMakers.push(() => makeCharacter(
  48100. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48101. {
  48102. side: {
  48103. height: math.unit(47, "cm"),
  48104. weight: math.unit(10.8, "kg"),
  48105. name: "Side",
  48106. image: {
  48107. source: "./media/characters/alphaschakal/side.svg",
  48108. extra: 1058/568,
  48109. bottom: 62/1120
  48110. }
  48111. },
  48112. back: {
  48113. height: math.unit(78, "cm"),
  48114. weight: math.unit(10.8, "kg"),
  48115. name: "Back",
  48116. image: {
  48117. source: "./media/characters/alphaschakal/back.svg",
  48118. extra: 1102/942,
  48119. bottom: 185/1287
  48120. }
  48121. },
  48122. head: {
  48123. height: math.unit(28, "cm"),
  48124. name: "Head",
  48125. image: {
  48126. source: "./media/characters/alphaschakal/head.svg",
  48127. extra: 696/508,
  48128. bottom: 0/696
  48129. }
  48130. },
  48131. paw: {
  48132. height: math.unit(16, "cm"),
  48133. name: "Paw",
  48134. image: {
  48135. source: "./media/characters/alphaschakal/paw.svg"
  48136. }
  48137. },
  48138. },
  48139. [
  48140. {
  48141. name: "Normal",
  48142. height: math.unit(47, "cm"),
  48143. default: true
  48144. },
  48145. {
  48146. name: "Macro",
  48147. height: math.unit(340, "cm")
  48148. },
  48149. ]
  48150. ))
  48151. characterMakers.push(() => makeCharacter(
  48152. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48153. {
  48154. front: {
  48155. height: math.unit(36, "earths"),
  48156. name: "Front",
  48157. image: {
  48158. source: "./media/characters/ecobyss/front.svg",
  48159. extra: 1282/1215,
  48160. bottom: 11/1293
  48161. }
  48162. },
  48163. back: {
  48164. height: math.unit(36, "earths"),
  48165. name: "Back",
  48166. image: {
  48167. source: "./media/characters/ecobyss/back.svg",
  48168. extra: 1291/1222,
  48169. bottom: 8/1299
  48170. }
  48171. },
  48172. },
  48173. [
  48174. {
  48175. name: "Normal",
  48176. height: math.unit(36, "earths"),
  48177. default: true
  48178. },
  48179. ]
  48180. ))
  48181. characterMakers.push(() => makeCharacter(
  48182. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48183. {
  48184. front: {
  48185. height: math.unit(12, "feet"),
  48186. name: "Front",
  48187. image: {
  48188. source: "./media/characters/vasuk/front.svg",
  48189. extra: 1326/1207,
  48190. bottom: 64/1390
  48191. }
  48192. },
  48193. },
  48194. [
  48195. {
  48196. name: "Normal",
  48197. height: math.unit(12, "feet"),
  48198. default: true
  48199. },
  48200. ]
  48201. ))
  48202. characterMakers.push(() => makeCharacter(
  48203. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48204. {
  48205. side: {
  48206. height: math.unit(100, "feet"),
  48207. name: "Side",
  48208. image: {
  48209. source: "./media/characters/linneaus/side.svg",
  48210. extra: 987/807,
  48211. bottom: 47/1034
  48212. }
  48213. },
  48214. },
  48215. [
  48216. {
  48217. name: "Macro",
  48218. height: math.unit(100, "feet"),
  48219. default: true
  48220. },
  48221. ]
  48222. ))
  48223. characterMakers.push(() => makeCharacter(
  48224. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48225. {
  48226. front: {
  48227. height: math.unit(8, "feet"),
  48228. weight: math.unit(1200, "lb"),
  48229. name: "Front",
  48230. image: {
  48231. source: "./media/characters/nyterious-daligdig/front.svg",
  48232. extra: 1284/1094,
  48233. bottom: 84/1368
  48234. }
  48235. },
  48236. back: {
  48237. height: math.unit(8, "feet"),
  48238. weight: math.unit(1200, "lb"),
  48239. name: "Back",
  48240. image: {
  48241. source: "./media/characters/nyterious-daligdig/back.svg",
  48242. extra: 1301/1121,
  48243. bottom: 129/1430
  48244. }
  48245. },
  48246. mouth: {
  48247. height: math.unit(1.464, "feet"),
  48248. name: "Mouth",
  48249. image: {
  48250. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48251. }
  48252. },
  48253. },
  48254. [
  48255. {
  48256. name: "Small",
  48257. height: math.unit(8, "feet"),
  48258. default: true
  48259. },
  48260. {
  48261. name: "Normal",
  48262. height: math.unit(15, "feet")
  48263. },
  48264. {
  48265. name: "Macro",
  48266. height: math.unit(90, "feet")
  48267. },
  48268. ]
  48269. ))
  48270. characterMakers.push(() => makeCharacter(
  48271. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48272. {
  48273. front: {
  48274. height: math.unit(7 + 4/12, "feet"),
  48275. weight: math.unit(252, "lb"),
  48276. name: "Front",
  48277. image: {
  48278. source: "./media/characters/bandel/front.svg",
  48279. extra: 1946/1775,
  48280. bottom: 26/1972
  48281. }
  48282. },
  48283. back: {
  48284. height: math.unit(7 + 4/12, "feet"),
  48285. weight: math.unit(252, "lb"),
  48286. name: "Back",
  48287. image: {
  48288. source: "./media/characters/bandel/back.svg",
  48289. extra: 1940/1770,
  48290. bottom: 25/1965
  48291. }
  48292. },
  48293. maw: {
  48294. height: math.unit(2.15, "feet"),
  48295. name: "Maw",
  48296. image: {
  48297. source: "./media/characters/bandel/maw.svg"
  48298. }
  48299. },
  48300. stomach: {
  48301. height: math.unit(1.95, "feet"),
  48302. name: "Stomach",
  48303. image: {
  48304. source: "./media/characters/bandel/stomach.svg"
  48305. }
  48306. },
  48307. },
  48308. [
  48309. {
  48310. name: "Normal",
  48311. height: math.unit(7 + 4/12, "feet"),
  48312. default: true
  48313. },
  48314. ]
  48315. ))
  48316. characterMakers.push(() => makeCharacter(
  48317. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48318. {
  48319. front: {
  48320. height: math.unit(10 + 5/12, "feet"),
  48321. weight: math.unit(773.5, "kg"),
  48322. name: "Front",
  48323. image: {
  48324. source: "./media/characters/zed/front.svg",
  48325. extra: 987/941,
  48326. bottom: 52/1039
  48327. }
  48328. },
  48329. },
  48330. [
  48331. {
  48332. name: "Short",
  48333. height: math.unit(5 + 4/12, "feet")
  48334. },
  48335. {
  48336. name: "Average",
  48337. height: math.unit(10 + 5/12, "feet"),
  48338. default: true
  48339. },
  48340. {
  48341. name: "Mini-Macro",
  48342. height: math.unit(24 + 9/12, "feet")
  48343. },
  48344. {
  48345. name: "Macro",
  48346. height: math.unit(249, "feet")
  48347. },
  48348. {
  48349. name: "Mega-Macro",
  48350. height: math.unit(12490, "feet")
  48351. },
  48352. {
  48353. name: "Giga-Macro",
  48354. height: math.unit(24.9, "miles")
  48355. },
  48356. {
  48357. name: "Tera-Macro",
  48358. height: math.unit(24900, "miles")
  48359. },
  48360. {
  48361. name: "Cosmic Scale",
  48362. height: math.unit(38.9, "lightyears")
  48363. },
  48364. {
  48365. name: "Universal Scale",
  48366. height: math.unit(138e12, "lightyears")
  48367. },
  48368. ]
  48369. ))
  48370. characterMakers.push(() => makeCharacter(
  48371. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48372. {
  48373. front: {
  48374. height: math.unit(1561, "inches"),
  48375. name: "Front",
  48376. image: {
  48377. source: "./media/characters/ivan/front.svg",
  48378. extra: 1126/1071,
  48379. bottom: 26/1152
  48380. }
  48381. },
  48382. back: {
  48383. height: math.unit(1561, "inches"),
  48384. name: "Back",
  48385. image: {
  48386. source: "./media/characters/ivan/back.svg",
  48387. extra: 1134/1079,
  48388. bottom: 30/1164
  48389. }
  48390. },
  48391. },
  48392. [
  48393. {
  48394. name: "Normal",
  48395. height: math.unit(1561, "inches"),
  48396. default: true
  48397. },
  48398. ]
  48399. ))
  48400. characterMakers.push(() => makeCharacter(
  48401. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48402. {
  48403. front: {
  48404. height: math.unit(5 + 7/12, "feet"),
  48405. weight: math.unit(150, "lb"),
  48406. name: "Front",
  48407. image: {
  48408. source: "./media/characters/robin-arctic-hare/front.svg",
  48409. extra: 1148/974,
  48410. bottom: 20/1168
  48411. }
  48412. },
  48413. },
  48414. [
  48415. {
  48416. name: "Normal",
  48417. height: math.unit(5 + 7/12, "feet"),
  48418. default: true
  48419. },
  48420. ]
  48421. ))
  48422. characterMakers.push(() => makeCharacter(
  48423. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48424. {
  48425. side: {
  48426. height: math.unit(5, "feet"),
  48427. name: "Side",
  48428. image: {
  48429. source: "./media/characters/birch/side.svg",
  48430. extra: 985/796,
  48431. bottom: 111/1096
  48432. }
  48433. },
  48434. },
  48435. [
  48436. {
  48437. name: "Normal",
  48438. height: math.unit(5, "feet"),
  48439. default: true
  48440. },
  48441. ]
  48442. ))
  48443. characterMakers.push(() => makeCharacter(
  48444. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48445. {
  48446. front: {
  48447. height: math.unit(4, "feet"),
  48448. name: "Front",
  48449. image: {
  48450. source: "./media/characters/rasp/front.svg",
  48451. extra: 561/478,
  48452. bottom: 74/635
  48453. }
  48454. },
  48455. },
  48456. [
  48457. {
  48458. name: "Normal",
  48459. height: math.unit(4, "feet"),
  48460. default: true
  48461. },
  48462. ]
  48463. ))
  48464. characterMakers.push(() => makeCharacter(
  48465. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48466. {
  48467. front: {
  48468. height: math.unit(4 + 6/12, "feet"),
  48469. name: "Front",
  48470. image: {
  48471. source: "./media/characters/agatha/front.svg",
  48472. extra: 947/933,
  48473. bottom: 42/989
  48474. }
  48475. },
  48476. back: {
  48477. height: math.unit(4 + 6/12, "feet"),
  48478. name: "Back",
  48479. image: {
  48480. source: "./media/characters/agatha/back.svg",
  48481. extra: 935/922,
  48482. bottom: 48/983
  48483. }
  48484. },
  48485. },
  48486. [
  48487. {
  48488. name: "Normal",
  48489. height: math.unit(4 + 6 /12, "feet"),
  48490. default: true
  48491. },
  48492. {
  48493. name: "Max Size",
  48494. height: math.unit(500, "feet")
  48495. },
  48496. ]
  48497. ))
  48498. characterMakers.push(() => makeCharacter(
  48499. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48500. {
  48501. side: {
  48502. height: math.unit(30, "feet"),
  48503. name: "Side",
  48504. image: {
  48505. source: "./media/characters/roggy/side.svg",
  48506. extra: 909/643,
  48507. bottom: 63/972
  48508. }
  48509. },
  48510. lounging: {
  48511. height: math.unit(20, "feet"),
  48512. name: "Lounging",
  48513. image: {
  48514. source: "./media/characters/roggy/lounging.svg",
  48515. extra: 643/479,
  48516. bottom: 145/788
  48517. }
  48518. },
  48519. handpaw: {
  48520. height: math.unit(13.1, "feet"),
  48521. name: "Handpaw",
  48522. image: {
  48523. source: "./media/characters/roggy/handpaw.svg"
  48524. }
  48525. },
  48526. footpaw: {
  48527. height: math.unit(15.8, "feet"),
  48528. name: "Footpaw",
  48529. image: {
  48530. source: "./media/characters/roggy/footpaw.svg"
  48531. }
  48532. },
  48533. },
  48534. [
  48535. {
  48536. name: "Menacing",
  48537. height: math.unit(30, "feet"),
  48538. default: true
  48539. },
  48540. ]
  48541. ))
  48542. characterMakers.push(() => makeCharacter(
  48543. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48544. {
  48545. front: {
  48546. height: math.unit(5 + 7/12, "feet"),
  48547. weight: math.unit(135, "lb"),
  48548. name: "Front",
  48549. image: {
  48550. source: "./media/characters/naomi/front.svg",
  48551. extra: 1209/1154,
  48552. bottom: 129/1338
  48553. }
  48554. },
  48555. back: {
  48556. height: math.unit(5 + 7/12, "feet"),
  48557. weight: math.unit(135, "lb"),
  48558. name: "Back",
  48559. image: {
  48560. source: "./media/characters/naomi/back.svg",
  48561. extra: 1252/1190,
  48562. bottom: 23/1275
  48563. }
  48564. },
  48565. },
  48566. [
  48567. {
  48568. name: "Normal",
  48569. height: math.unit(5 + 7 /12, "feet"),
  48570. default: true
  48571. },
  48572. ]
  48573. ))
  48574. characterMakers.push(() => makeCharacter(
  48575. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48576. {
  48577. side: {
  48578. height: math.unit(35, "meters"),
  48579. name: "Side",
  48580. image: {
  48581. source: "./media/characters/kimpi/side.svg",
  48582. extra: 419/382,
  48583. bottom: 63/482
  48584. }
  48585. },
  48586. hand: {
  48587. height: math.unit(8.96, "meters"),
  48588. name: "Hand",
  48589. image: {
  48590. source: "./media/characters/kimpi/hand.svg"
  48591. }
  48592. },
  48593. },
  48594. [
  48595. {
  48596. name: "Normal",
  48597. height: math.unit(35, "meters"),
  48598. default: true
  48599. },
  48600. ]
  48601. ))
  48602. characterMakers.push(() => makeCharacter(
  48603. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48604. {
  48605. front: {
  48606. height: math.unit(4 + 4/12, "feet"),
  48607. name: "Front",
  48608. image: {
  48609. source: "./media/characters/pepper-purrloin/front.svg",
  48610. extra: 1141/1024,
  48611. bottom: 21/1162
  48612. }
  48613. },
  48614. },
  48615. [
  48616. {
  48617. name: "Normal",
  48618. height: math.unit(4 + 4/12, "feet"),
  48619. default: true
  48620. },
  48621. ]
  48622. ))
  48623. characterMakers.push(() => makeCharacter(
  48624. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48625. {
  48626. front: {
  48627. height: math.unit(6 + 2/12, "feet"),
  48628. name: "Front",
  48629. image: {
  48630. source: "./media/characters/raphael/front.svg",
  48631. extra: 1101/962,
  48632. bottom: 59/1160
  48633. }
  48634. },
  48635. },
  48636. [
  48637. {
  48638. name: "Normal",
  48639. height: math.unit(6 + 2/12, "feet"),
  48640. default: true
  48641. },
  48642. ]
  48643. ))
  48644. characterMakers.push(() => makeCharacter(
  48645. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48646. {
  48647. front: {
  48648. height: math.unit(6, "feet"),
  48649. weight: math.unit(150, "lb"),
  48650. name: "Front",
  48651. image: {
  48652. source: "./media/characters/victor-williams/front.svg",
  48653. extra: 1894/1825,
  48654. bottom: 67/1961
  48655. }
  48656. },
  48657. },
  48658. [
  48659. {
  48660. name: "Normal",
  48661. height: math.unit(6, "feet"),
  48662. default: true
  48663. },
  48664. ]
  48665. ))
  48666. characterMakers.push(() => makeCharacter(
  48667. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48668. {
  48669. front: {
  48670. height: math.unit(5 + 8/12, "feet"),
  48671. weight: math.unit(150, "lb"),
  48672. name: "Front",
  48673. image: {
  48674. source: "./media/characters/rachel/front.svg",
  48675. extra: 1902/1787,
  48676. bottom: 46/1948
  48677. }
  48678. },
  48679. },
  48680. [
  48681. {
  48682. name: "Base Height",
  48683. height: math.unit(5 + 8/12, "feet"),
  48684. default: true
  48685. },
  48686. {
  48687. name: "Macro",
  48688. height: math.unit(200, "feet")
  48689. },
  48690. {
  48691. name: "Mega Macro",
  48692. height: math.unit(1, "mile")
  48693. },
  48694. {
  48695. name: "Giga Macro",
  48696. height: math.unit(1500, "miles")
  48697. },
  48698. {
  48699. name: "Tera Macro",
  48700. height: math.unit(8000, "miles")
  48701. },
  48702. {
  48703. name: "Tera Macro+",
  48704. height: math.unit(2e5, "miles")
  48705. },
  48706. ]
  48707. ))
  48708. characterMakers.push(() => makeCharacter(
  48709. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48710. {
  48711. front: {
  48712. height: math.unit(6.5, "feet"),
  48713. name: "Front",
  48714. image: {
  48715. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48716. extra: 860/819,
  48717. bottom: 307/1167
  48718. }
  48719. },
  48720. back: {
  48721. height: math.unit(6.5, "feet"),
  48722. name: "Back",
  48723. image: {
  48724. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48725. extra: 880/837,
  48726. bottom: 395/1275
  48727. }
  48728. },
  48729. sleeping: {
  48730. height: math.unit(2.79, "feet"),
  48731. name: "Sleeping",
  48732. image: {
  48733. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48734. extra: 465/383,
  48735. bottom: 263/728
  48736. }
  48737. },
  48738. maw: {
  48739. height: math.unit(2.52, "feet"),
  48740. name: "Maw",
  48741. image: {
  48742. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48743. }
  48744. },
  48745. },
  48746. [
  48747. {
  48748. name: "Normal",
  48749. height: math.unit(6.5, "feet"),
  48750. default: true
  48751. },
  48752. ]
  48753. ))
  48754. characterMakers.push(() => makeCharacter(
  48755. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48756. {
  48757. front: {
  48758. height: math.unit(5, "feet"),
  48759. name: "Front",
  48760. image: {
  48761. source: "./media/characters/nova-nerium/front.svg",
  48762. extra: 1548/1392,
  48763. bottom: 374/1922
  48764. }
  48765. },
  48766. back: {
  48767. height: math.unit(5, "feet"),
  48768. name: "Back",
  48769. image: {
  48770. source: "./media/characters/nova-nerium/back.svg",
  48771. extra: 1658/1468,
  48772. bottom: 257/1915
  48773. }
  48774. },
  48775. },
  48776. [
  48777. {
  48778. name: "Normal",
  48779. height: math.unit(5, "feet"),
  48780. default: true
  48781. },
  48782. ]
  48783. ))
  48784. characterMakers.push(() => makeCharacter(
  48785. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48786. {
  48787. front: {
  48788. height: math.unit(5 + 4/12, "feet"),
  48789. name: "Front",
  48790. image: {
  48791. source: "./media/characters/ashe-pyriph/front.svg",
  48792. extra: 1935/1747,
  48793. bottom: 60/1995
  48794. }
  48795. },
  48796. },
  48797. [
  48798. {
  48799. name: "Normal",
  48800. height: math.unit(5 + 4/12, "feet"),
  48801. default: true
  48802. },
  48803. ]
  48804. ))
  48805. characterMakers.push(() => makeCharacter(
  48806. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48807. {
  48808. front: {
  48809. height: math.unit(8.7, "feet"),
  48810. name: "Front",
  48811. image: {
  48812. source: "./media/characters/flicker-wisp/front.svg",
  48813. extra: 1835/1613,
  48814. bottom: 449/2284
  48815. }
  48816. },
  48817. side: {
  48818. height: math.unit(8.7, "feet"),
  48819. name: "Side",
  48820. image: {
  48821. source: "./media/characters/flicker-wisp/side.svg",
  48822. extra: 1841/1642,
  48823. bottom: 336/2177
  48824. },
  48825. default: true
  48826. },
  48827. maw: {
  48828. height: math.unit(3.35, "feet"),
  48829. name: "Maw",
  48830. image: {
  48831. source: "./media/characters/flicker-wisp/maw.svg",
  48832. extra: 2338/1506,
  48833. bottom: 0/2338
  48834. }
  48835. },
  48836. ovipositor: {
  48837. height: math.unit(4.95, "feet"),
  48838. name: "Ovipositor",
  48839. image: {
  48840. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48841. }
  48842. },
  48843. egg: {
  48844. height: math.unit(0.385, "feet"),
  48845. weight: math.unit(2, "lb"),
  48846. name: "Egg",
  48847. image: {
  48848. source: "./media/characters/flicker-wisp/egg.svg"
  48849. }
  48850. },
  48851. },
  48852. [
  48853. {
  48854. name: "Normal",
  48855. height: math.unit(8.7, "feet"),
  48856. default: true
  48857. },
  48858. ]
  48859. ))
  48860. characterMakers.push(() => makeCharacter(
  48861. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48862. {
  48863. side: {
  48864. height: math.unit(11, "feet"),
  48865. name: "Side",
  48866. image: {
  48867. source: "./media/characters/faefnul/side.svg",
  48868. extra: 1100/1007,
  48869. bottom: 0/1100
  48870. }
  48871. },
  48872. },
  48873. [
  48874. {
  48875. name: "Normal",
  48876. height: math.unit(11, "feet"),
  48877. default: true
  48878. },
  48879. ]
  48880. ))
  48881. characterMakers.push(() => makeCharacter(
  48882. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48883. {
  48884. front: {
  48885. height: math.unit(6 + 2/12, "feet"),
  48886. name: "Front",
  48887. image: {
  48888. source: "./media/characters/shady/front.svg",
  48889. extra: 502/461,
  48890. bottom: 9/511
  48891. }
  48892. },
  48893. kneeling: {
  48894. height: math.unit(4.6, "feet"),
  48895. name: "Kneeling",
  48896. image: {
  48897. source: "./media/characters/shady/kneeling.svg",
  48898. extra: 1328/1219,
  48899. bottom: 117/1445
  48900. }
  48901. },
  48902. maw: {
  48903. height: math.unit(2, "feet"),
  48904. name: "Maw",
  48905. image: {
  48906. source: "./media/characters/shady/maw.svg"
  48907. }
  48908. },
  48909. },
  48910. [
  48911. {
  48912. name: "Nano",
  48913. height: math.unit(1, "mm")
  48914. },
  48915. {
  48916. name: "Micro",
  48917. height: math.unit(12, "mm")
  48918. },
  48919. {
  48920. name: "Tiny",
  48921. height: math.unit(3, "inches")
  48922. },
  48923. {
  48924. name: "Normal",
  48925. height: math.unit(6 + 2/12, "feet"),
  48926. default: true
  48927. },
  48928. {
  48929. name: "Big",
  48930. height: math.unit(15, "feet")
  48931. },
  48932. {
  48933. name: "Macro",
  48934. height: math.unit(150, "feet")
  48935. },
  48936. {
  48937. name: "Titanic",
  48938. height: math.unit(500, "feet")
  48939. },
  48940. ]
  48941. ))
  48942. characterMakers.push(() => makeCharacter(
  48943. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48944. {
  48945. front: {
  48946. height: math.unit(12, "feet"),
  48947. name: "Front",
  48948. image: {
  48949. source: "./media/characters/fenrir/front.svg",
  48950. extra: 968/875,
  48951. bottom: 22/990
  48952. }
  48953. },
  48954. },
  48955. [
  48956. {
  48957. name: "Big",
  48958. height: math.unit(12, "feet"),
  48959. default: true
  48960. },
  48961. ]
  48962. ))
  48963. characterMakers.push(() => makeCharacter(
  48964. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48965. {
  48966. front: {
  48967. height: math.unit(5 + 4/12, "feet"),
  48968. name: "Front",
  48969. image: {
  48970. source: "./media/characters/makar/front.svg",
  48971. extra: 1181/1112,
  48972. bottom: 78/1259
  48973. }
  48974. },
  48975. },
  48976. [
  48977. {
  48978. name: "Normal",
  48979. height: math.unit(5 + 4/12, "feet"),
  48980. default: true
  48981. },
  48982. ]
  48983. ))
  48984. characterMakers.push(() => makeCharacter(
  48985. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48986. {
  48987. front: {
  48988. height: math.unit(5 + 7/12, "feet"),
  48989. name: "Front",
  48990. image: {
  48991. source: "./media/characters/callow/front.svg",
  48992. extra: 1482/1304,
  48993. bottom: 23/1505
  48994. }
  48995. },
  48996. back: {
  48997. height: math.unit(5 + 7/12, "feet"),
  48998. name: "Back",
  48999. image: {
  49000. source: "./media/characters/callow/back.svg",
  49001. extra: 1484/1296,
  49002. bottom: 25/1509
  49003. }
  49004. },
  49005. },
  49006. [
  49007. {
  49008. name: "Micro",
  49009. height: math.unit(3, "inches"),
  49010. default: true
  49011. },
  49012. {
  49013. name: "Normal",
  49014. height: math.unit(5 + 7/12, "feet")
  49015. },
  49016. ]
  49017. ))
  49018. characterMakers.push(() => makeCharacter(
  49019. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49020. {
  49021. front: {
  49022. height: math.unit(6 + 2/12, "feet"),
  49023. name: "Front",
  49024. image: {
  49025. source: "./media/characters/natel/front.svg",
  49026. extra: 1833/1692,
  49027. bottom: 166/1999
  49028. }
  49029. },
  49030. },
  49031. [
  49032. {
  49033. name: "Normal",
  49034. height: math.unit(6 + 2/12, "feet"),
  49035. default: true
  49036. },
  49037. ]
  49038. ))
  49039. characterMakers.push(() => makeCharacter(
  49040. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49041. {
  49042. front: {
  49043. height: math.unit(1.75, "meters"),
  49044. name: "Front",
  49045. image: {
  49046. source: "./media/characters/misu/front.svg",
  49047. extra: 1690/1558,
  49048. bottom: 234/1924
  49049. }
  49050. },
  49051. back: {
  49052. height: math.unit(1.75, "meters"),
  49053. name: "Back",
  49054. image: {
  49055. source: "./media/characters/misu/back.svg",
  49056. extra: 1762/1618,
  49057. bottom: 146/1908
  49058. }
  49059. },
  49060. frontNude: {
  49061. height: math.unit(1.75, "meters"),
  49062. name: "Front (Nude)",
  49063. image: {
  49064. source: "./media/characters/misu/front-nude.svg",
  49065. extra: 1690/1558,
  49066. bottom: 234/1924
  49067. }
  49068. },
  49069. backNude: {
  49070. height: math.unit(1.75, "meters"),
  49071. name: "Back (Nude)",
  49072. image: {
  49073. source: "./media/characters/misu/back-nude.svg",
  49074. extra: 1762/1618,
  49075. bottom: 146/1908
  49076. }
  49077. },
  49078. frontErect: {
  49079. height: math.unit(1.75, "meters"),
  49080. name: "Front (Erect)",
  49081. image: {
  49082. source: "./media/characters/misu/front-erect.svg",
  49083. extra: 1690/1558,
  49084. bottom: 234/1924
  49085. }
  49086. },
  49087. maw: {
  49088. height: math.unit(0.47, "meters"),
  49089. name: "Maw",
  49090. image: {
  49091. source: "./media/characters/misu/maw.svg"
  49092. }
  49093. },
  49094. head: {
  49095. height: math.unit(0.35, "meters"),
  49096. name: "Head",
  49097. image: {
  49098. source: "./media/characters/misu/head.svg"
  49099. }
  49100. },
  49101. rear: {
  49102. height: math.unit(0.47, "meters"),
  49103. name: "Rear",
  49104. image: {
  49105. source: "./media/characters/misu/rear.svg"
  49106. }
  49107. },
  49108. },
  49109. [
  49110. {
  49111. name: "Normal",
  49112. height: math.unit(1.75, "meters")
  49113. },
  49114. {
  49115. name: "Not good for the people",
  49116. height: math.unit(42, "meters")
  49117. },
  49118. {
  49119. name: "Not good for the neighborhood",
  49120. height: math.unit(135, "meters")
  49121. },
  49122. {
  49123. name: "Bit bigger problem",
  49124. height: math.unit(380, "meters"),
  49125. default: true
  49126. },
  49127. {
  49128. name: "Not good for the city",
  49129. height: math.unit(1.5, "km")
  49130. },
  49131. {
  49132. name: "Not good for the county",
  49133. height: math.unit(5.5, "km")
  49134. },
  49135. {
  49136. name: "Not good for the state",
  49137. height: math.unit(25, "km")
  49138. },
  49139. {
  49140. name: "Not good for the country",
  49141. height: math.unit(125, "km")
  49142. },
  49143. {
  49144. name: "Not good for the continent",
  49145. height: math.unit(2100, "km")
  49146. },
  49147. {
  49148. name: "Not good for the planet",
  49149. height: math.unit(35000, "km")
  49150. },
  49151. {
  49152. name: "Just no",
  49153. height: math.unit(8.5e18, "km")
  49154. },
  49155. ]
  49156. ))
  49157. characterMakers.push(() => makeCharacter(
  49158. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49159. {
  49160. front: {
  49161. height: math.unit(6.5, "feet"),
  49162. name: "Front",
  49163. image: {
  49164. source: "./media/characters/poppy/front.svg",
  49165. extra: 1878/1812,
  49166. bottom: 43/1921
  49167. }
  49168. },
  49169. feet: {
  49170. height: math.unit(1.06, "feet"),
  49171. name: "Feet",
  49172. image: {
  49173. source: "./media/characters/poppy/feet.svg",
  49174. extra: 1083/1083,
  49175. bottom: 87/1170
  49176. }
  49177. },
  49178. },
  49179. [
  49180. {
  49181. name: "Human",
  49182. height: math.unit(6.5, "feet")
  49183. },
  49184. {
  49185. name: "Default",
  49186. height: math.unit(300, "feet"),
  49187. default: true
  49188. },
  49189. {
  49190. name: "Huge",
  49191. height: math.unit(850, "feet")
  49192. },
  49193. {
  49194. name: "Mega",
  49195. height: math.unit(8000, "feet")
  49196. },
  49197. {
  49198. name: "Giga",
  49199. height: math.unit(300, "miles")
  49200. },
  49201. ]
  49202. ))
  49203. characterMakers.push(() => makeCharacter(
  49204. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49205. {
  49206. bipedal: {
  49207. height: math.unit(7, "feet"),
  49208. name: "Bipedal",
  49209. image: {
  49210. source: "./media/characters/zener/bipedal.svg",
  49211. extra: 874/805,
  49212. bottom: 109/983
  49213. }
  49214. },
  49215. quadrupedal: {
  49216. height: math.unit(4.64, "feet"),
  49217. name: "Quadrupedal",
  49218. image: {
  49219. source: "./media/characters/zener/quadrupedal.svg",
  49220. extra: 638/507,
  49221. bottom: 190/828
  49222. }
  49223. },
  49224. cock: {
  49225. height: math.unit(18, "inches"),
  49226. name: "Cock",
  49227. image: {
  49228. source: "./media/characters/zener/cock.svg"
  49229. }
  49230. },
  49231. },
  49232. [
  49233. {
  49234. name: "Normal",
  49235. height: math.unit(7, "feet"),
  49236. default: true
  49237. },
  49238. ]
  49239. ))
  49240. characterMakers.push(() => makeCharacter(
  49241. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49242. {
  49243. nude: {
  49244. height: math.unit(5 + 6/12, "feet"),
  49245. name: "Nude",
  49246. image: {
  49247. source: "./media/characters/charlie-dog/nude.svg",
  49248. extra: 768/734,
  49249. bottom: 26/794
  49250. }
  49251. },
  49252. dressed: {
  49253. height: math.unit(5 + 6/12, "feet"),
  49254. name: "Dressed",
  49255. image: {
  49256. source: "./media/characters/charlie-dog/dressed.svg",
  49257. extra: 768/734,
  49258. bottom: 26/794
  49259. }
  49260. },
  49261. },
  49262. [
  49263. {
  49264. name: "Normal",
  49265. height: math.unit(5 + 6/12, "feet"),
  49266. default: true
  49267. },
  49268. ]
  49269. ))
  49270. characterMakers.push(() => makeCharacter(
  49271. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49272. {
  49273. front: {
  49274. height: math.unit(6 + 4/12, "feet"),
  49275. name: "Front",
  49276. image: {
  49277. source: "./media/characters/ir'istrasz/front.svg",
  49278. extra: 1014/977,
  49279. bottom: 65/1079
  49280. }
  49281. },
  49282. back: {
  49283. height: math.unit(6 + 4/12, "feet"),
  49284. name: "Back",
  49285. image: {
  49286. source: "./media/characters/ir'istrasz/back.svg",
  49287. extra: 1024/992,
  49288. bottom: 34/1058
  49289. }
  49290. },
  49291. },
  49292. [
  49293. {
  49294. name: "Normal",
  49295. height: math.unit(6 + 4/12, "feet"),
  49296. default: true
  49297. },
  49298. ]
  49299. ))
  49300. characterMakers.push(() => makeCharacter(
  49301. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49302. {
  49303. front: {
  49304. height: math.unit(5 + 8/12, "feet"),
  49305. name: "Front",
  49306. image: {
  49307. source: "./media/characters/dee-ditto/front.svg",
  49308. extra: 1874/1785,
  49309. bottom: 68/1942
  49310. }
  49311. },
  49312. back: {
  49313. height: math.unit(5 + 8/12, "feet"),
  49314. name: "Back",
  49315. image: {
  49316. source: "./media/characters/dee-ditto/back.svg",
  49317. extra: 1870/1783,
  49318. bottom: 77/1947
  49319. }
  49320. },
  49321. },
  49322. [
  49323. {
  49324. name: "Normal",
  49325. height: math.unit(5 + 8/12, "feet"),
  49326. default: true
  49327. },
  49328. ]
  49329. ))
  49330. characterMakers.push(() => makeCharacter(
  49331. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49332. {
  49333. front: {
  49334. height: math.unit(7 + 6/12, "feet"),
  49335. name: "Front",
  49336. image: {
  49337. source: "./media/characters/fey/front.svg",
  49338. extra: 995/979,
  49339. bottom: 30/1025
  49340. }
  49341. },
  49342. back: {
  49343. height: math.unit(7 + 6/12, "feet"),
  49344. name: "Back",
  49345. image: {
  49346. source: "./media/characters/fey/back.svg",
  49347. extra: 1079/1008,
  49348. bottom: 5/1084
  49349. }
  49350. },
  49351. dressed: {
  49352. height: math.unit(7 + 6/12, "feet"),
  49353. name: "Dressed",
  49354. image: {
  49355. source: "./media/characters/fey/dressed.svg",
  49356. extra: 995/979,
  49357. bottom: 30/1025
  49358. }
  49359. },
  49360. },
  49361. [
  49362. {
  49363. name: "Normal",
  49364. height: math.unit(7 + 6/12, "feet"),
  49365. default: true
  49366. },
  49367. ]
  49368. ))
  49369. characterMakers.push(() => makeCharacter(
  49370. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49371. {
  49372. standing: {
  49373. height: math.unit(17, "feet"),
  49374. name: "Standing",
  49375. image: {
  49376. source: "./media/characters/aster/standing.svg",
  49377. extra: 1798/1598,
  49378. bottom: 117/1915
  49379. }
  49380. },
  49381. },
  49382. [
  49383. {
  49384. name: "Normal",
  49385. height: math.unit(17, "feet"),
  49386. default: true
  49387. },
  49388. {
  49389. name: "Homewrecker",
  49390. height: math.unit(95, "feet")
  49391. },
  49392. {
  49393. name: "Planet Devourer",
  49394. height: math.unit(1008000, "miles")
  49395. },
  49396. ]
  49397. ))
  49398. characterMakers.push(() => makeCharacter(
  49399. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49400. {
  49401. front: {
  49402. height: math.unit(6 + 5/12, "feet"),
  49403. weight: math.unit(265, "lb"),
  49404. name: "Front",
  49405. image: {
  49406. source: "./media/characters/devon-childs/front.svg",
  49407. extra: 1795/1721,
  49408. bottom: 41/1836
  49409. }
  49410. },
  49411. side: {
  49412. height: math.unit(6 + 5/12, "feet"),
  49413. weight: math.unit(265, "lb"),
  49414. name: "Side",
  49415. image: {
  49416. source: "./media/characters/devon-childs/side.svg",
  49417. extra: 1812/1738,
  49418. bottom: 30/1842
  49419. }
  49420. },
  49421. back: {
  49422. height: math.unit(6 + 5/12, "feet"),
  49423. weight: math.unit(265, "lb"),
  49424. name: "Back",
  49425. image: {
  49426. source: "./media/characters/devon-childs/back.svg",
  49427. extra: 1808/1735,
  49428. bottom: 23/1831
  49429. }
  49430. },
  49431. hand: {
  49432. height: math.unit(1.464, "feet"),
  49433. name: "Hand",
  49434. image: {
  49435. source: "./media/characters/devon-childs/hand.svg"
  49436. }
  49437. },
  49438. foot: {
  49439. height: math.unit(1.6, "feet"),
  49440. name: "Foot",
  49441. image: {
  49442. source: "./media/characters/devon-childs/foot.svg"
  49443. }
  49444. },
  49445. },
  49446. [
  49447. {
  49448. name: "Micro",
  49449. height: math.unit(7, "cm")
  49450. },
  49451. {
  49452. name: "Normal",
  49453. height: math.unit(6 + 5/12, "feet"),
  49454. default: true
  49455. },
  49456. {
  49457. name: "Macro",
  49458. height: math.unit(154, "feet")
  49459. },
  49460. ]
  49461. ))
  49462. characterMakers.push(() => makeCharacter(
  49463. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49464. {
  49465. front: {
  49466. height: math.unit(6, "feet"),
  49467. weight: math.unit(180, "lb"),
  49468. name: "Front",
  49469. image: {
  49470. source: "./media/characters/lydemox-vir/front.svg",
  49471. extra: 1632/1435,
  49472. bottom: 58/1690
  49473. }
  49474. },
  49475. frontSFW: {
  49476. height: math.unit(6, "feet"),
  49477. weight: math.unit(180, "lb"),
  49478. name: "Front (SFW)",
  49479. image: {
  49480. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49481. extra: 1632/1435,
  49482. bottom: 58/1690
  49483. }
  49484. },
  49485. back: {
  49486. height: math.unit(6, "feet"),
  49487. weight: math.unit(180, "lb"),
  49488. name: "Back",
  49489. image: {
  49490. source: "./media/characters/lydemox-vir/back.svg",
  49491. extra: 1593/1408,
  49492. bottom: 31/1624
  49493. }
  49494. },
  49495. paw: {
  49496. height: math.unit(1.85, "feet"),
  49497. name: "Paw",
  49498. image: {
  49499. source: "./media/characters/lydemox-vir/paw.svg"
  49500. }
  49501. },
  49502. dick: {
  49503. height: math.unit(1.8, "feet"),
  49504. name: "Dick",
  49505. image: {
  49506. source: "./media/characters/lydemox-vir/dick.svg"
  49507. }
  49508. },
  49509. },
  49510. [
  49511. {
  49512. name: "Macro",
  49513. height: math.unit(100, "feet"),
  49514. default: true
  49515. },
  49516. {
  49517. name: "Teramacro",
  49518. height: math.unit(1, "earth")
  49519. },
  49520. {
  49521. name: "Planetary",
  49522. height: math.unit(20, "earths")
  49523. },
  49524. ]
  49525. ))
  49526. characterMakers.push(() => makeCharacter(
  49527. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49528. {
  49529. front: {
  49530. height: math.unit(15 + 8/12, "feet"),
  49531. weight: math.unit(1237, "kg"),
  49532. name: "Front",
  49533. image: {
  49534. source: "./media/characters/mia/front.svg",
  49535. extra: 1573/1446,
  49536. bottom: 58/1631
  49537. }
  49538. },
  49539. },
  49540. [
  49541. {
  49542. name: "Small",
  49543. height: math.unit(9 + 5/12, "feet")
  49544. },
  49545. {
  49546. name: "Normal",
  49547. height: math.unit(15 + 8/12, "feet"),
  49548. default: true
  49549. },
  49550. ]
  49551. ))
  49552. characterMakers.push(() => makeCharacter(
  49553. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49554. {
  49555. front: {
  49556. height: math.unit(10 + 6/12, "feet"),
  49557. weight: math.unit(1.3, "tons"),
  49558. name: "Front",
  49559. image: {
  49560. source: "./media/characters/mr-graves/front.svg",
  49561. extra: 1779/1695,
  49562. bottom: 198/1977
  49563. }
  49564. },
  49565. },
  49566. [
  49567. {
  49568. name: "Normal",
  49569. height: math.unit(10 + 6 /12, "feet"),
  49570. default: true
  49571. },
  49572. ]
  49573. ))
  49574. characterMakers.push(() => makeCharacter(
  49575. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49576. {
  49577. dressedFront: {
  49578. height: math.unit(5 + 8/12, "feet"),
  49579. weight: math.unit(125, "lb"),
  49580. name: "Dressed (Front)",
  49581. image: {
  49582. source: "./media/characters/jess/dressed-front.svg",
  49583. extra: 1176/1152,
  49584. bottom: 42/1218
  49585. }
  49586. },
  49587. dressedSide: {
  49588. height: math.unit(5 + 8/12, "feet"),
  49589. weight: math.unit(125, "lb"),
  49590. name: "Dressed (Side)",
  49591. image: {
  49592. source: "./media/characters/jess/dressed-side.svg",
  49593. extra: 1204/1190,
  49594. bottom: 6/1210
  49595. }
  49596. },
  49597. nudeFront: {
  49598. height: math.unit(5 + 8/12, "feet"),
  49599. weight: math.unit(125, "lb"),
  49600. name: "Nude (Front)",
  49601. image: {
  49602. source: "./media/characters/jess/nude-front.svg",
  49603. extra: 1176/1152,
  49604. bottom: 42/1218
  49605. }
  49606. },
  49607. nudeSide: {
  49608. height: math.unit(5 + 8/12, "feet"),
  49609. weight: math.unit(125, "lb"),
  49610. name: "Nude (Side)",
  49611. image: {
  49612. source: "./media/characters/jess/nude-side.svg",
  49613. extra: 1204/1190,
  49614. bottom: 6/1210
  49615. }
  49616. },
  49617. organsFront: {
  49618. height: math.unit(2.83799342105, "feet"),
  49619. name: "Organs (Front)",
  49620. image: {
  49621. source: "./media/characters/jess/organs-front.svg"
  49622. }
  49623. },
  49624. organsSide: {
  49625. height: math.unit(2.64225290474, "feet"),
  49626. name: "Organs (Side)",
  49627. image: {
  49628. source: "./media/characters/jess/organs-side.svg"
  49629. }
  49630. },
  49631. digestiveTractFront: {
  49632. height: math.unit(2.8106580871, "feet"),
  49633. name: "Digestive Tract (Front)",
  49634. image: {
  49635. source: "./media/characters/jess/digestive-tract-front.svg"
  49636. }
  49637. },
  49638. digestiveTractSide: {
  49639. height: math.unit(2.54365045014, "feet"),
  49640. name: "Digestive Tract (Side)",
  49641. image: {
  49642. source: "./media/characters/jess/digestive-tract-side.svg"
  49643. }
  49644. },
  49645. respiratorySystemFront: {
  49646. height: math.unit(1.11196233456, "feet"),
  49647. name: "Respiratory System (Front)",
  49648. image: {
  49649. source: "./media/characters/jess/respiratory-system-front.svg"
  49650. }
  49651. },
  49652. respiratorySystemSide: {
  49653. height: math.unit(0.89327966297, "feet"),
  49654. name: "Respiratory System (Side)",
  49655. image: {
  49656. source: "./media/characters/jess/respiratory-system-side.svg"
  49657. }
  49658. },
  49659. urinaryTractFront: {
  49660. height: math.unit(1.16126356186, "feet"),
  49661. name: "Urinary Tract (Front)",
  49662. image: {
  49663. source: "./media/characters/jess/urinary-tract-front.svg"
  49664. }
  49665. },
  49666. urinaryTractSide: {
  49667. height: math.unit(1.20910039627, "feet"),
  49668. name: "Urinary Tract (Side)",
  49669. image: {
  49670. source: "./media/characters/jess/urinary-tract-side.svg"
  49671. }
  49672. },
  49673. reproductiveOrgansFront: {
  49674. height: math.unit(0.48422591566, "feet"),
  49675. name: "Reproductive Organs (Front)",
  49676. image: {
  49677. source: "./media/characters/jess/reproductive-organs-front.svg"
  49678. }
  49679. },
  49680. reproductiveOrgansSide: {
  49681. height: math.unit(0.61553314481, "feet"),
  49682. name: "Reproductive Organs (Side)",
  49683. image: {
  49684. source: "./media/characters/jess/reproductive-organs-side.svg"
  49685. }
  49686. },
  49687. breastsFront: {
  49688. height: math.unit(0.47690395121, "feet"),
  49689. name: "Breasts (Front)",
  49690. image: {
  49691. source: "./media/characters/jess/breasts-front.svg"
  49692. }
  49693. },
  49694. breastsSide: {
  49695. height: math.unit(0.30556998307, "feet"),
  49696. name: "Breasts (Side)",
  49697. image: {
  49698. source: "./media/characters/jess/breasts-side.svg"
  49699. }
  49700. },
  49701. heartFront: {
  49702. height: math.unit(0.53011022622, "feet"),
  49703. name: "Heart (Front)",
  49704. image: {
  49705. source: "./media/characters/jess/heart-front.svg"
  49706. }
  49707. },
  49708. heartSide: {
  49709. height: math.unit(0.51790695213, "feet"),
  49710. name: "Heart (Side)",
  49711. image: {
  49712. source: "./media/characters/jess/heart-side.svg"
  49713. }
  49714. },
  49715. earsAndNoseFront: {
  49716. height: math.unit(0.29385483995, "feet"),
  49717. name: "Ears and Nose (Front)",
  49718. image: {
  49719. source: "./media/characters/jess/ears-and-nose-front.svg"
  49720. }
  49721. },
  49722. earsAndNoseSide: {
  49723. height: math.unit(0.18109658741, "feet"),
  49724. name: "Ears and Nose (Side)",
  49725. image: {
  49726. source: "./media/characters/jess/ears-and-nose-side.svg"
  49727. }
  49728. },
  49729. },
  49730. [
  49731. {
  49732. name: "Normal",
  49733. height: math.unit(5 + 8/12, "feet"),
  49734. default: true
  49735. },
  49736. ]
  49737. ))
  49738. characterMakers.push(() => makeCharacter(
  49739. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49740. {
  49741. front: {
  49742. height: math.unit(6, "feet"),
  49743. weight: math.unit(6.64467e-7, "grams"),
  49744. name: "Front",
  49745. image: {
  49746. source: "./media/characters/wimpering/front.svg",
  49747. extra: 597/587,
  49748. bottom: 34/631
  49749. }
  49750. },
  49751. },
  49752. [
  49753. {
  49754. name: "Micro",
  49755. height: math.unit(0.4, "mm"),
  49756. default: true
  49757. },
  49758. ]
  49759. ))
  49760. characterMakers.push(() => makeCharacter(
  49761. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49762. {
  49763. front: {
  49764. height: math.unit(5 + 2/12, "feet"),
  49765. weight: math.unit(110, "lb"),
  49766. name: "Front",
  49767. image: {
  49768. source: "./media/characters/keltre/front.svg",
  49769. extra: 1099/1057,
  49770. bottom: 22/1121
  49771. }
  49772. },
  49773. back: {
  49774. height: math.unit(5 + 2/12, "feet"),
  49775. weight: math.unit(110, "lb"),
  49776. name: "Back",
  49777. image: {
  49778. source: "./media/characters/keltre/back.svg",
  49779. extra: 1095/1053,
  49780. bottom: 17/1112
  49781. }
  49782. },
  49783. dressed: {
  49784. height: math.unit(5 + 2/12, "feet"),
  49785. weight: math.unit(110, "lb"),
  49786. name: "Dressed",
  49787. image: {
  49788. source: "./media/characters/keltre/dressed.svg",
  49789. extra: 1099/1057,
  49790. bottom: 22/1121
  49791. }
  49792. },
  49793. winter: {
  49794. height: math.unit(5 + 2/12, "feet"),
  49795. weight: math.unit(110, "lb"),
  49796. name: "Winter",
  49797. image: {
  49798. source: "./media/characters/keltre/winter.svg",
  49799. extra: 1099/1057,
  49800. bottom: 22/1121
  49801. }
  49802. },
  49803. head: {
  49804. height: math.unit(1.61 * 0.86, "feet"),
  49805. name: "Head",
  49806. image: {
  49807. source: "./media/characters/keltre/head.svg",
  49808. extra: 534/421,
  49809. bottom: 0/534
  49810. }
  49811. },
  49812. hand: {
  49813. height: math.unit(1.3 * 0.86, "feet"),
  49814. name: "Hand",
  49815. image: {
  49816. source: "./media/characters/keltre/hand.svg"
  49817. }
  49818. },
  49819. foot: {
  49820. height: math.unit(1.8 * 0.86, "feet"),
  49821. name: "Foot",
  49822. image: {
  49823. source: "./media/characters/keltre/foot.svg"
  49824. }
  49825. },
  49826. },
  49827. [
  49828. {
  49829. name: "Fine",
  49830. height: math.unit(1, "inch")
  49831. },
  49832. {
  49833. name: "Dimnutive",
  49834. height: math.unit(4, "inches")
  49835. },
  49836. {
  49837. name: "Tiny",
  49838. height: math.unit(1, "foot")
  49839. },
  49840. {
  49841. name: "Small",
  49842. height: math.unit(3, "feet")
  49843. },
  49844. {
  49845. name: "Normal",
  49846. height: math.unit(5 + 2/12, "feet"),
  49847. default: true
  49848. },
  49849. ]
  49850. ))
  49851. characterMakers.push(() => makeCharacter(
  49852. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49853. {
  49854. front: {
  49855. height: math.unit(6 + 2/12, "feet"),
  49856. name: "Front",
  49857. image: {
  49858. source: "./media/characters/nox/front.svg",
  49859. extra: 1917/1830,
  49860. bottom: 74/1991
  49861. }
  49862. },
  49863. back: {
  49864. height: math.unit(6 + 2/12, "feet"),
  49865. name: "Back",
  49866. image: {
  49867. source: "./media/characters/nox/back.svg",
  49868. extra: 1896/1815,
  49869. bottom: 21/1917
  49870. }
  49871. },
  49872. head: {
  49873. height: math.unit(1.1, "feet"),
  49874. name: "Head",
  49875. image: {
  49876. source: "./media/characters/nox/head.svg",
  49877. extra: 874/704,
  49878. bottom: 0/874
  49879. }
  49880. },
  49881. tattoo: {
  49882. height: math.unit(0.729, "feet"),
  49883. name: "Tattoo",
  49884. image: {
  49885. source: "./media/characters/nox/tattoo.svg"
  49886. }
  49887. },
  49888. },
  49889. [
  49890. {
  49891. name: "Normal",
  49892. height: math.unit(6 + 2/12, "feet")
  49893. },
  49894. {
  49895. name: "Gigamacro",
  49896. height: math.unit(2, "earths"),
  49897. default: true
  49898. },
  49899. {
  49900. name: "Cosmic",
  49901. height: math.unit(867, "yottameters")
  49902. },
  49903. ]
  49904. ))
  49905. characterMakers.push(() => makeCharacter(
  49906. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49907. {
  49908. front: {
  49909. height: math.unit(6, "feet"),
  49910. weight: math.unit(150, "lb"),
  49911. name: "Front",
  49912. image: {
  49913. source: "./media/characters/caspian/front.svg",
  49914. extra: 1443/1359,
  49915. bottom: 0/1443
  49916. }
  49917. },
  49918. back: {
  49919. height: math.unit(6, "feet"),
  49920. weight: math.unit(150, "lb"),
  49921. name: "Back",
  49922. image: {
  49923. source: "./media/characters/caspian/back.svg",
  49924. extra: 1379/1309,
  49925. bottom: 0/1379
  49926. }
  49927. },
  49928. head: {
  49929. height: math.unit(0.9, "feet"),
  49930. name: "Head",
  49931. image: {
  49932. source: "./media/characters/caspian/head.svg",
  49933. extra: 692/492,
  49934. bottom: 0/692
  49935. }
  49936. },
  49937. headAlt: {
  49938. height: math.unit(0.95, "feet"),
  49939. name: "Head (Alt)",
  49940. image: {
  49941. source: "./media/characters/caspian/head-alt.svg",
  49942. extra: 668/508,
  49943. bottom: 0/668
  49944. }
  49945. },
  49946. hand: {
  49947. height: math.unit(0.8, "feet"),
  49948. name: "Hand",
  49949. image: {
  49950. source: "./media/characters/caspian/hand.svg"
  49951. }
  49952. },
  49953. paw: {
  49954. height: math.unit(0.95, "feet"),
  49955. name: "Paw",
  49956. image: {
  49957. source: "./media/characters/caspian/paw.svg"
  49958. }
  49959. },
  49960. },
  49961. [
  49962. {
  49963. name: "Normal",
  49964. height: math.unit(162, "feet"),
  49965. default: true
  49966. },
  49967. ]
  49968. ))
  49969. characterMakers.push(() => makeCharacter(
  49970. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49971. {
  49972. front: {
  49973. height: math.unit(6, "feet"),
  49974. name: "Front",
  49975. image: {
  49976. source: "./media/characters/myra-aisling/front.svg",
  49977. extra: 1268/1166,
  49978. bottom: 73/1341
  49979. }
  49980. },
  49981. back: {
  49982. height: math.unit(6, "feet"),
  49983. name: "Back",
  49984. image: {
  49985. source: "./media/characters/myra-aisling/back.svg",
  49986. extra: 1249/1149,
  49987. bottom: 79/1328
  49988. }
  49989. },
  49990. dressed: {
  49991. height: math.unit(6, "feet"),
  49992. name: "Dressed",
  49993. image: {
  49994. source: "./media/characters/myra-aisling/dressed.svg",
  49995. extra: 1290/1189,
  49996. bottom: 47/1337
  49997. }
  49998. },
  49999. hand: {
  50000. height: math.unit(1.1, "feet"),
  50001. name: "Hand",
  50002. image: {
  50003. source: "./media/characters/myra-aisling/hand.svg"
  50004. }
  50005. },
  50006. paw: {
  50007. height: math.unit(1.23, "feet"),
  50008. name: "Paw",
  50009. image: {
  50010. source: "./media/characters/myra-aisling/paw.svg"
  50011. }
  50012. },
  50013. },
  50014. [
  50015. {
  50016. name: "Normal",
  50017. height: math.unit(160, "feet"),
  50018. default: true
  50019. },
  50020. ]
  50021. ))
  50022. characterMakers.push(() => makeCharacter(
  50023. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50024. {
  50025. front: {
  50026. height: math.unit(6, "feet"),
  50027. name: "Front",
  50028. image: {
  50029. source: "./media/characters/tenley-sidero/front.svg",
  50030. extra: 1365/1276,
  50031. bottom: 47/1412
  50032. }
  50033. },
  50034. back: {
  50035. height: math.unit(6, "feet"),
  50036. name: "Back",
  50037. image: {
  50038. source: "./media/characters/tenley-sidero/back.svg",
  50039. extra: 1383/1283,
  50040. bottom: 35/1418
  50041. }
  50042. },
  50043. dressed: {
  50044. height: math.unit(6, "feet"),
  50045. name: "Dressed",
  50046. image: {
  50047. source: "./media/characters/tenley-sidero/dressed.svg",
  50048. extra: 1364/1275,
  50049. bottom: 42/1406
  50050. }
  50051. },
  50052. head: {
  50053. height: math.unit(1.47, "feet"),
  50054. name: "Head",
  50055. image: {
  50056. source: "./media/characters/tenley-sidero/head.svg",
  50057. extra: 610/490,
  50058. bottom: 0/610
  50059. }
  50060. },
  50061. },
  50062. [
  50063. {
  50064. name: "Normal",
  50065. height: math.unit(154, "feet"),
  50066. default: true
  50067. },
  50068. ]
  50069. ))
  50070. characterMakers.push(() => makeCharacter(
  50071. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50072. {
  50073. front: {
  50074. height: math.unit(5, "inches"),
  50075. name: "Front",
  50076. image: {
  50077. source: "./media/characters/mallory/front.svg",
  50078. extra: 1919/1678,
  50079. bottom: 29/1948
  50080. }
  50081. },
  50082. hand: {
  50083. height: math.unit(0.73, "inches"),
  50084. name: "Hand",
  50085. image: {
  50086. source: "./media/characters/mallory/hand.svg"
  50087. }
  50088. },
  50089. paw: {
  50090. height: math.unit(0.68, "inches"),
  50091. name: "Paw",
  50092. image: {
  50093. source: "./media/characters/mallory/paw.svg"
  50094. }
  50095. },
  50096. },
  50097. [
  50098. {
  50099. name: "Small",
  50100. height: math.unit(5, "inches"),
  50101. default: true
  50102. },
  50103. ]
  50104. ))
  50105. characterMakers.push(() => makeCharacter(
  50106. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50107. {
  50108. naked: {
  50109. height: math.unit(6, "feet"),
  50110. name: "Naked",
  50111. image: {
  50112. source: "./media/characters/mab/naked.svg",
  50113. extra: 1855/1757,
  50114. bottom: 208/2063
  50115. }
  50116. },
  50117. outside: {
  50118. height: math.unit(6, "feet"),
  50119. name: "Outside",
  50120. image: {
  50121. source: "./media/characters/mab/outside.svg",
  50122. extra: 1855/1757,
  50123. bottom: 208/2063
  50124. }
  50125. },
  50126. party: {
  50127. height: math.unit(6, "feet"),
  50128. name: "Party",
  50129. image: {
  50130. source: "./media/characters/mab/party.svg",
  50131. extra: 1855/1757,
  50132. bottom: 208/2063
  50133. }
  50134. },
  50135. },
  50136. [
  50137. {
  50138. name: "Normal",
  50139. height: math.unit(165, "feet"),
  50140. default: true
  50141. },
  50142. ]
  50143. ))
  50144. characterMakers.push(() => makeCharacter(
  50145. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50146. {
  50147. feral: {
  50148. height: math.unit(12, "feet"),
  50149. weight: math.unit(20000, "lb"),
  50150. name: "Side",
  50151. image: {
  50152. source: "./media/characters/winter/feral.svg",
  50153. extra: 1286/943,
  50154. bottom: 112/1398
  50155. },
  50156. form: "feral",
  50157. default: true
  50158. },
  50159. feralNsfw: {
  50160. height: math.unit(12, "feet"),
  50161. weight: math.unit(20000, "lb"),
  50162. name: "Side (NSFW)",
  50163. image: {
  50164. source: "./media/characters/winter/feral-nsfw.svg",
  50165. extra: 1286/943,
  50166. bottom: 112/1398
  50167. },
  50168. form: "feral"
  50169. },
  50170. dick: {
  50171. height: math.unit(3.79, "feet"),
  50172. name: "Dick",
  50173. image: {
  50174. source: "./media/characters/winter/dick.svg"
  50175. },
  50176. form: "feral"
  50177. },
  50178. anthro: {
  50179. height: math.unit(12, "feet"),
  50180. weight: math.unit(10, "tons"),
  50181. name: "Anthro",
  50182. image: {
  50183. source: "./media/characters/winter/anthro.svg",
  50184. extra: 1701/1553,
  50185. bottom: 64/1765
  50186. },
  50187. form: "anthro",
  50188. default: true
  50189. },
  50190. },
  50191. [
  50192. {
  50193. name: "Big",
  50194. height: math.unit(12, "feet"),
  50195. default: true,
  50196. form: "feral"
  50197. },
  50198. {
  50199. name: "Big",
  50200. height: math.unit(12, "feet"),
  50201. default: true,
  50202. form: "anthro"
  50203. },
  50204. ],
  50205. {
  50206. "feral": {
  50207. name: "Feral",
  50208. default: true
  50209. },
  50210. "anthro": {
  50211. name: "Anthro"
  50212. }
  50213. }
  50214. ))
  50215. characterMakers.push(() => makeCharacter(
  50216. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50217. {
  50218. front: {
  50219. height: math.unit(4.1, "inches"),
  50220. name: "Front",
  50221. image: {
  50222. source: "./media/characters/alto/front.svg",
  50223. extra: 736/627,
  50224. bottom: 90/826
  50225. }
  50226. },
  50227. },
  50228. [
  50229. {
  50230. name: "Normal",
  50231. height: math.unit(4.1, "inches"),
  50232. default: true
  50233. },
  50234. ]
  50235. ))
  50236. characterMakers.push(() => makeCharacter(
  50237. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50238. {
  50239. sitting: {
  50240. height: math.unit(3, "feet"),
  50241. name: "Sitting",
  50242. image: {
  50243. source: "./media/characters/ratstrid-v/sitting.svg",
  50244. extra: 355/310,
  50245. bottom: 136/491
  50246. }
  50247. },
  50248. },
  50249. [
  50250. {
  50251. name: "Normal",
  50252. height: math.unit(3, "feet"),
  50253. default: true
  50254. },
  50255. ]
  50256. ))
  50257. characterMakers.push(() => makeCharacter(
  50258. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50259. {
  50260. back: {
  50261. height: math.unit(6, "feet"),
  50262. weight: math.unit(450, "lb"),
  50263. name: "Back",
  50264. image: {
  50265. source: "./media/characters/siz/back.svg",
  50266. extra: 1449/1274,
  50267. bottom: 13/1462
  50268. }
  50269. },
  50270. },
  50271. [
  50272. {
  50273. name: "Smallest",
  50274. height: math.unit(18 + 3/12, "feet")
  50275. },
  50276. {
  50277. name: "Modest",
  50278. height: math.unit(56 + 8/12, "feet"),
  50279. default: true
  50280. },
  50281. {
  50282. name: "Largest",
  50283. height: math.unit(3590, "feet")
  50284. },
  50285. ]
  50286. ))
  50287. characterMakers.push(() => makeCharacter(
  50288. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50289. {
  50290. front: {
  50291. height: math.unit(5 + 9/12, "feet"),
  50292. weight: math.unit(150, "lb"),
  50293. name: "Front",
  50294. image: {
  50295. source: "./media/characters/ven/front.svg",
  50296. extra: 1372/1320,
  50297. bottom: 73/1445
  50298. }
  50299. },
  50300. side: {
  50301. height: math.unit(5 + 9/12, "feet"),
  50302. weight: math.unit(1150, "lb"),
  50303. name: "Side",
  50304. image: {
  50305. source: "./media/characters/ven/side.svg",
  50306. extra: 1119/1070,
  50307. bottom: 42/1161
  50308. },
  50309. default: true
  50310. },
  50311. },
  50312. [
  50313. {
  50314. name: "Normal",
  50315. height: math.unit(5 + 9/12, "feet"),
  50316. default: true
  50317. },
  50318. ]
  50319. ))
  50320. characterMakers.push(() => makeCharacter(
  50321. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50322. {
  50323. front: {
  50324. height: math.unit(12, "feet"),
  50325. weight: math.unit(1000, "kg"),
  50326. name: "Front",
  50327. image: {
  50328. source: "./media/characters/maple/front.svg",
  50329. extra: 1193/1081,
  50330. bottom: 22/1215
  50331. }
  50332. },
  50333. },
  50334. [
  50335. {
  50336. name: "Compressed",
  50337. height: math.unit(7, "feet")
  50338. },
  50339. {
  50340. name: "Normal",
  50341. height: math.unit(12, "feet"),
  50342. default: true
  50343. },
  50344. ]
  50345. ))
  50346. characterMakers.push(() => makeCharacter(
  50347. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50348. {
  50349. front: {
  50350. height: math.unit(9, "feet"),
  50351. weight: math.unit(1500, "lb"),
  50352. name: "Front",
  50353. image: {
  50354. source: "./media/characters/nora/front.svg",
  50355. extra: 1348/1286,
  50356. bottom: 218/1566
  50357. }
  50358. },
  50359. erect: {
  50360. height: math.unit(9, "feet"),
  50361. weight: math.unit(11500, "lb"),
  50362. name: "Erect",
  50363. image: {
  50364. source: "./media/characters/nora/erect.svg",
  50365. extra: 1488/1433,
  50366. bottom: 133/1621
  50367. }
  50368. },
  50369. },
  50370. [
  50371. {
  50372. name: "Normal",
  50373. height: math.unit(9, "feet"),
  50374. default: true
  50375. },
  50376. ]
  50377. ))
  50378. characterMakers.push(() => makeCharacter(
  50379. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50380. {
  50381. front: {
  50382. height: math.unit(25, "feet"),
  50383. weight: math.unit(27500, "lb"),
  50384. name: "Front",
  50385. image: {
  50386. source: "./media/characters/north-caudin/front.svg",
  50387. extra: 1184/1082,
  50388. bottom: 23/1207
  50389. }
  50390. },
  50391. },
  50392. [
  50393. {
  50394. name: "Compressed",
  50395. height: math.unit(10, "feet")
  50396. },
  50397. {
  50398. name: "Normal",
  50399. height: math.unit(25, "feet"),
  50400. default: true
  50401. },
  50402. ]
  50403. ))
  50404. characterMakers.push(() => makeCharacter(
  50405. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50406. {
  50407. front: {
  50408. height: math.unit(9, "feet"),
  50409. weight: math.unit(1250, "lb"),
  50410. name: "Front",
  50411. image: {
  50412. source: "./media/characters/merrian/front.svg",
  50413. extra: 2393/2304,
  50414. bottom: 40/2433
  50415. }
  50416. },
  50417. },
  50418. [
  50419. {
  50420. name: "Normal",
  50421. height: math.unit(9, "feet"),
  50422. default: true
  50423. },
  50424. ]
  50425. ))
  50426. characterMakers.push(() => makeCharacter(
  50427. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50428. {
  50429. front: {
  50430. height: math.unit(9, "feet"),
  50431. weight: math.unit(1000, "lb"),
  50432. name: "Front",
  50433. image: {
  50434. source: "./media/characters/hazel/front.svg",
  50435. extra: 2351/2298,
  50436. bottom: 38/2389
  50437. }
  50438. },
  50439. },
  50440. [
  50441. {
  50442. name: "Normal",
  50443. height: math.unit(9, "feet"),
  50444. default: true
  50445. },
  50446. ]
  50447. ))
  50448. characterMakers.push(() => makeCharacter(
  50449. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50450. {
  50451. front: {
  50452. height: math.unit(13, "feet"),
  50453. weight: math.unit(3200, "lb"),
  50454. name: "Front",
  50455. image: {
  50456. source: "./media/characters/emma/front.svg",
  50457. extra: 2263/2029,
  50458. bottom: 68/2331
  50459. }
  50460. },
  50461. },
  50462. [
  50463. {
  50464. name: "Normal",
  50465. height: math.unit(13, "feet"),
  50466. default: true
  50467. },
  50468. ]
  50469. ))
  50470. characterMakers.push(() => makeCharacter(
  50471. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50472. {
  50473. front: {
  50474. height: math.unit(11 + 9/12, "feet"),
  50475. weight: math.unit(2500, "lb"),
  50476. name: "Front",
  50477. image: {
  50478. source: "./media/characters/ilumina/front.svg",
  50479. extra: 2248/2209,
  50480. bottom: 164/2412
  50481. }
  50482. },
  50483. },
  50484. [
  50485. {
  50486. name: "Normal",
  50487. height: math.unit(11 + 9/12, "feet"),
  50488. default: true
  50489. },
  50490. ]
  50491. ))
  50492. characterMakers.push(() => makeCharacter(
  50493. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50494. {
  50495. front: {
  50496. height: math.unit(8 + 10/12, "feet"),
  50497. weight: math.unit(1350, "lb"),
  50498. name: "Front",
  50499. image: {
  50500. source: "./media/characters/moonshine/front.svg",
  50501. extra: 2395/2288,
  50502. bottom: 40/2435
  50503. }
  50504. },
  50505. },
  50506. [
  50507. {
  50508. name: "Normal",
  50509. height: math.unit(8 + 10/12, "feet"),
  50510. default: true
  50511. },
  50512. ]
  50513. ))
  50514. characterMakers.push(() => makeCharacter(
  50515. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50516. {
  50517. front: {
  50518. height: math.unit(14, "feet"),
  50519. weight: math.unit(3400, "lb"),
  50520. name: "Front",
  50521. image: {
  50522. source: "./media/characters/aletia/front.svg",
  50523. extra: 1185/1052,
  50524. bottom: 21/1206
  50525. }
  50526. },
  50527. },
  50528. [
  50529. {
  50530. name: "Compressed",
  50531. height: math.unit(8, "feet")
  50532. },
  50533. {
  50534. name: "Normal",
  50535. height: math.unit(14, "feet"),
  50536. default: true
  50537. },
  50538. ]
  50539. ))
  50540. characterMakers.push(() => makeCharacter(
  50541. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50542. {
  50543. front: {
  50544. height: math.unit(17, "feet"),
  50545. weight: math.unit(6500, "lb"),
  50546. name: "Front",
  50547. image: {
  50548. source: "./media/characters/deidra/front.svg",
  50549. extra: 1201/1081,
  50550. bottom: 16/1217
  50551. }
  50552. },
  50553. },
  50554. [
  50555. {
  50556. name: "Compressed",
  50557. height: math.unit(9 + 6/12, "feet")
  50558. },
  50559. {
  50560. name: "Normal",
  50561. height: math.unit(17, "feet"),
  50562. default: true
  50563. },
  50564. ]
  50565. ))
  50566. characterMakers.push(() => makeCharacter(
  50567. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50568. {
  50569. front: {
  50570. height: math.unit(7 + 4/12, "feet"),
  50571. weight: math.unit(280, "lb"),
  50572. name: "Front",
  50573. image: {
  50574. source: "./media/characters/freki-yrmori/front.svg",
  50575. extra: 1286/1182,
  50576. bottom: 29/1315
  50577. }
  50578. },
  50579. maw: {
  50580. height: math.unit(0.9, "feet"),
  50581. name: "Maw",
  50582. image: {
  50583. source: "./media/characters/freki-yrmori/maw.svg"
  50584. }
  50585. },
  50586. },
  50587. [
  50588. {
  50589. name: "Normal",
  50590. height: math.unit(7 + 4/12, "feet"),
  50591. default: true
  50592. },
  50593. {
  50594. name: "Macro",
  50595. height: math.unit(38.5, "meters")
  50596. },
  50597. ]
  50598. ))
  50599. characterMakers.push(() => makeCharacter(
  50600. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50601. {
  50602. side: {
  50603. height: math.unit(47.2, "meters"),
  50604. weight: math.unit(10000, "tons"),
  50605. name: "Side",
  50606. image: {
  50607. source: "./media/characters/aetherios/side.svg",
  50608. extra: 2363/642,
  50609. bottom: 221/2584
  50610. }
  50611. },
  50612. top: {
  50613. height: math.unit(240, "meters"),
  50614. weight: math.unit(10000, "tons"),
  50615. name: "Top",
  50616. image: {
  50617. source: "./media/characters/aetherios/top.svg"
  50618. }
  50619. },
  50620. bottom: {
  50621. height: math.unit(240, "meters"),
  50622. weight: math.unit(10000, "tons"),
  50623. name: "Bottom",
  50624. image: {
  50625. source: "./media/characters/aetherios/bottom.svg"
  50626. }
  50627. },
  50628. head: {
  50629. height: math.unit(38.6, "meters"),
  50630. name: "Head",
  50631. image: {
  50632. source: "./media/characters/aetherios/head.svg",
  50633. extra: 1335/1112,
  50634. bottom: 0/1335
  50635. }
  50636. },
  50637. front: {
  50638. height: math.unit(29, "meters"),
  50639. name: "Front",
  50640. image: {
  50641. source: "./media/characters/aetherios/front.svg",
  50642. extra: 1266/953,
  50643. bottom: 158/1424
  50644. }
  50645. },
  50646. maw: {
  50647. height: math.unit(16.37, "meters"),
  50648. name: "Maw",
  50649. image: {
  50650. source: "./media/characters/aetherios/maw.svg",
  50651. extra: 748/637,
  50652. bottom: 0/748
  50653. },
  50654. extraAttributes: {
  50655. preyCapacity: {
  50656. name: "Capacity",
  50657. power: 3,
  50658. type: "volume",
  50659. base: math.unit(1000, "people")
  50660. },
  50661. tongueSize: {
  50662. name: "Tongue Size",
  50663. power: 2,
  50664. type: "area",
  50665. base: math.unit(21, "m^2")
  50666. }
  50667. }
  50668. },
  50669. forepaw: {
  50670. height: math.unit(18, "meters"),
  50671. name: "Forepaw",
  50672. image: {
  50673. source: "./media/characters/aetherios/forepaw.svg"
  50674. }
  50675. },
  50676. hindpaw: {
  50677. height: math.unit(23, "meters"),
  50678. name: "Hindpaw",
  50679. image: {
  50680. source: "./media/characters/aetherios/hindpaw.svg"
  50681. }
  50682. },
  50683. genitals: {
  50684. height: math.unit(42, "meters"),
  50685. name: "Genitals",
  50686. image: {
  50687. source: "./media/characters/aetherios/genitals.svg"
  50688. }
  50689. },
  50690. },
  50691. [
  50692. {
  50693. name: "Normal",
  50694. height: math.unit(47.2, "meters"),
  50695. default: true
  50696. },
  50697. {
  50698. name: "Macro",
  50699. height: math.unit(160, "meters")
  50700. },
  50701. {
  50702. name: "Mega",
  50703. height: math.unit(1.87, "km")
  50704. },
  50705. {
  50706. name: "Giga",
  50707. height: math.unit(40000, "km")
  50708. },
  50709. {
  50710. name: "Stellar",
  50711. height: math.unit(158000000, "km")
  50712. },
  50713. {
  50714. name: "Cosmic",
  50715. height: math.unit(9.46e12, "km")
  50716. },
  50717. ]
  50718. ))
  50719. characterMakers.push(() => makeCharacter(
  50720. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50721. {
  50722. front: {
  50723. height: math.unit(5 + 4/12, "feet"),
  50724. weight: math.unit(80, "lb"),
  50725. name: "Front",
  50726. image: {
  50727. source: "./media/characters/mizu-gieeg/front.svg",
  50728. extra: 850/709,
  50729. bottom: 52/902
  50730. }
  50731. },
  50732. back: {
  50733. height: math.unit(5 + 4/12, "feet"),
  50734. weight: math.unit(80, "lb"),
  50735. name: "Back",
  50736. image: {
  50737. source: "./media/characters/mizu-gieeg/back.svg",
  50738. extra: 882/745,
  50739. bottom: 25/907
  50740. }
  50741. },
  50742. },
  50743. [
  50744. {
  50745. name: "Normal",
  50746. height: math.unit(5 + 4/12, "feet"),
  50747. default: true
  50748. },
  50749. ]
  50750. ))
  50751. characterMakers.push(() => makeCharacter(
  50752. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50753. {
  50754. front: {
  50755. height: math.unit(6, "feet"),
  50756. name: "Front",
  50757. image: {
  50758. source: "./media/characters/roselle-st-papier/front.svg",
  50759. extra: 1430/1280,
  50760. bottom: 37/1467
  50761. }
  50762. },
  50763. back: {
  50764. height: math.unit(6, "feet"),
  50765. name: "Back",
  50766. image: {
  50767. source: "./media/characters/roselle-st-papier/back.svg",
  50768. extra: 1491/1296,
  50769. bottom: 23/1514
  50770. }
  50771. },
  50772. ear: {
  50773. height: math.unit(1.26, "feet"),
  50774. name: "Ear",
  50775. image: {
  50776. source: "./media/characters/roselle-st-papier/ear.svg"
  50777. }
  50778. },
  50779. },
  50780. [
  50781. {
  50782. name: "Normal",
  50783. height: math.unit(150, "feet"),
  50784. default: true
  50785. },
  50786. ]
  50787. ))
  50788. characterMakers.push(() => makeCharacter(
  50789. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50790. {
  50791. front: {
  50792. height: math.unit(1, "inches"),
  50793. name: "Front",
  50794. image: {
  50795. source: "./media/characters/valargent/front.svg",
  50796. extra: 1825/1694,
  50797. bottom: 62/1887
  50798. }
  50799. },
  50800. back: {
  50801. height: math.unit(1, "inches"),
  50802. name: "Back",
  50803. image: {
  50804. source: "./media/characters/valargent/back.svg",
  50805. extra: 1775/1682,
  50806. bottom: 88/1863
  50807. }
  50808. },
  50809. },
  50810. [
  50811. {
  50812. name: "Micro",
  50813. height: math.unit(1, "inch"),
  50814. default: true
  50815. },
  50816. ]
  50817. ))
  50818. characterMakers.push(() => makeCharacter(
  50819. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50820. {
  50821. front: {
  50822. height: math.unit(3.4, "meters"),
  50823. name: "Front",
  50824. image: {
  50825. source: "./media/characters/zarina/front.svg",
  50826. extra: 1733/1425,
  50827. bottom: 93/1826
  50828. }
  50829. },
  50830. squatting: {
  50831. height: math.unit(2.14, "meters"),
  50832. name: "Squatting",
  50833. image: {
  50834. source: "./media/characters/zarina/squatting.svg",
  50835. extra: 1073/788,
  50836. bottom: 63/1136
  50837. }
  50838. },
  50839. back: {
  50840. height: math.unit(2.14, "meters"),
  50841. name: "Back",
  50842. image: {
  50843. source: "./media/characters/zarina/back.svg",
  50844. extra: 1128/885,
  50845. bottom: 0/1128
  50846. }
  50847. },
  50848. },
  50849. [
  50850. {
  50851. name: "Normal",
  50852. height: math.unit(3.4, "meters"),
  50853. default: true
  50854. },
  50855. {
  50856. name: "Big",
  50857. height: math.unit(5, "meters")
  50858. },
  50859. {
  50860. name: "Macro",
  50861. height: math.unit(110, "meters")
  50862. },
  50863. ]
  50864. ))
  50865. characterMakers.push(() => makeCharacter(
  50866. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50867. {
  50868. front: {
  50869. height: math.unit(7, "feet"),
  50870. name: "Front",
  50871. image: {
  50872. source: "./media/characters/ventus-astro-fox/front.svg",
  50873. extra: 1792/1623,
  50874. bottom: 28/1820
  50875. }
  50876. },
  50877. back: {
  50878. height: math.unit(7, "feet"),
  50879. name: "Back",
  50880. image: {
  50881. source: "./media/characters/ventus-astro-fox/back.svg",
  50882. extra: 1789/1620,
  50883. bottom: 31/1820
  50884. }
  50885. },
  50886. outfit: {
  50887. height: math.unit(7, "feet"),
  50888. name: "Outfit",
  50889. image: {
  50890. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50891. extra: 1054/925,
  50892. bottom: 15/1069
  50893. }
  50894. },
  50895. head: {
  50896. height: math.unit(1.12, "feet"),
  50897. name: "Head",
  50898. image: {
  50899. source: "./media/characters/ventus-astro-fox/head.svg",
  50900. extra: 866/504,
  50901. bottom: 0/866
  50902. }
  50903. },
  50904. hand: {
  50905. height: math.unit(1, "feet"),
  50906. name: "Hand",
  50907. image: {
  50908. source: "./media/characters/ventus-astro-fox/hand.svg"
  50909. }
  50910. },
  50911. paw: {
  50912. height: math.unit(1.5, "feet"),
  50913. name: "Paw",
  50914. image: {
  50915. source: "./media/characters/ventus-astro-fox/paw.svg"
  50916. }
  50917. },
  50918. },
  50919. [
  50920. {
  50921. name: "Normal",
  50922. height: math.unit(7, "feet"),
  50923. default: true
  50924. },
  50925. {
  50926. name: "Macro",
  50927. height: math.unit(200, "feet")
  50928. },
  50929. {
  50930. name: "Cosmic",
  50931. height: math.unit(3, "universes")
  50932. },
  50933. ]
  50934. ))
  50935. characterMakers.push(() => makeCharacter(
  50936. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50937. {
  50938. front: {
  50939. height: math.unit(3, "meters"),
  50940. weight: math.unit(7000, "lb"),
  50941. name: "Front",
  50942. image: {
  50943. source: "./media/characters/core-t/front.svg",
  50944. extra: 5729/4941,
  50945. bottom: 1129/6858
  50946. }
  50947. },
  50948. },
  50949. [
  50950. {
  50951. name: "Big",
  50952. height: math.unit(3, "meters"),
  50953. default: true
  50954. },
  50955. ]
  50956. ))
  50957. characterMakers.push(() => makeCharacter(
  50958. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50959. {
  50960. normal: {
  50961. height: math.unit(6 + 6/12, "feet"),
  50962. weight: math.unit(275, "lb"),
  50963. name: "Front",
  50964. image: {
  50965. source: "./media/characters/cadbunny/normal.svg",
  50966. extra: 1129/947,
  50967. bottom: 93/1222
  50968. },
  50969. default: true,
  50970. form: "normal"
  50971. },
  50972. gigantamax: {
  50973. height: math.unit(26, "feet"),
  50974. weight: math.unit(16000, "lb"),
  50975. name: "Front",
  50976. image: {
  50977. source: "./media/characters/cadbunny/gigantamax.svg",
  50978. extra: 1133/944,
  50979. bottom: 90/1223
  50980. },
  50981. default: true,
  50982. form: "gigantamax"
  50983. },
  50984. },
  50985. [
  50986. {
  50987. name: "Normal",
  50988. height: math.unit(6 + 6/12, "feet"),
  50989. default: true,
  50990. form: "normal"
  50991. },
  50992. {
  50993. name: "Small",
  50994. height: math.unit(26, "feet"),
  50995. default: true,
  50996. form: "gigantamax"
  50997. },
  50998. {
  50999. name: "Large",
  51000. height: math.unit(78, "feet"),
  51001. form: "gigantamax"
  51002. },
  51003. ],
  51004. {
  51005. "normal": {
  51006. name: "Normal",
  51007. default: true
  51008. },
  51009. "gigantamax": {
  51010. name: "Gigantamax"
  51011. }
  51012. }
  51013. ))
  51014. characterMakers.push(() => makeCharacter(
  51015. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51016. {
  51017. anthroFront: {
  51018. height: math.unit(8, "feet"),
  51019. weight: math.unit(300, "lb"),
  51020. name: "Front",
  51021. image: {
  51022. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51023. extra: 1272/1176,
  51024. bottom: 53/1325
  51025. },
  51026. form: "anthro",
  51027. default: true
  51028. },
  51029. feralSide: {
  51030. height: math.unit(4, "feet"),
  51031. weight: math.unit(250, "lb"),
  51032. name: "Side",
  51033. image: {
  51034. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51035. extra: 731/621,
  51036. bottom: 0/731
  51037. },
  51038. form: "feral",
  51039. default: true
  51040. },
  51041. },
  51042. [
  51043. {
  51044. name: "Regular",
  51045. height: math.unit(8, "feet"),
  51046. form: "anthro"
  51047. },
  51048. {
  51049. name: "Macro",
  51050. height: math.unit(250, "feet"),
  51051. form: "anthro",
  51052. default: true
  51053. },
  51054. {
  51055. name: "Regular",
  51056. height: math.unit(4, "feet"),
  51057. form: "feral"
  51058. },
  51059. {
  51060. name: "Macro",
  51061. height: math.unit(125, "feet"),
  51062. form: "feral",
  51063. default: true
  51064. },
  51065. ],
  51066. {
  51067. "anthro": {
  51068. name: "Anthro",
  51069. default: true
  51070. },
  51071. "feral": {
  51072. name: "Feral",
  51073. },
  51074. }
  51075. ))
  51076. characterMakers.push(() => makeCharacter(
  51077. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51078. {
  51079. front: {
  51080. height: math.unit(11 + 10/12, "feet"),
  51081. weight: math.unit(1587, "kg"),
  51082. name: "Front",
  51083. image: {
  51084. source: "./media/characters/maple-javira-dragon/front.svg",
  51085. extra: 1136/744,
  51086. bottom: 73/1209
  51087. }
  51088. },
  51089. side: {
  51090. height: math.unit(11 + 10/12, "feet"),
  51091. weight: math.unit(1587, "kg"),
  51092. name: "Side",
  51093. image: {
  51094. source: "./media/characters/maple-javira-dragon/side.svg",
  51095. extra: 712/505,
  51096. bottom: 17/729
  51097. }
  51098. },
  51099. head: {
  51100. height: math.unit(8.05, "feet"),
  51101. name: "Head",
  51102. image: {
  51103. source: "./media/characters/maple-javira-dragon/head.svg",
  51104. extra: 1420/1344,
  51105. bottom: 0/1420
  51106. }
  51107. },
  51108. },
  51109. [
  51110. {
  51111. name: "Normal",
  51112. height: math.unit(11 + 10/12, "feet"),
  51113. default: true
  51114. },
  51115. ]
  51116. ))
  51117. characterMakers.push(() => makeCharacter(
  51118. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51119. {
  51120. front: {
  51121. height: math.unit(117, "cm"),
  51122. weight: math.unit(50, "kg"),
  51123. name: "Front",
  51124. image: {
  51125. source: "./media/characters/sonia-wyverntail/front.svg",
  51126. extra: 708/592,
  51127. bottom: 25/733
  51128. }
  51129. },
  51130. },
  51131. [
  51132. {
  51133. name: "Normal",
  51134. height: math.unit(117, "cm"),
  51135. default: true
  51136. },
  51137. ]
  51138. ))
  51139. characterMakers.push(() => makeCharacter(
  51140. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51141. {
  51142. front: {
  51143. height: math.unit(6 + 5/12, "feet"),
  51144. name: "Front",
  51145. image: {
  51146. source: "./media/characters/micah/front.svg",
  51147. extra: 1758/1546,
  51148. bottom: 214/1972
  51149. }
  51150. },
  51151. },
  51152. [
  51153. {
  51154. name: "Normal",
  51155. height: math.unit(6 + 5/12, "feet"),
  51156. default: true
  51157. },
  51158. ]
  51159. ))
  51160. characterMakers.push(() => makeCharacter(
  51161. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  51162. {
  51163. front: {
  51164. height: math.unit(5 + 10/12, "feet"),
  51165. weight: math.unit(220, "lb"),
  51166. name: "Front",
  51167. image: {
  51168. source: "./media/characters/zarya/front.svg",
  51169. extra: 593/572,
  51170. bottom: 50/643
  51171. }
  51172. },
  51173. back: {
  51174. height: math.unit(5 + 10/12, "feet"),
  51175. weight: math.unit(220, "lb"),
  51176. name: "Back",
  51177. image: {
  51178. source: "./media/characters/zarya/back.svg",
  51179. extra: 603/582,
  51180. bottom: 38/641
  51181. }
  51182. },
  51183. },
  51184. [
  51185. {
  51186. name: "Normal",
  51187. height: math.unit(5 + 10/12, "feet"),
  51188. default: true
  51189. },
  51190. ]
  51191. ))
  51192. characterMakers.push(() => makeCharacter(
  51193. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51194. {
  51195. front: {
  51196. height: math.unit(7.5, "feet"),
  51197. name: "Front",
  51198. image: {
  51199. source: "./media/characters/sven-hatisson/front.svg",
  51200. extra: 917/857,
  51201. bottom: 42/959
  51202. }
  51203. },
  51204. back: {
  51205. height: math.unit(7.5, "feet"),
  51206. name: "Back",
  51207. image: {
  51208. source: "./media/characters/sven-hatisson/back.svg",
  51209. extra: 903/856,
  51210. bottom: 15/918
  51211. }
  51212. },
  51213. },
  51214. [
  51215. {
  51216. name: "Base Height",
  51217. height: math.unit(7.5, "feet")
  51218. },
  51219. {
  51220. name: "Usual Height",
  51221. height: math.unit(13.5, "feet"),
  51222. default: true
  51223. },
  51224. {
  51225. name: "Smaller Macro",
  51226. height: math.unit(85, "feet")
  51227. },
  51228. {
  51229. name: "Moderate Macro",
  51230. height: math.unit(320, "feet")
  51231. },
  51232. {
  51233. name: "Large Macro",
  51234. height: math.unit(1000, "feet")
  51235. },
  51236. {
  51237. name: "Largest Size",
  51238. height: math.unit(2, "miles")
  51239. },
  51240. ]
  51241. ))
  51242. characterMakers.push(() => makeCharacter(
  51243. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51244. {
  51245. side: {
  51246. height: math.unit(1.8, "meters"),
  51247. weight: math.unit(275, "kg"),
  51248. name: "Side",
  51249. image: {
  51250. source: "./media/characters/terra/side.svg",
  51251. extra: 1273/1147,
  51252. bottom: 0/1273
  51253. }
  51254. },
  51255. },
  51256. [
  51257. {
  51258. name: "Normal",
  51259. height: math.unit(16.2, "meters"),
  51260. default: true
  51261. },
  51262. ]
  51263. ))
  51264. characterMakers.push(() => makeCharacter(
  51265. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51266. {
  51267. borzoiFront: {
  51268. height: math.unit(6 + 9/12, "feet"),
  51269. name: "Front",
  51270. image: {
  51271. source: "./media/characters/rae/borzoi-front.svg",
  51272. extra: 1161/1098,
  51273. bottom: 31/1192
  51274. },
  51275. form: "borzoi",
  51276. default: true
  51277. },
  51278. werewolfFront: {
  51279. height: math.unit(8 + 7/12, "feet"),
  51280. name: "Front",
  51281. image: {
  51282. source: "./media/characters/rae/werewolf-front.svg",
  51283. extra: 1411/1334,
  51284. bottom: 127/1538
  51285. },
  51286. form: "werewolf",
  51287. default: true
  51288. },
  51289. },
  51290. [
  51291. {
  51292. name: "Normal",
  51293. height: math.unit(6 + 9/12, "feet"),
  51294. default: true,
  51295. form: "borzoi"
  51296. },
  51297. {
  51298. name: "Normal",
  51299. height: math.unit(8 + 7/12, "feet"),
  51300. default: true,
  51301. form: "werewolf"
  51302. },
  51303. ],
  51304. {
  51305. "borzoi": {
  51306. name: "Borzoi",
  51307. default: true
  51308. },
  51309. "werewolf": {
  51310. name: "Werewolf",
  51311. },
  51312. }
  51313. ))
  51314. characterMakers.push(() => makeCharacter(
  51315. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51316. {
  51317. front: {
  51318. height: math.unit(8 + 7/12, "feet"),
  51319. weight: math.unit(482, "lb"),
  51320. name: "Front",
  51321. image: {
  51322. source: "./media/characters/kit/front.svg",
  51323. extra: 1247/1103,
  51324. bottom: 41/1288
  51325. }
  51326. },
  51327. back: {
  51328. height: math.unit(8 + 7/12, "feet"),
  51329. weight: math.unit(482, "lb"),
  51330. name: "Back",
  51331. image: {
  51332. source: "./media/characters/kit/back.svg",
  51333. extra: 1252/1123,
  51334. bottom: 21/1273
  51335. }
  51336. },
  51337. paw: {
  51338. height: math.unit(1.46, "feet"),
  51339. name: "Paw",
  51340. image: {
  51341. source: "./media/characters/kit/paw.svg"
  51342. }
  51343. },
  51344. },
  51345. [
  51346. {
  51347. name: "Normal",
  51348. height: math.unit(2.61, "meters"),
  51349. default: true
  51350. },
  51351. {
  51352. name: "\"Tall\"",
  51353. height: math.unit(8.21, "meters")
  51354. },
  51355. {
  51356. name: "Tall",
  51357. height: math.unit(19.6, "meters")
  51358. },
  51359. {
  51360. name: "Very Tall",
  51361. height: math.unit(57.91, "meters")
  51362. },
  51363. {
  51364. name: "Semi-Macro",
  51365. height: math.unit(138.64, "meters")
  51366. },
  51367. {
  51368. name: "Macro",
  51369. height: math.unit(831.99, "meters")
  51370. },
  51371. {
  51372. name: "EX-Macro",
  51373. height: math.unit(96451121, "meters")
  51374. },
  51375. {
  51376. name: "S1-Omnipotent",
  51377. height: math.unit(4.42074e+9, "meters")
  51378. },
  51379. {
  51380. name: "S2-Omnipotent",
  51381. height: math.unit(9.42074e+17, "meters")
  51382. },
  51383. {
  51384. name: "Omnipotent",
  51385. height: math.unit(4.23112e+24, "meters")
  51386. },
  51387. {
  51388. name: "Hypergod",
  51389. height: math.unit(5.05176e+27, "meters")
  51390. },
  51391. {
  51392. name: "Hypergod-EX",
  51393. height: math.unit(9.45532e+49, "meters")
  51394. },
  51395. {
  51396. name: "Hypergod-SP",
  51397. height: math.unit(9.45532e+195, "meters")
  51398. },
  51399. ]
  51400. ))
  51401. characterMakers.push(() => makeCharacter(
  51402. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51403. {
  51404. side: {
  51405. height: math.unit(0.6, "meters"),
  51406. weight: math.unit(24, "kg"),
  51407. name: "Side",
  51408. image: {
  51409. source: "./media/characters/celeste/side.svg",
  51410. extra: 810/517,
  51411. bottom: 53/863
  51412. }
  51413. },
  51414. },
  51415. [
  51416. {
  51417. name: "Velociraptor",
  51418. height: math.unit(0.6, "meters"),
  51419. default: true
  51420. },
  51421. {
  51422. name: "Utahraptor",
  51423. height: math.unit(1.8, "meters")
  51424. },
  51425. {
  51426. name: "Gallimimus",
  51427. height: math.unit(4.0, "meters")
  51428. },
  51429. {
  51430. name: "Large",
  51431. height: math.unit(20, "meters")
  51432. },
  51433. {
  51434. name: "Planetary",
  51435. height: math.unit(50, "megameters")
  51436. },
  51437. {
  51438. name: "Stellar",
  51439. height: math.unit(1.5, "gigameters")
  51440. },
  51441. {
  51442. name: "Galactic",
  51443. height: math.unit(100, "exameters")
  51444. },
  51445. ]
  51446. ))
  51447. characterMakers.push(() => makeCharacter(
  51448. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51449. {
  51450. front: {
  51451. height: math.unit(6, "feet"),
  51452. weight: math.unit(210, "lb"),
  51453. name: "Front",
  51454. image: {
  51455. source: "./media/characters/glacia/front.svg",
  51456. extra: 958/901,
  51457. bottom: 45/1003
  51458. }
  51459. },
  51460. },
  51461. [
  51462. {
  51463. name: "Macro",
  51464. height: math.unit(1000, "meters"),
  51465. default: true
  51466. },
  51467. ]
  51468. ))
  51469. characterMakers.push(() => makeCharacter(
  51470. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51471. {
  51472. front: {
  51473. height: math.unit(4, "meters"),
  51474. name: "Front",
  51475. image: {
  51476. source: "./media/characters/giri/front.svg",
  51477. extra: 966/894,
  51478. bottom: 21/987
  51479. }
  51480. },
  51481. },
  51482. [
  51483. {
  51484. name: "Normal",
  51485. height: math.unit(4, "meters"),
  51486. default: true
  51487. },
  51488. ]
  51489. ))
  51490. characterMakers.push(() => makeCharacter(
  51491. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51492. {
  51493. back: {
  51494. height: math.unit(4, "feet"),
  51495. weight: math.unit(37, "lb"),
  51496. name: "Back",
  51497. image: {
  51498. source: "./media/characters/tin/back.svg",
  51499. extra: 845/780,
  51500. bottom: 28/873
  51501. }
  51502. },
  51503. },
  51504. [
  51505. {
  51506. name: "Normal",
  51507. height: math.unit(4, "feet"),
  51508. default: true
  51509. },
  51510. ]
  51511. ))
  51512. characterMakers.push(() => makeCharacter(
  51513. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51514. {
  51515. front: {
  51516. height: math.unit(25, "feet"),
  51517. name: "Front",
  51518. image: {
  51519. source: "./media/characters/cadenza-vivace/front.svg",
  51520. extra: 1842/1578,
  51521. bottom: 30/1872
  51522. }
  51523. },
  51524. },
  51525. [
  51526. {
  51527. name: "Macro",
  51528. height: math.unit(25, "feet"),
  51529. default: true
  51530. },
  51531. ]
  51532. ))
  51533. characterMakers.push(() => makeCharacter(
  51534. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51535. {
  51536. front: {
  51537. height: math.unit(10, "feet"),
  51538. weight: math.unit(625, "kg"),
  51539. name: "Front",
  51540. image: {
  51541. source: "./media/characters/zain/front.svg",
  51542. extra: 1682/1498,
  51543. bottom: 223/1905
  51544. }
  51545. },
  51546. back: {
  51547. height: math.unit(10, "feet"),
  51548. weight: math.unit(625, "kg"),
  51549. name: "Back",
  51550. image: {
  51551. source: "./media/characters/zain/back.svg",
  51552. extra: 1814/1657,
  51553. bottom: 152/1966
  51554. }
  51555. },
  51556. head: {
  51557. height: math.unit(10, "feet"),
  51558. weight: math.unit(625, "kg"),
  51559. name: "Head",
  51560. image: {
  51561. source: "./media/characters/zain/head.svg",
  51562. extra: 1059/762,
  51563. bottom: 0/1059
  51564. }
  51565. },
  51566. },
  51567. [
  51568. {
  51569. name: "Normal",
  51570. height: math.unit(10, "feet"),
  51571. default: true
  51572. },
  51573. ]
  51574. ))
  51575. characterMakers.push(() => makeCharacter(
  51576. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51577. {
  51578. front: {
  51579. height: math.unit(6 + 5/12, "feet"),
  51580. weight: math.unit(750, "lb"),
  51581. name: "Front",
  51582. image: {
  51583. source: "./media/characters/ruchex/front.svg",
  51584. extra: 877/820,
  51585. bottom: 17/894
  51586. },
  51587. extraAttributes: {
  51588. "width": {
  51589. name: "Width",
  51590. power: 1,
  51591. type: "length",
  51592. base: math.unit(4.757, "feet")
  51593. },
  51594. }
  51595. },
  51596. },
  51597. [
  51598. {
  51599. name: "Normal",
  51600. height: math.unit(6 + 5/12, "feet"),
  51601. default: true
  51602. },
  51603. ]
  51604. ))
  51605. characterMakers.push(() => makeCharacter(
  51606. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51607. {
  51608. dressedFront: {
  51609. height: math.unit(191, "cm"),
  51610. weight: math.unit(80, "kg"),
  51611. name: "Front",
  51612. image: {
  51613. source: "./media/characters/buster/dressed-front.svg",
  51614. extra: 1022/973,
  51615. bottom: 69/1091
  51616. }
  51617. },
  51618. dressedBack: {
  51619. height: math.unit(191, "cm"),
  51620. weight: math.unit(80, "kg"),
  51621. name: "Back",
  51622. image: {
  51623. source: "./media/characters/buster/dressed-back.svg",
  51624. extra: 1018/970,
  51625. bottom: 55/1073
  51626. }
  51627. },
  51628. nudeFront: {
  51629. height: math.unit(191, "cm"),
  51630. weight: math.unit(80, "kg"),
  51631. name: "Front (Nude)",
  51632. image: {
  51633. source: "./media/characters/buster/nude-front.svg",
  51634. extra: 1022/973,
  51635. bottom: 69/1091
  51636. }
  51637. },
  51638. nudeBack: {
  51639. height: math.unit(191, "cm"),
  51640. weight: math.unit(80, "kg"),
  51641. name: "Back (Nude)",
  51642. image: {
  51643. source: "./media/characters/buster/nude-back.svg",
  51644. extra: 1018/970,
  51645. bottom: 55/1073
  51646. }
  51647. },
  51648. dick: {
  51649. height: math.unit(2.59, "feet"),
  51650. name: "Dick",
  51651. image: {
  51652. source: "./media/characters/buster/dick.svg"
  51653. }
  51654. },
  51655. ass: {
  51656. height: math.unit(1.2, "feet"),
  51657. name: "Ass",
  51658. image: {
  51659. source: "./media/characters/buster/ass.svg"
  51660. }
  51661. },
  51662. },
  51663. [
  51664. {
  51665. name: "Normal",
  51666. height: math.unit(191, "cm"),
  51667. default: true
  51668. },
  51669. ]
  51670. ))
  51671. characterMakers.push(() => makeCharacter(
  51672. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51673. {
  51674. side: {
  51675. height: math.unit(8.1, "feet"),
  51676. weight: math.unit(3500, "lb"),
  51677. name: "Side",
  51678. image: {
  51679. source: "./media/characters/sonya/side.svg",
  51680. extra: 1730/1317,
  51681. bottom: 86/1816
  51682. }
  51683. },
  51684. },
  51685. [
  51686. {
  51687. name: "Normal",
  51688. height: math.unit(8.1, "feet"),
  51689. default: true
  51690. },
  51691. ]
  51692. ))
  51693. characterMakers.push(() => makeCharacter(
  51694. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51695. {
  51696. front: {
  51697. height: math.unit(6, "feet"),
  51698. weight: math.unit(150, "lb"),
  51699. name: "Front",
  51700. image: {
  51701. source: "./media/characters/cadence-andrysiak/front.svg",
  51702. extra: 1164/1121,
  51703. bottom: 60/1224
  51704. }
  51705. },
  51706. back: {
  51707. height: math.unit(6, "feet"),
  51708. weight: math.unit(150, "lb"),
  51709. name: "Back",
  51710. image: {
  51711. source: "./media/characters/cadence-andrysiak/back.svg",
  51712. extra: 1200/1165,
  51713. bottom: 9/1209
  51714. }
  51715. },
  51716. dressed: {
  51717. height: math.unit(6, "feet"),
  51718. weight: math.unit(150, "lb"),
  51719. name: "Dressed",
  51720. image: {
  51721. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51722. extra: 1164/1121,
  51723. bottom: 60/1224
  51724. }
  51725. },
  51726. },
  51727. [
  51728. {
  51729. name: "Micro",
  51730. height: math.unit(1, "mm")
  51731. },
  51732. {
  51733. name: "Normal",
  51734. height: math.unit(6, "feet"),
  51735. default: true
  51736. },
  51737. ]
  51738. ))
  51739. characterMakers.push(() => makeCharacter(
  51740. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51741. {
  51742. front: {
  51743. height: math.unit(60, "inches"),
  51744. weight: math.unit(16, "lb"),
  51745. preyCapacity: math.unit(80, "liters"),
  51746. name: "Front",
  51747. image: {
  51748. source: "./media/characters/penny-lynx/front.svg",
  51749. extra: 1959/1769,
  51750. bottom: 49/2008
  51751. }
  51752. },
  51753. },
  51754. [
  51755. {
  51756. name: "Nokia",
  51757. height: math.unit(2, "inches")
  51758. },
  51759. {
  51760. name: "Desktop",
  51761. height: math.unit(24, "inches")
  51762. },
  51763. {
  51764. name: "TV",
  51765. height: math.unit(60, "inches")
  51766. },
  51767. {
  51768. name: "Jumbotron",
  51769. height: math.unit(12, "feet")
  51770. },
  51771. {
  51772. name: "Billboard",
  51773. height: math.unit(48, "feet"),
  51774. default: true
  51775. },
  51776. {
  51777. name: "IMAX",
  51778. height: math.unit(96, "feet")
  51779. },
  51780. {
  51781. name: "SINGULARITY",
  51782. height: math.unit(864938, "miles")
  51783. },
  51784. ]
  51785. ))
  51786. characterMakers.push(() => makeCharacter(
  51787. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51788. {
  51789. front: {
  51790. height: math.unit(5 + 4/12, "feet"),
  51791. weight: math.unit(230, "lb"),
  51792. name: "Front",
  51793. image: {
  51794. source: "./media/characters/sukebe/front.svg",
  51795. extra: 2130/2038,
  51796. bottom: 90/2220
  51797. }
  51798. },
  51799. back: {
  51800. height: math.unit(3.48, "feet"),
  51801. weight: math.unit(230, "lb"),
  51802. name: "Back",
  51803. image: {
  51804. source: "./media/characters/sukebe/back.svg",
  51805. extra: 1670/1604,
  51806. bottom: 0/1670
  51807. }
  51808. },
  51809. },
  51810. [
  51811. {
  51812. name: "Normal",
  51813. height: math.unit(5 + 4/12, "feet"),
  51814. default: true
  51815. },
  51816. ]
  51817. ))
  51818. characterMakers.push(() => makeCharacter(
  51819. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51820. {
  51821. front: {
  51822. height: math.unit(6, "feet"),
  51823. name: "Front",
  51824. image: {
  51825. source: "./media/characters/nylla/front.svg",
  51826. extra: 1868/1699,
  51827. bottom: 97/1965
  51828. }
  51829. },
  51830. back: {
  51831. height: math.unit(6, "feet"),
  51832. name: "Back",
  51833. image: {
  51834. source: "./media/characters/nylla/back.svg",
  51835. extra: 1889/1712,
  51836. bottom: 93/1982
  51837. }
  51838. },
  51839. frontNsfw: {
  51840. height: math.unit(6, "feet"),
  51841. name: "Front (NSFW)",
  51842. image: {
  51843. source: "./media/characters/nylla/front-nsfw.svg",
  51844. extra: 1868/1699,
  51845. bottom: 97/1965
  51846. },
  51847. extraAttributes: {
  51848. "dickLength": {
  51849. name: "Dick Length",
  51850. power: 1,
  51851. type: "length",
  51852. base: math.unit(1.4, "feet")
  51853. },
  51854. "cumVolume": {
  51855. name: "Cum Volume",
  51856. power: 3,
  51857. type: "volume",
  51858. base: math.unit(100, "mL")
  51859. },
  51860. }
  51861. },
  51862. backNsfw: {
  51863. height: math.unit(6, "feet"),
  51864. name: "Back (NSFW)",
  51865. image: {
  51866. source: "./media/characters/nylla/back-nsfw.svg",
  51867. extra: 1889/1712,
  51868. bottom: 93/1982
  51869. }
  51870. },
  51871. maw: {
  51872. height: math.unit(2.10, "feet"),
  51873. name: "Maw",
  51874. image: {
  51875. source: "./media/characters/nylla/maw.svg"
  51876. }
  51877. },
  51878. paws: {
  51879. height: math.unit(2.06, "feet"),
  51880. name: "Paws",
  51881. image: {
  51882. source: "./media/characters/nylla/paws.svg"
  51883. }
  51884. },
  51885. muzzle: {
  51886. height: math.unit(0.61, "feet"),
  51887. name: "Muzzle",
  51888. image: {
  51889. source: "./media/characters/nylla/muzzle.svg"
  51890. }
  51891. },
  51892. sheath: {
  51893. height: math.unit(1.305, "feet"),
  51894. name: "Sheath",
  51895. image: {
  51896. source: "./media/characters/nylla/sheath.svg"
  51897. }
  51898. },
  51899. },
  51900. [
  51901. {
  51902. name: "Micro",
  51903. height: math.unit(7.5, "inches")
  51904. },
  51905. {
  51906. name: "Normal",
  51907. height: math.unit(7, "feet"),
  51908. default: true
  51909. },
  51910. {
  51911. name: "Macro",
  51912. height: math.unit(60, "feet")
  51913. },
  51914. {
  51915. name: "Mega",
  51916. height: math.unit(200, "feet")
  51917. },
  51918. ]
  51919. ))
  51920. characterMakers.push(() => makeCharacter(
  51921. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51922. {
  51923. front: {
  51924. height: math.unit(10, "feet"),
  51925. weight: math.unit(2300, "lb"),
  51926. name: "Front",
  51927. image: {
  51928. source: "./media/characters/hunt3r/front.svg",
  51929. extra: 1909/1742,
  51930. bottom: 46/1955
  51931. }
  51932. },
  51933. },
  51934. [
  51935. {
  51936. name: "Normal",
  51937. height: math.unit(10, "feet"),
  51938. default: true
  51939. },
  51940. ]
  51941. ))
  51942. characterMakers.push(() => makeCharacter(
  51943. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51944. {
  51945. dressed: {
  51946. height: math.unit(11, "feet"),
  51947. weight: math.unit(18500, "lb"),
  51948. preyCapacity: math.unit(9, "people"),
  51949. name: "Dressed",
  51950. image: {
  51951. source: "./media/characters/cylphis/dressed.svg",
  51952. extra: 1028/1003,
  51953. bottom: 75/1103
  51954. },
  51955. },
  51956. undressed: {
  51957. height: math.unit(11, "feet"),
  51958. weight: math.unit(18500, "lb"),
  51959. preyCapacity: math.unit(9, "people"),
  51960. name: "Undressed",
  51961. image: {
  51962. source: "./media/characters/cylphis/undressed.svg",
  51963. extra: 1028/1003,
  51964. bottom: 75/1103
  51965. }
  51966. },
  51967. full: {
  51968. height: math.unit(11, "feet"),
  51969. weight: math.unit(18500 + 150*9, "lb"),
  51970. preyCapacity: math.unit(9, "people"),
  51971. name: "Full",
  51972. image: {
  51973. source: "./media/characters/cylphis/full.svg",
  51974. extra: 1028/1003,
  51975. bottom: 75/1103
  51976. }
  51977. },
  51978. },
  51979. [
  51980. {
  51981. name: "Small",
  51982. height: math.unit(8, "feet")
  51983. },
  51984. {
  51985. name: "Normal",
  51986. height: math.unit(11, "feet"),
  51987. default: true
  51988. },
  51989. ]
  51990. ))
  51991. characterMakers.push(() => makeCharacter(
  51992. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51993. {
  51994. front: {
  51995. height: math.unit(2 + 7/12, "feet"),
  51996. name: "Front",
  51997. image: {
  51998. source: "./media/characters/orishan/front.svg",
  51999. extra: 1058/1023,
  52000. bottom: 23/1081
  52001. }
  52002. },
  52003. back: {
  52004. height: math.unit(2 + 7/12, "feet"),
  52005. name: "Back",
  52006. image: {
  52007. source: "./media/characters/orishan/back.svg",
  52008. extra: 1058/1023,
  52009. bottom: 23/1081
  52010. }
  52011. },
  52012. },
  52013. [
  52014. {
  52015. name: "Micro",
  52016. height: math.unit(2, "cm")
  52017. },
  52018. {
  52019. name: "Normal",
  52020. height: math.unit(2 + 7/12, "feet"),
  52021. default: true
  52022. },
  52023. ]
  52024. ))
  52025. characterMakers.push(() => makeCharacter(
  52026. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52027. {
  52028. front: {
  52029. height: math.unit(3, "meters"),
  52030. weight: math.unit(508, "kg"),
  52031. name: "Front",
  52032. image: {
  52033. source: "./media/characters/seranis/front.svg",
  52034. extra: 1478/1454,
  52035. bottom: 41/1519
  52036. }
  52037. },
  52038. },
  52039. [
  52040. {
  52041. name: "Normal",
  52042. height: math.unit(3, "meters"),
  52043. default: true
  52044. },
  52045. {
  52046. name: "Macro",
  52047. height: math.unit(108, "meters")
  52048. },
  52049. {
  52050. name: "Megamacro",
  52051. height: math.unit(1250, "meters")
  52052. },
  52053. ]
  52054. ))
  52055. characterMakers.push(() => makeCharacter(
  52056. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52057. {
  52058. undressed: {
  52059. height: math.unit(5 + 3/12, "feet"),
  52060. name: "Undressed",
  52061. image: {
  52062. source: "./media/characters/ankou/undressed.svg",
  52063. extra: 1301/1213,
  52064. bottom: 87/1388
  52065. }
  52066. },
  52067. dressed: {
  52068. height: math.unit(5 + 3/12, "feet"),
  52069. name: "Dressed",
  52070. image: {
  52071. source: "./media/characters/ankou/dressed.svg",
  52072. extra: 1301/1213,
  52073. bottom: 87/1388
  52074. }
  52075. },
  52076. head: {
  52077. height: math.unit(1.61, "feet"),
  52078. name: "Head",
  52079. image: {
  52080. source: "./media/characters/ankou/head.svg"
  52081. }
  52082. },
  52083. },
  52084. [
  52085. {
  52086. name: "Normal",
  52087. height: math.unit(5 + 3/12, "feet"),
  52088. default: true
  52089. },
  52090. ]
  52091. ))
  52092. characterMakers.push(() => makeCharacter(
  52093. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52094. {
  52095. side: {
  52096. height: math.unit(6 + 3/12, "feet"),
  52097. weight: math.unit(200, "kg"),
  52098. name: "Side",
  52099. image: {
  52100. source: "./media/characters/juniper-skunktaur/side.svg",
  52101. extra: 1574/1229,
  52102. bottom: 38/1612
  52103. }
  52104. },
  52105. front: {
  52106. height: math.unit(6 + 3/12, "feet"),
  52107. weight: math.unit(200, "kg"),
  52108. name: "Front",
  52109. image: {
  52110. source: "./media/characters/juniper-skunktaur/front.svg",
  52111. extra: 1337/1278,
  52112. bottom: 22/1359
  52113. }
  52114. },
  52115. back: {
  52116. height: math.unit(6 + 3/12, "feet"),
  52117. weight: math.unit(200, "kg"),
  52118. name: "Back",
  52119. image: {
  52120. source: "./media/characters/juniper-skunktaur/back.svg",
  52121. extra: 1618/1273,
  52122. bottom: 13/1631
  52123. }
  52124. },
  52125. top: {
  52126. height: math.unit(2.62, "feet"),
  52127. weight: math.unit(200, "kg"),
  52128. name: "Top",
  52129. image: {
  52130. source: "./media/characters/juniper-skunktaur/top.svg"
  52131. }
  52132. },
  52133. },
  52134. [
  52135. {
  52136. name: "Normal",
  52137. height: math.unit(6 + 3/12, "feet"),
  52138. default: true
  52139. },
  52140. ]
  52141. ))
  52142. characterMakers.push(() => makeCharacter(
  52143. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52144. {
  52145. front: {
  52146. height: math.unit(20.5, "feet"),
  52147. name: "Front",
  52148. image: {
  52149. source: "./media/characters/rei/front.svg",
  52150. extra: 1349/1195,
  52151. bottom: 31/1380
  52152. }
  52153. },
  52154. back: {
  52155. height: math.unit(20.5, "feet"),
  52156. name: "Back",
  52157. image: {
  52158. source: "./media/characters/rei/back.svg",
  52159. extra: 1358/1204,
  52160. bottom: 22/1380
  52161. }
  52162. },
  52163. pawsDigi: {
  52164. height: math.unit(3.45, "feet"),
  52165. name: "Paws (Digi)",
  52166. image: {
  52167. source: "./media/characters/rei/paws-digi.svg"
  52168. }
  52169. },
  52170. pawsPlanti: {
  52171. height: math.unit(3.45, "feet"),
  52172. name: "Paws (Planti)",
  52173. image: {
  52174. source: "./media/characters/rei/paws-planti.svg"
  52175. }
  52176. },
  52177. },
  52178. [
  52179. {
  52180. name: "Normal",
  52181. height: math.unit(20.5, "feet"),
  52182. default: true
  52183. },
  52184. ]
  52185. ))
  52186. characterMakers.push(() => makeCharacter(
  52187. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52188. {
  52189. front: {
  52190. height: math.unit(5 + 11/12, "feet"),
  52191. name: "Front",
  52192. image: {
  52193. source: "./media/characters/carina/front.svg",
  52194. extra: 1720/1449,
  52195. bottom: 14/1734
  52196. }
  52197. },
  52198. back: {
  52199. height: math.unit(5 + 11/12, "feet"),
  52200. name: "Back",
  52201. image: {
  52202. source: "./media/characters/carina/back.svg",
  52203. extra: 1493/1445,
  52204. bottom: 17/1510
  52205. }
  52206. },
  52207. paw: {
  52208. height: math.unit(0.92, "feet"),
  52209. name: "Paw",
  52210. image: {
  52211. source: "./media/characters/carina/paw.svg"
  52212. }
  52213. },
  52214. },
  52215. [
  52216. {
  52217. name: "Normal",
  52218. height: math.unit(5 + 11/12, "feet"),
  52219. default: true
  52220. },
  52221. ]
  52222. ))
  52223. characterMakers.push(() => makeCharacter(
  52224. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52225. {
  52226. front: {
  52227. height: math.unit(4.88, "meters"),
  52228. name: "Front",
  52229. image: {
  52230. source: "./media/characters/maya/front.svg",
  52231. extra: 1222/1145,
  52232. bottom: 57/1279
  52233. }
  52234. },
  52235. },
  52236. [
  52237. {
  52238. name: "Normal",
  52239. height: math.unit(4.88, "meters"),
  52240. default: true
  52241. },
  52242. {
  52243. name: "Macro",
  52244. height: math.unit(38.1, "meters")
  52245. },
  52246. {
  52247. name: "Macro+",
  52248. height: math.unit(152.4, "meters")
  52249. },
  52250. {
  52251. name: "Macro++",
  52252. height: math.unit(16.09, "km")
  52253. },
  52254. {
  52255. name: "Mega-macro",
  52256. height: math.unit(700, "megameters")
  52257. },
  52258. ]
  52259. ))
  52260. characterMakers.push(() => makeCharacter(
  52261. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52262. {
  52263. front: {
  52264. height: math.unit(6 + 2/12, "feet"),
  52265. weight: math.unit(500, "lb"),
  52266. preyCapacity: math.unit(4, "people"),
  52267. name: "Front",
  52268. image: {
  52269. source: "./media/characters/yepir/front.svg"
  52270. }
  52271. },
  52272. side: {
  52273. height: math.unit(6 + 2/12, "feet"),
  52274. weight: math.unit(500, "lb"),
  52275. preyCapacity: math.unit(4, "people"),
  52276. name: "Side",
  52277. image: {
  52278. source: "./media/characters/yepir/side.svg"
  52279. }
  52280. },
  52281. paw: {
  52282. height: math.unit(1.05, "feet"),
  52283. name: "Paw",
  52284. image: {
  52285. source: "./media/characters/yepir/paw.svg"
  52286. }
  52287. },
  52288. },
  52289. [
  52290. {
  52291. name: "Normal",
  52292. height: math.unit(6 + 2/12, "feet"),
  52293. default: true
  52294. },
  52295. ]
  52296. ))
  52297. characterMakers.push(() => makeCharacter(
  52298. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52299. {
  52300. front: {
  52301. height: math.unit(5 + 4/12, "feet"),
  52302. name: "Front",
  52303. image: {
  52304. source: "./media/characters/russec/front.svg",
  52305. extra: 1926/1626,
  52306. bottom: 72/1998
  52307. }
  52308. },
  52309. back: {
  52310. height: math.unit(5 + 4/12, "feet"),
  52311. name: "Back",
  52312. image: {
  52313. source: "./media/characters/russec/back.svg",
  52314. extra: 1910/1591,
  52315. bottom: 48/1958
  52316. }
  52317. },
  52318. },
  52319. [
  52320. {
  52321. name: "Small",
  52322. height: math.unit(5 + 4/12, "feet")
  52323. },
  52324. {
  52325. name: "Normal",
  52326. height: math.unit(72, "feet"),
  52327. default: true
  52328. },
  52329. ]
  52330. ))
  52331. characterMakers.push(() => makeCharacter(
  52332. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52333. {
  52334. side: {
  52335. height: math.unit(12, "feet"),
  52336. name: "Side",
  52337. image: {
  52338. source: "./media/characters/cianus/side.svg",
  52339. extra: 808/526,
  52340. bottom: 61/869
  52341. }
  52342. },
  52343. },
  52344. [
  52345. {
  52346. name: "Normal",
  52347. height: math.unit(12, "feet"),
  52348. default: true
  52349. },
  52350. ]
  52351. ))
  52352. characterMakers.push(() => makeCharacter(
  52353. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52354. {
  52355. front: {
  52356. height: math.unit(9 + 6/12, "feet"),
  52357. weight: math.unit(300, "lb"),
  52358. name: "Front",
  52359. image: {
  52360. source: "./media/characters/ahab/front.svg",
  52361. extra: 1897/1868,
  52362. bottom: 121/2018
  52363. }
  52364. },
  52365. frontNsfw: {
  52366. height: math.unit(9 + 6/12, "feet"),
  52367. weight: math.unit(300, "lb"),
  52368. name: "Front-nsfw",
  52369. image: {
  52370. source: "./media/characters/ahab/front-nsfw.svg",
  52371. extra: 1897/1868,
  52372. bottom: 121/2018
  52373. }
  52374. },
  52375. },
  52376. [
  52377. {
  52378. name: "Normal",
  52379. height: math.unit(9 + 6/12, "feet")
  52380. },
  52381. {
  52382. name: "Macro",
  52383. height: math.unit(657, "feet"),
  52384. default: true
  52385. },
  52386. ]
  52387. ))
  52388. characterMakers.push(() => makeCharacter(
  52389. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52390. {
  52391. front: {
  52392. height: math.unit(2.69, "meters"),
  52393. weight: math.unit(132, "kg"),
  52394. name: "Front",
  52395. image: {
  52396. source: "./media/characters/aarkus/front.svg",
  52397. extra: 1400/1231,
  52398. bottom: 34/1434
  52399. }
  52400. },
  52401. back: {
  52402. height: math.unit(2.69, "meters"),
  52403. weight: math.unit(132, "kg"),
  52404. name: "Back",
  52405. image: {
  52406. source: "./media/characters/aarkus/back.svg",
  52407. extra: 1381/1218,
  52408. bottom: 30/1411
  52409. }
  52410. },
  52411. frontNsfw: {
  52412. height: math.unit(2.69, "meters"),
  52413. weight: math.unit(132, "kg"),
  52414. name: "Front (NSFW)",
  52415. image: {
  52416. source: "./media/characters/aarkus/front-nsfw.svg",
  52417. extra: 1400/1231,
  52418. bottom: 34/1434
  52419. }
  52420. },
  52421. foot: {
  52422. height: math.unit(1.45, "feet"),
  52423. name: "Foot",
  52424. image: {
  52425. source: "./media/characters/aarkus/foot.svg"
  52426. }
  52427. },
  52428. head: {
  52429. height: math.unit(2.85, "feet"),
  52430. name: "Head",
  52431. image: {
  52432. source: "./media/characters/aarkus/head.svg"
  52433. }
  52434. },
  52435. headAlt: {
  52436. height: math.unit(3.07, "feet"),
  52437. name: "Head (Alt)",
  52438. image: {
  52439. source: "./media/characters/aarkus/head-alt.svg"
  52440. }
  52441. },
  52442. mouth: {
  52443. height: math.unit(1.25, "feet"),
  52444. name: "Mouth",
  52445. image: {
  52446. source: "./media/characters/aarkus/mouth.svg"
  52447. }
  52448. },
  52449. dick: {
  52450. height: math.unit(1.77, "feet"),
  52451. name: "Dick",
  52452. image: {
  52453. source: "./media/characters/aarkus/dick.svg"
  52454. }
  52455. },
  52456. },
  52457. [
  52458. {
  52459. name: "Normal",
  52460. height: math.unit(2.69, "meters"),
  52461. default: true
  52462. },
  52463. {
  52464. name: "Macro",
  52465. height: math.unit(269, "meters")
  52466. },
  52467. {
  52468. name: "Macro+",
  52469. height: math.unit(672.5, "meters")
  52470. },
  52471. {
  52472. name: "Megamacro",
  52473. height: math.unit(2.017, "km")
  52474. },
  52475. ]
  52476. ))
  52477. characterMakers.push(() => makeCharacter(
  52478. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52479. {
  52480. front: {
  52481. height: math.unit(23.47, "cm"),
  52482. weight: math.unit(600, "grams"),
  52483. name: "Front",
  52484. image: {
  52485. source: "./media/characters/diode/front.svg",
  52486. extra: 1778/1396,
  52487. bottom: 95/1873
  52488. }
  52489. },
  52490. side: {
  52491. height: math.unit(23.47, "cm"),
  52492. weight: math.unit(600, "grams"),
  52493. name: "Side",
  52494. image: {
  52495. source: "./media/characters/diode/side.svg",
  52496. extra: 1831/1404,
  52497. bottom: 86/1917
  52498. }
  52499. },
  52500. wings: {
  52501. height: math.unit(0.683, "feet"),
  52502. name: "Wings",
  52503. image: {
  52504. source: "./media/characters/diode/wings.svg"
  52505. }
  52506. },
  52507. },
  52508. [
  52509. {
  52510. name: "Normal",
  52511. height: math.unit(23.47, "cm"),
  52512. default: true
  52513. },
  52514. ]
  52515. ))
  52516. characterMakers.push(() => makeCharacter(
  52517. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52518. {
  52519. front: {
  52520. height: math.unit(6 + 3/12, "feet"),
  52521. weight: math.unit(250, "lb"),
  52522. name: "Front",
  52523. image: {
  52524. source: "./media/characters/reika/front.svg",
  52525. extra: 1120/1078,
  52526. bottom: 86/1206
  52527. }
  52528. },
  52529. },
  52530. [
  52531. {
  52532. name: "Normal",
  52533. height: math.unit(6 + 3/12, "feet"),
  52534. default: true
  52535. },
  52536. ]
  52537. ))
  52538. characterMakers.push(() => makeCharacter(
  52539. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52540. {
  52541. front: {
  52542. height: math.unit(16 + 8/12, "feet"),
  52543. weight: math.unit(9000, "lb"),
  52544. name: "Front",
  52545. image: {
  52546. source: "./media/characters/lokuto-takama/front.svg",
  52547. extra: 1774/1632,
  52548. bottom: 147/1921
  52549. },
  52550. extraAttributes: {
  52551. "bustWidth": {
  52552. name: "Bust Width",
  52553. power: 1,
  52554. type: "length",
  52555. base: math.unit(2.4, "meters")
  52556. },
  52557. "breastWeight": {
  52558. name: "Breast Weight",
  52559. power: 3,
  52560. type: "mass",
  52561. base: math.unit(1000, "kg")
  52562. },
  52563. }
  52564. },
  52565. },
  52566. [
  52567. {
  52568. name: "Normal",
  52569. height: math.unit(16 + 8/12, "feet"),
  52570. default: true
  52571. },
  52572. ]
  52573. ))
  52574. characterMakers.push(() => makeCharacter(
  52575. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52576. {
  52577. front: {
  52578. height: math.unit(10, "cm"),
  52579. weight: math.unit(850, "grams"),
  52580. name: "Front",
  52581. image: {
  52582. source: "./media/characters/owak-bone/front.svg",
  52583. extra: 1965/1801,
  52584. bottom: 31/1996
  52585. }
  52586. },
  52587. },
  52588. [
  52589. {
  52590. name: "Normal",
  52591. height: math.unit(10, "cm"),
  52592. default: true
  52593. },
  52594. ]
  52595. ))
  52596. characterMakers.push(() => makeCharacter(
  52597. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52598. {
  52599. front: {
  52600. height: math.unit(2 + 6/12, "feet"),
  52601. weight: math.unit(9, "lb"),
  52602. name: "Front",
  52603. image: {
  52604. source: "./media/characters/muffin/front.svg",
  52605. extra: 1220/1195,
  52606. bottom: 84/1304
  52607. }
  52608. },
  52609. },
  52610. [
  52611. {
  52612. name: "Normal",
  52613. height: math.unit(2 + 6/12, "feet"),
  52614. default: true
  52615. },
  52616. ]
  52617. ))
  52618. characterMakers.push(() => makeCharacter(
  52619. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52620. {
  52621. front: {
  52622. height: math.unit(7, "feet"),
  52623. name: "Front",
  52624. image: {
  52625. source: "./media/characters/chimera/front.svg",
  52626. extra: 1752/1614,
  52627. bottom: 68/1820
  52628. }
  52629. },
  52630. },
  52631. [
  52632. {
  52633. name: "Normal",
  52634. height: math.unit(7, "feet")
  52635. },
  52636. {
  52637. name: "Gigamacro",
  52638. height: math.unit(2.9, "gigameters"),
  52639. default: true
  52640. },
  52641. {
  52642. name: "Universal",
  52643. height: math.unit(1.56e26, "yottameters")
  52644. },
  52645. ]
  52646. ))
  52647. characterMakers.push(() => makeCharacter(
  52648. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52649. {
  52650. front: {
  52651. height: math.unit(3, "feet"),
  52652. weight: math.unit(20, "lb"),
  52653. name: "Front",
  52654. image: {
  52655. source: "./media/characters/kit-fennec-fox/front.svg",
  52656. extra: 1027/932,
  52657. bottom: 16/1043
  52658. }
  52659. },
  52660. back: {
  52661. height: math.unit(3, "feet"),
  52662. weight: math.unit(20, "lb"),
  52663. name: "Back",
  52664. image: {
  52665. source: "./media/characters/kit-fennec-fox/back.svg",
  52666. extra: 1027/932,
  52667. bottom: 16/1043
  52668. }
  52669. },
  52670. },
  52671. [
  52672. {
  52673. name: "Normal",
  52674. height: math.unit(3, "feet"),
  52675. default: true
  52676. },
  52677. ]
  52678. ))
  52679. characterMakers.push(() => makeCharacter(
  52680. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52681. {
  52682. front: {
  52683. height: math.unit(167, "cm"),
  52684. name: "Front",
  52685. image: {
  52686. source: "./media/characters/blue-otter/front.svg",
  52687. extra: 1951/1920,
  52688. bottom: 31/1982
  52689. }
  52690. },
  52691. },
  52692. [
  52693. {
  52694. name: "Otter-Sized",
  52695. height: math.unit(100, "cm")
  52696. },
  52697. {
  52698. name: "Normal",
  52699. height: math.unit(167, "cm"),
  52700. default: true
  52701. },
  52702. ]
  52703. ))
  52704. characterMakers.push(() => makeCharacter(
  52705. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52706. {
  52707. front: {
  52708. height: math.unit(4 + 4/12, "feet"),
  52709. name: "Front",
  52710. image: {
  52711. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52712. extra: 1072/1067,
  52713. bottom: 117/1189
  52714. }
  52715. },
  52716. back: {
  52717. height: math.unit(4 + 4/12, "feet"),
  52718. name: "Back",
  52719. image: {
  52720. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52721. extra: 1135/1129,
  52722. bottom: 57/1192
  52723. }
  52724. },
  52725. head: {
  52726. height: math.unit(1.77, "feet"),
  52727. name: "Head",
  52728. image: {
  52729. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52730. }
  52731. },
  52732. },
  52733. [
  52734. {
  52735. name: "Normal",
  52736. height: math.unit(4 + 4/12, "feet"),
  52737. default: true
  52738. },
  52739. ]
  52740. ))
  52741. characterMakers.push(() => makeCharacter(
  52742. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52743. {
  52744. front: {
  52745. height: math.unit(2, "inches"),
  52746. name: "Front",
  52747. image: {
  52748. source: "./media/characters/carley-hartford/front.svg",
  52749. extra: 1035/988,
  52750. bottom: 23/1058
  52751. }
  52752. },
  52753. back: {
  52754. height: math.unit(2, "inches"),
  52755. name: "Back",
  52756. image: {
  52757. source: "./media/characters/carley-hartford/back.svg",
  52758. extra: 1035/988,
  52759. bottom: 23/1058
  52760. }
  52761. },
  52762. dressed: {
  52763. height: math.unit(2, "inches"),
  52764. name: "Dressed",
  52765. image: {
  52766. source: "./media/characters/carley-hartford/dressed.svg",
  52767. extra: 651/620,
  52768. bottom: 0/651
  52769. }
  52770. },
  52771. },
  52772. [
  52773. {
  52774. name: "Micro",
  52775. height: math.unit(2, "inches"),
  52776. default: true
  52777. },
  52778. {
  52779. name: "Macro",
  52780. height: math.unit(6 + 3/12, "feet")
  52781. },
  52782. ]
  52783. ))
  52784. characterMakers.push(() => makeCharacter(
  52785. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52786. {
  52787. front: {
  52788. height: math.unit(2 + 3/12, "feet"),
  52789. weight: math.unit(15 + 7/16, "lb"),
  52790. name: "Front",
  52791. image: {
  52792. source: "./media/characters/duke/front.svg",
  52793. extra: 910/815,
  52794. bottom: 30/940
  52795. }
  52796. },
  52797. },
  52798. [
  52799. {
  52800. name: "Normal",
  52801. height: math.unit(2 + 3/12, "feet"),
  52802. default: true
  52803. },
  52804. ]
  52805. ))
  52806. characterMakers.push(() => makeCharacter(
  52807. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52808. {
  52809. front: {
  52810. height: math.unit(5 + 4/12, "feet"),
  52811. weight: math.unit(156, "lb"),
  52812. name: "Front",
  52813. image: {
  52814. source: "./media/characters/dein/front.svg",
  52815. extra: 855/815,
  52816. bottom: 48/903
  52817. }
  52818. },
  52819. side: {
  52820. height: math.unit(5 + 4/12, "feet"),
  52821. weight: math.unit(156, "lb"),
  52822. name: "side",
  52823. image: {
  52824. source: "./media/characters/dein/side.svg",
  52825. extra: 846/803,
  52826. bottom: 25/871
  52827. }
  52828. },
  52829. maw: {
  52830. height: math.unit(1.45, "feet"),
  52831. name: "Maw",
  52832. image: {
  52833. source: "./media/characters/dein/maw.svg"
  52834. }
  52835. },
  52836. },
  52837. [
  52838. {
  52839. name: "Ferret Sized",
  52840. height: math.unit(2 + 5/12, "feet")
  52841. },
  52842. {
  52843. name: "Normal",
  52844. height: math.unit(5 + 4/12, "feet"),
  52845. default: true
  52846. },
  52847. ]
  52848. ))
  52849. characterMakers.push(() => makeCharacter(
  52850. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52851. {
  52852. front: {
  52853. height: math.unit(84 + 8/12, "feet"),
  52854. weight: math.unit(942180, "lb"),
  52855. name: "Front",
  52856. image: {
  52857. source: "./media/characters/daurine-arima/front.svg",
  52858. extra: 1989/1782,
  52859. bottom: 37/2026
  52860. }
  52861. },
  52862. side: {
  52863. height: math.unit(84 + 8/12, "feet"),
  52864. weight: math.unit(942180, "lb"),
  52865. name: "Side",
  52866. image: {
  52867. source: "./media/characters/daurine-arima/side.svg",
  52868. extra: 1997/1790,
  52869. bottom: 21/2018
  52870. }
  52871. },
  52872. back: {
  52873. height: math.unit(84 + 8/12, "feet"),
  52874. weight: math.unit(942180, "lb"),
  52875. name: "Back",
  52876. image: {
  52877. source: "./media/characters/daurine-arima/back.svg",
  52878. extra: 1992/1800,
  52879. bottom: 12/2004
  52880. }
  52881. },
  52882. head: {
  52883. height: math.unit(15.5, "feet"),
  52884. name: "Head",
  52885. image: {
  52886. source: "./media/characters/daurine-arima/head.svg"
  52887. }
  52888. },
  52889. headAlt: {
  52890. height: math.unit(19.19, "feet"),
  52891. name: "Head (Alt)",
  52892. image: {
  52893. source: "./media/characters/daurine-arima/head-alt.svg"
  52894. }
  52895. },
  52896. },
  52897. [
  52898. {
  52899. name: "Minimum height",
  52900. height: math.unit(8 + 10/12, "feet")
  52901. },
  52902. {
  52903. name: "Comfort height",
  52904. height: math.unit(19 + 6 /12, "feet")
  52905. },
  52906. {
  52907. name: "\"Normal\" height",
  52908. height: math.unit(28 + 10/12, "feet")
  52909. },
  52910. {
  52911. name: "Base height",
  52912. height: math.unit(84 + 8/12, "feet"),
  52913. default: true
  52914. },
  52915. {
  52916. name: "Mini-macro",
  52917. height: math.unit(2360, "feet")
  52918. },
  52919. {
  52920. name: "Macro",
  52921. height: math.unit(10, "miles")
  52922. },
  52923. {
  52924. name: "Goddess",
  52925. height: math.unit(9.99e40, "yottameters")
  52926. },
  52927. ]
  52928. ))
  52929. characterMakers.push(() => makeCharacter(
  52930. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52931. {
  52932. front: {
  52933. height: math.unit(2.3, "meters"),
  52934. name: "Front",
  52935. image: {
  52936. source: "./media/characters/cilenomon/front.svg",
  52937. extra: 1963/1778,
  52938. bottom: 54/2017
  52939. }
  52940. },
  52941. },
  52942. [
  52943. {
  52944. name: "Normal",
  52945. height: math.unit(2.3, "meters"),
  52946. default: true
  52947. },
  52948. {
  52949. name: "Big",
  52950. height: math.unit(5, "meters")
  52951. },
  52952. {
  52953. name: "Macro",
  52954. height: math.unit(30, "meters")
  52955. },
  52956. {
  52957. name: "True",
  52958. height: math.unit(1, "universe")
  52959. },
  52960. ]
  52961. ))
  52962. characterMakers.push(() => makeCharacter(
  52963. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52964. {
  52965. front: {
  52966. height: math.unit(5, "feet"),
  52967. name: "Front",
  52968. image: {
  52969. source: "./media/characters/sen-mink/front.svg",
  52970. extra: 1727/1675,
  52971. bottom: 35/1762
  52972. }
  52973. },
  52974. },
  52975. [
  52976. {
  52977. name: "Normal",
  52978. height: math.unit(5, "feet"),
  52979. default: true
  52980. },
  52981. ]
  52982. ))
  52983. characterMakers.push(() => makeCharacter(
  52984. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52985. {
  52986. front: {
  52987. height: math.unit(5.42999, "feet"),
  52988. weight: math.unit(100, "lb"),
  52989. name: "Front",
  52990. image: {
  52991. source: "./media/characters/ophois/front.svg",
  52992. extra: 1429/1286,
  52993. bottom: 60/1489
  52994. }
  52995. },
  52996. },
  52997. [
  52998. {
  52999. name: "Normal",
  53000. height: math.unit(5.42999, "feet"),
  53001. default: true
  53002. },
  53003. ]
  53004. ))
  53005. characterMakers.push(() => makeCharacter(
  53006. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53007. {
  53008. front: {
  53009. height: math.unit(2, "meters"),
  53010. name: "Front",
  53011. image: {
  53012. source: "./media/characters/riley/front.svg",
  53013. extra: 1779/1754,
  53014. bottom: 139/1918
  53015. }
  53016. },
  53017. },
  53018. [
  53019. {
  53020. name: "Normal",
  53021. height: math.unit(2, "meters"),
  53022. default: true
  53023. },
  53024. ]
  53025. ))
  53026. characterMakers.push(() => makeCharacter(
  53027. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53028. {
  53029. front: {
  53030. height: math.unit(6 + 2/12, "feet"),
  53031. weight: math.unit(195, "lb"),
  53032. preyCapacity: math.unit(6, "people"),
  53033. name: "Front",
  53034. image: {
  53035. source: "./media/characters/shuken-flash/front.svg",
  53036. extra: 1905/1739,
  53037. bottom: 65/1970
  53038. }
  53039. },
  53040. back: {
  53041. height: math.unit(6 + 2/12, "feet"),
  53042. weight: math.unit(195, "lb"),
  53043. preyCapacity: math.unit(6, "people"),
  53044. name: "Back",
  53045. image: {
  53046. source: "./media/characters/shuken-flash/back.svg",
  53047. extra: 1912/1751,
  53048. bottom: 13/1925
  53049. }
  53050. },
  53051. },
  53052. [
  53053. {
  53054. name: "Normal",
  53055. height: math.unit(6 + 2/12, "feet"),
  53056. default: true
  53057. },
  53058. ]
  53059. ))
  53060. characterMakers.push(() => makeCharacter(
  53061. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53062. {
  53063. front: {
  53064. height: math.unit(5 + 9/12, "feet"),
  53065. weight: math.unit(150, "lb"),
  53066. name: "Front",
  53067. image: {
  53068. source: "./media/characters/plat/front.svg",
  53069. extra: 1816/1703,
  53070. bottom: 43/1859
  53071. }
  53072. },
  53073. side: {
  53074. height: math.unit(5 + 9/12, "feet"),
  53075. weight: math.unit(300, "lb"),
  53076. name: "Side",
  53077. image: {
  53078. source: "./media/characters/plat/side.svg",
  53079. extra: 1824/1699,
  53080. bottom: 18/1842
  53081. }
  53082. },
  53083. },
  53084. [
  53085. {
  53086. name: "Normal",
  53087. height: math.unit(5 + 9/12, "feet"),
  53088. default: true
  53089. },
  53090. ]
  53091. ))
  53092. characterMakers.push(() => makeCharacter(
  53093. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53094. {
  53095. front: {
  53096. height: math.unit(9, "feet"),
  53097. weight: math.unit(1800, "lb"),
  53098. name: "Front",
  53099. image: {
  53100. source: "./media/characters/elaine/front.svg",
  53101. extra: 1833/1354,
  53102. bottom: 25/1858
  53103. }
  53104. },
  53105. back: {
  53106. height: math.unit(8.8, "feet"),
  53107. weight: math.unit(1800, "lb"),
  53108. name: "Back",
  53109. image: {
  53110. source: "./media/characters/elaine/back.svg",
  53111. extra: 1641/1233,
  53112. bottom: 53/1694
  53113. }
  53114. },
  53115. },
  53116. [
  53117. {
  53118. name: "Normal",
  53119. height: math.unit(9, "feet"),
  53120. default: true
  53121. },
  53122. ]
  53123. ))
  53124. characterMakers.push(() => makeCharacter(
  53125. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53126. {
  53127. front: {
  53128. height: math.unit(17 + 9/12, "feet"),
  53129. weight: math.unit(8000, "lb"),
  53130. name: "Front",
  53131. image: {
  53132. source: "./media/characters/vera-raven/front.svg",
  53133. extra: 1457/1412,
  53134. bottom: 121/1578
  53135. }
  53136. },
  53137. side: {
  53138. height: math.unit(17 + 9/12, "feet"),
  53139. weight: math.unit(8000, "lb"),
  53140. name: "Side",
  53141. image: {
  53142. source: "./media/characters/vera-raven/side.svg",
  53143. extra: 1510/1464,
  53144. bottom: 54/1564
  53145. }
  53146. },
  53147. },
  53148. [
  53149. {
  53150. name: "Normal",
  53151. height: math.unit(17 + 9/12, "feet"),
  53152. default: true
  53153. },
  53154. ]
  53155. ))
  53156. characterMakers.push(() => makeCharacter(
  53157. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53158. {
  53159. dressed: {
  53160. height: math.unit(6 + 9/12, "feet"),
  53161. name: "Dressed",
  53162. image: {
  53163. source: "./media/characters/nakisha/dressed.svg",
  53164. extra: 1909/1757,
  53165. bottom: 48/1957
  53166. }
  53167. },
  53168. nude: {
  53169. height: math.unit(6 + 9/12, "feet"),
  53170. name: "Nude",
  53171. image: {
  53172. source: "./media/characters/nakisha/nude.svg",
  53173. extra: 1917/1765,
  53174. bottom: 34/1951
  53175. }
  53176. },
  53177. },
  53178. [
  53179. {
  53180. name: "Normal",
  53181. height: math.unit(6 + 9/12, "feet"),
  53182. default: true
  53183. },
  53184. ]
  53185. ))
  53186. characterMakers.push(() => makeCharacter(
  53187. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53188. {
  53189. front: {
  53190. height: math.unit(87, "meters"),
  53191. name: "Front",
  53192. image: {
  53193. source: "./media/characters/serafin/front.svg",
  53194. extra: 1919/1776,
  53195. bottom: 65/1984
  53196. }
  53197. },
  53198. },
  53199. [
  53200. {
  53201. name: "Normal",
  53202. height: math.unit(87, "meters"),
  53203. default: true
  53204. },
  53205. ]
  53206. ))
  53207. characterMakers.push(() => makeCharacter(
  53208. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53209. {
  53210. front: {
  53211. height: math.unit(6, "feet"),
  53212. weight: math.unit(200, "lb"),
  53213. name: "Front",
  53214. image: {
  53215. source: "./media/characters/poptart/front.svg",
  53216. extra: 615/583,
  53217. bottom: 23/638
  53218. }
  53219. },
  53220. back: {
  53221. height: math.unit(6, "feet"),
  53222. weight: math.unit(200, "lb"),
  53223. name: "Back",
  53224. image: {
  53225. source: "./media/characters/poptart/back.svg",
  53226. extra: 617/584,
  53227. bottom: 22/639
  53228. }
  53229. },
  53230. frontNsfw: {
  53231. height: math.unit(6, "feet"),
  53232. weight: math.unit(200, "lb"),
  53233. name: "Front (NSFW)",
  53234. image: {
  53235. source: "./media/characters/poptart/front-nsfw.svg",
  53236. extra: 615/583,
  53237. bottom: 23/638
  53238. }
  53239. },
  53240. backNsfw: {
  53241. height: math.unit(6, "feet"),
  53242. weight: math.unit(200, "lb"),
  53243. name: "Back (NSFW)",
  53244. image: {
  53245. source: "./media/characters/poptart/back-nsfw.svg",
  53246. extra: 617/584,
  53247. bottom: 22/639
  53248. }
  53249. },
  53250. hand: {
  53251. height: math.unit(1.14, "feet"),
  53252. name: "Hand",
  53253. image: {
  53254. source: "./media/characters/poptart/hand.svg"
  53255. }
  53256. },
  53257. foot: {
  53258. height: math.unit(1.5, "feet"),
  53259. name: "Foot",
  53260. image: {
  53261. source: "./media/characters/poptart/foot.svg"
  53262. }
  53263. },
  53264. },
  53265. [
  53266. {
  53267. name: "Normal",
  53268. height: math.unit(6, "feet"),
  53269. default: true
  53270. },
  53271. {
  53272. name: "Grande",
  53273. height: math.unit(350, "feet")
  53274. },
  53275. {
  53276. name: "Massif",
  53277. height: math.unit(967, "feet")
  53278. },
  53279. ]
  53280. ))
  53281. characterMakers.push(() => makeCharacter(
  53282. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53283. {
  53284. hyenaSide: {
  53285. height: math.unit(120, "cm"),
  53286. weight: math.unit(120, "lb"),
  53287. name: "Side",
  53288. image: {
  53289. source: "./media/characters/trance/hyena-side.svg",
  53290. extra: 998/904,
  53291. bottom: 76/1074
  53292. }
  53293. },
  53294. },
  53295. [
  53296. {
  53297. name: "Normal",
  53298. height: math.unit(120, "cm"),
  53299. default: true
  53300. },
  53301. {
  53302. name: "Dire",
  53303. height: math.unit(230, "cm")
  53304. },
  53305. {
  53306. name: "Macro",
  53307. height: math.unit(37, "feet")
  53308. },
  53309. ]
  53310. ))
  53311. characterMakers.push(() => makeCharacter(
  53312. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53313. {
  53314. front: {
  53315. height: math.unit(6 + 3/12, "feet"),
  53316. name: "Front",
  53317. image: {
  53318. source: "./media/characters/michael-berretta/front.svg",
  53319. extra: 515/494,
  53320. bottom: 20/535
  53321. }
  53322. },
  53323. back: {
  53324. height: math.unit(6 + 3/12, "feet"),
  53325. name: "Back",
  53326. image: {
  53327. source: "./media/characters/michael-berretta/back.svg",
  53328. extra: 520/497,
  53329. bottom: 21/541
  53330. }
  53331. },
  53332. frontNsfw: {
  53333. height: math.unit(6 + 3/12, "feet"),
  53334. name: "Front (NSFW)",
  53335. image: {
  53336. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53337. extra: 515/494,
  53338. bottom: 20/535
  53339. }
  53340. },
  53341. dick: {
  53342. height: math.unit(1, "feet"),
  53343. name: "Dick",
  53344. image: {
  53345. source: "./media/characters/michael-berretta/dick.svg"
  53346. }
  53347. },
  53348. },
  53349. [
  53350. {
  53351. name: "Normal",
  53352. height: math.unit(6 + 3/12, "feet"),
  53353. default: true
  53354. },
  53355. {
  53356. name: "Big",
  53357. height: math.unit(12, "feet")
  53358. },
  53359. {
  53360. name: "Macro",
  53361. height: math.unit(187.5, "feet")
  53362. },
  53363. ]
  53364. ))
  53365. characterMakers.push(() => makeCharacter(
  53366. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53367. {
  53368. front: {
  53369. height: math.unit(9 + 9/12, "feet"),
  53370. weight: math.unit(1244, "lb"),
  53371. name: "Front",
  53372. image: {
  53373. source: "./media/characters/stella-edgecomb/front.svg",
  53374. extra: 1835/1706,
  53375. bottom: 49/1884
  53376. }
  53377. },
  53378. pen: {
  53379. height: math.unit(0.95, "feet"),
  53380. name: "Pen",
  53381. image: {
  53382. source: "./media/characters/stella-edgecomb/pen.svg"
  53383. }
  53384. },
  53385. },
  53386. [
  53387. {
  53388. name: "Cozy Bear",
  53389. height: math.unit(0.5, "inches")
  53390. },
  53391. {
  53392. name: "Normal",
  53393. height: math.unit(9 + 9/12, "feet"),
  53394. default: true
  53395. },
  53396. {
  53397. name: "Giga Bear",
  53398. height: math.unit(1, "mile")
  53399. },
  53400. {
  53401. name: "Great Bear",
  53402. height: math.unit(53, "miles")
  53403. },
  53404. {
  53405. name: "Goddess Bear",
  53406. height: math.unit(40000, "miles")
  53407. },
  53408. {
  53409. name: "Sun Bear",
  53410. height: math.unit(900000, "miles")
  53411. },
  53412. ]
  53413. ))
  53414. characterMakers.push(() => makeCharacter(
  53415. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53416. {
  53417. anthroFront: {
  53418. height: math.unit(556, "cm"),
  53419. weight: math.unit(2650, "kg"),
  53420. preyCapacity: math.unit(3, "people"),
  53421. name: "Front",
  53422. image: {
  53423. source: "./media/characters/ash´iika/front.svg",
  53424. extra: 710/673,
  53425. bottom: 15/725
  53426. },
  53427. form: "anthro",
  53428. default: true
  53429. },
  53430. anthroSide: {
  53431. height: math.unit(556, "cm"),
  53432. weight: math.unit(2650, "kg"),
  53433. preyCapacity: math.unit(3, "people"),
  53434. name: "Side",
  53435. image: {
  53436. source: "./media/characters/ash´iika/side.svg",
  53437. extra: 696/676,
  53438. bottom: 13/709
  53439. },
  53440. form: "anthro"
  53441. },
  53442. anthroDressed: {
  53443. height: math.unit(556, "cm"),
  53444. weight: math.unit(2650, "kg"),
  53445. preyCapacity: math.unit(3, "people"),
  53446. name: "Dressed",
  53447. image: {
  53448. source: "./media/characters/ash´iika/dressed.svg",
  53449. extra: 710/673,
  53450. bottom: 15/725
  53451. },
  53452. form: "anthro"
  53453. },
  53454. anthroHead: {
  53455. height: math.unit(3.5, "feet"),
  53456. name: "Head",
  53457. image: {
  53458. source: "./media/characters/ash´iika/head.svg",
  53459. extra: 348/291,
  53460. bottom: 45/393
  53461. },
  53462. form: "anthro"
  53463. },
  53464. feralSide: {
  53465. height: math.unit(870, "cm"),
  53466. weight: math.unit(17500, "kg"),
  53467. preyCapacity: math.unit(15, "people"),
  53468. name: "Side",
  53469. image: {
  53470. source: "./media/characters/ash´iika/feral.svg",
  53471. extra: 595/199,
  53472. bottom: 7/602
  53473. },
  53474. form: "feral",
  53475. default: true,
  53476. },
  53477. },
  53478. [
  53479. {
  53480. name: "Normal",
  53481. height: math.unit(556, "cm"),
  53482. default: true,
  53483. form: "anthro"
  53484. },
  53485. {
  53486. name: "Macro",
  53487. height: math.unit(88, "meters"),
  53488. form: "anthro"
  53489. },
  53490. {
  53491. name: "Normal",
  53492. height: math.unit(870, "cm"),
  53493. default: true,
  53494. form: "feral"
  53495. },
  53496. {
  53497. name: "Large",
  53498. height: math.unit(25, "meters"),
  53499. form: "feral"
  53500. },
  53501. ],
  53502. {
  53503. "anthro": {
  53504. name: "Anthro",
  53505. default: true
  53506. },
  53507. "feral": {
  53508. name: "Feral",
  53509. },
  53510. }
  53511. ))
  53512. characterMakers.push(() => makeCharacter(
  53513. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53514. {
  53515. front: {
  53516. height: math.unit(10, "feet"),
  53517. weight: math.unit(800, "lb"),
  53518. name: "Front",
  53519. image: {
  53520. source: "./media/characters/yen/front.svg",
  53521. extra: 443/411,
  53522. bottom: 6/449
  53523. }
  53524. },
  53525. sleeping: {
  53526. height: math.unit(10, "feet"),
  53527. weight: math.unit(800, "lb"),
  53528. name: "Sleeping",
  53529. image: {
  53530. source: "./media/characters/yen/sleeping.svg",
  53531. extra: 470/422,
  53532. bottom: 0/470
  53533. }
  53534. },
  53535. head: {
  53536. height: math.unit(2.2, "feet"),
  53537. name: "Head",
  53538. image: {
  53539. source: "./media/characters/yen/head.svg"
  53540. }
  53541. },
  53542. headAlt: {
  53543. height: math.unit(2.1, "feet"),
  53544. name: "Head (Alt)",
  53545. image: {
  53546. source: "./media/characters/yen/head-alt.svg"
  53547. }
  53548. },
  53549. },
  53550. [
  53551. {
  53552. name: "Normal",
  53553. height: math.unit(10, "feet"),
  53554. default: true
  53555. },
  53556. ]
  53557. ))
  53558. characterMakers.push(() => makeCharacter(
  53559. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53560. {
  53561. front: {
  53562. height: math.unit(12, "feet"),
  53563. name: "Front",
  53564. image: {
  53565. source: "./media/characters/citra/front.svg",
  53566. extra: 1950/1710,
  53567. bottom: 47/1997
  53568. }
  53569. },
  53570. },
  53571. [
  53572. {
  53573. name: "Normal",
  53574. height: math.unit(12, "feet"),
  53575. default: true
  53576. },
  53577. ]
  53578. ))
  53579. characterMakers.push(() => makeCharacter(
  53580. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53581. {
  53582. side: {
  53583. height: math.unit(7 + 10/12, "feet"),
  53584. name: "Side",
  53585. image: {
  53586. source: "./media/characters/sholstim/side.svg",
  53587. extra: 786/682,
  53588. bottom: 40/826
  53589. }
  53590. },
  53591. },
  53592. [
  53593. {
  53594. name: "Normal",
  53595. height: math.unit(7 + 10/12, "feet"),
  53596. default: true
  53597. },
  53598. ]
  53599. ))
  53600. characterMakers.push(() => makeCharacter(
  53601. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53602. {
  53603. front: {
  53604. height: math.unit(3.10, "meters"),
  53605. name: "Front",
  53606. image: {
  53607. source: "./media/characters/aggyn/front.svg",
  53608. extra: 1188/963,
  53609. bottom: 24/1212
  53610. }
  53611. },
  53612. },
  53613. [
  53614. {
  53615. name: "Normal",
  53616. height: math.unit(3.10, "meters"),
  53617. default: true
  53618. },
  53619. ]
  53620. ))
  53621. characterMakers.push(() => makeCharacter(
  53622. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53623. {
  53624. front: {
  53625. height: math.unit(7 + 5/12, "feet"),
  53626. weight: math.unit(687, "lb"),
  53627. name: "Front",
  53628. image: {
  53629. source: "./media/characters/alsandair-hergenroether/front.svg",
  53630. extra: 1251/1186,
  53631. bottom: 75/1326
  53632. }
  53633. },
  53634. back: {
  53635. height: math.unit(7 + 5/12, "feet"),
  53636. weight: math.unit(687, "lb"),
  53637. name: "Back",
  53638. image: {
  53639. source: "./media/characters/alsandair-hergenroether/back.svg",
  53640. extra: 1290/1229,
  53641. bottom: 17/1307
  53642. }
  53643. },
  53644. },
  53645. [
  53646. {
  53647. name: "Max Compression",
  53648. height: math.unit(7 + 5/12, "feet"),
  53649. default: true
  53650. },
  53651. {
  53652. name: "\"Normal\"",
  53653. height: math.unit(2, "universes")
  53654. },
  53655. ]
  53656. ))
  53657. characterMakers.push(() => makeCharacter(
  53658. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53659. {
  53660. front: {
  53661. height: math.unit(4 + 1/12, "feet"),
  53662. weight: math.unit(92, "lb"),
  53663. name: "Front",
  53664. image: {
  53665. source: "./media/characters/ie/front.svg",
  53666. extra: 1585/1352,
  53667. bottom: 91/1676
  53668. }
  53669. },
  53670. },
  53671. [
  53672. {
  53673. name: "Normal",
  53674. height: math.unit(4 + 1/12, "feet"),
  53675. default: true
  53676. },
  53677. ]
  53678. ))
  53679. characterMakers.push(() => makeCharacter(
  53680. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53681. {
  53682. anthro: {
  53683. height: math.unit(6, "feet"),
  53684. weight: math.unit(150, "lb"),
  53685. name: "Front",
  53686. image: {
  53687. source: "./media/characters/willow/anthro.svg",
  53688. extra: 1073/986,
  53689. bottom: 34/1107
  53690. },
  53691. form: "anthro",
  53692. default: true
  53693. },
  53694. taur: {
  53695. height: math.unit(6, "feet"),
  53696. weight: math.unit(150, "lb"),
  53697. name: "Side",
  53698. image: {
  53699. source: "./media/characters/willow/taur.svg",
  53700. extra: 647/512,
  53701. bottom: 136/783
  53702. },
  53703. form: "taur",
  53704. default: true
  53705. },
  53706. },
  53707. [
  53708. {
  53709. name: "Humanoid",
  53710. height: math.unit(2.7, "meters"),
  53711. form: "anthro"
  53712. },
  53713. {
  53714. name: "Normal",
  53715. height: math.unit(9, "meters"),
  53716. form: "anthro",
  53717. default: true
  53718. },
  53719. {
  53720. name: "Humanoid",
  53721. height: math.unit(2.1, "meters"),
  53722. form: "taur"
  53723. },
  53724. {
  53725. name: "Normal",
  53726. height: math.unit(7, "meters"),
  53727. form: "taur",
  53728. default: true
  53729. },
  53730. ],
  53731. {
  53732. "anthro": {
  53733. name: "Anthro",
  53734. default: true
  53735. },
  53736. "taur": {
  53737. name: "Taur",
  53738. },
  53739. }
  53740. ))
  53741. characterMakers.push(() => makeCharacter(
  53742. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53743. {
  53744. front: {
  53745. height: math.unit(2 + 5/12, "feet"),
  53746. name: "Front",
  53747. image: {
  53748. source: "./media/characters/kyan/front.svg",
  53749. extra: 460/334,
  53750. bottom: 23/483
  53751. },
  53752. extraAttributes: {
  53753. "toeLength": {
  53754. name: "Toe Length",
  53755. power: 1,
  53756. type: "length",
  53757. base: math.unit(7, "cm")
  53758. },
  53759. "toeclawLength": {
  53760. name: "Toeclaw Length",
  53761. power: 1,
  53762. type: "length",
  53763. base: math.unit(4.7, "cm")
  53764. },
  53765. "earHeight": {
  53766. name: "Ear Height",
  53767. power: 1,
  53768. type: "length",
  53769. base: math.unit(14.1, "cm")
  53770. },
  53771. }
  53772. },
  53773. paws: {
  53774. height: math.unit(0.45, "feet"),
  53775. name: "Paws",
  53776. image: {
  53777. source: "./media/characters/kyan/paws.svg",
  53778. extra: 581/581,
  53779. bottom: 114/695
  53780. }
  53781. },
  53782. },
  53783. [
  53784. {
  53785. name: "Normal",
  53786. height: math.unit(2 + 5/12, "feet"),
  53787. default: true
  53788. },
  53789. ]
  53790. ))
  53791. characterMakers.push(() => makeCharacter(
  53792. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53793. {
  53794. front: {
  53795. height: math.unit(2 + 2/3, "feet"),
  53796. name: "Front",
  53797. image: {
  53798. source: "./media/characters/xazzon/front.svg",
  53799. extra: 1109/984,
  53800. bottom: 42/1151
  53801. }
  53802. },
  53803. back: {
  53804. height: math.unit(2 + 2/3, "feet"),
  53805. name: "Back",
  53806. image: {
  53807. source: "./media/characters/xazzon/back.svg",
  53808. extra: 1095/971,
  53809. bottom: 23/1118
  53810. }
  53811. },
  53812. },
  53813. [
  53814. {
  53815. name: "Normal",
  53816. height: math.unit(2 + 2/3, "feet"),
  53817. default: true
  53818. },
  53819. ]
  53820. ))
  53821. characterMakers.push(() => makeCharacter(
  53822. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53823. {
  53824. dressed: {
  53825. height: math.unit(5 + 7/12, "feet"),
  53826. weight: math.unit(173, "lb"),
  53827. name: "Dressed",
  53828. image: {
  53829. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53830. extra: 3262/2862,
  53831. bottom: 188/3450
  53832. }
  53833. },
  53834. undressed: {
  53835. height: math.unit(5 + 7/12, "feet"),
  53836. weight: math.unit(173, "lb"),
  53837. name: "Undressed",
  53838. image: {
  53839. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53840. extra: 3262/2862,
  53841. bottom: 188/3450
  53842. }
  53843. },
  53844. },
  53845. [
  53846. {
  53847. name: "The void",
  53848. height: math.unit(7.29193e-34, "angstroms")
  53849. },
  53850. {
  53851. name: "Uh-Oh.",
  53852. height: math.unit(5.734e-7, "angstroms")
  53853. },
  53854. {
  53855. name: "Pico",
  53856. height: math.unit(0.876, "angstroms")
  53857. },
  53858. {
  53859. name: "Nano",
  53860. height: math.unit(0.000134200, "mm")
  53861. },
  53862. {
  53863. name: "Micro",
  53864. height: math.unit(0.0673020, "mm")
  53865. },
  53866. {
  53867. name: "Tiny",
  53868. height: math.unit(2.4, "mm")
  53869. },
  53870. {
  53871. name: "Actual Normal",
  53872. height: math.unit(3, "inches"),
  53873. default: true
  53874. },
  53875. {
  53876. name: "Normal",
  53877. height: math.unit(5 + 8/12, "feet")
  53878. },
  53879. {
  53880. name: "Giant",
  53881. height: math.unit(12, "feet")
  53882. },
  53883. {
  53884. name: "City Ruler",
  53885. height: math.unit(270, "meters")
  53886. },
  53887. {
  53888. name: "Giga",
  53889. height: math.unit(1117.6, "km")
  53890. },
  53891. {
  53892. name: "All-Powerful Queen",
  53893. height: math.unit(70.8, "gigameters")
  53894. },
  53895. {
  53896. name: "'Goddess'",
  53897. height: math.unit(600, "yottameters")
  53898. },
  53899. {
  53900. name: "Biggest!",
  53901. height: math.unit(4.23e5, "yottameters")
  53902. },
  53903. ]
  53904. ))
  53905. characterMakers.push(() => makeCharacter(
  53906. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  53907. {
  53908. front: {
  53909. height: math.unit(8, "feet"),
  53910. weight: math.unit(300, "lb"),
  53911. name: "Front",
  53912. image: {
  53913. source: "./media/characters/khyla-shadowsong/front.svg",
  53914. extra: 861/798,
  53915. bottom: 32/893
  53916. }
  53917. },
  53918. side: {
  53919. height: math.unit(8, "feet"),
  53920. weight: math.unit(300, "lb"),
  53921. name: "Side",
  53922. image: {
  53923. source: "./media/characters/khyla-shadowsong/side.svg",
  53924. extra: 790/750,
  53925. bottom: 87/877
  53926. }
  53927. },
  53928. back: {
  53929. height: math.unit(8, "feet"),
  53930. weight: math.unit(300, "lb"),
  53931. name: "Back",
  53932. image: {
  53933. source: "./media/characters/khyla-shadowsong/back.svg",
  53934. extra: 855/808,
  53935. bottom: 14/869
  53936. }
  53937. },
  53938. head: {
  53939. height: math.unit(2.7, "feet"),
  53940. name: "Head",
  53941. image: {
  53942. source: "./media/characters/khyla-shadowsong/head.svg"
  53943. }
  53944. },
  53945. },
  53946. [
  53947. {
  53948. name: "Micro",
  53949. height: math.unit(6, "inches")
  53950. },
  53951. {
  53952. name: "Normal",
  53953. height: math.unit(8, "feet"),
  53954. default: true
  53955. },
  53956. ]
  53957. ))
  53958. characterMakers.push(() => makeCharacter(
  53959. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  53960. {
  53961. hyperFront: {
  53962. height: math.unit(9 + 4/12, "feet"),
  53963. weight: math.unit(2000, "lb"),
  53964. name: "Front",
  53965. image: {
  53966. source: "./media/characters/tiden/hyper-front.svg",
  53967. extra: 400/382,
  53968. bottom: 6/406
  53969. },
  53970. form: "hyper",
  53971. },
  53972. regularFront: {
  53973. height: math.unit(7 + 10/12, "feet"),
  53974. weight: math.unit(470, "lb"),
  53975. name: "Front",
  53976. image: {
  53977. source: "./media/characters/tiden/regular-front.svg",
  53978. extra: 468/442,
  53979. bottom: 6/474
  53980. },
  53981. form: "regular",
  53982. },
  53983. },
  53984. [
  53985. {
  53986. name: "Normal",
  53987. height: math.unit(9 + 4/12, "feet"),
  53988. default: true,
  53989. form: "hyper"
  53990. },
  53991. {
  53992. name: "Normal",
  53993. height: math.unit(7 + 10/12, "feet"),
  53994. default: true,
  53995. form: "regular"
  53996. },
  53997. ],
  53998. {
  53999. "hyper": {
  54000. name: "Hyper",
  54001. default: true
  54002. },
  54003. "regular": {
  54004. name: "Regular",
  54005. },
  54006. }
  54007. ))
  54008. characterMakers.push(() => makeCharacter(
  54009. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54010. {
  54011. side: {
  54012. height: math.unit(6, "feet"),
  54013. weight: math.unit(150, "lb"),
  54014. name: "Side",
  54015. image: {
  54016. source: "./media/characters/jason-crowe/side.svg",
  54017. extra: 1771/766,
  54018. bottom: 219/1990
  54019. }
  54020. },
  54021. },
  54022. [
  54023. {
  54024. name: "Pocket Gryphon",
  54025. height: math.unit(6, "cm")
  54026. },
  54027. {
  54028. name: "Raven",
  54029. height: math.unit(60, "cm")
  54030. },
  54031. {
  54032. name: "Normal",
  54033. height: math.unit(1, "meter"),
  54034. default: true
  54035. },
  54036. ]
  54037. ))
  54038. characterMakers.push(() => makeCharacter(
  54039. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54040. {
  54041. front: {
  54042. height: math.unit(9 + 6/12, "feet"),
  54043. weight: math.unit(1100, "lb"),
  54044. name: "Front",
  54045. image: {
  54046. source: "./media/characters/django/front.svg",
  54047. extra: 1231/1136,
  54048. bottom: 34/1265
  54049. }
  54050. },
  54051. side: {
  54052. height: math.unit(9 + 6/12, "feet"),
  54053. weight: math.unit(1100, "lb"),
  54054. name: "Side",
  54055. image: {
  54056. source: "./media/characters/django/side.svg",
  54057. extra: 1267/1174,
  54058. bottom: 9/1276
  54059. }
  54060. },
  54061. },
  54062. [
  54063. {
  54064. name: "Normal",
  54065. height: math.unit(9 + 6/12, "feet"),
  54066. default: true
  54067. },
  54068. {
  54069. name: "Macro 1",
  54070. height: math.unit(50, "feet")
  54071. },
  54072. {
  54073. name: "Macro 2",
  54074. height: math.unit(500, "feet")
  54075. },
  54076. {
  54077. name: "Mega Macro",
  54078. height: math.unit(5300, "feet")
  54079. },
  54080. ]
  54081. ))
  54082. characterMakers.push(() => makeCharacter(
  54083. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54084. {
  54085. frontSfw: {
  54086. height: math.unit(120, "cm"),
  54087. weight: math.unit(15, "kg"),
  54088. name: "Front (SFW)",
  54089. image: {
  54090. source: "./media/characters/eri/front-sfw.svg",
  54091. extra: 1014/939,
  54092. bottom: 37/1051
  54093. },
  54094. form: "moth",
  54095. },
  54096. frontNsfw: {
  54097. height: math.unit(120, "cm"),
  54098. weight: math.unit(15, "kg"),
  54099. name: "Front (NSFW)",
  54100. image: {
  54101. source: "./media/characters/eri/front-nsfw.svg",
  54102. extra: 1014/939,
  54103. bottom: 37/1051
  54104. },
  54105. form: "moth",
  54106. default: true
  54107. },
  54108. egg: {
  54109. height: math.unit(10, "cm"),
  54110. name: "Egg",
  54111. image: {
  54112. source: "./media/characters/eri/egg.svg"
  54113. },
  54114. form: "egg",
  54115. default: true
  54116. },
  54117. },
  54118. [
  54119. {
  54120. name: "Normal",
  54121. height: math.unit(120, "cm"),
  54122. default: true,
  54123. form: "moth"
  54124. },
  54125. {
  54126. name: "Normal",
  54127. height: math.unit(10, "cm"),
  54128. default: true,
  54129. form: "egg"
  54130. },
  54131. ],
  54132. {
  54133. "moth": {
  54134. name: "Moth",
  54135. default: true
  54136. },
  54137. "egg": {
  54138. name: "Egg",
  54139. },
  54140. }
  54141. ))
  54142. characterMakers.push(() => makeCharacter(
  54143. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54144. {
  54145. front: {
  54146. height: math.unit(200, "feet"),
  54147. name: "Front",
  54148. image: {
  54149. source: "./media/characters/bishop-dowser/front.svg",
  54150. extra: 933/868,
  54151. bottom: 106/1039
  54152. }
  54153. },
  54154. },
  54155. [
  54156. {
  54157. name: "Giant",
  54158. height: math.unit(200, "feet"),
  54159. default: true
  54160. },
  54161. ]
  54162. ))
  54163. characterMakers.push(() => makeCharacter(
  54164. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54165. {
  54166. front: {
  54167. height: math.unit(2, "meters"),
  54168. preyCapacity: math.unit(3, "people"),
  54169. name: "Front",
  54170. image: {
  54171. source: "./media/characters/fryra/front.svg",
  54172. extra: 1025/948,
  54173. bottom: 30/1055
  54174. },
  54175. extraAttributes: {
  54176. "breastVolume": {
  54177. name: "Breast Volume",
  54178. power: 3,
  54179. type: "volume",
  54180. base: math.unit(8, "liters")
  54181. },
  54182. }
  54183. },
  54184. back: {
  54185. height: math.unit(2, "meters"),
  54186. preyCapacity: math.unit(3, "people"),
  54187. name: "Back",
  54188. image: {
  54189. source: "./media/characters/fryra/back.svg",
  54190. extra: 993/938,
  54191. bottom: 38/1031
  54192. },
  54193. extraAttributes: {
  54194. "breastVolume": {
  54195. name: "Breast Volume",
  54196. power: 3,
  54197. type: "volume",
  54198. base: math.unit(8, "liters")
  54199. },
  54200. }
  54201. },
  54202. head: {
  54203. height: math.unit(1.33, "feet"),
  54204. name: "Head",
  54205. image: {
  54206. source: "./media/characters/fryra/head.svg"
  54207. }
  54208. },
  54209. maw: {
  54210. height: math.unit(0.56, "feet"),
  54211. name: "Maw",
  54212. image: {
  54213. source: "./media/characters/fryra/maw.svg"
  54214. }
  54215. },
  54216. },
  54217. [
  54218. {
  54219. name: "Micro",
  54220. height: math.unit(5, "cm")
  54221. },
  54222. {
  54223. name: "Normal",
  54224. height: math.unit(2, "meters"),
  54225. default: true
  54226. },
  54227. {
  54228. name: "Small Macro",
  54229. height: math.unit(8, "meters")
  54230. },
  54231. {
  54232. name: "Macro",
  54233. height: math.unit(50, "meters")
  54234. },
  54235. {
  54236. name: "Megamacro",
  54237. height: math.unit(1, "km")
  54238. },
  54239. {
  54240. name: "Planetary",
  54241. height: math.unit(300000, "km")
  54242. },
  54243. {
  54244. name: "Universal",
  54245. height: math.unit(250, "lightyears")
  54246. },
  54247. {
  54248. name: "Fabric of Reality",
  54249. height: math.unit(1000, "multiverses")
  54250. },
  54251. ]
  54252. ))
  54253. characterMakers.push(() => makeCharacter(
  54254. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54255. {
  54256. frontDressed: {
  54257. height: math.unit(6 + 2/12, "feet"),
  54258. name: "Front (Dressed)",
  54259. image: {
  54260. source: "./media/characters/fiera/front-dressed.svg",
  54261. extra: 1883/1793,
  54262. bottom: 70/1953
  54263. }
  54264. },
  54265. backDressed: {
  54266. height: math.unit(6 + 2/12, "feet"),
  54267. name: "Back (Dressed)",
  54268. image: {
  54269. source: "./media/characters/fiera/back-dressed.svg",
  54270. extra: 1847/1780,
  54271. bottom: 70/1917
  54272. }
  54273. },
  54274. frontNude: {
  54275. height: math.unit(6 + 2/12, "feet"),
  54276. name: "Front (Nude)",
  54277. image: {
  54278. source: "./media/characters/fiera/front-nude.svg",
  54279. extra: 1875/1785,
  54280. bottom: 66/1941
  54281. }
  54282. },
  54283. backNude: {
  54284. height: math.unit(6 + 2/12, "feet"),
  54285. name: "Back (Nude)",
  54286. image: {
  54287. source: "./media/characters/fiera/back-nude.svg",
  54288. extra: 1855/1788,
  54289. bottom: 44/1899
  54290. }
  54291. },
  54292. maw: {
  54293. height: math.unit(1.3, "feet"),
  54294. name: "Maw",
  54295. image: {
  54296. source: "./media/characters/fiera/maw.svg"
  54297. }
  54298. },
  54299. paw: {
  54300. height: math.unit(1, "feet"),
  54301. name: "Paw",
  54302. image: {
  54303. source: "./media/characters/fiera/paw.svg"
  54304. }
  54305. },
  54306. shoe: {
  54307. height: math.unit(1.05, "feet"),
  54308. name: "Shoe",
  54309. image: {
  54310. source: "./media/characters/fiera/shoe.svg"
  54311. }
  54312. },
  54313. },
  54314. [
  54315. {
  54316. name: "Normal",
  54317. height: math.unit(6 + 2/12, "feet"),
  54318. default: true
  54319. },
  54320. {
  54321. name: "Size Difference",
  54322. height: math.unit(13, "feet")
  54323. },
  54324. {
  54325. name: "Macro",
  54326. height: math.unit(60, "feet")
  54327. },
  54328. {
  54329. name: "Mega Macro",
  54330. height: math.unit(200, "feet")
  54331. },
  54332. ]
  54333. ))
  54334. characterMakers.push(() => makeCharacter(
  54335. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54336. {
  54337. back: {
  54338. height: math.unit(6, "feet"),
  54339. name: "Back",
  54340. image: {
  54341. source: "./media/characters/flare/back.svg",
  54342. extra: 1883/1765,
  54343. bottom: 32/1915
  54344. }
  54345. },
  54346. },
  54347. [
  54348. {
  54349. name: "Normal",
  54350. height: math.unit(6 + 2/12, "feet"),
  54351. default: true
  54352. },
  54353. {
  54354. name: "Size Difference",
  54355. height: math.unit(13, "feet")
  54356. },
  54357. {
  54358. name: "Macro",
  54359. height: math.unit(60, "feet")
  54360. },
  54361. {
  54362. name: "Macro 2",
  54363. height: math.unit(100, "feet")
  54364. },
  54365. {
  54366. name: "Mega Macro",
  54367. height: math.unit(200, "feet")
  54368. },
  54369. ]
  54370. ))
  54371. characterMakers.push(() => makeCharacter(
  54372. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54373. {
  54374. front: {
  54375. height: math.unit(2.2, "m"),
  54376. weight: math.unit(300, "kg"),
  54377. name: "Front",
  54378. image: {
  54379. source: "./media/characters/hanna/front.svg",
  54380. extra: 1696/1502,
  54381. bottom: 206/1902
  54382. }
  54383. },
  54384. },
  54385. [
  54386. {
  54387. name: "Humanoid",
  54388. height: math.unit(2.2, "meters")
  54389. },
  54390. {
  54391. name: "Normal",
  54392. height: math.unit(4.8, "meters"),
  54393. default: true
  54394. },
  54395. ]
  54396. ))
  54397. characterMakers.push(() => makeCharacter(
  54398. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54399. {
  54400. front: {
  54401. height: math.unit(2.8, "meters"),
  54402. name: "Front",
  54403. image: {
  54404. source: "./media/characters/argo/front.svg",
  54405. extra: 731/518,
  54406. bottom: 84/815
  54407. }
  54408. },
  54409. },
  54410. [
  54411. {
  54412. name: "Normal",
  54413. height: math.unit(3, "meters"),
  54414. default: true
  54415. },
  54416. ]
  54417. ))
  54418. characterMakers.push(() => makeCharacter(
  54419. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54420. {
  54421. side: {
  54422. height: math.unit(3.8, "meters"),
  54423. name: "Side",
  54424. image: {
  54425. source: "./media/characters/sybil/side.svg",
  54426. extra: 382/361,
  54427. bottom: 25/407
  54428. }
  54429. },
  54430. },
  54431. [
  54432. {
  54433. name: "Normal",
  54434. height: math.unit(3.8, "meters"),
  54435. default: true
  54436. },
  54437. ]
  54438. ))
  54439. characterMakers.push(() => makeCharacter(
  54440. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54441. {
  54442. side: {
  54443. height: math.unit(6, "meters"),
  54444. name: "Side",
  54445. image: {
  54446. source: "./media/characters/plum/side.svg",
  54447. extra: 858/755,
  54448. bottom: 45/903
  54449. },
  54450. form: "taur",
  54451. default: true
  54452. },
  54453. back: {
  54454. height: math.unit(6.3, "meters"),
  54455. name: "Back",
  54456. image: {
  54457. source: "./media/characters/plum/back.svg",
  54458. extra: 887/813,
  54459. bottom: 32/919
  54460. },
  54461. form: "taur",
  54462. },
  54463. feral: {
  54464. height: math.unit(5.5, "meter"),
  54465. name: "Front",
  54466. image: {
  54467. source: "./media/characters/plum/feral.svg",
  54468. extra: 568/403,
  54469. bottom: 51/619
  54470. },
  54471. form: "feral",
  54472. default: true
  54473. },
  54474. head: {
  54475. height: math.unit(1.46, "meter"),
  54476. name: "Head",
  54477. image: {
  54478. source: "./media/characters/plum/head.svg"
  54479. },
  54480. form: "taur"
  54481. },
  54482. tailTop: {
  54483. height: math.unit(5.6, "meter"),
  54484. name: "Tail (Top)",
  54485. image: {
  54486. source: "./media/characters/plum/tail-top.svg"
  54487. },
  54488. form: "taur",
  54489. },
  54490. tailBottom: {
  54491. height: math.unit(5.6, "meter"),
  54492. name: "Tail (Bottom)",
  54493. image: {
  54494. source: "./media/characters/plum/tail-bottom.svg"
  54495. },
  54496. form: "taur",
  54497. },
  54498. feralHead: {
  54499. height: math.unit(2.56549521, "meter"),
  54500. name: "Head",
  54501. image: {
  54502. source: "./media/characters/plum/head.svg"
  54503. },
  54504. form: "feral"
  54505. },
  54506. feralTailTop: {
  54507. height: math.unit(5.44728435, "meter"),
  54508. name: "Tail (Top)",
  54509. image: {
  54510. source: "./media/characters/plum/tail-top.svg"
  54511. },
  54512. form: "feral",
  54513. },
  54514. feralTailBottom: {
  54515. height: math.unit(5.44728435, "meter"),
  54516. name: "Tail (Bottom)",
  54517. image: {
  54518. source: "./media/characters/plum/tail-bottom.svg"
  54519. },
  54520. form: "feral",
  54521. },
  54522. },
  54523. [
  54524. {
  54525. name: "Normal",
  54526. height: math.unit(6, "meters"),
  54527. default: true,
  54528. form: "taur"
  54529. },
  54530. {
  54531. name: "Normal",
  54532. height: math.unit(5.5, "meters"),
  54533. default: true,
  54534. form: "feral"
  54535. },
  54536. ],
  54537. {
  54538. "taur": {
  54539. name: "Taur",
  54540. default: true
  54541. },
  54542. "feral": {
  54543. name: "Feral",
  54544. },
  54545. }
  54546. ))
  54547. characterMakers.push(() => makeCharacter(
  54548. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54549. {
  54550. front: {
  54551. height: math.unit(6, "feet"),
  54552. weight: math.unit(115, "lb"),
  54553. name: "Front",
  54554. image: {
  54555. source: "./media/characters/celeste-kitsune/front.svg",
  54556. extra: 393/366,
  54557. bottom: 7/400
  54558. }
  54559. },
  54560. side: {
  54561. height: math.unit(6, "feet"),
  54562. weight: math.unit(115, "lb"),
  54563. name: "Side",
  54564. image: {
  54565. source: "./media/characters/celeste-kitsune/side.svg",
  54566. extra: 818/765,
  54567. bottom: 40/858
  54568. }
  54569. },
  54570. },
  54571. [
  54572. {
  54573. name: "Megamacro",
  54574. height: math.unit(1500, "miles"),
  54575. default: true
  54576. },
  54577. ]
  54578. ))
  54579. characterMakers.push(() => makeCharacter(
  54580. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54581. {
  54582. front: {
  54583. height: math.unit(8, "meters"),
  54584. name: "Front",
  54585. image: {
  54586. source: "./media/characters/io/front.svg",
  54587. extra: 865/722,
  54588. bottom: 58/923
  54589. }
  54590. },
  54591. back: {
  54592. height: math.unit(8, "meters"),
  54593. name: "Back",
  54594. image: {
  54595. source: "./media/characters/io/back.svg",
  54596. extra: 920/776,
  54597. bottom: 42/962
  54598. }
  54599. },
  54600. head: {
  54601. height: math.unit(5.09, "meters"),
  54602. name: "Head",
  54603. image: {
  54604. source: "./media/characters/io/head.svg"
  54605. }
  54606. },
  54607. hand: {
  54608. height: math.unit(1.6, "meters"),
  54609. name: "Hand",
  54610. image: {
  54611. source: "./media/characters/io/hand.svg"
  54612. }
  54613. },
  54614. foot: {
  54615. height: math.unit(2.4, "meters"),
  54616. name: "Foot",
  54617. image: {
  54618. source: "./media/characters/io/foot.svg"
  54619. }
  54620. },
  54621. },
  54622. [
  54623. {
  54624. name: "Normal",
  54625. height: math.unit(8, "meters"),
  54626. default: true
  54627. },
  54628. ]
  54629. ))
  54630. characterMakers.push(() => makeCharacter(
  54631. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  54632. {
  54633. side: {
  54634. height: math.unit(6 + 3/12, "feet"),
  54635. weight: math.unit(225, "lb"),
  54636. name: "Side",
  54637. image: {
  54638. source: "./media/characters/silas/side.svg",
  54639. extra: 703/653,
  54640. bottom: 23/726
  54641. },
  54642. extraAttributes: {
  54643. "pawLength": {
  54644. name: "Paw Length",
  54645. power: 1,
  54646. type: "length",
  54647. base: math.unit(12, "inches")
  54648. },
  54649. "pawWidth": {
  54650. name: "Paw Width",
  54651. power: 1,
  54652. type: "length",
  54653. base: math.unit(4.5, "inches")
  54654. },
  54655. "pawArea": {
  54656. name: "Paw Area",
  54657. power: 2,
  54658. type: "area",
  54659. base: math.unit(12 * 4.5, "inches^2")
  54660. },
  54661. }
  54662. },
  54663. },
  54664. [
  54665. {
  54666. name: "Normal",
  54667. height: math.unit(6 + 3/12, "feet"),
  54668. default: true
  54669. },
  54670. ]
  54671. ))
  54672. characterMakers.push(() => makeCharacter(
  54673. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  54674. {
  54675. back: {
  54676. height: math.unit(1.6, "meters"),
  54677. weight: math.unit(150, "lb"),
  54678. name: "Back",
  54679. image: {
  54680. source: "./media/characters/zari/back.svg",
  54681. extra: 424/411,
  54682. bottom: 32/456
  54683. },
  54684. extraAttributes: {
  54685. "bladderCapacity": {
  54686. name: "Bladder Size",
  54687. power: 3,
  54688. type: "volume",
  54689. base: math.unit(500, "mL")
  54690. },
  54691. "bladderFlow": {
  54692. name: "Flow Rate",
  54693. power: 3,
  54694. type: "volume",
  54695. base: math.unit(25, "mL")
  54696. },
  54697. }
  54698. },
  54699. },
  54700. [
  54701. {
  54702. name: "Normal",
  54703. height: math.unit(1.6, "meters"),
  54704. default: true
  54705. },
  54706. ]
  54707. ))
  54708. characterMakers.push(() => makeCharacter(
  54709. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  54710. {
  54711. front: {
  54712. height: math.unit(25, "feet"),
  54713. weight: math.unit(5, "tons"),
  54714. name: "Front",
  54715. image: {
  54716. source: "./media/characters/charlie-human/front.svg",
  54717. extra: 1870/1740,
  54718. bottom: 102/1972
  54719. },
  54720. extraAttributes: {
  54721. "dickLength": {
  54722. name: "Dick Length",
  54723. power: 1,
  54724. type: "length",
  54725. base: math.unit(9, "feet")
  54726. },
  54727. }
  54728. },
  54729. back: {
  54730. height: math.unit(25, "feet"),
  54731. weight: math.unit(5, "tons"),
  54732. name: "Back",
  54733. image: {
  54734. source: "./media/characters/charlie-human/back.svg",
  54735. extra: 1858/1733,
  54736. bottom: 105/1963
  54737. },
  54738. extraAttributes: {
  54739. "dickLength": {
  54740. name: "Dick Length",
  54741. power: 1,
  54742. type: "length",
  54743. base: math.unit(9, "feet")
  54744. },
  54745. }
  54746. },
  54747. },
  54748. [
  54749. {
  54750. name: "\"Normal\"",
  54751. height: math.unit(6 + 4/12, "feet")
  54752. },
  54753. {
  54754. name: "Big",
  54755. height: math.unit(25, "feet"),
  54756. default: true
  54757. },
  54758. ]
  54759. ))
  54760. characterMakers.push(() => makeCharacter(
  54761. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  54762. {
  54763. front: {
  54764. height: math.unit(6 + 4/12, "feet"),
  54765. weight: math.unit(320, "lb"),
  54766. name: "Front",
  54767. image: {
  54768. source: "./media/characters/ookitsu/front.svg",
  54769. extra: 1160/976,
  54770. bottom: 38/1198
  54771. }
  54772. },
  54773. frontNsfw: {
  54774. height: math.unit(6 + 4/12, "feet"),
  54775. weight: math.unit(320, "lb"),
  54776. name: "Front (NSFW)",
  54777. image: {
  54778. source: "./media/characters/ookitsu/front-nsfw.svg",
  54779. extra: 1160/976,
  54780. bottom: 38/1198
  54781. }
  54782. },
  54783. back: {
  54784. height: math.unit(6 + 4/12, "feet"),
  54785. weight: math.unit(320, "lb"),
  54786. name: "Back",
  54787. image: {
  54788. source: "./media/characters/ookitsu/back.svg",
  54789. extra: 1030/975,
  54790. bottom: 70/1100
  54791. }
  54792. },
  54793. head: {
  54794. height: math.unit(1.79, "feet"),
  54795. name: "Head",
  54796. image: {
  54797. source: "./media/characters/ookitsu/head.svg"
  54798. }
  54799. },
  54800. hand: {
  54801. height: math.unit(0.92, "feet"),
  54802. name: "Hand",
  54803. image: {
  54804. source: "./media/characters/ookitsu/hand.svg"
  54805. }
  54806. },
  54807. tails: {
  54808. height: math.unit(3.3, "feet"),
  54809. name: "Tails",
  54810. image: {
  54811. source: "./media/characters/ookitsu/tails.svg"
  54812. }
  54813. },
  54814. dick: {
  54815. height: math.unit(1.10833, "feet"),
  54816. name: "Dick",
  54817. image: {
  54818. source: "./media/characters/ookitsu/dick.svg"
  54819. }
  54820. },
  54821. },
  54822. [
  54823. {
  54824. name: "Normal",
  54825. height: math.unit(6 + 4/12, "feet"),
  54826. default: true
  54827. },
  54828. {
  54829. name: "Macro",
  54830. height: math.unit(30, "feet")
  54831. },
  54832. ]
  54833. ))
  54834. characterMakers.push(() => makeCharacter(
  54835. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  54836. {
  54837. anthroFront: {
  54838. height: math.unit(6, "feet"),
  54839. weight: math.unit(250, "lb"),
  54840. name: "Front",
  54841. image: {
  54842. source: "./media/characters/jhusky/anthro-front.svg",
  54843. extra: 474/439,
  54844. bottom: 7/481
  54845. },
  54846. form: "anthro",
  54847. default: true
  54848. },
  54849. taurSideSfw: {
  54850. height: math.unit(6 + 4/12, "feet"),
  54851. weight: math.unit(500, "lb"),
  54852. name: "Side (SFW)",
  54853. image: {
  54854. source: "./media/characters/jhusky/taur-side-sfw.svg",
  54855. extra: 1741/1629,
  54856. bottom: 196/1937
  54857. },
  54858. form: "taur",
  54859. default: true
  54860. },
  54861. taurSideNsfw: {
  54862. height: math.unit(6 + 4/12, "feet"),
  54863. weight: math.unit(500, "lb"),
  54864. name: "Taur (NSFW)",
  54865. image: {
  54866. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  54867. extra: 1741/1629,
  54868. bottom: 196/1937
  54869. },
  54870. form: "taur",
  54871. },
  54872. },
  54873. [
  54874. {
  54875. name: "Huge",
  54876. height: math.unit(500, "feet"),
  54877. form: "anthro"
  54878. },
  54879. {
  54880. name: "Macro",
  54881. height: math.unit(1000, "feet"),
  54882. default: true,
  54883. form: "anthro"
  54884. },
  54885. {
  54886. name: "Megamacro",
  54887. height: math.unit(10000, "feet"),
  54888. form: "anthro"
  54889. },
  54890. {
  54891. name: "Huge",
  54892. height: math.unit(528, "feet"),
  54893. form: "taur"
  54894. },
  54895. {
  54896. name: "Macro",
  54897. height: math.unit(1056, "feet"),
  54898. default: true,
  54899. form: "taur"
  54900. },
  54901. {
  54902. name: "Megamacro",
  54903. height: math.unit(10556, "feet"),
  54904. form: "taur"
  54905. },
  54906. ],
  54907. {
  54908. "anthro": {
  54909. name: "Anthro",
  54910. default: true
  54911. },
  54912. "taur": {
  54913. name: "Taur",
  54914. },
  54915. }
  54916. ))
  54917. characterMakers.push(() => makeCharacter(
  54918. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  54919. {
  54920. front: {
  54921. height: math.unit(8, "feet"),
  54922. weight: math.unit(500, "lb"),
  54923. name: "Front",
  54924. image: {
  54925. source: "./media/characters/armail/front.svg",
  54926. extra: 1753/1669,
  54927. bottom: 155/1908
  54928. }
  54929. },
  54930. back: {
  54931. height: math.unit(8, "feet"),
  54932. weight: math.unit(500, "lb"),
  54933. name: "Back",
  54934. image: {
  54935. source: "./media/characters/armail/back.svg",
  54936. extra: 1872/1803,
  54937. bottom: 63/1935
  54938. }
  54939. },
  54940. },
  54941. [
  54942. {
  54943. name: "Micro",
  54944. height: math.unit(0.25, "feet")
  54945. },
  54946. {
  54947. name: "Normal",
  54948. height: math.unit(8, "feet"),
  54949. default: true
  54950. },
  54951. {
  54952. name: "Mini-macro",
  54953. height: math.unit(30, "feet")
  54954. },
  54955. {
  54956. name: "Macro",
  54957. height: math.unit(400, "feet")
  54958. },
  54959. {
  54960. name: "Mega-macro",
  54961. height: math.unit(6000, "feet")
  54962. },
  54963. ]
  54964. ))
  54965. characterMakers.push(() => makeCharacter(
  54966. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  54967. {
  54968. front: {
  54969. height: math.unit(6 + 7/12, "feet"),
  54970. weight: math.unit(210, "lb"),
  54971. name: "Front",
  54972. image: {
  54973. source: "./media/characters/wilfred-t-buxton/front.svg",
  54974. extra: 1068/882,
  54975. bottom: 28/1096
  54976. }
  54977. },
  54978. },
  54979. [
  54980. {
  54981. name: "Normal",
  54982. height: math.unit(6 + 7/12, "feet"),
  54983. default: true
  54984. },
  54985. ]
  54986. ))
  54987. characterMakers.push(() => makeCharacter(
  54988. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  54989. {
  54990. front: {
  54991. height: math.unit(5 + 2/12, "feet"),
  54992. weight: math.unit(120, "lb"),
  54993. name: "Front",
  54994. image: {
  54995. source: "./media/characters/leighton-marrow/front.svg",
  54996. extra: 441/409,
  54997. bottom: 37/478
  54998. }
  54999. },
  55000. },
  55001. [
  55002. {
  55003. name: "Normal",
  55004. height: math.unit(5 + 2/12, "feet"),
  55005. default: true
  55006. },
  55007. ]
  55008. ))
  55009. characterMakers.push(() => makeCharacter(
  55010. { name: "Licos", species: ["werewolf"], tags: ["anthro"] },
  55011. {
  55012. front: {
  55013. height: math.unit(4, "meters"),
  55014. weight: math.unit(1200, "kg"),
  55015. name: "Front",
  55016. image: {
  55017. source: "./media/characters/licos/front.svg",
  55018. extra: 1727/1604,
  55019. bottom: 101/1828
  55020. }
  55021. },
  55022. },
  55023. [
  55024. {
  55025. name: "Normal",
  55026. height: math.unit(4, "meters"),
  55027. default: true
  55028. },
  55029. ]
  55030. ))
  55031. characterMakers.push(() => makeCharacter(
  55032. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55033. {
  55034. front: {
  55035. height: math.unit(10 + 3/12, "feet"),
  55036. name: "Front",
  55037. image: {
  55038. source: "./media/characters/theo-monkey/front.svg",
  55039. extra: 1735/1658,
  55040. bottom: 73/1808
  55041. }
  55042. },
  55043. back: {
  55044. height: math.unit(10 + 3/12, "feet"),
  55045. name: "Back",
  55046. image: {
  55047. source: "./media/characters/theo-monkey/back.svg",
  55048. extra: 1742/1664,
  55049. bottom: 33/1775
  55050. }
  55051. },
  55052. head: {
  55053. height: math.unit(2.29, "feet"),
  55054. name: "Head",
  55055. image: {
  55056. source: "./media/characters/theo-monkey/head.svg"
  55057. }
  55058. },
  55059. handPalm: {
  55060. height: math.unit(1.73, "feet"),
  55061. name: "Hand (Palm)",
  55062. image: {
  55063. source: "./media/characters/theo-monkey/hand-palm.svg"
  55064. }
  55065. },
  55066. handBack: {
  55067. height: math.unit(1.63, "feet"),
  55068. name: "Hand (Back)",
  55069. image: {
  55070. source: "./media/characters/theo-monkey/hand-back.svg"
  55071. }
  55072. },
  55073. footSole: {
  55074. height: math.unit(2.15, "feet"),
  55075. name: "Foot (Sole)",
  55076. image: {
  55077. source: "./media/characters/theo-monkey/foot-sole.svg"
  55078. }
  55079. },
  55080. footSide: {
  55081. height: math.unit(1.6, "feet"),
  55082. name: "Foot (Side)",
  55083. image: {
  55084. source: "./media/characters/theo-monkey/foot-side.svg"
  55085. }
  55086. },
  55087. },
  55088. [
  55089. {
  55090. name: "Normal",
  55091. height: math.unit(10 + 3/12, "feet"),
  55092. default: true
  55093. },
  55094. ]
  55095. ))
  55096. characterMakers.push(() => makeCharacter(
  55097. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55098. {
  55099. front: {
  55100. height: math.unit(11, "feet"),
  55101. weight: math.unit(3000, "lb"),
  55102. preyCapacity: math.unit(10, "people"),
  55103. name: "Front",
  55104. image: {
  55105. source: "./media/characters/brook/front.svg",
  55106. extra: 909/835,
  55107. bottom: 108/1017
  55108. }
  55109. },
  55110. back: {
  55111. height: math.unit(11, "feet"),
  55112. weight: math.unit(3000, "lb"),
  55113. preyCapacity: math.unit(10, "people"),
  55114. name: "Back",
  55115. image: {
  55116. source: "./media/characters/brook/back.svg",
  55117. extra: 976/916,
  55118. bottom: 34/1010
  55119. }
  55120. },
  55121. backAlt: {
  55122. height: math.unit(11, "feet"),
  55123. weight: math.unit(3000, "lb"),
  55124. preyCapacity: math.unit(10, "people"),
  55125. name: "Back (Alt)",
  55126. image: {
  55127. source: "./media/characters/brook/back-alt.svg",
  55128. extra: 1283/1213,
  55129. bottom: 35/1318
  55130. }
  55131. },
  55132. bust: {
  55133. height: math.unit(9.0859030837, "feet"),
  55134. weight: math.unit(3000, "lb"),
  55135. preyCapacity: math.unit(10, "people"),
  55136. name: "Bust",
  55137. image: {
  55138. source: "./media/characters/brook/bust.svg",
  55139. extra: 2043/1923,
  55140. bottom: 0/2043
  55141. }
  55142. },
  55143. },
  55144. [
  55145. {
  55146. name: "Small",
  55147. height: math.unit(11, "feet"),
  55148. default: true
  55149. },
  55150. {
  55151. name: "Towering",
  55152. height: math.unit(5, "km")
  55153. },
  55154. {
  55155. name: "Enormous",
  55156. height: math.unit(25, "earths")
  55157. },
  55158. ]
  55159. ))
  55160. characterMakers.push(() => makeCharacter(
  55161. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55162. {
  55163. front: {
  55164. height: math.unit(4, "feet"),
  55165. weight: math.unit(150, "lb"),
  55166. name: "Front",
  55167. image: {
  55168. source: "./media/characters/squishi/front.svg",
  55169. extra: 1428/1271,
  55170. bottom: 30/1458
  55171. },
  55172. extraAttributes: {
  55173. "shoeSize": {
  55174. name: "Shoe Size",
  55175. power: 1,
  55176. type: "length",
  55177. base: math.unit(14, "ShoeSizeMensUS")
  55178. },
  55179. }
  55180. },
  55181. side: {
  55182. height: math.unit(4, "feet"),
  55183. weight: math.unit(150, "lb"),
  55184. name: "Side",
  55185. image: {
  55186. source: "./media/characters/squishi/side.svg",
  55187. extra: 1428/1271,
  55188. bottom: 30/1458
  55189. },
  55190. extraAttributes: {
  55191. "shoeSize": {
  55192. name: "Shoe Size",
  55193. power: 1,
  55194. type: "length",
  55195. base: math.unit(14, "ShoeSizeMensUS")
  55196. },
  55197. }
  55198. },
  55199. back: {
  55200. height: math.unit(4, "feet"),
  55201. weight: math.unit(150, "lb"),
  55202. name: "Back",
  55203. image: {
  55204. source: "./media/characters/squishi/back.svg",
  55205. extra: 1428/1271,
  55206. bottom: 30/1458
  55207. },
  55208. extraAttributes: {
  55209. "shoeSize": {
  55210. name: "Shoe Size",
  55211. power: 1,
  55212. type: "length",
  55213. base: math.unit(14, "ShoeSizeMensUS")
  55214. },
  55215. }
  55216. },
  55217. },
  55218. [
  55219. {
  55220. name: "Normal",
  55221. height: math.unit(4, "feet"),
  55222. default: true
  55223. },
  55224. ]
  55225. ))
  55226. //characters
  55227. function makeCharacters() {
  55228. const results = [];
  55229. characterMakers.forEach(character => {
  55230. results.push(character());
  55231. });
  55232. return results;
  55233. }